diff --git a/samples/react-list-search/.eslintrc.js b/samples/react-list-search/.eslintrc.js new file mode 100644 index 000000000..9ef0a000c --- /dev/null +++ b/samples/react-list-search/.eslintrc.js @@ -0,0 +1,5 @@ +require('@rushstack/eslint-config/patch/modern-module-resolution'); +module.exports = { + extends: ['@microsoft/eslint-config-spfx/lib/profiles/react'], + parserOptions: { tsconfigRootDir: __dirname } +}; \ No newline at end of file diff --git a/samples/react-list-search/.gitignore b/samples/react-list-search/.gitignore index 1f38278f7..1a669f886 100644 --- a/samples/react-list-search/.gitignore +++ b/samples/react-list-search/.gitignore @@ -32,3 +32,4 @@ obj # Styles Generated Code *.scss.ts *.scss.d.ts +.heft \ No newline at end of file diff --git a/samples/react-list-search/.nvmrc b/samples/react-list-search/.nvmrc new file mode 100644 index 000000000..eb800ed45 --- /dev/null +++ b/samples/react-list-search/.nvmrc @@ -0,0 +1 @@ +v18.19.0 diff --git a/samples/react-list-search/.yo-rc.json b/samples/react-list-search/.yo-rc.json index 31da62421..e550dd750 100644 --- a/samples/react-list-search/.yo-rc.json +++ b/samples/react-list-search/.yo-rc.json @@ -1,12 +1,17 @@ { "@microsoft/generator-sharepoint": { - "version": "1.13.1", + "version": "1.20.0", "libraryName": "list-search-webpart", "libraryId": "8277f088-9c30-4f95-9c15-9c18a9d40a26", "environment": "spo", "packageManager": "npm", "isCreatingSolution": false, "isDomainIsolated": false, - "componentType": "webpart" + "componentType": "webpart", + "nodeVersion": "18.19.0", + "sdkVersions": { + "@microsoft/teams-js": "2.24.0", + "@microsoft/microsoft-graph-client": "3.0.2" + } } } \ No newline at end of file diff --git a/samples/react-list-search/README.md b/samples/react-list-search/README.md index de1b00280..22f16f329 100644 --- a/samples/react-list-search/README.md +++ b/samples/react-list-search/README.md @@ -63,8 +63,8 @@ This list search web part allows the user to show data from lists or libraries. | Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.| |Refer to for more information on SPFx compatibility. | -![SPFx 1.13.1](https://img.shields.io/badge/SPFx-1.13.1-green.svg) -![Node.js v14](https://img.shields.io/badge/Node.js-v14-green.svg) +![SPFx 1.20.0](https://img.shields.io/badge/SPFx-1.20.0-green.svg) +![Node.js v18](https://img.shields.io/badge/Node.js-v18-green.svg) ![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg) ![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower") ![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1") @@ -90,6 +90,7 @@ Version|Date|Comments 1.1.0|April 25, 2021|List item modern audience support 1.2.0|January 01, 2022|Upgraded for SPFx v1.13.1 1.3.0|July 11, 2022|Fixes CAML issues +1.4.0|October 2, 2024|Upgraded for SPFx v1.20.0 ## Minimal Path to Awesome @@ -98,8 +99,8 @@ Version|Date|Comments > This sample can also be opened with [VS Code Remote Development](https://code.visualstudio.com/docs/remote/remote-overview). Visit https://aka.ms/spfx-devcontainer for further instructions. * Clone this repository + * From your command line, change your current directory to the directory containing this sample (react-list-search, located under samples) * In the command line run: - * Navigate to `list-search-webpart` * `npm install` * `gulp serve` * Open the *workbench* on your Office 365 Developer tenant diff --git a/samples/react-list-search/assets/sample.json b/samples/react-list-search/assets/sample.json index 5545fd6f1..d1d60f8a7 100644 --- a/samples/react-list-search/assets/sample.json +++ b/samples/react-list-search/assets/sample.json @@ -9,7 +9,7 @@ "This list search web part allows the user to show data from lists or libraries." ], "creationDateTime": "2020-12-20", - "updateDateTime": "2022-07-11", + "updateDateTime": "2024-10-02", "products": [ "SharePoint" ], @@ -20,7 +20,7 @@ }, { "key": "SPFX-VERSION", - "value": "1.11.0" + "value": "1.20.0" }, { "key": "SPFX-SUPPORTSTHEMEVARIANTS", @@ -84,7 +84,7 @@ "authors": [ { "gitHubAccount": "albegut", - "company": "Minsait", + "company": "Hiberus", "pictureUrl": "https://github.com/albegut.png", "name": "Alberto Gutierrez perez", "twitter": "albertogperez" diff --git a/samples/react-list-search/config/package-solution.json b/samples/react-list-search/config/package-solution.json index 60df11ef4..2d48767de 100644 --- a/samples/react-list-search/config/package-solution.json +++ b/samples/react-list-search/config/package-solution.json @@ -3,10 +3,21 @@ "solution": { "name": "list-search-webpart", "id": "8277f088-9c30-4f95-9c15-9c18a9d40a26", - "version": "1.2.0.0", + "version": "1.4.0.0", "includeClientSideAssets": true, "skipFeatureDeployment": true, "isDomainIsolated": false, + "metadata": { + "shortDescription": { + "default": "list-search-webpart description" + }, + "longDescription": { + "default": "list-search-webpart description" + }, + "screenshotPaths": [], + "videoUrl": "", + "categories": [] + }, "developer": { "name": "Alberto Gutierrez Perez", "websiteUrl": "", @@ -14,6 +25,26 @@ "termsOfUseUrl": "", "mpnId": "" }, + "features": [ + { + "title": "list-search-webpart ListSearchWebPart Feature", + "description": "The feature that activates ListSearchWebPart from the list-search-webpart solution.", + "id": "292daaa0-2474-445b-98f8-afa6ad4a9c92", + "version": "1.2.0.0", + "componentIds": [ + "292daaa0-2474-445b-98f8-afa6ad4a9c92" + ] + }, + { + "title": "list-search-webpart ListSearchConsumerWebPartWebPart Feature", + "description": "The feature that activates ListSearchConsumerWebPartWebPart from the list-search-webpart solution.", + "id": "306e0650-db3c-443a-a698-12be6e6de1ad", + "version": "1.2.0.0", + "componentIds": [ + "306e0650-db3c-443a-a698-12be6e6de1ad" + ] + } + ], "webApiPermissionRequests": [ { "resource": "Microsoft Graph", diff --git a/samples/react-list-search/config/sass.json b/samples/react-list-search/config/sass.json new file mode 100644 index 000000000..cb41e61fb --- /dev/null +++ b/samples/react-list-search/config/sass.json @@ -0,0 +1,3 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/core-build/sass.schema.json" +} \ No newline at end of file diff --git a/samples/react-list-search/config/serve.json b/samples/react-list-search/config/serve.json index 5958674e1..a4c03e287 100644 --- a/samples/react-list-search/config/serve.json +++ b/samples/react-list-search/config/serve.json @@ -1,6 +1,6 @@ { - "$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json", + "$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json", "port": 4321, "https": true, - "initialPage": "https://enter-your-SharePoint-site/_layouts/workbench.aspx" + "initialPage": "https://{tenantDomain}/_layouts/workbench.aspx" } diff --git a/samples/react-list-search/fast-serve/config.json b/samples/react-list-search/fast-serve/config.json deleted file mode 100644 index fbb6384ca..000000000 --- a/samples/react-list-search/fast-serve/config.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/s-KaiNet/spfx-fast-serve/master/schema/config.latest.schema.json", - "cli": { - "isLibraryComponent": false - } -} \ No newline at end of file diff --git a/samples/react-list-search/fast-serve/webpack.extend.js b/samples/react-list-search/fast-serve/webpack.extend.js deleted file mode 100644 index 8366aff2b..000000000 --- a/samples/react-list-search/fast-serve/webpack.extend.js +++ /dev/null @@ -1,24 +0,0 @@ -/* -* User webpack settings file. You can add your own settings here. -* Changes from this file will be merged into the base webpack configuration file. -* This file will not be overwritten by the subsequent spfx-fast-serve calls. -*/ - -// you can add your project related webpack configuration here, it will be merged using webpack-merge module -// i.e. plugins: [new webpack.Plugin()] -const webpackConfig = { - -} - -// for even more fine-grained control, you can apply custom webpack settings using below function -const transformConfig = function (initialWebpackConfig) { - // transform the initial webpack config here, i.e. - // initialWebpackConfig.plugins.push(new webpack.Plugin()); etc. - - return initialWebpackConfig; -} - -module.exports = { - webpackConfig, - transformConfig -} diff --git a/samples/react-list-search/package-lock.json b/samples/react-list-search/package-lock.json index b465928db..9010f32fa 100644 --- a/samples/react-list-search/package-lock.json +++ b/samples/react-list-search/package-lock.json @@ -1,84 +1,165 @@ { "name": "list-search-webpart", "version": "1.0.0", - "lockfileVersion": 1, + "lockfileVersion": 3, "requires": true, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "packages": { + "": { + "name": "list-search-webpart", + "version": "1.0.0", + "dependencies": { + "@fluentui/react": "8.106.4", + "@fluentui/react-components": "9.54.17", + "@microsoft/sp-adaptive-card-extension-base": "1.20.0", + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-office-ui-fabric-core": "1.20.0", + "@microsoft/sp-property-pane": "1.20.0", + "@microsoft/sp-webpart-base": "1.20.0", + "@pnp/graph": "4.5.0", + "@pnp/sp": "4.5.0", + "@pnp/spfx-controls-react": "3.19.0", + "@pnp/spfx-property-controls": "3.18.0", + "react": "17.0.1", + "react-dom": "17.0.1", + "react-js-pagination": "3.0.3", + "react-xml-parser": "1.1.6", + "tslib": "2.3.1" + }, + "devDependencies": { + "@microsoft/eslint-config-spfx": "1.20.2", + "@microsoft/eslint-plugin-spfx": "1.20.2", + "@microsoft/rush-stack-compiler-4.7": "0.1.0", + "@microsoft/sp-build-web": "1.20.2", + "@microsoft/sp-module-interfaces": "1.20.2", + "@rushstack/eslint-config": "4.0.1", + "@types/react": "17.0.45", + "@types/react-dom": "17.0.17", + "@types/react-js-pagination": "^3.0.7", + "@types/webpack-env": "1.15.2", + "ajv": "6.12.5", + "eslint": "8.57.0", + "eslint-plugin-react-hooks": "4.3.0", + "gulp": "4.0.2", + "spfx-fast-serve-helpers": "~1.20.0", + "typescript": "4.7.4" + }, + "engines": { + "node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0" } }, - "@azure/abort-controller": { + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@azure/abort-controller": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-1.1.0.tgz", "integrity": "sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==", "dev": true, - "requires": { + "dependencies": { "tslib": "^2.2.0" }, - "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "engines": { + "node": ">=12.0.0" } }, - "@azure/core-auth": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.5.0.tgz", - "integrity": "sha512-udzoBuYG1VBoHVohDTrvKjyzel34zt77Bhp7dQntVGGD0ehVq48owENbBG8fIgkHRNUBQH5k1r0hpoMu5L8+kw==", + "node_modules/@azure/core-auth": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.8.0.tgz", + "integrity": "sha512-YvFMowkXzLbXNM11yZtVLhUCmuG0ex7JKOH366ipjmHBhL3vpDcPAeWF+jf0X+jVXwFqo3UhsWUq4kH0ZPdu/g==", "dev": true, - "requires": { - "@azure/abort-controller": "^1.0.0", + "dependencies": { + "@azure/abort-controller": "^2.0.0", "@azure/core-util": "^1.1.0", - "tslib": "^2.2.0" + "tslib": "^2.6.2" }, - "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "engines": { + "node": ">=18.0.0" } }, - "@azure/core-client": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.7.3.tgz", - "integrity": "sha512-kleJ1iUTxcO32Y06dH9Pfi9K4U+Tlb111WXEnbt7R/ne+NLRwppZiTGJuTD5VVoxTMK5NTbEtm5t2vcdNCFe2g==", + "node_modules/@azure/core-auth/node_modules/@azure/abort-controller": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz", + "integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==", "dev": true, - "requires": { - "@azure/abort-controller": "^1.0.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-auth/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true + }, + "node_modules/@azure/core-client": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.9.2.tgz", + "integrity": "sha512-kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w==", + "dev": true, + "dependencies": { + "@azure/abort-controller": "^2.0.0", "@azure/core-auth": "^1.4.0", "@azure/core-rest-pipeline": "^1.9.1", "@azure/core-tracing": "^1.0.0", - "@azure/core-util": "^1.0.0", + "@azure/core-util": "^1.6.1", "@azure/logger": "^1.0.0", - "tslib": "^2.2.0" + "tslib": "^2.6.2" }, - "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "engines": { + "node": ">=18.0.0" } }, - "@azure/core-http": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@azure/core-http/-/core-http-2.3.2.tgz", - "integrity": "sha512-Z4dfbglV9kNZO177CNx4bo5ekFuYwwsvjLiKdZI4r84bYGv3irrbQz7JC3/rUfFH2l4T/W6OFleJaa2X0IaQqw==", + "node_modules/@azure/core-client/node_modules/@azure/abort-controller": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz", + "integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==", "dev": true, - "requires": { + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-client/node_modules/@azure/core-tracing": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.2.0.tgz", + "integrity": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-client/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true + }, + "node_modules/@azure/core-http": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@azure/core-http/-/core-http-3.0.4.tgz", + "integrity": "sha512-Fok9VVhMdxAFOtqiiAtg74fL0UJkt0z3D+ouUUxcRLzZNBioPRAMJFVxiWoJljYpXsRi4GDQHzQHDc9AiYaIUQ==", + "deprecated": "This package is no longer supported. Please migrate to use @azure/core-rest-pipeline", + "dev": true, + "dependencies": { "@azure/abort-controller": "^1.0.0", "@azure/core-auth": "^1.3.0", "@azure/core-tracing": "1.0.0-preview.13", @@ -89,304 +170,294 @@ "form-data": "^4.0.0", "node-fetch": "^2.6.7", "process": "^0.11.10", - "tough-cookie": "^4.0.0", "tslib": "^2.2.0", "tunnel": "^0.0.6", "uuid": "^8.3.0", "xml2js": "^0.5.0" }, - "dependencies": { - "@azure/core-tracing": { - "version": "1.0.0-preview.13", - "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.13.tgz", - "integrity": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==", - "dev": true, - "requires": { - "@opentelemetry/api": "^1.0.1", - "tslib": "^2.2.0" - } - }, - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", - "dev": true, - "requires": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - } - }, - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - }, - "universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true - }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - } + "engines": { + "node": ">=14.0.0" } }, - "@azure/core-lro": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.5.4.tgz", - "integrity": "sha512-3GJiMVH7/10bulzOKGrrLeG/uCBH/9VtxqaMcB9lIqAeamI/xYQSHJL/KcsLDuH+yTjYpro/u6D/MuRe4dN70Q==", + "node_modules/@azure/core-http/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, - "requires": { - "@azure/abort-controller": "^1.0.0", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@azure/core-lro": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.7.2.tgz", + "integrity": "sha512-0YIpccoX8m/k00O7mDDMdJpbr6mf1yWo2dfmxt5A8XVZVVMz2SSKaEbMCeJRvgQ0IaSlqhjT47p4hVIRRy90xw==", + "dev": true, + "dependencies": { + "@azure/abort-controller": "^2.0.0", "@azure/core-util": "^1.2.0", "@azure/logger": "^1.0.0", - "tslib": "^2.2.0" + "tslib": "^2.6.2" }, - "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "engines": { + "node": ">=18.0.0" } }, - "@azure/core-paging": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.5.0.tgz", - "integrity": "sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==", + "node_modules/@azure/core-lro/node_modules/@azure/abort-controller": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz", + "integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==", "dev": true, - "requires": { - "tslib": "^2.2.0" - }, "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" } }, - "@azure/core-rest-pipeline": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.12.1.tgz", - "integrity": "sha512-SsyWQ+T5MFQRX+M8H/66AlaI6HyCbQStGfFngx2fuiW+vKI2DkhtOvbYodPyf9fOe/ARLWWc3ohX54lQ5Kmaog==", + "node_modules/@azure/core-lro/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true + }, + "node_modules/@azure/core-paging": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.6.2.tgz", + "integrity": "sha512-YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA==", "dev": true, - "requires": { - "@azure/abort-controller": "^1.0.0", - "@azure/core-auth": "^1.4.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-paging/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true + }, + "node_modules/@azure/core-rest-pipeline": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.17.0.tgz", + "integrity": "sha512-62Vv8nC+uPId3j86XJ0WI+sBf0jlqTqPUFCBNrGtlaUeQUIXWV/D8GE5A1d+Qx8H7OQojn2WguC8kChD6v0shA==", + "dev": true, + "dependencies": { + "@azure/abort-controller": "^2.0.0", + "@azure/core-auth": "^1.8.0", "@azure/core-tracing": "^1.0.1", - "@azure/core-util": "^1.3.0", + "@azure/core-util": "^1.9.0", "@azure/logger": "^1.0.0", - "form-data": "^4.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "tslib": "^2.2.0" + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "tslib": "^2.6.2" }, - "dependencies": { - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "engines": { + "node": ">=18.0.0" } }, - "@azure/core-tracing": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.1.tgz", - "integrity": "sha512-I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw==", + "node_modules/@azure/core-rest-pipeline/node_modules/@azure/abort-controller": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz", + "integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==", "dev": true, - "requires": { - "tslib": "^2.2.0" - }, "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" } }, - "@azure/core-util": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.5.0.tgz", - "integrity": "sha512-GZBpVFDtQ/15hW1OgBcRdT4Bl7AEpcEZqLfbAvOtm1CQUncKWiYapFHVD588hmlV27NbOOtSm3cnLF3lvoHi4g==", + "node_modules/@azure/core-rest-pipeline/node_modules/@azure/core-tracing": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.2.0.tgz", + "integrity": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==", "dev": true, - "requires": { + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-rest-pipeline/node_modules/https-proxy-agent": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@azure/core-rest-pipeline/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true + }, + "node_modules/@azure/core-tracing": { + "version": "1.0.0-preview.13", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.13.tgz", + "integrity": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==", + "dev": true, + "dependencies": { + "@opentelemetry/api": "^1.0.1", + "tslib": "^2.2.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@azure/core-util": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.10.0.tgz", + "integrity": "sha512-dqLWQsh9Nro1YQU+405POVtXnwrIVqPyfUzc4zXCbThTg7+vNNaiMkwbX9AMXKyoFYFClxmB3s25ZFr3+jZkww==", + "dev": true, + "dependencies": { + "@azure/abort-controller": "^2.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-util/node_modules/@azure/abort-controller": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz", + "integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==", + "dev": true, + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-util/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true + }, + "node_modules/@azure/identity": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-4.2.1.tgz", + "integrity": "sha512-U8hsyC9YPcEIzoaObJlRDvp7KiF0MGS7xcWbyJSVvXRkC/HXo1f0oYeBYmEvVgRfacw7GHf6D6yAoh9JHz6A5Q==", + "dev": true, + "dependencies": { "@azure/abort-controller": "^1.0.0", - "tslib": "^2.2.0" - }, - "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } - } - }, - "@azure/identity": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-2.1.0.tgz", - "integrity": "sha512-BPDz1sK7Ul9t0l9YKLEa8PHqWU4iCfhGJ+ELJl6c8CP3TpJt2urNCbm0ZHsthmxRsYoMPbz2Dvzj30zXZVmAFw==", - "dev": true, - "requires": { - "@azure/abort-controller": "^1.0.0", - "@azure/core-auth": "^1.3.0", + "@azure/core-auth": "^1.5.0", "@azure/core-client": "^1.4.0", "@azure/core-rest-pipeline": "^1.1.0", "@azure/core-tracing": "^1.0.0", - "@azure/core-util": "^1.0.0", + "@azure/core-util": "^1.3.0", "@azure/logger": "^1.0.0", - "@azure/msal-browser": "^2.26.0", - "@azure/msal-common": "^7.0.0", - "@azure/msal-node": "^1.10.0", + "@azure/msal-browser": "^3.11.1", + "@azure/msal-node": "^2.9.2", "events": "^3.0.0", "jws": "^4.0.0", "open": "^8.0.0", "stoppable": "^1.1.0", - "tslib": "^2.2.0", - "uuid": "^8.3.0" - }, - "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true - } - } - }, - "@azure/logger": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.0.4.tgz", - "integrity": "sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==", - "dev": true, - "requires": { "tslib": "^2.2.0" }, - "dependencies": { - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "engines": { + "node": ">=18.0.0" } }, - "@azure/msal-browser": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.38.2.tgz", - "integrity": "sha512-71BeIn2we6LIgMplwCSaMq5zAwmalyJR3jFcVOZxNVfQ1saBRwOD+P77nLs5vrRCedVKTq8RMFhIOdpMLNno0A==", + "node_modules/@azure/identity/node_modules/@azure/core-tracing": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.2.0.tgz", + "integrity": "sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==", "dev": true, - "requires": { - "@azure/msal-common": "13.3.0" - }, "dependencies": { - "@azure/msal-common": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.3.0.tgz", - "integrity": "sha512-/VFWTicjcJbrGp3yQP7A24xU95NiDMe23vxIU1U6qdRPFsprMDNUohMudclnd+WSHE4/McqkZs/nUU3sAKkVjg==", - "dev": true - } + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" } }, - "@azure/msal-common": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.6.0.tgz", - "integrity": "sha512-XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q==", + "node_modules/@azure/identity/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", "dev": true }, - "@azure/msal-node": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.18.3.tgz", - "integrity": "sha512-lI1OsxNbS/gxRD4548Wyj22Dk8kS7eGMwD9GlBZvQmFV8FJUXoXySL1BiNzDsHUE96/DS/DHmA+F73p1Dkcktg==", + "node_modules/@azure/logger": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.1.4.tgz", + "integrity": "sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==", "dev": true, - "requires": { - "@azure/msal-common": "13.3.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/logger/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true + }, + "node_modules/@azure/msal-browser": { + "version": "3.25.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-3.25.0.tgz", + "integrity": "sha512-a0Y7pmSy8SC1s9bvwr+REvyAA1nQcITlZvkElM2gNUPYFTTNUTEdcpg73TmawNucyMdZ9xb/GFcuhrLOqYAzwg==", + "dev": true, + "dependencies": { + "@azure/msal-common": "14.15.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-common": { + "version": "14.15.0", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.15.0.tgz", + "integrity": "sha512-ImAQHxmpMneJ/4S8BRFhjt1MZ3bppmpRPYYNyzeQPeFN288YKbb8TmmISQEbtfkQ1BPASvYZU5doIZOPBAqENQ==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-node": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-2.15.0.tgz", + "integrity": "sha512-gVPW8YLz92ZeCibQH2QUw96odJoiM3k/ZPH3f2HxptozmH6+OnyyvKXo/Egg39HAM230akarQKHf0W74UHlh0Q==", + "dev": true, + "dependencies": { + "@azure/msal-common": "14.15.0", "jsonwebtoken": "^9.0.0", "uuid": "^8.3.0" }, - "dependencies": { - "@azure/msal-common": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.3.0.tgz", - "integrity": "sha512-/VFWTicjcJbrGp3yQP7A24xU95NiDMe23vxIU1U6qdRPFsprMDNUohMudclnd+WSHE4/McqkZs/nUU3sAKkVjg==", - "dev": true - }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true - } + "engines": { + "node": ">=16" } }, - "@azure/storage-blob": { - "version": "12.11.0", - "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.11.0.tgz", - "integrity": "sha512-na+FisoARuaOWaHWpmdtk3FeuTWf2VWamdJ9/TJJzj5ZdXPLC3juoDgFs6XVuJIoK30yuBpyFBEDXVRK4pB7Tg==", + "node_modules/@azure/msal-node/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, - "requires": { + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@azure/storage-blob": { + "version": "12.17.0", + "resolved": "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.17.0.tgz", + "integrity": "sha512-sM4vpsCpcCApagRW5UIjQNlNylo02my2opgp0Emi8x888hZUvJ3dN69Oq20cEGXkMUWnoCrBaB0zyS3yeB87sQ==", + "dev": true, + "dependencies": { "@azure/abort-controller": "^1.0.0", - "@azure/core-http": "^2.0.0", + "@azure/core-http": "^3.0.0", "@azure/core-lro": "^2.2.0", "@azure/core-paging": "^1.1.1", "@azure/core-tracing": "1.0.0-preview.13", @@ -394,1029 +465,2936 @@ "events": "^3.0.0", "tslib": "^2.2.0" }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz", + "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==", + "dev": true, "dependencies": { - "@azure/core-tracing": { - "version": "1.0.0-preview.13", - "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.13.tgz", - "integrity": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==", - "dev": true, - "requires": { - "@opentelemetry/api": "^1.0.1", - "tslib": "^2.2.0" - } - }, - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - } + "@babel/highlight": "^7.25.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "node_modules/@babel/compat-data": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.7.tgz", + "integrity": "sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==", "dev": true, - "requires": { - "@babel/highlight": "^7.16.7" + "engines": { + "node": ">=6.9.0" } }, - "@babel/compat-data": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz", - "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==", - "dev": true - }, - "@babel/core": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.0.tgz", - "integrity": "sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==", + "node_modules/@babel/core": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.7.tgz", + "integrity": "sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==", "dev": true, - "requires": { + "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helpers": "^7.23.0", - "@babel/parser": "^7.23.0", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.0", - "@babel/types": "^7.23.0", + "@babel/code-frame": "^7.25.7", + "@babel/generator": "^7.25.7", + "@babel/helper-compilation-targets": "^7.25.7", + "@babel/helper-module-transforms": "^7.25.7", + "@babel/helpers": "^7.25.7", + "@babel/parser": "^7.25.7", + "@babel/template": "^7.25.7", + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.7.tgz", + "integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==", + "dev": true, "dependencies": { - "@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true - }, - "@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } + "@babel/types": "^7.25.7", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/generator": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", - "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz", + "integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==", "dev": true, - "requires": { - "@babel/types": "^7.23.0", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", + "dependencies": { + "@babel/compat-data": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz", + "integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==", + "dev": true, "dependencies": { - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - } - } - }, - "@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "dev": true - }, - "@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dev": true, - "requires": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "dev": true, - "requires": { - "@babel/types": "^7.22.15" - } - }, - "@babel/helper-module-transforms": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", - "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.7" }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz", + "integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==", + "dev": true, "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true - } - } - }, - "@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "dev": true - }, - "@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", - "dev": true - }, - "@babel/helpers": { - "version": "7.23.1", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz", - "integrity": "sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==", - "dev": true, - "requires": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.0", - "@babel/types": "^7.23.0" - } - }, - "@babel/highlight": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", - "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "@babel/helper-module-imports": "^7.25.7", + "@babel/helper-simple-access": "^7.25.7", + "@babel/helper-validator-identifier": "^7.25.7", + "@babel/traverse": "^7.25.7" }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/parser": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", - "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", + "node_modules/@babel/helper-plugin-utils": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz", + "integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz", + "integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz", + "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz", + "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz", + "integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.7.tgz", + "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", + "dev": true, + "dependencies": { + "@babel/template": "^7.25.7", + "@babel/types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz", + "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "@babel/plugin-syntax-async-generators": { + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.7.tgz", + "integrity": "sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.7" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-bigint": { + "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-class-properties": { + "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-import-meta": { + "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-json-strings": { + "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-logical-assignment-operators": { + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-nullish-coalescing-operator": { + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-numeric-separator": { + "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-object-rest-spread": { + "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-optional-catch-binding": { + "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-optional-chaining": { + "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/runtime": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz", - "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" - }, "dependencies": { - "@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true - }, - "@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/traverse": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", - "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", + "node_modules/@babel/runtime": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.7.tgz", + "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.7.tgz", + "integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==", "dev": true, - "requires": { - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.0", - "@babel/types": "^7.23.0", - "debug": "^4.1.0", + "dependencies": { + "@babel/code-frame": "^7.25.7", + "@babel/parser": "^7.25.7", + "@babel/types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.7.tgz", + "integrity": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.25.7", + "@babel/generator": "^7.25.7", + "@babel/parser": "^7.25.7", + "@babel/template": "^7.25.7", + "@babel/types": "^7.25.7", + "debug": "^4.3.1", "globals": "^11.1.0" }, - "dependencies": { - "@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", - "dev": true, - "requires": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true - }, - "@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - } + "engines": { + "node": ">=6.9.0" } }, - "@babel/types": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", - "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "node_modules/@babel/types": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.7.tgz", + "integrity": "sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==", "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20", + "dependencies": { + "@babel/helper-string-parser": "^7.25.7", + "@babel/helper-validator-identifier": "^7.25.7", "to-fast-properties": "^2.0.0" }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true - } + "engines": { + "node": ">=6.9.0" } }, - "@bcoe/v8-coverage": { + "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, - "@cnakazawa/watch": { + "node_modules/@cnakazawa/watch": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", "dev": true, - "requires": { + "dependencies": { "exec-sh": "^0.3.2", "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" } }, - "@devexpress/error-stack-parser": { + "node_modules/@ctrl/tinycolor": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.3.4.tgz", + "integrity": "sha512-8vmPV/nIULFDWsnJalQJDqFLC2uTPx6A/ASA2t27QGp+7oXnbWWXCe0uV8xasIH2rGbI/XoB2vmkdP/94WvMrw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@devexpress/error-stack-parser": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@devexpress/error-stack-parser/-/error-stack-parser-2.0.6.tgz", "integrity": "sha512-fneVypElGUH6Be39mlRZeAu00pccTlf4oVuzf9xPJD1cdEqI8NyAiQua/EW7lZdrbMUbgyXcJmfKPefhYius3A==", "dev": true, - "requires": { + "dependencies": { "stackframe": "^1.1.1" } }, - "@discoveryjs/json-ext": { + "node_modules/@discoveryjs/json-ext": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "dev": true - }, - "@emotion/hash": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", - "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" - }, - "@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - }, - "@emotion/serialize": { - "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", - "requires": { - "@emotion/hash": "0.8.0", - "@emotion/memoize": "0.7.4", - "@emotion/unitless": "0.7.5", - "@emotion/utils": "0.11.3", - "csstype": "^2.5.7" + "dev": true, + "engines": { + "node": ">=10.0.0" } }, - "@emotion/unitless": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", - "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + "node_modules/@emotion/hash": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz", + "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==" }, - "@emotion/utils": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" - }, - "@eslint/eslintrc": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", - "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, - "requires": { + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.1.tgz", + "integrity": "sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "lodash": "^4.17.19", - "minimatch": "^3.0.4", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - } - } - }, - "@fluentui/accessibility": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/accessibility/-/accessibility-0.51.7.tgz", - "integrity": "sha512-EcAlEsc63+UezUpO94bO41/8QY2X/B3MztLE2HTNumaUhfUNfd4veVAZwHxDcXaAP2SGXyEFuUa0pmuB2dR+HA==", - "requires": { - "@babel/runtime": "^7.10.4", - "@fluentui/keyboard-key": "^0.2.7", - "lodash": "^4.17.15" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@fluentui/date-time-utilities": { - "version": "7.9.1", - "resolved": "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-7.9.1.tgz", - "integrity": "sha512-o8iU1VIY+QsqVRWARKiky29fh4KR1xaKSgMClXIi65qkt8EDDhjmlzL0KVDEoDA2GWukwb/1PpaVCWDg4v3cUQ==", - "requires": { - "@uifabric/set-version": "^7.0.24", - "tslib": "^1.10.0" + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" } }, - "@fluentui/dom-utilities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-1.1.2.tgz", - "integrity": "sha512-XqPS7l3YoMwxdNlaYF6S2Mp0K3FmVIOIy2K3YkMc+eRxu9wFK6emr2Q/3rBhtG5u/On37NExRT7/5CTLnoi9gw==", - "requires": { - "@uifabric/set-version": "^7.0.24", - "tslib": "^1.10.0" + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "@fluentui/keyboard-key": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.2.17.tgz", - "integrity": "sha512-iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q==", - "requires": { - "tslib": "^1.10.0" + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "@fluentui/react-bindings": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-bindings/-/react-bindings-0.51.7.tgz", - "integrity": "sha512-Gp+70GYZHtrQz/480kR+qII9RMHXM+dorKnVj6D7C1/3r6iBoGPVGgRZROuOG1YOmlrM8nbZDb1VX1EqKCdNlQ==", - "requires": { + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz", + "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "dependencies": { + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/devtools": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/devtools/-/devtools-0.2.1.tgz", + "integrity": "sha512-8PHJLbD6VhBh+LJ1uty/Bz30qs02NXCE5u8WpOhSewlYXUWl03GNXknr9AS2yaAWJEQaY27x7eByJs44gODBcw==", + "peerDependencies": { + "@floating-ui/dom": ">=1.5.4" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.11", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.11.tgz", + "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "dependencies": { + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", + "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==" + }, + "node_modules/@fluentui/accessibility": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/accessibility/-/accessibility-0.66.5.tgz", + "integrity": "sha512-W+QPr0oJ+YmBN8lDK0wps2D9FczlfWAHdQKJn85HN05mLxc2/Js2o/3N7oCKyFH6/B+h+ZheFt5RNa6UJd3IQQ==", + "dependencies": { "@babel/runtime": "^7.10.4", - "@emotion/serialize": "^0.11.16", - "@fluentui/accessibility": "^0.51.7", - "@fluentui/keyboard-key": "^0.2.7", - "@fluentui/react-component-event-listener": "^0.51.7", - "@fluentui/react-component-ref": "^0.51.7", - "@fluentui/react-compose": "^0.12.5", - "@fluentui/react-northstar-fela-renderer": "^0.51.7", - "@fluentui/react-northstar-styles-renderer": "^0.51.7", - "@fluentui/state": "^0.51.7", - "@fluentui/styles": "^0.51.7", - "@quid/stylis-plugin-focus-visible": "^4.0.0", - "@uifabric/utilities": "^7.24.5", + "lodash": "^4.17.15" + } + }, + "node_modules/@fluentui/date-time-utilities": { + "version": "8.6.9", + "resolved": "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.6.9.tgz", + "integrity": "sha512-dgOlVm4nXBWDLqijmvn4iAtyv1hVpQZjN6p0So74BW+7ASUTkQGe3lf8PHV/OjBiXfZa4qwONvmTQBGCheNU0w==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + } + }, + "node_modules/@fluentui/dom-utilities": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.3.7.tgz", + "integrity": "sha512-AaTR9BhJEF0i042NS1Ju8l95f24p2tBMq6jVVbUEDtYnKaxWnpv8R9eYjOwy8SDniQc1ino+BkolIgCVXXvDmw==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + } + }, + "node_modules/@fluentui/fluent2-theme": { + "version": "8.107.105", + "resolved": "https://registry.npmjs.org/@fluentui/fluent2-theme/-/fluent2-theme-8.107.105.tgz", + "integrity": "sha512-PE+ID1aOwUQxvevpp3A2WtkGDSKqtMOZuO+UUeWLe/CsFNJgqUXjwLJDFnWKoXv+f7zOdxXq+XhlbC8FQSjZmw==", + "dependencies": { + "@fluentui/react": "^8.121.2", + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + } + }, + "node_modules/@fluentui/fluent2-theme/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/font-icons-mdl2": { + "version": "8.5.52", + "resolved": "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.52.tgz", + "integrity": "sha512-2ISEqYNmGVp5Z3Bt9h93/DJKIHmVrWXcKHu6fVPLUdF9hJM/Nz9HZnZWicw0gxa2BH8VU9JSe82PyOELtzfl8A==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/utilities": "^8.15.17", + "tslib": "^2.1.0" + } + }, + "node_modules/@fluentui/foundation-legacy": { + "version": "8.4.18", + "resolved": "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.4.18.tgz", + "integrity": "sha512-TN1E848L3jcsF4Im7ALgihYK+IEpD6hHMwaPYU59nQe2S26Sw84sX3zd5dbCLUNZ62tXIhA/m0QxBn51CV9pYg==", + "dependencies": { + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/utilities": "^8.15.17", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/keyboard-key": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.23.tgz", + "integrity": "sha512-9GXeyUqNJUdg5JiQUZeGPiKnRzMRi9YEUn1l9zq6X/imYdMhxHrxpVZS12129cBfgvPyxt9ceJpywSfmLWqlKA==", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@fluentui/keyboard-keys": { + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/@fluentui/keyboard-keys/-/keyboard-keys-9.0.7.tgz", + "integrity": "sha512-vaQ+lOveQTdoXJYqDQXWb30udSfTVcIuKk1rV0X0eGAgcHeSDeP1HxMy+OgHOQZH3OiBH4ZYeWxb+tmfiDiygQ==", + "dependencies": { + "@swc/helpers": "^0.5.1" + } + }, + "node_modules/@fluentui/merge-styles": { + "version": "8.6.13", + "resolved": "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.6.13.tgz", + "integrity": "sha512-IWgvi2CC+mcQ7/YlCvRjsmHL2+PUz7q+Pa2Rqk3a+QHN0V1uBvgIbKk5y/Y/awwDXy1yJHiqMCcDHjBNmS1d4A==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + } + }, + "node_modules/@fluentui/priority-overflow": { + "version": "9.1.13", + "resolved": "https://registry.npmjs.org/@fluentui/priority-overflow/-/priority-overflow-9.1.13.tgz", + "integrity": "sha512-yDojVpkhBZTXOYExrCgW1GXbw3x9pYIS617xlNJIc2t06Cd3H32y2p51QXFt94sBmlVyAvPu7UKBHaq1Yw7u+w==", + "dependencies": { + "@swc/helpers": "^0.5.1" + } + }, + "node_modules/@fluentui/react": { + "version": "8.106.4", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.106.4.tgz", + "integrity": "sha512-Lq/FJa8ww8mRI5/1xzl/DvV96DLRm210g1Oe1PL3i5rsTuOIY4ZqcjffNEVLztSemm2u2sRoZUS/wQnUcWi1Xw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.5.5", + "@fluentui/font-icons-mdl2": "^8.5.12", + "@fluentui/foundation-legacy": "^8.2.32", + "@fluentui/merge-styles": "^8.5.6", + "@fluentui/react-focus": "^8.8.18", + "@fluentui/react-hooks": "^8.6.18", + "@fluentui/react-portal-compat-context": "^9.0.4", + "@fluentui/react-window-provider": "^2.2.7", + "@fluentui/set-version": "^8.2.5", + "@fluentui/style-utilities": "^8.9.5", + "@fluentui/theme": "^2.6.24", + "@fluentui/utilities": "^8.13.8", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-accordion": { + "version": "9.5.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-accordion/-/react-accordion-9.5.5.tgz", + "integrity": "sha512-4zwtmZTcD2jgjxbMTHajhMxRNkFFHIXG060dSVoK73H4vWLKtDYuwQJesfgi2swUim+xhemvcInrLXIoY8pLZw==", + "dependencies": { + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-motion": "^9.5.2", + "@fluentui/react-motion-components-preview": "^0.1.4", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-alert": { + "version": "9.0.0-beta.124", + "resolved": "https://registry.npmjs.org/@fluentui/react-alert/-/react-alert-9.0.0-beta.124.tgz", + "integrity": "sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==", + "dependencies": { + "@fluentui/react-avatar": "^9.6.29", + "@fluentui/react-button": "^9.3.83", + "@fluentui/react-icons": "^2.0.239", + "@fluentui/react-jsx-runtime": "^9.0.39", + "@fluentui/react-tabster": "^9.21.5", + "@fluentui/react-theme": "^9.1.19", + "@fluentui/react-utilities": "^9.18.10", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-aria": { + "version": "9.13.6", + "resolved": "https://registry.npmjs.org/@fluentui/react-aria/-/react-aria-9.13.6.tgz", + "integrity": "sha512-/bepLd2SKL+WHhiHJ8O/Lt+1FxvVeGB+pgbUuSjtPVwafwcA4RNXVlkMQaoYk8sQvnG4oqVa4ToTxUWURaOeNA==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-utilities": "^9.18.15", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-avatar": { + "version": "9.6.39", + "resolved": "https://registry.npmjs.org/@fluentui/react-avatar/-/react-avatar-9.6.39.tgz", + "integrity": "sha512-of2XMrwTZ4xKsiPEgayJupeI29dAiNBbWos4MCzBJaBS6u9BcaHRenSyzDFViC4jFyvoJQDqftWYThaSwH3PHw==", + "dependencies": { + "@fluentui/react-badge": "^9.2.43", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-popover": "^9.9.21", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-tooltip": "^9.4.39", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-badge": { + "version": "9.2.43", + "resolved": "https://registry.npmjs.org/@fluentui/react-badge/-/react-badge-9.2.43.tgz", + "integrity": "sha512-E+J08RIj2UZ5daq1kN+IgOCf5x4VVnFQTO+XI2bXsqoc/6wFHS2FZ8I7pNQqkWbvZ6cspR7cG7S8RfTR5pQz1Q==", + "dependencies": { + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-bindings": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-bindings/-/react-bindings-0.66.5.tgz", + "integrity": "sha512-1kvkW2vi+lip9GT8CMlNewkJ/PcnZM0L+hFY+gU3Hz7yXrBAAEHMPbizFR0iPV6xs0BRIucVAPepa47gyTNRkg==", + "dependencies": { + "@babel/runtime": "^7.10.4", + "@fluentui/accessibility": "^0.66.5", + "@fluentui/dom-utilities": "^1.1.1", + "@fluentui/react-component-event-listener": "^0.66.5", + "@fluentui/react-component-ref": "^0.66.5", + "@fluentui/react-northstar-fela-renderer": "^0.66.5", + "@fluentui/react-northstar-styles-renderer": "^0.66.5", + "@fluentui/state": "^0.66.5", + "@fluentui/styles": "^0.66.5", "classnames": "^2.2.6", "lodash": "^4.17.15", "prop-types": "^15.7.2", - "react-is": "^16.6.3", - "stylis": "^3.5.4", - "stylis-plugin-rtl": "^1.0.0" + "react-is": "^17.0.2" }, + "peerDependencies": { + "react": "^16.8.0 || ^17", + "react-dom": "^16.8.0 || ^17", + "scheduler": "^0.19.0 || ^0.20.0" + } + }, + "node_modules/@fluentui/react-bindings/node_modules/@fluentui/dom-utilities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-1.1.2.tgz", + "integrity": "sha512-XqPS7l3YoMwxdNlaYF6S2Mp0K3FmVIOIy2K3YkMc+eRxu9wFK6emr2Q/3rBhtG5u/On37NExRT7/5CTLnoi9gw==", "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" } }, - "@fluentui/react-component-event-listener": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-component-event-listener/-/react-component-event-listener-0.51.7.tgz", - "integrity": "sha512-NjVm+crN0T9A7vITL8alZeHnuV8zi2gos0nezU/2YOxaUAB9E4zKiPxt/6k5U50rJs/gj8Nu45iXxnjO41HbZg==", - "requires": { + "node_modules/@fluentui/react-bindings/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@fluentui/react-breadcrumb": { + "version": "9.0.39", + "resolved": "https://registry.npmjs.org/@fluentui/react-breadcrumb/-/react-breadcrumb-9.0.39.tgz", + "integrity": "sha512-Y/d3+qwco1WPB/t7BpEES1LIqBrR1A/7r4jdVuNylgiK5OoRRDgRdu7+7ecT0sjnfyhHwv+PnImtXIOnGyKgrQ==", + "dependencies": { + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-button": "^9.3.92", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-link": "^9.2.32", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-button": { + "version": "9.3.92", + "resolved": "https://registry.npmjs.org/@fluentui/react-button/-/react-button-9.3.92.tgz", + "integrity": "sha512-awMMtr3MnXB5Q8ItYJ6s4k5U3RKJImm8qAh0Zm/quK1Aj62fKa4Ro/P+dMzKhi+86VmE9wqVwWr9vim/MHGgow==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-card": { + "version": "9.0.94", + "resolved": "https://registry.npmjs.org/@fluentui/react-card/-/react-card-9.0.94.tgz", + "integrity": "sha512-TUzQLdCFcBkESgj6fVRH201OHvYPWB1n8b7unDSX5VjxcnHT8MKu2DWj5KHFmVaEd6sNEgNm58qiAGGjTSvkgg==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-text": "^9.4.25", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-checkbox": { + "version": "9.2.37", + "resolved": "https://registry.npmjs.org/@fluentui/react-checkbox/-/react-checkbox-9.2.37.tgz", + "integrity": "sha512-qNJIsZaTqD7vYz547bp14q/nXd5le1bZKApR0NORVf6qLfID0/B5hJ48pUpQV03HrbgBFf8ZiVGzHfwwfHZiLQ==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-label": "^9.1.76", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-combobox": { + "version": "9.13.8", + "resolved": "https://registry.npmjs.org/@fluentui/react-combobox/-/react-combobox-9.13.8.tgz", + "integrity": "sha512-+QuiFt1P93JwjtAy2b0cXah9BT0h9I2T1+fm4aX9j1sWME/r5XI/gGgYT15+PvAjxmBxcabYtd+VYYB0MKUoxw==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-portal": "^9.4.35", + "@fluentui/react-positioning": "^9.15.9", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-component-event-listener": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-event-listener/-/react-component-event-listener-0.66.5.tgz", + "integrity": "sha512-vYwGD7qYZH5DiH/uHPCgAnSybFdc+jlFBmrOwDWTN7GD6FVFgfStyV5sar1YfTqUE/fAT95I7xI5QKevRU2szw==", + "dependencies": { "@babel/runtime": "^7.10.4" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" } }, - "@fluentui/react-component-nesting-registry": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-component-nesting-registry/-/react-component-nesting-registry-0.51.7.tgz", - "integrity": "sha512-uuzYi8/SWAhj78z6nirDGWZYRJEmXqmeBZP+KR58m/kmQ1nq5YMZADw06JlrUqW/UMk6SKkUpHRAKYrT4NGJkw==", - "requires": { + "node_modules/@fluentui/react-component-nesting-registry": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-nesting-registry/-/react-component-nesting-registry-0.66.5.tgz", + "integrity": "sha512-Bird0+09/POb4SIvuptfEEp2RumXWQgfNbtS2IEPoinwKyXFVhefZc9sVXHob250JKPen4DNvwp+0MPt7CBDTA==", + "dependencies": { "@babel/runtime": "^7.10.4", "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17", + "react-dom": "^16.8.0 || ^17" } }, - "@fluentui/react-component-ref": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-component-ref/-/react-component-ref-0.51.7.tgz", - "integrity": "sha512-CX27jVJYaFoBCWpuWAizQZ2se137ku1dmDyn8sw+ySNJa+kkQf7LnMydiPW5K7cRdUSqUJW3eS4EjKRvVAx8xA==", - "requires": { + "node_modules/@fluentui/react-component-ref": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-ref/-/react-component-ref-0.66.5.tgz", + "integrity": "sha512-0dKTIo6BQZZbfN/mwzkm9e+blI1Rh1fLurBDqFsgrKb9PAj+jvxWaCMnrYgLmYtkzP/0XbLW6hKEZUuNRUsXvQ==", + "dependencies": { "@babel/runtime": "^7.10.4", - "react-is": "^16.6.3" + "react-is": "^17.0.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" } }, - "@fluentui/react-compose": { - "version": "0.12.8", - "resolved": "https://registry.npmjs.org/@fluentui/react-compose/-/react-compose-0.12.8.tgz", - "integrity": "sha512-YutUjnFzDrd5gfpi2ID0GqrGZTKTckWUqdStScIe/P9oG5IaeHN49JMQmOrSq3tFAW/gnt1fFKddhrxdCO3vBA==", - "requires": { + "node_modules/@fluentui/react-components": { + "version": "9.54.17", + "resolved": "https://registry.npmjs.org/@fluentui/react-components/-/react-components-9.54.17.tgz", + "integrity": "sha512-brnvcEGQG+S16hc9o+cXB9EEJmpicjP1+plYBuc5xKtz2Ljo1fAijM5MGP/pwMcQUU0GATFiVkIzvGwyD7y5aQ==", + "dependencies": { + "@fluentui/react-accordion": "^9.5.5", + "@fluentui/react-alert": "9.0.0-beta.124", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-avatar": "^9.6.39", + "@fluentui/react-badge": "^9.2.43", + "@fluentui/react-breadcrumb": "^9.0.39", + "@fluentui/react-button": "^9.3.92", + "@fluentui/react-card": "^9.0.94", + "@fluentui/react-checkbox": "^9.2.37", + "@fluentui/react-combobox": "^9.13.8", + "@fluentui/react-dialog": "^9.11.16", + "@fluentui/react-divider": "^9.2.75", + "@fluentui/react-drawer": "^9.5.16", + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-image": "^9.1.73", + "@fluentui/react-infobutton": "9.0.0-beta.102", + "@fluentui/react-infolabel": "^9.0.46", + "@fluentui/react-input": "^9.4.89", + "@fluentui/react-label": "^9.1.76", + "@fluentui/react-link": "^9.2.32", + "@fluentui/react-menu": "^9.14.16", + "@fluentui/react-message-bar": "^9.2.12", + "@fluentui/react-motion": "^9.5.2", + "@fluentui/react-overflow": "^9.1.30", + "@fluentui/react-persona": "^9.2.98", + "@fluentui/react-popover": "^9.9.21", + "@fluentui/react-portal": "^9.4.35", + "@fluentui/react-positioning": "^9.15.9", + "@fluentui/react-progress": "^9.1.87", + "@fluentui/react-provider": "^9.17.4", + "@fluentui/react-radio": "^9.2.32", + "@fluentui/react-rating": "^9.0.19", + "@fluentui/react-search": "^9.0.18", + "@fluentui/react-select": "^9.1.87", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-skeleton": "^9.1.16", + "@fluentui/react-slider": "^9.1.94", + "@fluentui/react-spinbutton": "^9.2.88", + "@fluentui/react-spinner": "^9.4.14", + "@fluentui/react-swatch-picker": "^9.1.10", + "@fluentui/react-switch": "^9.1.94", + "@fluentui/react-table": "^9.15.18", + "@fluentui/react-tabs": "^9.5.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-tag-picker": "^9.3.4", + "@fluentui/react-tags": "^9.3.18", + "@fluentui/react-teaching-popover": "^9.1.18", + "@fluentui/react-text": "^9.4.25", + "@fluentui/react-textarea": "^9.3.88", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-toast": "^9.3.56", + "@fluentui/react-toolbar": "^9.2.6", + "@fluentui/react-tooltip": "^9.4.39", + "@fluentui/react-tree": "^9.8.2", + "@fluentui/react-utilities": "^9.18.15", + "@fluentui/react-virtualizer": "9.0.0-alpha.85", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-compose": { + "version": "0.19.24", + "resolved": "https://registry.npmjs.org/@fluentui/react-compose/-/react-compose-0.19.24.tgz", + "integrity": "sha512-4PO7WSIZjwBGObpknjK8d1+PhPHJGSlVSXKFHGEoBjLWVlCTMw6Xa1S4+3K6eE3TEBbe9rsqwwocMTFHjhWwtQ==", + "dependencies": { "@types/classnames": "^2.2.9", - "@uifabric/set-version": "^7.0.19", - "@uifabric/utilities": "^7.25.1", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.2", "classnames": "^2.2.6", "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0" } }, - "@fluentui/react-context-selector": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-context-selector/-/react-context-selector-0.51.7.tgz", - "integrity": "sha512-WLadFGSg9RHjlKGFK2WCV7eqKwZYOEOr6WHPmCTE8fBjDUbabsHU4U9J4OePPCIq/hSr0/8EfNPIjHqzXwofrg==", - "requires": { - "@babel/runtime": "^7.10.4" + "node_modules/@fluentui/react-compose/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@fluentui/react-context-selector": { + "version": "9.1.67", + "resolved": "https://registry.npmjs.org/@fluentui/react-context-selector/-/react-context-selector-9.1.67.tgz", + "integrity": "sha512-1jpOjt3NVOlyLcMY/nycyhyXvcPw57+0gkF7Eln4c9Hb2xFUlsAFX0x8MDLNsvyjGgKekLX9p+tPt9TUENWPOw==", + "dependencies": { + "@fluentui/react-utilities": "^9.18.15", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0", + "scheduler": ">=0.19.0 <=0.23.0" } }, - "@fluentui/react-focus": { - "version": "7.18.1", - "resolved": "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.18.1.tgz", - "integrity": "sha512-WXXkMR3t5mr9m5hg5vRWH/JZ+kaZmbuTGpTA7E7uc+Ag/RZfG/uVN+ZwBdDpP6Xg7+6f3wlkGCBtY/UDcW6qmw==", - "requires": { - "@fluentui/keyboard-key": "^0.2.12", - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/set-version": "^7.0.24", - "@uifabric/styling": "^7.20.0", - "@uifabric/utilities": "^7.33.5", - "tslib": "^1.10.0" + "node_modules/@fluentui/react-dialog": { + "version": "9.11.16", + "resolved": "https://registry.npmjs.org/@fluentui/react-dialog/-/react-dialog-9.11.16.tgz", + "integrity": "sha512-PP15i+mN6XI7knfrdTNexNHtGLBNbf7WmJZGiXZViBWrlGEAUyxdRqmNwQEXwz0xYduqMX7ddEw26e/Ag/BzwA==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-motion": "^9.5.2", + "@fluentui/react-portal": "^9.4.35", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" } }, - "@fluentui/react-icons-northstar": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-icons-northstar/-/react-icons-northstar-0.51.7.tgz", - "integrity": "sha512-9p0DQcGng+CA/sTnjxxaGWC8CH/OhwZCIEwp3srMeIkPaeWG7jKIOCTjRh87l5XhaeaYds6b88zET7axAHoXvw==", - "requires": { + "node_modules/@fluentui/react-divider": { + "version": "9.2.75", + "resolved": "https://registry.npmjs.org/@fluentui/react-divider/-/react-divider-9.2.75.tgz", + "integrity": "sha512-pWWJH7ZLG4sHcfhwUO5nnhA0TsGK/JlSkcyEnndK76umQlWAzLrN4JWEHKTWplUIIa6STKWObAYPXkiTnkLEkQ==", + "dependencies": { + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-drawer": { + "version": "9.5.16", + "resolved": "https://registry.npmjs.org/@fluentui/react-drawer/-/react-drawer-9.5.16.tgz", + "integrity": "sha512-GORGm43E981KHfg2HB/picUwpf3BbdwcfPUVslAdyqaR2A6OJ+fQGKjGDcHn/CPIfgPsg0wHVpVTkvJLTt/BzA==", + "dependencies": { + "@fluentui/react-dialog": "^9.11.16", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-motion": "^9.5.2", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-field": { + "version": "9.1.76", + "resolved": "https://registry.npmjs.org/@fluentui/react-field/-/react-field-9.1.76.tgz", + "integrity": "sha512-eV1MKB97lgvgiVEps9OakqXXeLGHTdLSK7Zd/QmD4HzSSV/XapRLCw+7fITBoG19Tp8AVkGbZI753iPPOv9RZA==", + "dependencies": { + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-label": "^9.1.76", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-file-type-icons": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/@fluentui/react-file-type-icons/-/react-file-type-icons-8.12.1.tgz", + "integrity": "sha512-0dMwz8L0lMXyjO3Oi6sZofA9XoDgq9aF2ca8+CJmm+6W2e8cfSzOFwwXHt9pLoUK1pfPGp5/BN97Q2pkYDH1Ew==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-focus": { + "version": "8.9.15", + "resolved": "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.9.15.tgz", + "integrity": "sha512-obc9ql31gSLnCHpNbUA9JLTHUr8076/fsDXNYNDI6DsF30cZ0YdJJLUU0TQfXG1ZRaE2Hkjhp2H3iJ42hmyFQw==", + "dependencies": { + "@fluentui/keyboard-key": "^0.4.23", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/utilities": "^8.15.17", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-hooks": { + "version": "8.8.14", + "resolved": "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.8.14.tgz", + "integrity": "sha512-WfJIrxqb1yFi8VkJp8cwUEbNUDTwGKxwIXekXkmsMcVYRMTlHcg1entFDQJlQxfzL5zfNfHlryEoieaqKOCaoA==", + "dependencies": { + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/utilities": "^8.15.17", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-icons": { + "version": "2.0.260", + "resolved": "https://registry.npmjs.org/@fluentui/react-icons/-/react-icons-2.0.260.tgz", + "integrity": "sha512-5lmkXukfnkeFG3rWCCf5nX5Sn2jsqR0IDJJ7FUwWdx9C4Jd+zfbh9PdzWnFSR/kpQBFwvpkxyyau3w8tqQK77Q==", + "dependencies": { + "@griffel/react": "^1.0.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-icons-northstar": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-icons-northstar/-/react-icons-northstar-0.66.5.tgz", + "integrity": "sha512-b/0JqY48pb/tGur76DvH9sI9mnPucP1zFZYWH9jy4tcizE6JWgNviSoXuI0JUoj+O63sbj2DMMRlIK2hqMLHgQ==", + "dependencies": { "@babel/runtime": "^7.10.4", - "@fluentui/accessibility": "^0.51.7", - "@fluentui/react-bindings": "^0.51.7", - "@fluentui/styles": "^0.51.7", + "@fluentui/accessibility": "^0.66.5", + "@fluentui/react-bindings": "^0.66.5", + "@fluentui/styles": "^0.66.5", "classnames": "^2.2.6" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17", + "react-dom": "^16.8.0 || ^17" } }, - "@fluentui/react-northstar": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-northstar/-/react-northstar-0.51.7.tgz", - "integrity": "sha512-dwOUQqCgWqqO7YL/SodXM30ue+PLxdvmU8qv2uWc04XwzckiQuFaPU9kRWI6LgQUaN9VgqglO+CmfgrmLI1PmA==", - "requires": { + "node_modules/@fluentui/react-image": { + "version": "9.1.73", + "resolved": "https://registry.npmjs.org/@fluentui/react-image/-/react-image-9.1.73.tgz", + "integrity": "sha512-aVpillfiEIqqlyQGGFf17WtiKKFhhGyUMVUv3zLksick/5kifk7zdAW623PA8mpeQf6U1tSPJc8iaXSwr+5cwQ==", + "dependencies": { + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-infobutton": { + "version": "9.0.0-beta.102", + "resolved": "https://registry.npmjs.org/@fluentui/react-infobutton/-/react-infobutton-9.0.0-beta.102.tgz", + "integrity": "sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==", + "dependencies": { + "@fluentui/react-icons": "^2.0.237", + "@fluentui/react-jsx-runtime": "^9.0.36", + "@fluentui/react-label": "^9.1.68", + "@fluentui/react-popover": "^9.9.6", + "@fluentui/react-tabster": "^9.21.0", + "@fluentui/react-theme": "^9.1.19", + "@fluentui/react-utilities": "^9.18.7", + "@griffel/react": "^1.5.14", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-infolabel": { + "version": "9.0.46", + "resolved": "https://registry.npmjs.org/@fluentui/react-infolabel/-/react-infolabel-9.0.46.tgz", + "integrity": "sha512-sDJDlRLroP+9XOj76mpLBpyUVng/+cJDPVNuNvJtS7JBVCs9owlQlq8RBcKFzdbLNh7GZgpi2qe0kUPCNOZYOQ==", + "dependencies": { + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-label": "^9.1.76", + "@fluentui/react-popover": "^9.9.21", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-input": { + "version": "9.4.89", + "resolved": "https://registry.npmjs.org/@fluentui/react-input/-/react-input-9.4.89.tgz", + "integrity": "sha512-O6THfgikbwpPgUYBcQBXbQ1dHpP6qY1P31gb7+epaX54AJMuo0xeANfSMBBhTkbLshyn6AS9OMOwrc/Zkvmfew==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-jsx-runtime": { + "version": "9.0.44", + "resolved": "https://registry.npmjs.org/@fluentui/react-jsx-runtime/-/react-jsx-runtime-9.0.44.tgz", + "integrity": "sha512-cnFjiFaztl3zV2bL/Pgsa/dvLES/gNzSKkBUD3ShWeaEi7LbInc3+tnCcttBSTSNdLh8mcuzQkUCImVSD857VA==", + "dependencies": { + "@fluentui/react-utilities": "^9.18.15", + "@swc/helpers": "^0.5.1", + "react-is": "^17.0.2" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "react": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-label": { + "version": "9.1.76", + "resolved": "https://registry.npmjs.org/@fluentui/react-label/-/react-label-9.1.76.tgz", + "integrity": "sha512-7lqil5XIYkxSQNy/GEqFypAo0eQyjYIPYu0LO2z8UPCuRyaItHA/ArSc3GnyIL/naY9Wz1EG2WvakLbgB+PkGg==", + "dependencies": { + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-link": { + "version": "9.2.32", + "resolved": "https://registry.npmjs.org/@fluentui/react-link/-/react-link-9.2.32.tgz", + "integrity": "sha512-BsjDm8ixFMoh+7Hi7WRgDxLEKYj61gc0VjCs9ah0JxJoM1o+OoJhXKc29a13qRJHMSB3Gfndw6nYCineRPcFiA==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-menu": { + "version": "9.14.16", + "resolved": "https://registry.npmjs.org/@fluentui/react-menu/-/react-menu-9.14.16.tgz", + "integrity": "sha512-q0FVqSjTXQL8jO6Zf+fTFRbJglGBQS7dfkINZ966p9Kqq7zyHFMuaadXil2TpTkGcpo/Qva3wlFJoEeHki2PLQ==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-portal": "^9.4.35", + "@fluentui/react-positioning": "^9.15.9", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-message-bar": { + "version": "9.2.12", + "resolved": "https://registry.npmjs.org/@fluentui/react-message-bar/-/react-message-bar-9.2.12.tgz", + "integrity": "sha512-d18VBkEJnKqhhkiuxzoan91BEt/x/at6/pR6TH0sn9C7Snvxu88Ywl2ZrKEpaNUAvG0Ww3qE0lNepm/fOEuR+g==", + "dependencies": { + "@fluentui/react-button": "^9.3.92", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1", + "react-transition-group": "^4.4.1" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-migration-v8-v9": { + "version": "9.6.33", + "resolved": "https://registry.npmjs.org/@fluentui/react-migration-v8-v9/-/react-migration-v8-v9-9.6.33.tgz", + "integrity": "sha512-yE8jKcjOflCG+pGmnIOqa9Xm08M/RHt2TBlEMwZk/oPhsHV4S7vgdrWDwVXzEMf0xqZ7n59JaXuJqBGR1dWxwQ==", + "dependencies": { + "@ctrl/tinycolor": "3.3.4", + "@fluentui/fluent2-theme": "^8.107.101", + "@fluentui/react": "^8.120.9", + "@fluentui/react-components": "^9.54.17", + "@fluentui/react-hooks": "^8.8.12", + "@fluentui/react-icons": "^2.0.245", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-migration-v8-v9/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-motion": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/@fluentui/react-motion/-/react-motion-9.5.2.tgz", + "integrity": "sha512-43Y1ZXhGxts8RIqOSyD7FXLAZl6Xyy4aQQuneXQJihY3vgsgMBtaEuQ9ZS2Ewo3zYJAf1kgZK+Q7OdQ3M9jmEg==", + "dependencies": { + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-utilities": "^9.18.15", + "@swc/helpers": "^0.5.1", + "react-is": "^17.0.2" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-motion-components-preview": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@fluentui/react-motion-components-preview/-/react-motion-components-preview-0.1.4.tgz", + "integrity": "sha512-nVZNKf+VDOAswQtWv7ZWBpPCZYApALBR/AK+F+TlRPx7qjij1ZOCUq5qtXfAV/mmomeeTHVtI1zKLBtNQIQ43A==", + "dependencies": { + "@fluentui/react-motion": "*", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-northstar": { + "version": "0.66.0", + "resolved": "https://registry.npmjs.org/@fluentui/react-northstar/-/react-northstar-0.66.0.tgz", + "integrity": "sha512-VK4P7I0pkxOfOBFvCgXV6+LZpSZyYeh46kkqHCZpUHci2lRSQixS4tBWHC1tVtIIOh0UaL13rgyxL4eEDqT/Og==", + "dependencies": { "@babel/runtime": "^7.10.4", - "@fluentui/accessibility": "^0.51.7", + "@fluentui/accessibility": "^0.66.0", "@fluentui/dom-utilities": "^1.1.1", - "@fluentui/keyboard-key": "^0.2.7", - "@fluentui/react-bindings": "^0.51.7", - "@fluentui/react-component-event-listener": "^0.51.7", - "@fluentui/react-component-nesting-registry": "^0.51.7", - "@fluentui/react-component-ref": "^0.51.7", - "@fluentui/react-context-selector": "^0.51.7", - "@fluentui/react-icons-northstar": "^0.51.7", - "@fluentui/react-northstar-styles-renderer": "^0.51.7", - "@fluentui/react-proptypes": "^0.51.7", - "@fluentui/state": "^0.51.7", - "@fluentui/styles": "^0.51.7", - "@popperjs/core": "^2.4.2", - "@uifabric/utilities": "^7.24.5", + "@fluentui/react-bindings": "^0.66.0", + "@fluentui/react-component-event-listener": "^0.66.0", + "@fluentui/react-component-nesting-registry": "^0.66.0", + "@fluentui/react-component-ref": "^0.66.0", + "@fluentui/react-icons-northstar": "^0.66.0", + "@fluentui/react-northstar-styles-renderer": "^0.66.0", + "@fluentui/react-portal-compat-context": "^9.0.4", + "@fluentui/react-proptypes": "^0.66.0", + "@fluentui/state": "^0.66.0", + "@fluentui/styles": "^0.66.0", + "@popperjs/core": "~2.4.3", + "body-scroll-lock": "^3.1.5", "classnames": "^2.2.6", "compute-scroll-into-view": "1.0.11", "downshift": "5.0.5", "lodash": "^4.17.15", "prop-types": "^15.7.2", - "react-is": "^16.6.3", - "react-transition-group": "^4.3.0" + "react-is": "^17.0.2", + "react-transition-group": "^4.4.1" }, - "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } + "peerDependencies": { + "react": "^16.8.0 || ^17", + "react-dom": "^16.8.0 || ^17" } }, - "@fluentui/react-northstar-fela-renderer": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-northstar-fela-renderer/-/react-northstar-fela-renderer-0.51.7.tgz", - "integrity": "sha512-/8nSoZVxhgzcK4DWqp0c+2PV2VZybF4I0DhJYVb352wH+tU4PNaL5eP6gP58MHCsO6192KnBYC2MZEg+0aXHlw==", - "requires": { + "node_modules/@fluentui/react-northstar-fela-renderer": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-northstar-fela-renderer/-/react-northstar-fela-renderer-0.66.5.tgz", + "integrity": "sha512-aJTl2btXp0l832IRBvXezZX/TVsQwkn0rwZ+8n8PvTcyf6yAOkxMH5OG6wPwBe2vmoTo5pQ63FeOmk4LXSlUYA==", + "dependencies": { "@babel/runtime": "^7.10.4", - "@fluentui/react-northstar-styles-renderer": "^0.51.7", - "@fluentui/styles": "^0.51.7", + "@fluentui/react-northstar-styles-renderer": "^0.66.5", + "@fluentui/styles": "^0.66.5", "css-in-js-utils": "^3.0.0", "fela": "^10.6.1", + "fela-dom": "^11.7.0", "fela-plugin-embedded": "^10.6.1", "fela-plugin-fallback-value": "^10.6.1", "fela-plugin-placeholder-prefixer": "^10.6.1", "fela-plugin-rtl": "^10.6.1", - "fela-utils": "^10.6.1", + "fela-tools": "^10.6.1", + "fela-utils": "^11.7.0", "inline-style-expand-shorthand": "^1.2.0", "lodash": "^4.17.15", - "react-fela": "^10.6.1", "stylis": "^3.5.4" }, + "peerDependencies": { + "react": "^16.8.0 || ^17", + "react-dom": "^16.8.0 || ^17" + } + }, + "node_modules/@fluentui/react-northstar-fela-renderer/node_modules/stylis": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", + "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" + }, + "node_modules/@fluentui/react-northstar-styles-renderer": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-northstar-styles-renderer/-/react-northstar-styles-renderer-0.66.5.tgz", + "integrity": "sha512-MNaF+1e2PoNbpuQ9hMXapAklW+vref75ajJvkxGDwfik22RbRjDs7pRRV/z2umAAIgksH3oK9RUk3cfxQE1Yqw==", "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - } - }, - "@fluentui/react-northstar-styles-renderer": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-northstar-styles-renderer/-/react-northstar-styles-renderer-0.51.7.tgz", - "integrity": "sha512-oah7sOstbrbx8guepPpvOmLD65xmwgx9rN0KjogOxDiMYidN4eaEAVl36mQfWs1wE+Mo5iAPRj2eNtqX4bVUqg==", - "requires": { "@babel/runtime": "^7.10.4", - "@fluentui/styles": "^0.51.7" + "@fluentui/styles": "^0.66.5" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17" } }, - "@fluentui/react-proptypes": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/react-proptypes/-/react-proptypes-0.51.7.tgz", - "integrity": "sha512-gzfNddyRKmZ8qqZkV+wUl58HEySW7o2DzP5mgE0aAMA3qWkyIPRSo/tvMVx4A1AsgeJ2LhNkAHGek8T0D8PA0Q==", - "requires": { + "node_modules/@fluentui/react-northstar/node_modules/@fluentui/dom-utilities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-1.1.2.tgz", + "integrity": "sha512-XqPS7l3YoMwxdNlaYF6S2Mp0K3FmVIOIy2K3YkMc+eRxu9wFK6emr2Q/3rBhtG5u/On37NExRT7/5CTLnoi9gw==", + "dependencies": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + } + }, + "node_modules/@fluentui/react-northstar/node_modules/@popperjs/core": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.4.4.tgz", + "integrity": "sha512-1oO6+dN5kdIA3sKPZhRGJTfGVP4SWV6KqlMOwry4J3HfyD68sl/3KmG7DeYUzvN+RbhXDnv/D8vNNB8168tAMg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@fluentui/react-northstar/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@fluentui/react-overflow": { + "version": "9.1.30", + "resolved": "https://registry.npmjs.org/@fluentui/react-overflow/-/react-overflow-9.1.30.tgz", + "integrity": "sha512-4r0/YQaSX00OWeQwWsW9cctloTom1GguSaDRTxg2qMdwwr8gr9ZEni4LbCXJfH6soCNFzurnwdSeNOg4ogyT+g==", + "dependencies": { + "@fluentui/priority-overflow": "^9.1.13", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-persona": { + "version": "9.2.98", + "resolved": "https://registry.npmjs.org/@fluentui/react-persona/-/react-persona-9.2.98.tgz", + "integrity": "sha512-PpgHB1puW1GwwgvPtSwMMUs+CpP3mQCRivHmWq6sf609rZZyV+ItGf4IzEdCDa+rD2GvkN53zfcFU9RJtrJwPg==", + "dependencies": { + "@fluentui/react-avatar": "^9.6.39", + "@fluentui/react-badge": "^9.2.43", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-popover": { + "version": "9.9.21", + "resolved": "https://registry.npmjs.org/@fluentui/react-popover/-/react-popover-9.9.21.tgz", + "integrity": "sha512-7pM/+vaSFDc6fFc8gCHw44aX4EKUyz3jAZXXEzUwg6cjQfJrK42Pfq6EAt0ZzftJdmdOXXTBToI3tqRA7ENlSA==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-portal": "^9.4.35", + "@fluentui/react-positioning": "^9.15.9", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-portal": { + "version": "9.4.35", + "resolved": "https://registry.npmjs.org/@fluentui/react-portal/-/react-portal-9.4.35.tgz", + "integrity": "sha512-b0OTtFUmbHOU41wbRITqe3Wlqx3zpmXXUUsFh0KtSTKsMrWy2a2jtl7ZToNRsFfa3opwKsvlk+ohRT5CkDyQ4w==", + "dependencies": { + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1", + "use-disposable": "^1.0.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-portal-compat-context": { + "version": "9.0.12", + "resolved": "https://registry.npmjs.org/@fluentui/react-portal-compat-context/-/react-portal-compat-context-9.0.12.tgz", + "integrity": "sha512-5AVXWX9GnbvwnJZYUb4LSIF7BsI/N8oTI6+7Yn0w6B3yaWykA8Menlz757X5tgVBjouEj4Eom+AoVvA7u8gPDA==", + "dependencies": { + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "react": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-positioning": { + "version": "9.15.9", + "resolved": "https://registry.npmjs.org/@fluentui/react-positioning/-/react-positioning-9.15.9.tgz", + "integrity": "sha512-X/0Fv3XxRdvOMLUgrL9T9RsIB8FQUgwfT9joQsldK4g2KUiRxpQcmGBO6+kOOB2CjakDrGLxlL5TWTwjibLJQQ==", + "dependencies": { + "@floating-ui/devtools": "0.2.1", + "@floating-ui/dom": "^1.2.0", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-progress": { + "version": "9.1.87", + "resolved": "https://registry.npmjs.org/@fluentui/react-progress/-/react-progress-9.1.87.tgz", + "integrity": "sha512-B3XK5hZgJDvKTQ536bDCvN8r6RjuA0ndlHjihAzjXefm5u990nEEI0FgjZcIlezEUGfWi5YPo3i3W17KjQ2QCA==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-proptypes": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/react-proptypes/-/react-proptypes-0.66.5.tgz", + "integrity": "sha512-fGm/VOMIt6Ej5WDA7sPqV5MIHHKg4CYoH1mOnOSkgh9Ezpw5zJ3008L+rLb2EJMFxmEF3Gvgg5D0JXaIsx/XBQ==", + "dependencies": { "@babel/runtime": "^7.10.4", "lodash": "^4.17.15", "prop-types": "^15.7.2" - }, - "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } } }, - "@fluentui/react-window-provider": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-1.0.2.tgz", - "integrity": "sha512-fGSgL3Vp/+6t1Ysfz21FWZmqsU+iFVxOigvHnm5uKVyyRPwtaabv/F6kQ2y5isLMI2YmJaUd2i0cDJKu8ggrvw==", - "requires": { + "node_modules/@fluentui/react-provider": { + "version": "9.17.4", + "resolved": "https://registry.npmjs.org/@fluentui/react-provider/-/react-provider-9.17.4.tgz", + "integrity": "sha512-BjnB8ZSuRPS2h6FP1RiMaR+hiTaX5iogqYktULhFYDeN8DoA6RDkLGrPcaaGqYQTIVKKAJUqN18QoPmh8WBh6A==", + "dependencies": { + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/core": "^1.16.0", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-radio": { + "version": "9.2.32", + "resolved": "https://registry.npmjs.org/@fluentui/react-radio/-/react-radio-9.2.32.tgz", + "integrity": "sha512-KwpK7rn+ATsRPRLXeNzHreCeoLQnMWIW+GzPfAoaHm3NI/cwQSqSdEItbUnWKq7i8evJpyGbPSooboMwlCo9Zw==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-label": "^9.1.76", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-rating": { + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@fluentui/react-rating/-/react-rating-9.0.19.tgz", + "integrity": "sha512-c1/tEJXx2DpDeJ8r1AbrCtRQb+4RlM9tMoQDuHqLxscmrrxvvKCbjqCOvA/myiMczuAsp2z6Fvlc4LESjdqxpA==", + "dependencies": { + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-search": { + "version": "9.0.18", + "resolved": "https://registry.npmjs.org/@fluentui/react-search/-/react-search-9.0.18.tgz", + "integrity": "sha512-bUxi28d8KfrKKaG61n5YXE/A7qrp6amwrn/+iJo9PXYN4FlY8FAjYQ9vZOjR+1yWmNbaSisuZHKA7IisrmahEQ==", + "dependencies": { + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-input": "^9.4.89", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-select": { + "version": "9.1.87", + "resolved": "https://registry.npmjs.org/@fluentui/react-select/-/react-select-9.1.87.tgz", + "integrity": "sha512-LlREKNfCxpXh9j1D27FL/WLgoJs5vKK4HBFpAr4FGII0OFIl2wMCb7SpeaBziuPQU7EnEjeqHlG2hN5oVARoJw==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-shared-contexts": { + "version": "9.20.1", + "resolved": "https://registry.npmjs.org/@fluentui/react-shared-contexts/-/react-shared-contexts-9.20.1.tgz", + "integrity": "sha512-QoduMl+QkZ3FEyiSc+rCBbCLY88L/uX8o/eXoJOI0v1px/+5iYkCIUlQPiU9nCGjAI+C8AmG4pIJ7h5iLUlAyQ==", + "dependencies": { + "@fluentui/react-theme": "^9.1.20", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "react": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-skeleton": { + "version": "9.1.16", + "resolved": "https://registry.npmjs.org/@fluentui/react-skeleton/-/react-skeleton-9.1.16.tgz", + "integrity": "sha512-bRRB3DOxmX1lM1dAayAsIpVZU2rIOzlHpO7yVV9LhWGnGnfNRhYCcM3WSQXhdCmGdUSbb02lSo85PYB/JyW9Zw==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-slider": { + "version": "9.1.94", + "resolved": "https://registry.npmjs.org/@fluentui/react-slider/-/react-slider-9.1.94.tgz", + "integrity": "sha512-7US332rPd6rH8KRFP3TvAwxMGx/UKJo/Bv0i9rtszNPDi0nF1988uvvj1sfC4MA2I343ASajs+lnaav14BUa9g==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-spinbutton": { + "version": "9.2.88", + "resolved": "https://registry.npmjs.org/@fluentui/react-spinbutton/-/react-spinbutton-9.2.88.tgz", + "integrity": "sha512-UDsPhLOqQieGzPF5a9WNTB3qo49y65rhjNd7Fq1j2Vc003P02USl4MyonTkPugsNoMm30slxgErym5bLj3Cbug==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-spinner": { + "version": "9.4.14", + "resolved": "https://registry.npmjs.org/@fluentui/react-spinner/-/react-spinner-9.4.14.tgz", + "integrity": "sha512-CT38dZhvXWxcUWZaL0jwuxj5P0ttQp4Njx3ZhIXn87/8HIxGGT9QOirBjp+1nGq5gA5q1AYyPy4sbrcculA48Q==", + "dependencies": { + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-label": "^9.1.76", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-stylesheets": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/@fluentui/react-stylesheets/-/react-stylesheets-0.2.9.tgz", + "integrity": "sha512-6GDU/cUEG/eJ4owqQXDWPmP5L1zNh2NLEDKdEzxd7cWtGnoXLeMjbs4vF4t5wYGzGaxZmUQILOvJdgCIuc9L9Q==", + "dependencies": { "@uifabric/set-version": "^7.0.24", "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0" } }, - "@fluentui/state": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/state/-/state-0.51.7.tgz", - "integrity": "sha512-sTCv3hnEpmWW/hjw+vmloaslNnYmFYeN8J9uJzYBGVi9NKKLvXtMKeoaikAXBVpnmMknl67VCapjauF0NxXDjQ==", - "requires": { + "node_modules/@fluentui/react-stylesheets/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@fluentui/react-swatch-picker": { + "version": "9.1.10", + "resolved": "https://registry.npmjs.org/@fluentui/react-swatch-picker/-/react-swatch-picker-9.1.10.tgz", + "integrity": "sha512-3vymANhAbyD+iV0ENQe4atX0lEDqFfgO5uQzrVl7jQdfmkaBmuzdlqPJ9Tl/wyEsiEys3+1JkgDiS0MoOrTTlg==", + "dependencies": { + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-switch": { + "version": "9.1.94", + "resolved": "https://registry.npmjs.org/@fluentui/react-switch/-/react-switch-9.1.94.tgz", + "integrity": "sha512-MXsOmfGHc9b/JEwplZi7LHmk7t8c/rzgK5Z9Avpbj19+sNsHJlnyl7IwLEVJHwxgO3r5dp1fgPbsmUdEoBEyOg==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-label": "^9.1.76", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-table": { + "version": "9.15.18", + "resolved": "https://registry.npmjs.org/@fluentui/react-table/-/react-table-9.15.18.tgz", + "integrity": "sha512-JbQeo8JW3o6kZ/01ynouCv6kTA22+lOUnig5h6npbuxTc8pR8erJ0a+D384a80o+vjN26ww1KXhCpkJLDWG6Bg==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-avatar": "^9.6.39", + "@fluentui/react-checkbox": "^9.2.37", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-radio": "^9.2.32", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-tabs": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/@fluentui/react-tabs/-/react-tabs-9.5.1.tgz", + "integrity": "sha512-tBPyIvTvQnDtTtvWW7qgmK9Wz4DUEZU7MUmG6/n5aKluzutiCA7uC33xa8ndUibxEBSMiVJVHL7VTeo/+1/3eQ==", + "dependencies": { + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-tabster": { + "version": "9.22.7", + "resolved": "https://registry.npmjs.org/@fluentui/react-tabster/-/react-tabster-9.22.7.tgz", + "integrity": "sha512-ITvm69INou9WGVN+l+iJhYFZ+8zEgP++IKu7/oUxOfjNYzqDzEm3Q8u4oxdlv9ofVGT1qXZhA7jSDE6DOnlXmA==", + "dependencies": { + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1", + "keyborg": "^2.6.0", + "tabster": "^8.0.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-tag-picker": { + "version": "9.3.4", + "resolved": "https://registry.npmjs.org/@fluentui/react-tag-picker/-/react-tag-picker-9.3.4.tgz", + "integrity": "sha512-eV6snlflC9LCZeqrhPDU/p9OeXC/Kb5CX502/N6yuT25GcV1u3pePvPBKG4ac090nSlC54/GgYBmCHS5m5+r4w==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-combobox": "^9.13.8", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-portal": "^9.4.35", + "@fluentui/react-positioning": "^9.15.9", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-tags": "^9.3.18", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-tags": { + "version": "9.3.18", + "resolved": "https://registry.npmjs.org/@fluentui/react-tags/-/react-tags-9.3.18.tgz", + "integrity": "sha512-DSZJx95xeF3Hhw5VardJAAApeGdR9BHZt+oJmZl0qdHPShQTh9g848kSXy94iwK2xU3VWfenBWPSk+LqEIwxxg==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-avatar": "^9.6.39", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-teaching-popover": { + "version": "9.1.18", + "resolved": "https://registry.npmjs.org/@fluentui/react-teaching-popover/-/react-teaching-popover-9.1.18.tgz", + "integrity": "sha512-v2HMRMj9etIUPs8G+pfv57SODwjTnZ9trNoSq5IfM5Fh1Rg6TnFAUGweWA2k0M0JKtRXkCixOCqNUiBXen0zXw==", + "dependencies": { + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-button": "^9.3.92", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-popover": "^9.9.21", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1", + "use-sync-external-store": "^1.2.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-text": { + "version": "9.4.25", + "resolved": "https://registry.npmjs.org/@fluentui/react-text/-/react-text-9.4.25.tgz", + "integrity": "sha512-PVEDG1X3z3C8igtI2g2bTSiWPWmzF/6lT2yB70W+lsWmI5+L54aW0rNF2/GOls25N/+MHRAGBIk5SmMWW+SH8g==", + "dependencies": { + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-textarea": { + "version": "9.3.88", + "resolved": "https://registry.npmjs.org/@fluentui/react-textarea/-/react-textarea-9.3.88.tgz", + "integrity": "sha512-gjSgqvstE2vxUdY11Yw/zcFkXhZ5cAy/GJWppqhLV9KnBT4nTeT7ODmz44qMekJ1rNtwBx8Gk7RJe9HVhKbZTQ==", + "dependencies": { + "@fluentui/react-field": "^9.1.76", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-theme": { + "version": "9.1.20", + "resolved": "https://registry.npmjs.org/@fluentui/react-theme/-/react-theme-9.1.20.tgz", + "integrity": "sha512-Rh3N2ewCBlY9q+bucEKfii7sovp03HgZvN4Xwg8gbnVWA9zgX0QyTTPR+ynV+kMuwP1OiGmGHOiO+daz1k1dbg==", + "dependencies": { + "@fluentui/tokens": "1.0.0-alpha.17", + "@swc/helpers": "^0.5.1" + } + }, + "node_modules/@fluentui/react-theme-provider": { + "version": "0.19.16", + "resolved": "https://registry.npmjs.org/@fluentui/react-theme-provider/-/react-theme-provider-0.19.16.tgz", + "integrity": "sha512-Kf7z4ZfNLS/onaFL5eQDSlizgwy2ytn6SDyjEKV+9VhxIXdDtOh8AaMXWE7dsj1cRBfBUvuGPVnsnoaGdHxJ+A==", + "dependencies": { + "@fluentui/react-compose": "^0.19.24", + "@fluentui/react-stylesheets": "^0.2.9", + "@fluentui/react-window-provider": "^1.0.6", + "@fluentui/theme": "^1.7.13", + "@uifabric/merge-styles": "^7.20.2", + "@uifabric/react-hooks": "^7.16.4", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.2", + "classnames": "^2.2.6", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0" + } + }, + "node_modules/@fluentui/react-theme-provider/node_modules/@fluentui/react-window-provider": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-1.0.6.tgz", + "integrity": "sha512-m2HoxhU2m/yWxUauf79y+XZvrrWNx+bMi7ZiL6DjiAKHjTSa8KOyvicbOXd/3dvuVzOaNTnLDdZAvhRFcelOIA==", + "dependencies": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "@types/react-dom": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0", + "react-dom": ">=16.8.0 <18.0.0" + } + }, + "node_modules/@fluentui/react-theme-provider/node_modules/@fluentui/theme": { + "version": "1.7.13", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-1.7.13.tgz", + "integrity": "sha512-/1ZDHZNzV7Wgohay47DL9TAH4uuib5+B2D6Rxoc3T6ULoWcFzwLeVb+VZB/WOCTUbG+NGTrmsWPBOz5+lbuOxA==", + "dependencies": { + "@uifabric/merge-styles": "^7.20.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.2", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "@types/react-dom": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0", + "react-dom": ">=16.8.0 <18.0.0" + } + }, + "node_modules/@fluentui/react-theme-provider/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@fluentui/react-toast": { + "version": "9.3.56", + "resolved": "https://registry.npmjs.org/@fluentui/react-toast/-/react-toast-9.3.56.tgz", + "integrity": "sha512-L3zHGTh32D5tACTCKnXAx4cdXWnY9zBFOVUl/Qpm1PdP4i/4mn4khNRmHDbN9U30a2VyxGWKiU/zQ70NuoMd+w==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-motion": "^9.5.2", + "@fluentui/react-portal": "^9.4.35", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-toolbar": { + "version": "9.2.6", + "resolved": "https://registry.npmjs.org/@fluentui/react-toolbar/-/react-toolbar-9.2.6.tgz", + "integrity": "sha512-G+rFX0vuufM+GZVIdcFn15kdVYw2+j32rj3jHHwAbT1wx8W6OVSR0opVGcJTwYAuKXq39J/1sHEcwbX4vAG0TQ==", + "dependencies": { + "@fluentui/react-button": "^9.3.92", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-divider": "^9.2.75", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-radio": "^9.2.32", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-tooltip": { + "version": "9.4.39", + "resolved": "https://registry.npmjs.org/@fluentui/react-tooltip/-/react-tooltip-9.4.39.tgz", + "integrity": "sha512-j424ZG4stTg3UbWUb1lYIteBCO37TB4pYNnX8ARLeaAE7kdQTD/t5GEDD2fyVhYYi097xJhUA4jMhsPig06Jow==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-portal": "^9.4.35", + "@fluentui/react-positioning": "^9.15.9", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-tree": { + "version": "9.8.2", + "resolved": "https://registry.npmjs.org/@fluentui/react-tree/-/react-tree-9.8.2.tgz", + "integrity": "sha512-b4Zfq+pMQIgHGoQA6V6AnehnmOKoV8KMxNpUOn/73N16NphbhrI8KnsVph1Wst/pLT/7p6ANdKt9nnE9SMai/A==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-aria": "^9.13.6", + "@fluentui/react-avatar": "^9.6.39", + "@fluentui/react-button": "^9.3.92", + "@fluentui/react-checkbox": "^9.2.37", + "@fluentui/react-context-selector": "^9.1.67", + "@fluentui/react-icons": "^2.0.245", + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-motion": "^9.5.2", + "@fluentui/react-motion-components-preview": "^0.1.4", + "@fluentui/react-radio": "^9.2.32", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-tabster": "^9.22.7", + "@fluentui/react-theme": "^9.1.20", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-utilities": { + "version": "9.18.15", + "resolved": "https://registry.npmjs.org/@fluentui/react-utilities/-/react-utilities-9.18.15.tgz", + "integrity": "sha512-eJX6nyfHFRR6cZ3bi9c7s8rxIo6wCQE+phFzLqBke+RUV+p3Hwf6zW1IBVWauoaQKwPAW5RdWRYZrahqwo4DOA==", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.7", + "@fluentui/react-shared-contexts": "^9.20.1", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "react": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-virtualizer": { + "version": "9.0.0-alpha.85", + "resolved": "https://registry.npmjs.org/@fluentui/react-virtualizer/-/react-virtualizer-9.0.0-alpha.85.tgz", + "integrity": "sha512-zdwqj3sLH1TeMwgXNFOVsWtWrH/zD4vmq1s/WkbB4Wu5h/CeemQEN3//WVpz0AB3cZGvcPiTitKH12AfaCqXIQ==", + "dependencies": { + "@fluentui/react-jsx-runtime": "^9.0.44", + "@fluentui/react-shared-contexts": "^9.20.1", + "@fluentui/react-utilities": "^9.18.15", + "@griffel/react": "^1.5.22", + "@swc/helpers": "^0.5.1" + }, + "peerDependencies": { + "@types/react": ">=16.14.0 <19.0.0", + "@types/react-dom": ">=16.9.0 <19.0.0", + "react": ">=16.14.0 <19.0.0", + "react-dom": ">=16.14.0 <19.0.0" + } + }, + "node_modules/@fluentui/react-window-provider": { + "version": "2.2.28", + "resolved": "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.28.tgz", + "integrity": "sha512-YdZ74HTaoDwlvLDzoBST80/17ExIl93tLJpTxnqK5jlJOAUVQ+mxLPF2HQEJq+SZr5IMXHsQ56w/KaZVRn72YA==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/scheme-utilities": { + "version": "8.3.62", + "resolved": "https://registry.npmjs.org/@fluentui/scheme-utilities/-/scheme-utilities-8.3.62.tgz", + "integrity": "sha512-yEJHEmXC8MVKYvobumnIF8TUO1mM07ibSa1gTU5TgwaJTpBo6Gk3qyvdRJSWXDXmLwdZDblZLs71SR2fpj1w8g==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "@fluentui/theme": "^2.6.61", + "tslib": "^2.1.0" + } + }, + "node_modules/@fluentui/set-version": { + "version": "8.2.23", + "resolved": "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.23.tgz", + "integrity": "sha512-VPXaBsiaa3Xn/AY40nLU9bvDQ62lpMVnFzFTlQ8CbpdwrjxNlRxDUY5vRToNzp1+Zu5gD/+CgsXqIZGcry5L5w==", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@fluentui/state": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/state/-/state-0.66.5.tgz", + "integrity": "sha512-ohQW+FSdCQZAhNtx4Tqu15K3dlPX3S4sOR4r6/9j1LysEn6R4uUGixIfDcxuNOt9TgixmmE1kJen8PFivVMYjw==", + "dependencies": { "@babel/runtime": "^7.10.4" } }, - "@fluentui/styles": { - "version": "0.51.7", - "resolved": "https://registry.npmjs.org/@fluentui/styles/-/styles-0.51.7.tgz", - "integrity": "sha512-u4l6U47KaMM1mO1q5o9ORJLKj2yMTD/c5hwzLaxbFBf9V50aIeNNI9t/Fqphwiu+cft8T0lBLMFqR9kzxWsBIQ==", - "requires": { - "@babel/runtime": "^7.10.4", - "csstype": "^2.6.7", - "lodash": "^4.17.15" - }, + "node_modules/@fluentui/style-utilities": { + "version": "8.11.1", + "resolved": "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.11.1.tgz", + "integrity": "sha512-thMNOzA+sawp/ntey/UCLgi/wU5mxtaF0BnXnS6MO1pPBOandPY8DoH9JWO1SMajGzX/iUAjdiezUgH4a+IhTA==", "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/set-version": "^8.2.23", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" } }, - "@fluentui/theme": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-1.7.4.tgz", - "integrity": "sha512-o4eo7lstLxxXl1g2RR9yz18Yt8yjQO/LbQuZjsiAfv/4Bf0CRnb+3j1F7gxIdBWAchKj9gzaMpIFijfI98pvYQ==", - "requires": { - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/set-version": "^7.0.24", - "@uifabric/utilities": "^7.33.5", - "tslib": "^1.10.0" + "node_modules/@fluentui/styles": { + "version": "0.66.5", + "resolved": "https://registry.npmjs.org/@fluentui/styles/-/styles-0.66.5.tgz", + "integrity": "sha512-9EAj2oS922qZ/FFag0tzaBmrnuoN0LKR1SS0MpZcpdB/62kHd+XbkHmpIH4KYVthbf1YrYQtuIoZNozfYD9iTQ==", + "dependencies": { + "@babel/runtime": "^7.10.4", + "csstype": "^3.0.2", + "lodash": "^4.17.15" } }, - "@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "node_modules/@fluentui/theme": { + "version": "2.6.61", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.61.tgz", + "integrity": "sha512-a9P0iRwlBukdn0pXyscL88iIiMg10IUUwKt1v1rip53KqWzrMTo2CxiJ8ZtEAXdyd0pm89MbxnYtWNC37U8BVw==", + "dependencies": { + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/set-version": "^8.2.23", + "@fluentui/utilities": "^8.15.17", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/tokens": { + "version": "1.0.0-alpha.17", + "resolved": "https://registry.npmjs.org/@fluentui/tokens/-/tokens-1.0.0-alpha.17.tgz", + "integrity": "sha512-tD+sHoY9u31SrgnWOl1XwWawCUQEgLWZkR+WiQbekoj2s2RCe8aO6Bl33qkh+pcskThukBpcFU5lHwqqTgUKJA==", + "dependencies": { + "@swc/helpers": "^0.5.1" + } + }, + "node_modules/@fluentui/utilities": { + "version": "8.15.17", + "resolved": "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.15.17.tgz", + "integrity": "sha512-2eDPLuw1Yo1sxr14ObXG8B/7AOH1r0FAruMc1COm+WHpH+BsTtsQcZ53HdNLLH5jzDGr8cSEFKEhRBuMpd8kQw==", + "dependencies": { + "@fluentui/dom-utilities": "^2.3.7", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@fluentui/web-components": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@fluentui/web-components/-/web-components-2.6.1.tgz", + "integrity": "sha512-coyV+QZBVqcrJbncR2iyL0ZMXGFRJmP+JYUlewkYBt8bgmTMIwKBdUX0cN9S6KUp8JHoC2OSRqL8MYgT3T+YLQ==", + "dependencies": { + "@microsoft/fast-colors": "^5.3.0", + "@microsoft/fast-element": "^1.13.0", + "@microsoft/fast-foundation": "^2.49.6", + "@microsoft/fast-web-utilities": "^5.4.0", + "tslib": "^2.1.0" + } + }, + "node_modules/@griffel/core": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@griffel/core/-/core-1.18.0.tgz", + "integrity": "sha512-3Dkn6f7ULeSzJ1wLyLfN1vc+v3q5shuEejeMe4XymBozQo0l35WIfH8FWcwB+Xrgip4fLLOy1p3sYN85gFGZxw==", + "dependencies": { + "@emotion/hash": "^0.9.0", + "@griffel/style-types": "^1.2.0", + "csstype": "^3.1.3", + "rtl-css-js": "^1.16.1", + "stylis": "^4.2.0", + "tslib": "^2.1.0" + } + }, + "node_modules/@griffel/react": { + "version": "1.5.25", + "resolved": "https://registry.npmjs.org/@griffel/react/-/react-1.5.25.tgz", + "integrity": "sha512-ZGiCdn71VIX56fd3AxM7ouCxgClPvunOFIpXxFKebGJ94/rdj4sIbahuI1QBUFuU4/bqUyD6QonjDEpFBl9ORw==", + "dependencies": { + "@griffel/core": "^1.18.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "react": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@griffel/style-types": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@griffel/style-types/-/style-types-1.2.0.tgz", + "integrity": "sha512-x166MNw0vWe5l5qhinfNT4eyWOaP48iFzPyFOfIB0/BVidKTWsEe5PmqRJDDtrJFS3VHhd/tE0oM6tkEMh2tsg==", + "dependencies": { + "csstype": "^3.1.3" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", "dev": true }, - "@istanbuljs/load-nyc-config": { + "node_modules/@iconify/react": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@iconify/react/-/react-4.1.1.tgz", + "integrity": "sha512-jed14EjvKjee8mc0eoscGxlg7mSQRkwQG3iX3cPBCO7UlOjz0DtlvTqxqEcHUJGh+z1VJ31Yhu5B9PxfO0zbdg==", + "dependencies": { + "@iconify/types": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/cyberalien" + }, + "peerDependencies": { + "react": ">=16" + } + }, + "node_modules/@iconify/types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==" + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, - "requires": { + "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, - "dependencies": { - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "@istanbuljs/schema": { + "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "@jest/console": { + "node_modules/@jest/console": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/@jest/console/-/console-25.5.0.tgz", "integrity": "sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "chalk": "^3.0.0", "jest-message-util": "^25.5.0", "jest-util": "^25.5.0", "slash": "^3.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "@jest/core": { + "node_modules/@jest/core": { "version": "25.4.0", "resolved": "https://registry.npmjs.org/@jest/core/-/core-25.4.0.tgz", "integrity": "sha512-h1x9WSVV0+TKVtATGjyQIMJENs8aF6eUjnCoi4jyRemYZmekLr8EJOGQqTWEX8W6SbZ6Skesy9pGXrKeAolUJw==", "dev": true, - "requires": { + "dependencies": { "@jest/console": "^25.4.0", "@jest/reporters": "^25.4.0", "@jest/test-result": "^25.4.0", @@ -1446,102 +3424,60 @@ "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "@jest/environment": { + "node_modules/@jest/environment": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-25.5.0.tgz", "integrity": "sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==", "dev": true, - "requires": { + "dependencies": { "@jest/fake-timers": "^25.5.0", "@jest/types": "^25.5.0", "jest-mock": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" } }, - "@jest/fake-timers": { + "node_modules/@jest/fake-timers": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-25.5.0.tgz", "integrity": "sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "jest-message-util": "^25.5.0", "jest-mock": "^25.5.0", "jest-util": "^25.5.0", "lolex": "^5.0.0" + }, + "engines": { + "node": ">= 8.3" } }, - "@jest/globals": { + "node_modules/@jest/globals": { "version": "25.5.2", "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-25.5.2.tgz", "integrity": "sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==", "dev": true, - "requires": { + "dependencies": { "@jest/environment": "^25.5.0", "@jest/types": "^25.5.0", "expect": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" } }, - "@jest/reporters": { + "node_modules/@jest/reporters": { "version": "25.4.0", "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-25.4.0.tgz", "integrity": "sha512-bhx/buYbZgLZm4JWLcRJ/q9Gvmd3oUh7k2V7gA4ZYBx6J28pIuykIouclRdiAC6eGVX1uRZT+GK4CQJLd/PwPg==", "dev": true, - "requires": { + "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^25.4.0", "@jest/test-result": "^25.4.0", @@ -1560,146 +3496,152 @@ "jest-resolve": "^25.4.0", "jest-util": "^25.4.0", "jest-worker": "^25.4.0", - "node-notifier": "^6.0.0", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^3.1.0", "terminal-link": "^2.0.0", "v8-to-istanbul": "^4.1.3" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "node-notifier": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz", - "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==", - "dev": true, - "optional": true, - "requires": { - "growly": "^1.3.0", - "is-wsl": "^2.1.1", - "semver": "^6.3.0", - "shellwords": "^0.1.1", - "which": "^1.3.1" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "optional": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "optional": true, - "requires": { - "isexe": "^2.0.0" - } - } + "engines": { + "node": ">= 8.3" + }, + "optionalDependencies": { + "node-notifier": "^6.0.0" } }, - "@jest/source-map": { + "node_modules/@jest/reporters/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@jest/reporters/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@jest/reporters/node_modules/node-notifier": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz", + "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==", + "dev": true, + "optional": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.1.1", + "semver": "^6.3.0", + "shellwords": "^0.1.1", + "which": "^1.3.1" + } + }, + "node_modules/@jest/reporters/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "optional": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@jest/reporters/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-25.5.0.tgz", "integrity": "sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==", "dev": true, - "requires": { + "dependencies": { "callsites": "^3.0.0", "graceful-fs": "^4.2.4", "source-map": "^0.6.0" }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "engines": { + "node": ">= 8.3" } }, - "@jest/test-result": { + "node_modules/@jest/test-result": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-25.5.0.tgz", "integrity": "sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==", "dev": true, - "requires": { + "dependencies": { "@jest/console": "^25.5.0", "@jest/types": "^25.5.0", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": ">= 8.3" } }, - "@jest/test-sequencer": { + "node_modules/@jest/test-sequencer": { "version": "25.5.4", "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz", "integrity": "sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==", "dev": true, - "requires": { + "dependencies": { "@jest/test-result": "^25.5.0", "graceful-fs": "^4.2.4", "jest-haste-map": "^25.5.1", "jest-runner": "^25.5.4", "jest-runtime": "^25.5.4" + }, + "engines": { + "node": ">= 8.3" } }, - "@jest/transform": { + "node_modules/@jest/transform": { "version": "25.5.1", "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-25.5.1.tgz", "integrity": "sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==", "dev": true, - "requires": { + "dependencies": { "@babel/core": "^7.1.0", "@jest/types": "^25.5.0", "babel-plugin-istanbul": "^6.0.0", @@ -1717,185 +3659,170 @@ "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "@jest/types": { + "node_modules/@jest/types": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz", "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==", "dev": true, - "requires": { + "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^1.1.1", "@types/yargs": "^15.0.0", "chalk": "^3.0.0" }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/@jest/types/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "dev": true, "dependencies": { - "@types/yargs": { - "version": "15.0.16", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.16.tgz", - "integrity": "sha512-2FeD5qezW3FvLpZ0JpfuaEWepgNLl9b2gQYiz/ce0NhoB1W/D+VZu98phITXkADYerfr/jb7JcDcVhITsc9bwg==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "@types/yargs-parser": "*" } }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dev": true, - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "dev": true - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true - }, - "@jridgewell/source-map": { + "node_modules/@jridgewell/gen-mapping": { "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", - "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" } }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", - "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, - "requires": { + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "node_modules/@jsonjoy.com/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/json-pack": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz", + "integrity": "sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==", + "dev": true, + "dependencies": { + "@jsonjoy.com/base64": "^1.1.1", + "@jsonjoy.com/util": "^1.1.2", + "hyperdyperid": "^1.2.0", + "thingies": "^1.20.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/util": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.5.0.tgz", + "integrity": "sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", "dev": true }, - "@microsoft/api-extractor": { + "node_modules/@lit-labs/ssr-dom-shim": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.2.1.tgz", + "integrity": "sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==" + }, + "node_modules/@lit/reactive-element": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.3.tgz", + "integrity": "sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.0.0" + } + }, + "node_modules/@microsoft/api-extractor": { "version": "7.15.2", "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.15.2.tgz", "integrity": "sha512-/Y/n+QOc1vM6Vg3OAUByT/wXdZciE7jV3ay33+vxl3aKva5cNsuOauL14T7XQWUiLko3ilPwrcnFcEjzXpLsuA==", "dev": true, - "requires": { + "dependencies": { "@microsoft/api-extractor-model": "7.13.2", "@microsoft/tsdoc": "0.13.2", "@microsoft/tsdoc-config": "~0.15.2", @@ -1909,52 +3836,197 @@ "source-map": "~0.6.1", "typescript": "~4.2.4" }, - "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "typescript": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz", - "integrity": "sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==", - "dev": true - } + "bin": { + "api-extractor": "bin/api-extractor" } }, - "@microsoft/api-extractor-model": { + "node_modules/@microsoft/api-extractor-model": { "version": "7.13.2", "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.13.2.tgz", "integrity": "sha512-gA9Q8q5TPM2YYk7rLinAv9KqcodrmRC13BVmNzLswjtFxpz13lRh0BmrqD01/sddGpGMIuWFYlfUM4VSWxnggA==", "dev": true, - "requires": { + "dependencies": { "@microsoft/tsdoc": "0.13.2", "@microsoft/tsdoc-config": "~0.15.2", "@rushstack/node-core-library": "3.38.0" } }, - "@microsoft/decorators": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/decorators/-/decorators-1.11.0.tgz", - "integrity": "sha512-7q8a2FOQLtBneZKT/pxAKw7kkV8jb0Jr3zesRiWSxwPK9HBLiIpudF/L9/e5EmA8mRZVj142asQhIheQaF9HSA==", - "requires": { - "tslib": "~1.10.0" + "node_modules/@microsoft/api-extractor-model/node_modules/@rushstack/node-core-library": { + "version": "3.38.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.38.0.tgz", + "integrity": "sha512-cmvl0yQx8sSmbuXwiRYJi8TO+jpTtrLJQ8UmFHhKvgPVJAW8cV8dnpD1Xx/BvTGrJZ2XtRAIkAhBS9okBnap4w==", + "dev": true, + "dependencies": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" } }, - "@microsoft/gulp-core-build": { - "version": "3.18.0", - "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build/-/gulp-core-build-3.18.0.tgz", - "integrity": "sha512-XZfSfV360db1dWXc6sKjlAdDnBY3yz1GmnoBTqhFQJGY7c6yXaiS+pyihHDgCaQ+xg6bJadaS7i42Myl5n9JkQ==", + "node_modules/@microsoft/api-extractor/node_modules/@rushstack/node-core-library": { + "version": "3.38.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.38.0.tgz", + "integrity": "sha512-cmvl0yQx8sSmbuXwiRYJi8TO+jpTtrLJQ8UmFHhKvgPVJAW8cV8dnpD1Xx/BvTGrJZ2XtRAIkAhBS9okBnap4w==", "dev": true, - "requires": { + "dependencies": { + "@types/node": "10.17.13", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "timsort": "~0.3.0", + "z-schema": "~3.18.3" + } + }, + "node_modules/@microsoft/api-extractor/node_modules/typescript": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz", + "integrity": "sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/@microsoft/decorators": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/decorators/-/decorators-1.19.0.tgz", + "integrity": "sha512-F11xhR3diBLa9CtR1j+eg+GEHRG8H9rAhUOJgkv/MYVk+hn6xtLrEVsXiLdtzZQbhVO7sUmRB3uXrLrKdI6Hvg==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/eslint-config-spfx": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@microsoft/eslint-config-spfx/-/eslint-config-spfx-1.20.2.tgz", + "integrity": "sha512-M3kCrwCcuchdni6SFWbJ1SqKcZYzK3Lig98/xCqVzcp4s3FCFcfziUaMA+TfktEuHuSry+n6WYKFrH7SnucePA==", + "dev": true, + "dependencies": { + "@microsoft/eslint-plugin-spfx": "1.20.2", + "@rushstack/eslint-config": "4.0.2", + "@typescript-eslint/utils": "8.1.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/eslint-config-spfx/node_modules/@rushstack/eslint-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-config/-/eslint-config-4.0.2.tgz", + "integrity": "sha512-RFLynEk5hiGjgzFKephENrBWZZfoQe+3e76Q78KXjeGsndbaZXDHy0OxLfZethlEutDQEDiE3vpkbJ1mfcMeGg==", + "dev": true, + "dependencies": { + "@rushstack/eslint-patch": "1.10.4", + "@rushstack/eslint-plugin": "0.16.1", + "@rushstack/eslint-plugin-packlets": "0.9.2", + "@rushstack/eslint-plugin-security": "0.8.3", + "@typescript-eslint/eslint-plugin": "~8.1.0", + "@typescript-eslint/parser": "~8.1.0", + "@typescript-eslint/typescript-estree": "~8.1.0", + "@typescript-eslint/utils": "~8.1.0", + "eslint-plugin-promise": "~6.1.1", + "eslint-plugin-react": "~7.33.2", + "eslint-plugin-tsdoc": "~0.3.0" + }, + "peerDependencies": { + "eslint": "^8.57.0", + "typescript": ">=4.7.0" + } + }, + "node_modules/@microsoft/eslint-config-spfx/node_modules/@rushstack/eslint-plugin": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin/-/eslint-plugin-0.16.1.tgz", + "integrity": "sha512-e+VVtwBvuGqvVCcXUDTireQFfaIncmlD6rOBils0BeGkrLbP1r330/AFcRoYQEZUZpdhVxFtJrIq48HIlWBFzA==", + "dev": true, + "dependencies": { + "@rushstack/tree-pattern": "0.3.4", + "@typescript-eslint/utils": "~8.1.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/eslint-config-spfx/node_modules/@rushstack/eslint-plugin-security": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-security/-/eslint-plugin-security-0.8.3.tgz", + "integrity": "sha512-2l6bSIyTgaejiRPiFCsons/HA8sS7bKhmL/RHdAZo54jm/W/Xqb4zaFn4+OuMCNLASQhqXMc8FeYPF0V7t1Aow==", + "dev": true, + "dependencies": { + "@rushstack/tree-pattern": "0.3.4", + "@typescript-eslint/utils": "~8.1.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/eslint-plugin-spfx": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@microsoft/eslint-plugin-spfx/-/eslint-plugin-spfx-1.20.2.tgz", + "integrity": "sha512-GfBKb3Xm4n6qMezzU4A4kxZKIAMUUdTQvTCq5uhX96YxciR9Ao3SLu5CCW/hZasIlQHtIyqv6Aju1bRch2zSIw==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "8.1.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/fast-colors": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-colors/-/fast-colors-5.3.1.tgz", + "integrity": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" + }, + "node_modules/@microsoft/fast-element": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.13.0.tgz", + "integrity": "sha512-iFhzKbbD0cFRo9cEzLS3Tdo9BYuatdxmCEKCpZs1Cro/93zNMpZ/Y9/Z7SknmW6fhDZbpBvtO8lLh9TFEcNVAQ==" + }, + "node_modules/@microsoft/fast-foundation": { + "version": "2.49.6", + "resolved": "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-2.49.6.tgz", + "integrity": "sha512-DZVr+J/NIoskFC1Y6xnAowrMkdbf2d5o7UyWK6gW5AiQ6S386Ql8dw4KcC4kHaeE1yL2CKvweE79cj6ZhJhTvA==", + "dependencies": { + "@microsoft/fast-element": "^1.13.0", + "@microsoft/fast-web-utilities": "^5.4.1", + "tabbable": "^5.2.0", + "tslib": "^1.13.0" + } + }, + "node_modules/@microsoft/fast-foundation/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@microsoft/fast-web-utilities": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-5.4.1.tgz", + "integrity": "sha512-ReWYncndjV3c8D8iq9tp7NcFNc1vbVHvcBFPME2nNFKNbS1XCesYZGlIlf3ot5EmuOXPlrzUHOWzQ2vFpIkqDg==", + "dependencies": { + "exenv-es6": "^1.1.1" + } + }, + "node_modules/@microsoft/gulp-core-build": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build/-/gulp-core-build-3.19.0.tgz", + "integrity": "sha512-POjgRfNxo4ktYAcIh13zuhDfzlHtBYVPk+JjR1Pjqcxqq7qUULrcz8OBP3JMhhlz4Sx2dl8NlfCb01JmOEFy1A==", + "dev": true, + "dependencies": { "@jest/core": "~25.4.0", "@jest/reporters": "~25.4.0", "@rushstack/node-core-library": "~3.53.0", @@ -1975,13 +4047,12 @@ "glob-escape": "~0.0.2", "globby": "~5.0.0", "gulp": "~4.0.2", - "gulp-flatten": "~0.2.0", + "gulp-flatten": "~0.4.0", "gulp-if": "^2.0.1", "jest": "~25.4.0", "jest-cli": "~25.4.0", "jest-environment-jsdom": "~25.4.0", "jest-nunit-reporter": "~1.3.1", - "jsdom": "~11.11.0", "lodash.merge": "~4.6.2", "merge2": "~1.0.2", "node-notifier": "~10.0.1", @@ -1994,194 +4065,15 @@ "xml": "~1.0.1", "yargs": "~4.6.0", "z-schema": "~3.18.3" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.53.3", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz", - "integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==", - "dev": true, - "requires": { - "@types/node": "12.20.24", - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "z-schema": "~5.0.2" - }, - "dependencies": { - "@types/node": { - "version": "12.20.24", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", - "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@types/node": { - "version": "10.17.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", - "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "jest-cli": { - "version": "25.4.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.4.0.tgz", - "integrity": "sha512-usyrj1lzCJZMRN1r3QEdnn8e6E6yCx/QN7+B1sLoA68V7f3WlsxSSQfy0+BAwRiF4Hz2eHauf11GZG3PIfWTXQ==", - "dev": true, - "requires": { - "@jest/core": "^25.4.0", - "@jest/test-result": "^25.4.0", - "@jest/types": "^25.4.0", - "chalk": "^3.0.0", - "exit": "^0.1.2", - "import-local": "^3.0.2", - "is-ci": "^2.0.0", - "jest-config": "^25.4.0", - "jest-util": "^25.4.0", - "jest-validate": "^25.4.0", - "prompts": "^2.0.1", - "realpath-native": "^2.0.0", - "yargs": "^15.3.1" - }, - "dependencies": { - "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - } - } - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - } } }, - "@microsoft/gulp-core-build-sass": { - "version": "4.17.0", - "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-sass/-/gulp-core-build-sass-4.17.0.tgz", - "integrity": "sha512-0qvfoyflsW+D5tgi7KNJgNK2uXooAX6zwQ8mN55+fjN3ydUsAjXhzDVN28L5uIJdjIcl0q3wHAhEN6EbVul9yQ==", + "node_modules/@microsoft/gulp-core-build-sass": { + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-sass/-/gulp-core-build-sass-4.17.3.tgz", + "integrity": "sha512-4smOQasBaq6+DAcZ0xyswMn2lv+6AhZDX96nUmuJL13HtJaTElm3TL3C0qVV1wYsConSfxR1fa2xdysTKjxA+A==", "dev": true, - "requires": { - "@microsoft/gulp-core-build": "3.18.0", + "dependencies": { + "@microsoft/gulp-core-build": "3.19.0", "@microsoft/load-themed-styles": "~1.10.172", "@rushstack/node-core-library": "~3.53.0", "@types/gulp": "4.0.6", @@ -2192,629 +4084,210 @@ "postcss": "7.0.38", "postcss-modules": "~1.5.0", "sass": "1.44.0" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.53.3", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz", - "integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==", - "dev": true, - "requires": { - "@types/node": "12.20.24", - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "z-schema": "~5.0.2" - }, - "dependencies": { - "@types/node": { - "version": "12.20.24", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", - "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", - "dev": true - } - } - }, - "@types/node": { - "version": "10.17.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", - "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", - "dev": true - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "postcss": { - "version": "7.0.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.38.tgz", - "integrity": "sha512-wNrSHWjHDQJR/IZL5IKGxRtFgrYNaAA/UrkW2WqbtZO6uxSLMxMN+s2iqUMwnAWm3fMROlDYZB41dr0Mt7vBwQ==", - "dev": true, - "requires": { - "nanocolors": "^0.2.2", - "source-map": "^0.6.1" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } } }, - "@microsoft/gulp-core-build-serve": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-serve/-/gulp-core-build-serve-3.12.0.tgz", - "integrity": "sha512-72KkvlX2RC5cTpC1e0uhdQA1lXX/v2WKh/7XX1fQMd9kkc8qP6ht1XT39fSWyx7K4oeAsSJJJL9Em++AEIdLpQ==", + "node_modules/@microsoft/gulp-core-build-serve": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-serve/-/gulp-core-build-serve-3.13.0.tgz", + "integrity": "sha512-joWmXMkH7Cvypg/zEB2XyBuBQPF/VacLSHt6AbgN9ExF0rSRj+poT47XQlc9YvXA3zY67YOaW3sgVT18dZHlOQ==", "dev": true, - "requires": { - "@microsoft/gulp-core-build": "3.18.0", + "dependencies": { + "@microsoft/gulp-core-build": "3.19.0", "@rushstack/debug-certificate-manager": "~1.1.19", "@rushstack/node-core-library": "~3.53.0", "@types/node": "10.17.13", "colors": "~1.2.1", - "express": "~4.16.2", + "express": "~4.18.1", "gulp": "~4.0.2", "gulp-connect": "~5.7.0", "open": "8.4.2", "sudo": "~1.0.3", "through2": "~2.0.1" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.53.3", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz", - "integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==", - "dev": true, - "requires": { - "@types/node": "12.20.24", - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "z-schema": "~5.0.2" - }, - "dependencies": { - "@types/node": { - "version": "12.20.24", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", - "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", - "dev": true - } - } - }, - "@types/node": { - "version": "10.17.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", - "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", - "dev": true - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } } }, - "@microsoft/gulp-core-build-typescript": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-typescript/-/gulp-core-build-typescript-8.6.0.tgz", - "integrity": "sha512-aG9HgidikzswiX6a1xulhAaB3X8vqwFi/zKID0LEUDhshNqOcj5k04Atp+GNUM/VL28zTCJ5K9s7z6QxFaFiBQ==", + "node_modules/@microsoft/gulp-core-build-typescript": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-typescript/-/gulp-core-build-typescript-8.6.3.tgz", + "integrity": "sha512-WcNqHPDlsEScGSeUjtZPv2IS2ZeCE/JAXaQ3vtRFylFjppf9aP85V1fvHzwb+WJqtBNQ2JcC+kRx2XBDmC8w/A==", "dev": true, - "requires": { - "@microsoft/gulp-core-build": "3.18.0", + "dependencies": { + "@microsoft/gulp-core-build": "3.19.0", "@rushstack/node-core-library": "~3.53.0", "@types/node": "10.17.13", "decomment": "~0.9.1", "glob": "~7.0.5", "glob-escape": "~0.0.2", "resolve": "~1.17.0" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.53.3", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz", - "integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==", - "dev": true, - "requires": { - "@types/node": "12.20.24", - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "z-schema": "~5.0.2" - }, - "dependencies": { - "@types/node": { - "version": "12.20.24", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", - "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", - "dev": true - } - } - }, - "@types/node": { - "version": "10.17.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", - "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", - "dev": true - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } } }, - "@microsoft/gulp-core-build-webpack": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-webpack/-/gulp-core-build-webpack-5.4.0.tgz", - "integrity": "sha512-H6GoROBzKlQTu+qdDH6aaqt4NIsQ3wuYEbYHtChc4RFB464FePOWRI/rZyWE+q3O+MsqBzcuDACcLKZawaVezQ==", + "node_modules/@microsoft/gulp-core-build-webpack": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build-webpack/-/gulp-core-build-webpack-6.0.3.tgz", + "integrity": "sha512-B9t/FZKawVnrHKiP5bdzdl8cQ7IePKOYlEuPtwV0n9uJVgUTFAlNfo37zRz+bdt88z3hZnfAXEC+nhmvR84cyg==", "dev": true, - "requires": { - "@microsoft/gulp-core-build": "3.18.1", + "dependencies": { + "@microsoft/gulp-core-build": "3.19.0", "@types/gulp": "4.0.6", "@types/node": "10.17.13", "colors": "~1.2.1", "gulp": "~4.0.2", - "webpack": "~4.47.0" - }, + "webpack": "~5.88.1" + } + }, + "node_modules/@microsoft/load-themed-styles": { + "version": "1.10.295", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.295.tgz", + "integrity": "sha512-W+IzEBw8a6LOOfRJM02dTT7BDZijxm+Z7lhtOAz1+y9vQm1Kdz9jlAO+qCEKsfxtUOmKilW8DIRqFw2aUgKeGg==" + }, + "node_modules/@microsoft/mgt-components": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-components/-/mgt-components-3.1.3.tgz", + "integrity": "sha512-EwMBOhKGp3uF4BZyLmphDBumvy/gSx+10b2hO3LIZW78Ct2yA1aXcKWru2XNteWZf2U9fzvzdxiIEzhxvIBtHw==", "dependencies": { - "@microsoft/gulp-core-build": { - "version": "3.18.1", - "resolved": "https://registry.npmjs.org/@microsoft/gulp-core-build/-/gulp-core-build-3.18.1.tgz", - "integrity": "sha512-nktxVFJcBToR/lsXzgC1kJo+1RNxwJJDMPSb44vI1i0JIlnhnfrhUGD3v+0ZdukRZBE1snJ4E+sXE0uh8Jkevw==", - "dev": true, - "requires": { - "@jest/core": "~25.4.0", - "@jest/reporters": "~25.4.0", - "@rushstack/node-core-library": "~3.53.0", - "@types/chalk": "0.4.31", - "@types/gulp": "4.0.6", - "@types/jest": "25.2.1", - "@types/node": "10.17.13", - "@types/node-notifier": "8.0.2", - "@types/orchestrator": "0.0.30", - "@types/semver": "7.3.5", - "@types/through2": "2.0.32", - "@types/vinyl": "2.0.3", - "@types/yargs": "0.0.34", - "colors": "~1.2.1", - "del": "^2.2.2", - "end-of-stream": "~1.1.0", - "glob": "~7.0.5", - "glob-escape": "~0.0.2", - "globby": "~5.0.0", - "gulp": "~4.0.2", - "gulp-flatten": "~0.2.0", - "gulp-if": "^2.0.1", - "jest": "~25.4.0", - "jest-cli": "~25.4.0", - "jest-environment-jsdom": "~25.4.0", - "jest-nunit-reporter": "~1.3.1", - "jsdom": "~11.11.0", - "lodash.merge": "~4.6.2", - "merge2": "~1.0.2", - "node-notifier": "~10.0.1", - "object-assign": "~4.1.0", - "orchestrator": "~0.3.8", - "pretty-hrtime": "~1.0.2", - "semver": "~7.3.0", - "through2": "~2.0.1", - "vinyl": "~2.2.0", - "xml": "~1.0.1", - "yargs": "~4.6.0", - "z-schema": "~3.18.3" - } - }, - "@rushstack/node-core-library": { - "version": "3.53.3", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz", - "integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==", - "dev": true, - "requires": { - "@types/node": "12.20.24", - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "z-schema": "~5.0.2" - }, - "dependencies": { - "@types/node": { - "version": "12.20.24", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", - "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@types/node": { - "version": "10.17.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", - "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, + "@fluentui/web-components": "^2.5.12", + "@microsoft/mgt-element": "3.1.3", + "@microsoft/microsoft-graph-client": "3.0.2", + "@microsoft/microsoft-graph-types": "^2.0.0", + "@microsoft/microsoft-graph-types-beta": "^0.29.0-preview", + "office-ui-fabric-core": "^11.0.0" + } + }, + "node_modules/@microsoft/mgt-element": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-element/-/mgt-element-3.1.3.tgz", + "integrity": "sha512-Wvt/PO83MJrcV8Z/Tx0pnCeDB3yulHr5xCrxN47v1KLr7vXj8BFqK73g7PMSOJ0ptDvYB1GEoyYVPACrPPZR0Q==", + "dependencies": { + "@microsoft/microsoft-graph-client": "3.0.2", + "idb": "6.0.0", + "lit": "^2.3.1" + } + }, + "node_modules/@microsoft/mgt-react": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-react/-/mgt-react-3.1.3.tgz", + "integrity": "sha512-k6AuX0SzFkmRpFPzqsFb4f2KG+BIGCQ51VtuezupzBZk+aHYBQxSS2Unajkfs8boyYW3OLnhKbRQAnkoD1pJuA==", + "dependencies": { + "@microsoft/mgt-components": "3.1.3", + "@microsoft/mgt-element": "3.1.3", + "@microsoft/microsoft-graph-types": "^2.0.0", + "@microsoft/microsoft-graph-types-beta": "^0.29.0-preview", + "wc-react": "^0.5.0" + }, + "peerDependencies": { + "react": "^17.0.1 || ^18.0.0", + "react-dom": "^17.0.1 || ^18.0.0" + } + }, + "node_modules/@microsoft/mgt-sharepoint-provider": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-sharepoint-provider/-/mgt-sharepoint-provider-3.1.3.tgz", + "integrity": "sha512-kzhghGa9iIIxBCDnsNwwhE16XLJBxQbzYXarqgzZhkEMYOMralsWjJCUgBpMEjVsXfStgoNm0gRCqZMAPGNmVg==", + "dependencies": { + "@microsoft/mgt-element": "3.1.3" + } + }, + "node_modules/@microsoft/mgt-spfx": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-spfx/-/mgt-spfx-3.1.3.tgz", + "integrity": "sha512-3lg2sBiN38+yn4J/+3FHEO0qYs5Rzu/5eswyHGgo6BMyLbO4ILr9E6+ULs8FhIoAw0qGV6+GxicCkyFlAVhhJA==", + "dependencies": { + "@microsoft/mgt-components": "3.1.3", + "@microsoft/mgt-element": "3.1.3", + "@microsoft/mgt-sharepoint-provider": "3.1.3", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/microsoft-graph-client": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.2.tgz", + "integrity": "sha512-eYDiApYmiGsm1s1jfAa/rhB2xQCsX4pWt0vCTd1LZmiApMQfT/c0hXj2hvpuGz5GrcLdugbu05xB79rIV57Pjw==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "tslib": "^2.2.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependenciesMeta": { + "@azure/identity": { "optional": true }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "@azure/msal-browser": { + "optional": true }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } + "buffer": { + "optional": true }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "jest-cli": { - "version": "25.4.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.4.0.tgz", - "integrity": "sha512-usyrj1lzCJZMRN1r3QEdnn8e6E6yCx/QN7+B1sLoA68V7f3WlsxSSQfy0+BAwRiF4Hz2eHauf11GZG3PIfWTXQ==", - "dev": true, - "requires": { - "@jest/core": "^25.4.0", - "@jest/test-result": "^25.4.0", - "@jest/types": "^25.4.0", - "chalk": "^3.0.0", - "exit": "^0.1.2", - "import-local": "^3.0.2", - "is-ci": "^2.0.0", - "jest-config": "^25.4.0", - "jest-util": "^25.4.0", - "jest-validate": "^25.4.0", - "prompts": "^2.0.1", - "realpath-native": "^2.0.0", - "yargs": "^15.3.1" - }, - "dependencies": { - "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - } - } - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true + "stream-browserify": { + "optional": true } } }, - "@microsoft/load-themed-styles": { - "version": "1.10.241", - "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.241.tgz", - "integrity": "sha512-UdEtJGWSj361OxGO2AWMVzfBZPGv6EOJ2ZsuYLWGhDgBv/Y7QWPngEyHYljIC1YcqyQxy8q9xFvH/5qZKpTteA==" - }, - "@microsoft/loader-load-themed-styles": { - "version": "2.0.68", - "resolved": "https://registry.npmjs.org/@microsoft/loader-load-themed-styles/-/loader-load-themed-styles-2.0.68.tgz", - "integrity": "sha512-rScfOP4hEO+zZlhaf0vPzj1I4mVm4XJgACBJ4ym4Z/zT5kt7XkEvlcoCNqr4lbwBvNrafUL9b6GFOTGE6Y8fmg==", - "dev": true, - "requires": { - "loader-utils": "1.4.2" - }, + "node_modules/@microsoft/microsoft-graph-clientv1": { + "name": "@microsoft/microsoft-graph-client", + "version": "1.7.2-spfx", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-1.7.2-spfx.tgz", + "integrity": "sha512-BQN50r3tohWYOaQ0de7LJ5eCRjI6eg4RQqLhGDlgRmZIZhWzH0bhR6QBMmmxtYtwKWifhPhJSxYDW+cP67TJVw==", "dependencies": { - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - } + "es6-promise": "^4.2.6", + "isomorphic-fetch": "^3.0.0", + "tslib": "^1.9.3" } }, - "@microsoft/loader-raw-script": { - "version": "1.2.182", - "resolved": "https://registry.npmjs.org/@microsoft/loader-raw-script/-/loader-raw-script-1.2.182.tgz", - "integrity": "sha512-Uin++eH+eML7omSXTIrO4LBfphzCgC+ZyaboP9IL2S2S25x/sfNfdMcMMXghzZ00K231u1ygTs2Ta7lhlY7G5g==", - "requires": { - "loader-utils": "~1.1.0" + "node_modules/@microsoft/microsoft-graph-clientv1/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@microsoft/microsoft-graph-types": { + "version": "2.40.0", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.40.0.tgz", + "integrity": "sha512-1fcPVrB/NkbNcGNfCy+Cgnvwxt6/sbIEEFgZHFBJ670zYLegENYJF8qMo7x3LqBjWX2/Eneq5BVVRCLTmlJN+g==" + }, + "node_modules/@microsoft/microsoft-graph-types-beta": { + "version": "0.29.0-preview", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types-beta/-/microsoft-graph-types-beta-0.29.0-preview.tgz", + "integrity": "sha512-83PCHDH7GxW8KM1J+MM6FPbaahIuj7VIgnY4UbMGQkkq2fBaHeKOmgjVbohvLVeIOOCTLmorPh6JtXH0VtFurA==" + }, + "node_modules/@microsoft/recognizers-text-data-types-timex-expression": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@microsoft/recognizers-text-data-types-timex-expression/-/recognizers-text-data-types-timex-expression-1.3.1.tgz", + "integrity": "sha512-jarJIFIJZBqeofy3hh0vdQo1yOmTM+jCjj6/zmo9JunsQ6LO750eZHCg9eLptQhsvq321XCt5xdRNLCwU8YeNA==", + "engines": { + "node": ">=10.3.0" } }, - "@microsoft/microsoft-graph-client": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-1.1.0.tgz", - "integrity": "sha512-sDgchKZz1l3QJVNdkE1P1KpwTjupNt1mS9h1T0CiP+ayMN7IeFKfElB8IYtxFplNalZTmEq+iqoQFqUVpVMLfQ==", - "requires": { - "es6-promise": "^4.1.0", - "isomorphic-fetch": "^2.2.1" - } - }, - "@microsoft/microsoft-graph-types": { - "version": "1.41.0", - "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-1.41.0.tgz", - "integrity": "sha512-GNGqnN3k4wo6zlxszBUdrzEXMQMeTRXRO2OP3h63LNbqRrRHUe6WY2EbGwL7gUhap7pOoyziZ+eG5YUvUNdBSA==" - }, - "@microsoft/office-ui-fabric-react-bundle": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/office-ui-fabric-react-bundle/-/office-ui-fabric-react-bundle-1.13.1.tgz", - "integrity": "sha512-Tt99MShwPSqULImwsXT0umaG7mPTEwqbKq4ZvVJPjkydkpDZBTeDV6C+oGpqSa+wrbOi3Sk94Vyb71tY92W0VA==", - "requires": { - "@microsoft/sp-core-library": "1.13.1", - "@uifabric/icons": "7.6.0", - "office-ui-fabric-react": "7.176.2", - "react": "16.13.1", - "react-dom": "16.13.1", - "tslib": "~1.10.0" - }, - "dependencies": { - "office-ui-fabric-react": { - "version": "7.176.2", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", - "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", - "requires": { - "@fluentui/date-time-utilities": "^7.9.1", - "@fluentui/react-focus": "^7.18.0", - "@fluentui/react-window-provider": "^1.0.2", - "@microsoft/load-themed-styles": "^1.10.26", - "@uifabric/foundation": "^7.10.0", - "@uifabric/icons": "^7.6.0", - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/react-hooks": "^7.14.0", - "@uifabric/set-version": "^7.0.24", - "@uifabric/styling": "^7.19.1", - "@uifabric/utilities": "^7.33.5", - "prop-types": "^15.7.2", - "tslib": "^1.10.0" - } - } - } - }, - "@microsoft/rush-lib": { - "version": "5.100.2", - "resolved": "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.100.2.tgz", - "integrity": "sha512-wuyvYok7qEdADNeN98C+tO5lU23CH04kSYbJ/lz4CQfqVIviFLQQExDEPnvRxNP0I1XmuMdsaIVG28m1tLCMMA==", + "node_modules/@microsoft/rush-lib": { + "version": "5.135.0-pr4927.1", + "resolved": "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.135.0-pr4927.1.tgz", + "integrity": "sha512-9HbxSdTGxEeLaZB3srs4iH4wH5zXIWOmOPTX9xXm70/Ue2futK4Iar7WUVE21bgBYLCf6+v51ILaCddvE7fr3w==", "dev": true, - "requires": { + "dependencies": { "@pnpm/dependency-path": "~2.1.2", "@pnpm/link-bins": "~5.3.7", - "@rushstack/heft-config-file": "0.13.2", - "@rushstack/node-core-library": "3.59.6", - "@rushstack/package-deps-hash": "4.0.41", - "@rushstack/package-extractor": "0.3.11", - "@rushstack/rig-package": "0.4.0", - "@rushstack/rush-amazon-s3-build-cache-plugin": "5.100.2", - "@rushstack/rush-azure-storage-build-cache-plugin": "5.100.2", - "@rushstack/stream-collator": "4.0.259", - "@rushstack/terminal": "0.5.34", - "@rushstack/ts-command-line": "4.15.1", + "@rushstack/heft-config-file": "0.15.7", + "@rushstack/lookup-by-path": "0.2.2", + "@rushstack/node-core-library": "5.9.0", + "@rushstack/package-deps-hash": "4.2.0", + "@rushstack/package-extractor": "0.9.1", + "@rushstack/rig-package": "0.5.3", + "@rushstack/rush-amazon-s3-build-cache-plugin": "5.135.0-pr4927.1", + "@rushstack/rush-azure-storage-build-cache-plugin": "5.135.0-pr4927.1", + "@rushstack/rush-http-build-cache-plugin": "5.135.0-pr4927.1", + "@rushstack/stream-collator": "4.1.67", + "@rushstack/terminal": "0.14.2", + "@rushstack/ts-command-line": "4.22.8", "@types/node-fetch": "2.6.2", "@yarnpkg/lockfile": "~1.0.2", "builtin-modules": "~3.1.0", "cli-table": "~0.3.1", - "colors": "~1.2.1", "dependency-path": "~9.2.8", + "fast-glob": "~3.3.1", "figures": "3.0.0", "git-repo-info": "~2.1.0", - "glob": "~7.0.5", "glob-escape": "~0.0.2", "https-proxy-agent": "~5.0.0", "ignore": "~5.1.6", @@ -2823,9250 +4296,1619 @@ "node-fetch": "2.6.7", "npm-check": "~6.0.1", "npm-package-arg": "~6.1.0", + "pnpm-sync-lib": "0.2.9", "read-package-tree": "~5.1.5", "rxjs": "~6.6.7", "semver": "~7.5.4", "ssri": "~8.0.0", "strict-uri-encode": "~2.0.0", "tapable": "2.2.1", - "tar": "~6.1.11", - "true-case-path": "~2.2.1" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "@rushstack/rig-package": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.4.0.tgz", - "integrity": "sha512-FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw==", - "dev": true, - "requires": { - "resolve": "~1.22.1", - "strip-json-comments": "~3.1.1" - } - }, - "@rushstack/ts-command-line": { - "version": "4.15.1", - "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.15.1.tgz", - "integrity": "sha512-EL4jxZe5fhb1uVL/P/wQO+Z8Rc8FMiWJ1G7VgnPDvdIt5GVjRfK7vwzder1CZQiX3x0PY6uxENYLNGTFd1InRQ==", - "dev": true, - "requires": { - "@types/argparse": "1.0.38", - "argparse": "~1.0.9", - "colors": "~1.2.1", - "string-argv": "~0.3.1" - } - }, - "builtin-modules": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", - "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", - "dev": true - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "ignore": { - "version": "5.1.9", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", - "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", - "dev": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true - }, - "tar": { - "version": "6.1.15", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", - "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - } - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@microsoft/rush-stack-compiler-3.9": { - "version": "0.4.47", - "resolved": "https://registry.npmjs.org/@microsoft/rush-stack-compiler-3.9/-/rush-stack-compiler-3.9-0.4.47.tgz", - "integrity": "sha512-mM7qbfJaTDc7+o6MR32DJSDExNwGoql4ARanJPna//FJc/kPn4HjI6yPbs6PTzSIdPftzI9VmqpLZWsGuaLWAQ==", - "dev": true, - "requires": { - "@microsoft/api-extractor": "7.15.2", - "@rushstack/eslint-config": "2.3.4", - "@rushstack/node-core-library": "3.38.0", - "@types/node": "10.17.13", - "eslint": "~7.12.1", - "import-lazy": "~4.0.0", - "tslint": "~5.20.1", - "tslint-microsoft-contrib": "~6.2.0", - "typescript": "~3.9.7" - }, - "dependencies": { - "@types/node": { - "version": "10.17.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", - "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", - "dev": true - } - } - }, - "@microsoft/sp-build-core-tasks": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-build-core-tasks/-/sp-build-core-tasks-1.18.0.tgz", - "integrity": "sha512-AeCWY5dDkMSI4iF7dZtomMXF6JfwDJ9u95PsdYfBgm9n/lTjyfFoGQBWkhUH8A5ZDmdAfExElsuoQgevU50UPg==", - "dev": true, - "requires": { - "@microsoft/gulp-core-build": "3.18.0", - "@microsoft/gulp-core-build-serve": "3.12.0", - "@microsoft/gulp-core-build-webpack": "5.4.0", - "@microsoft/spfx-heft-plugins": "1.18.0", - "@rushstack/node-core-library": "3.59.6", - "@types/glob": "5.0.30", - "@types/lodash": "4.14.117", - "@types/webpack": "4.41.24", - "colors": "~1.2.1", - "glob": "~7.0.5", - "gulp": "4.0.2", - "lodash": "4.17.21", - "webpack": "~4.47.0" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@microsoft/sp-build-web": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-build-web/-/sp-build-web-1.18.0.tgz", - "integrity": "sha512-OSaNg+G16qy/cgB2m/6hKx1wO394og/25H7aHVzgJz6IIzPGeGT4Z3+YhdH5XeizCWaW7mSA+PjOqLiTtGbk0g==", - "dev": true, - "requires": { - "@microsoft/gulp-core-build": "3.18.0", - "@microsoft/gulp-core-build-sass": "4.17.0", - "@microsoft/gulp-core-build-serve": "3.12.0", - "@microsoft/gulp-core-build-typescript": "8.6.0", - "@microsoft/gulp-core-build-webpack": "5.4.0", - "@microsoft/rush-lib": "5.100.2", - "@microsoft/sp-build-core-tasks": "1.18.0", - "@rushstack/node-core-library": "3.59.6", - "@types/webpack": "4.41.24", - "gulp": "4.0.2", - "postcss": "^8.4.19", - "semver": "~7.3.2", + "tar": "~6.2.1", "true-case-path": "~2.2.1", - "webpack": "~4.47.0", - "yargs": "~4.6.0" + "uuid": "~8.3.2" }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - }, - "dependencies": { - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } + "engines": { + "node": ">=5.6.0" } }, - "@microsoft/sp-component-base": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.13.1.tgz", - "integrity": "sha512-8jcxFs7GRPO4xyqs0U9bhxG0iS+5a2yCF0XanauzK5yweIVCjGUGatM581ynCP0hD+HshtdEYV0Y2zMZ9OGZxQ==", - "requires": { - "@microsoft/office-ui-fabric-react-bundle": "1.13.1", - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-diagnostics": "1.13.1", - "@microsoft/sp-dynamic-data": "1.13.1", - "@microsoft/sp-http": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1", - "@microsoft/sp-module-interfaces": "1.13.1", - "@microsoft/sp-page-context": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-core-library": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.13.1.tgz", - "integrity": "sha512-qTBMa3whxhMXn79YS2S+jq+a+iAId9v+WvZOvcgre4dI/7LL7zPhbsHQTfWhzzuB4f2tPxkldHO8eOv63Ud68Q==", - "requires": { - "@microsoft/sp-lodash-subset": "1.13.1", - "@microsoft/sp-module-interfaces": "1.13.1", - "@microsoft/sp-odata-types": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-css-loader": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-css-loader/-/sp-css-loader-1.18.0.tgz", - "integrity": "sha512-UFfmsN+3+WcEHx8fEWJoOMTP3pOTTkFAxwa9aEtKxnrT21wfqLnJfzll1ato2X0vT3eYzkCFtrspCeT1atLURw==", + "node_modules/@microsoft/rush-lib/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", "dev": true, - "requires": { - "@microsoft/load-themed-styles": "1.10.292", - "@rushstack/node-core-library": "3.59.6", - "autoprefixer": "9.7.1", - "css-loader": "3.4.2", - "cssnano": "~5.1.14", - "loader-utils": "^1.4.2", - "postcss": "^8.4.19", - "postcss-modules-extract-imports": "~3.0.0", - "postcss-modules-local-by-default": "~4.0.0", - "postcss-modules-scope": "~3.0.0", - "postcss-modules-values": "~4.0.0", - "webpack": "~4.47.0" - }, "dependencies": { - "@microsoft/load-themed-styles": { - "version": "1.10.292", - "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.292.tgz", - "integrity": "sha512-LQWGImtpv2zHKIPySLalR1aFXumXfOq8UuJvR15mIZRKXIoM+KuN9wZq+ved2FyeuePjQSJGOxYynxtCLLwDBA==", - "dev": true - }, - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "autoprefixer": { - "version": "9.7.1", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.1.tgz", - "integrity": "sha512-w3b5y1PXWlhYulevrTJ0lizkQ5CyqfeU6BIRDbuhsMupstHQOeb1Ur80tcB1zxSu7AwyY/qCQ7Vvqklh31ZBFw==", - "dev": true, - "requires": { - "browserslist": "^4.7.2", - "caniuse-lite": "^1.0.30001006", - "chalk": "^2.4.2", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^7.0.21", - "postcss-value-parser": "^4.0.2" - }, - "dependencies": { - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "dev": true - }, - "postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - } - }, - "postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.4" - } - }, - "postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@microsoft/sp-diagnostics": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.13.1.tgz", - "integrity": "sha512-KhzJo8kGL1M92WSDPhLlWyEnyAnkiRNMyQBb4eB9EYB8yZMhM2iBPpflIzatuJSOyNmq3jfmBS4G/ASg1tzyiQ==", - "requires": { - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1" - } - }, - "@microsoft/sp-dynamic-data": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.13.1.tgz", - "integrity": "sha512-x3Fk6dC5JgUOKhiFQ5JphMf9k+IhpLEWWk1bsmsLak3pCWeY9Xp3kR3SlrdPGaFtoa3wbFlEsYZ8Log+ut0b1w==", - "requires": { - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-diagnostics": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1", - "@microsoft/sp-module-interfaces": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-extension-base": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-extension-base/-/sp-extension-base-1.11.0.tgz", - "integrity": "sha512-WHauOwg9L8gCLI9yMZGRMAC5Z23fzKEmp2KtMbm3rbQ1Diu2pm4GNWPFsqQ8K0ryWAqR3xftvsEUXm3448rF9g==", - "requires": { - "@microsoft/decorators": "1.11.0", - "@microsoft/sp-component-base": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-loader": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1" - }, - "dependencies": { - "@microsoft/office-ui-fabric-react-bundle": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/office-ui-fabric-react-bundle/-/office-ui-fabric-react-bundle-1.11.0.tgz", - "integrity": "sha512-h7ldirreyBLyvCUelORCbET/M2sVa3mUaIvR6KQbCutoOnYcGXO8K/66xYGI4kwNRkBwJ91/1b967DP1g2gkTA==", - "requires": { - "@types/react": "16.8.8", - "@types/webpack-env": "1.13.1", - "@uifabric/icons": "7.3.0", - "office-ui-fabric-react": "7.59.0", - "react": "16.8.5", - "react-dom": "16.8.5", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-component-base": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.11.0.tgz", - "integrity": "sha512-ftOrH0HxvjJ7QHqrhO/fACLbUttjJ7b3UVKBN4CV5Vsmd4SRhX3lI+u8GB7iApufIuTUgSwdO9tZzIjrb1RdhQ==", - "requires": { - "@microsoft/decorators": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-loader": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1" - } - }, - "@microsoft/sp-core-library": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.11.0.tgz", - "integrity": "sha512-3/wQzbQp6E2R1tYn6eVmzJl8ay/1uxy+rW8JrDVX4GlzE4tLA+Pz90VuzQOJbmHLn7cgPSJFY3MFRdMjtqZVKg==", - "requires": { - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1" - } - }, - "@microsoft/sp-diagnostics": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.11.0.tgz", - "integrity": "sha512-Z+PoZY0wSGNpwQUCUqKGQz5AqE++Cgsul1afVNGRTTlYMzf1mot+GGX0ZxWGCU27awe4yf6+aEdzbsp8L7bfmw==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0" - } - }, - "@microsoft/sp-dynamic-data": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.11.0.tgz", - "integrity": "sha512-PRr1sA6M2f3lqFKlRGu+QMPAE/G91XoEC4LegiTYleK1i7WWrTpeU+yZohak8iQEZQsQ+e5alJZg+Xg3sdQKCQ==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-http": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.11.0.tgz", - "integrity": "sha512-n3YbHUSwhR4e9AQsVDPWJiTwoE3QtFzyT+DPKuMz4KEtPaAUfXvZ0zKdbJSspeUUCbjsFaMYsbEIsrgSDDgqvw==", - "requires": { - "@microsoft/microsoft-graph-client": "~1.1.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/adal-angular": "1.0.1", - "adal-angular": "1.0.16", - "msal": "1.1.3", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-loader": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.11.0.tgz", - "integrity": "sha512-z0goq+Ok/64waEDbI1YpekTRVWsu/ITnN0OTZuDvxGxdCL00+uB37Hog5Eoi9liEQCR6T2qTepawp8GnByuFew==", - "requires": { - "@microsoft/loader-raw-script": "1.2.182", - "@microsoft/office-ui-fabric-react-bundle": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-odata-types": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@microsoft/sp-polyfills": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/react": "16.8.8", - "@types/react-dom": "16.8.3", - "@types/requirejs": "2.1.29", - "@types/webpack-env": "1.13.1", - "@uifabric/utilities": "7.5.0", - "exports-loader": "~0.6.4", - "office-ui-fabric-react": "7.59.0", - "raw-loader": "~0.5.1", - "react": "16.8.5", - "react-dom": "16.8.5", - "requirejs": "2.1.20", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-lodash-subset": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.11.0.tgz", - "integrity": "sha512-r2T5HhlEpaX9nWnQkL9CJ6af7t+XQ6gYoSpeqz90VBi0XNN93B2qASjb8lzYPzB23D8Wr8qmTaz53nQj2fA4ow==", - "requires": { - "@types/lodash": "4.14.117", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-module-interfaces": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.11.0.tgz", - "integrity": "sha512-4KCIKM/Q7OLKY/jGWTmkYNtiCibjYh18PAfeXpAfwmnHnABXKsAmC59OP6chFYtHK0RTk55MwpWV34nRSbWZdw==", - "requires": { - "@types/node": "8.10.54", - "@types/z-schema": "3.16.31", - "z-schema": "~3.18.3" - } - }, - "@microsoft/sp-odata-types": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.11.0.tgz", - "integrity": "sha512-uIA4WsgvTlQ58R9H+svg0Hm2du1zz5w1FJ7VbT3f4TI9HW3zC+wItPgNAbxWddtx0s1jNoDxQFqQooAqTWxVCQ==", - "requires": { - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-page-context": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.11.0.tgz", - "integrity": "sha512-Tn57hYh8OErqIlYSiiggj3S6tjQ1GBKZV2o+dlq+aC1s++BgkCt7ql3jj+gyAC/Hb9cZrK+w12BkPO6P6fH0dQ==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-odata-types": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-polyfills": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-polyfills/-/sp-polyfills-1.11.0.tgz", - "integrity": "sha512-QecBpOmZyvIo6fk0b/3qx/OT0HlUZCsjSh6ybxEa3A5drssulq6/7E8VcE6cLdXcVlSQ7270SRUotzfT8xAlGw==", - "requires": { - "@types/webpack-env": "1.13.1", - "es6-collections": "0.5.6", - "es6-promise": "4.1.1", - "tslib": "~1.10.0", - "whatwg-fetch": "2.0.3", - "whatwg-url": "4.7.1" - } - }, - "@types/react": { - "version": "16.8.8", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.8.8.tgz", - "integrity": "sha512-xwEvyet96u7WnB96kqY0yY7qxx/pEpU51QeACkKFtrgjjXITQn0oO1iwPEraXVgh10ZFPix7gs1R4OJXF7P5sg==", - "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" - } - }, - "@types/react-dom": { - "version": "16.8.3", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.8.3.tgz", - "integrity": "sha512-HF5hD5YR3z9Mn6kXcW1VKe4AQ04ZlZj1EdLBae61hzQ3eEWWxMgNLUbIxeZp40BnSxqY1eAYLsH9QopQcxzScA==", - "requires": { - "@types/react": "*" - } - }, - "@uifabric/icons": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.3.0.tgz", - "integrity": "sha512-wbcR8fJce20sPjsK2bbTC/cAZfAOFuE4dd4LHw194+8H+/dqotsowrQVp5Lu8aaHGQk+fXoiZmUy30WA9cAG4Q==", - "requires": { - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.1", - "tslib": "^1.7.1" - } - }, - "@uifabric/utilities": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@uifabric/utilities/-/utilities-7.5.0.tgz", - "integrity": "sha512-h9XwZVaKyLN3Ss4G+bXFWsmCzExID/SKbO64XPjsCIhuxVYsTg6/hDrvyU4TCEx06/ehXfdHRmyjCYL1PNdDMg==", - "requires": { - "@uifabric/merge-styles": "^7.7.0", - "@uifabric/set-version": "^7.0.2", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - }, - "es6-promise": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.1.1.tgz", - "integrity": "sha512-OaU1hHjgJf+b0NzsxCg7NdIYERD6Hy/PEmFLTjw+b65scuisG3Kt4QoTvJ66BBkPZ581gr0kpoVzKnxniM8nng==" - }, - "msal": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/msal/-/msal-1.1.3.tgz", - "integrity": "sha512-cdShb+N1H3OyR1y46ij6OO7QzeqC6BxrbrNcouS4JBrr1+DnZ55TumxQKEzWmTXHvsbsuz5PCyXZl812Un8L9g==", - "requires": { - "tslib": "^1.9.3" - } - }, - "office-ui-fabric-react": { - "version": "7.59.0", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.59.0.tgz", - "integrity": "sha512-bZg1Msffb7DKAawxzxmUYMEv+me6FzdPvRKbrG7pQrj/rRR8ofPbo43NRFfFmOdHnNs7290H0Cwpu3kRk+6msg==", - "requires": { - "@microsoft/load-themed-styles": "^1.7.13", - "@uifabric/foundation": "^7.5.0", - "@uifabric/icons": "^7.3.0", - "@uifabric/merge-styles": "^7.8.0", - "@uifabric/react-hooks": "^7.0.1", - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.2", - "@uifabric/utilities": "^7.5.0", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - }, - "react": { - "version": "16.8.5", - "resolved": "https://registry.npmjs.org/react/-/react-16.8.5.tgz", - "integrity": "sha512-daCb9TD6FZGvJ3sg8da1tRAtIuw29PbKZW++NN4wqkbEvxL+bZpaaYb4xuftW/SpXmgacf1skXl/ddX6CdOlDw==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.5" - } - }, - "react-dom": { - "version": "16.8.5", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.8.5.tgz", - "integrity": "sha512-VIEIvZLpFafsfu4kgmftP5L8j7P1f0YThfVTrANMhZUFMDOsA6e0kfR6wxw/8xxKs4NB59TZYbxNdPCDW34x4w==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.5" - } - }, - "requirejs": { - "version": "2.1.20", - "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.1.20.tgz", - "integrity": "sha1-EUgiyRfsh5NFCy2qoeubvxEB6TE=" - }, - "scheduler": { - "version": "0.13.6", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.13.6.tgz", - "integrity": "sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "whatwg-fetch": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", - "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" - } - } - }, - "@microsoft/sp-http": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.13.1.tgz", - "integrity": "sha512-MhlFCOhFUUt7HpG3oa9LSu7O1dqmyJfU2Zmk+uPrUnudy5JIL2K83g5rv2TK8YeGXDXxKEmqZsOsWP4ZHbo9YQ==", - "requires": { - "@microsoft/microsoft-graph-client": "~1.1.0", - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-diagnostics": "1.13.1", - "@types/adal-angular": "1.0.1", - "adal-angular": "1.0.16", - "msal": "1.4.13", - "msalLegacy": "npm:msal@1.4.12", - "tslib": "~1.10.0" - }, - "dependencies": { - "msalLegacy": { - "version": "npm:msal@1.4.12", - "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.12.tgz", - "integrity": "sha512-gjupwQ6nvNL6mZkl5NIXyUmZhTiEMRu5giNdgHMh8l5EPOnV2Xj6nukY1NIxFacSTkEYUSDB47Pej9GxDYf+1w==", - "requires": { - "tslib": "^1.9.3" - } - } - } - }, - "@microsoft/sp-listview-extensibility": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-listview-extensibility/-/sp-listview-extensibility-1.11.0.tgz", - "integrity": "sha512-R25++HWbni8zJ+RKqHROhJOcs4eTfI5Sf2melDJSP7ikTmYzRTgOxMWI8TCx4FM5p3/lufiLLYGGIpjm6ebWNg==", - "requires": { - "@microsoft/decorators": "1.11.0", - "@microsoft/sp-component-base": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-extension-base": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@types/webpack-env": "1.13.1" - }, - "dependencies": { - "@microsoft/office-ui-fabric-react-bundle": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/office-ui-fabric-react-bundle/-/office-ui-fabric-react-bundle-1.11.0.tgz", - "integrity": "sha512-h7ldirreyBLyvCUelORCbET/M2sVa3mUaIvR6KQbCutoOnYcGXO8K/66xYGI4kwNRkBwJ91/1b967DP1g2gkTA==", - "requires": { - "@types/react": "16.8.8", - "@types/webpack-env": "1.13.1", - "@uifabric/icons": "7.3.0", - "office-ui-fabric-react": "7.59.0", - "react": "16.8.5", - "react-dom": "16.8.5", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-component-base": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.11.0.tgz", - "integrity": "sha512-ftOrH0HxvjJ7QHqrhO/fACLbUttjJ7b3UVKBN4CV5Vsmd4SRhX3lI+u8GB7iApufIuTUgSwdO9tZzIjrb1RdhQ==", - "requires": { - "@microsoft/decorators": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-loader": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1" - } - }, - "@microsoft/sp-core-library": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.11.0.tgz", - "integrity": "sha512-3/wQzbQp6E2R1tYn6eVmzJl8ay/1uxy+rW8JrDVX4GlzE4tLA+Pz90VuzQOJbmHLn7cgPSJFY3MFRdMjtqZVKg==", - "requires": { - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1" - } - }, - "@microsoft/sp-diagnostics": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.11.0.tgz", - "integrity": "sha512-Z+PoZY0wSGNpwQUCUqKGQz5AqE++Cgsul1afVNGRTTlYMzf1mot+GGX0ZxWGCU27awe4yf6+aEdzbsp8L7bfmw==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0" - } - }, - "@microsoft/sp-dynamic-data": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.11.0.tgz", - "integrity": "sha512-PRr1sA6M2f3lqFKlRGu+QMPAE/G91XoEC4LegiTYleK1i7WWrTpeU+yZohak8iQEZQsQ+e5alJZg+Xg3sdQKCQ==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-http": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.11.0.tgz", - "integrity": "sha512-n3YbHUSwhR4e9AQsVDPWJiTwoE3QtFzyT+DPKuMz4KEtPaAUfXvZ0zKdbJSspeUUCbjsFaMYsbEIsrgSDDgqvw==", - "requires": { - "@microsoft/microsoft-graph-client": "~1.1.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/adal-angular": "1.0.1", - "adal-angular": "1.0.16", - "msal": "1.1.3", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-loader": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.11.0.tgz", - "integrity": "sha512-z0goq+Ok/64waEDbI1YpekTRVWsu/ITnN0OTZuDvxGxdCL00+uB37Hog5Eoi9liEQCR6T2qTepawp8GnByuFew==", - "requires": { - "@microsoft/loader-raw-script": "1.2.182", - "@microsoft/office-ui-fabric-react-bundle": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-odata-types": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@microsoft/sp-polyfills": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/react": "16.8.8", - "@types/react-dom": "16.8.3", - "@types/requirejs": "2.1.29", - "@types/webpack-env": "1.13.1", - "@uifabric/utilities": "7.5.0", - "exports-loader": "~0.6.4", - "office-ui-fabric-react": "7.59.0", - "raw-loader": "~0.5.1", - "react": "16.8.5", - "react-dom": "16.8.5", - "requirejs": "2.1.20", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-lodash-subset": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.11.0.tgz", - "integrity": "sha512-r2T5HhlEpaX9nWnQkL9CJ6af7t+XQ6gYoSpeqz90VBi0XNN93B2qASjb8lzYPzB23D8Wr8qmTaz53nQj2fA4ow==", - "requires": { - "@types/lodash": "4.14.117", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-module-interfaces": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.11.0.tgz", - "integrity": "sha512-4KCIKM/Q7OLKY/jGWTmkYNtiCibjYh18PAfeXpAfwmnHnABXKsAmC59OP6chFYtHK0RTk55MwpWV34nRSbWZdw==", - "requires": { - "@types/node": "8.10.54", - "@types/z-schema": "3.16.31", - "z-schema": "~3.18.3" - } - }, - "@microsoft/sp-odata-types": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.11.0.tgz", - "integrity": "sha512-uIA4WsgvTlQ58R9H+svg0Hm2du1zz5w1FJ7VbT3f4TI9HW3zC+wItPgNAbxWddtx0s1jNoDxQFqQooAqTWxVCQ==", - "requires": { - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-page-context": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.11.0.tgz", - "integrity": "sha512-Tn57hYh8OErqIlYSiiggj3S6tjQ1GBKZV2o+dlq+aC1s++BgkCt7ql3jj+gyAC/Hb9cZrK+w12BkPO6P6fH0dQ==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-odata-types": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-polyfills": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-polyfills/-/sp-polyfills-1.11.0.tgz", - "integrity": "sha512-QecBpOmZyvIo6fk0b/3qx/OT0HlUZCsjSh6ybxEa3A5drssulq6/7E8VcE6cLdXcVlSQ7270SRUotzfT8xAlGw==", - "requires": { - "@types/webpack-env": "1.13.1", - "es6-collections": "0.5.6", - "es6-promise": "4.1.1", - "tslib": "~1.10.0", - "whatwg-fetch": "2.0.3", - "whatwg-url": "4.7.1" - } - }, - "@types/react": { - "version": "16.8.8", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.8.8.tgz", - "integrity": "sha512-xwEvyet96u7WnB96kqY0yY7qxx/pEpU51QeACkKFtrgjjXITQn0oO1iwPEraXVgh10ZFPix7gs1R4OJXF7P5sg==", - "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" - } - }, - "@types/react-dom": { - "version": "16.8.3", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.8.3.tgz", - "integrity": "sha512-HF5hD5YR3z9Mn6kXcW1VKe4AQ04ZlZj1EdLBae61hzQ3eEWWxMgNLUbIxeZp40BnSxqY1eAYLsH9QopQcxzScA==", - "requires": { - "@types/react": "*" - } - }, - "@uifabric/icons": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.3.0.tgz", - "integrity": "sha512-wbcR8fJce20sPjsK2bbTC/cAZfAOFuE4dd4LHw194+8H+/dqotsowrQVp5Lu8aaHGQk+fXoiZmUy30WA9cAG4Q==", - "requires": { - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.1", - "tslib": "^1.7.1" - } - }, - "@uifabric/utilities": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@uifabric/utilities/-/utilities-7.5.0.tgz", - "integrity": "sha512-h9XwZVaKyLN3Ss4G+bXFWsmCzExID/SKbO64XPjsCIhuxVYsTg6/hDrvyU4TCEx06/ehXfdHRmyjCYL1PNdDMg==", - "requires": { - "@uifabric/merge-styles": "^7.7.0", - "@uifabric/set-version": "^7.0.2", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - }, - "es6-promise": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.1.1.tgz", - "integrity": "sha512-OaU1hHjgJf+b0NzsxCg7NdIYERD6Hy/PEmFLTjw+b65scuisG3Kt4QoTvJ66BBkPZ581gr0kpoVzKnxniM8nng==" - }, - "msal": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/msal/-/msal-1.1.3.tgz", - "integrity": "sha512-cdShb+N1H3OyR1y46ij6OO7QzeqC6BxrbrNcouS4JBrr1+DnZ55TumxQKEzWmTXHvsbsuz5PCyXZl812Un8L9g==", - "requires": { - "tslib": "^1.9.3" - } - }, - "office-ui-fabric-react": { - "version": "7.59.0", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.59.0.tgz", - "integrity": "sha512-bZg1Msffb7DKAawxzxmUYMEv+me6FzdPvRKbrG7pQrj/rRR8ofPbo43NRFfFmOdHnNs7290H0Cwpu3kRk+6msg==", - "requires": { - "@microsoft/load-themed-styles": "^1.7.13", - "@uifabric/foundation": "^7.5.0", - "@uifabric/icons": "^7.3.0", - "@uifabric/merge-styles": "^7.8.0", - "@uifabric/react-hooks": "^7.0.1", - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.2", - "@uifabric/utilities": "^7.5.0", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - }, - "react": { - "version": "16.8.5", - "resolved": "https://registry.npmjs.org/react/-/react-16.8.5.tgz", - "integrity": "sha512-daCb9TD6FZGvJ3sg8da1tRAtIuw29PbKZW++NN4wqkbEvxL+bZpaaYb4xuftW/SpXmgacf1skXl/ddX6CdOlDw==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.5" - } - }, - "react-dom": { - "version": "16.8.5", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.8.5.tgz", - "integrity": "sha512-VIEIvZLpFafsfu4kgmftP5L8j7P1f0YThfVTrANMhZUFMDOsA6e0kfR6wxw/8xxKs4NB59TZYbxNdPCDW34x4w==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.5" - } - }, - "requirejs": { - "version": "2.1.20", - "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.1.20.tgz", - "integrity": "sha1-EUgiyRfsh5NFCy2qoeubvxEB6TE=" - }, - "scheduler": { - "version": "0.13.6", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.13.6.tgz", - "integrity": "sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "whatwg-fetch": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", - "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" - } - } - }, - "@microsoft/sp-loader": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.13.1.tgz", - "integrity": "sha512-Srry9SqR2JQA4l8+I1LTdO0lIkrekxWOxo9/2RgCbQtMyG6sSSCvw3VxUqRZ6VEFQbJzmmGFCWZRLGOho0GMlw==", - "requires": { - "@microsoft/office-ui-fabric-react-bundle": "1.13.1", - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-diagnostics": "1.13.1", - "@microsoft/sp-dynamic-data": "1.13.1", - "@microsoft/sp-http": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1", - "@microsoft/sp-module-interfaces": "1.13.1", - "@microsoft/sp-odata-types": "1.13.1", - "@microsoft/sp-page-context": "1.13.1", - "@microsoft/sp-polyfills": "1.13.1", - "@rushstack/loader-raw-script": "1.3.175", - "@types/requirejs": "2.1.29", - "office-ui-fabric-react": "7.176.2", - "raw-loader": "~0.5.1", - "react": "16.13.1", - "react-dom": "16.13.1", - "requirejs": "2.3.6", - "tslib": "~1.10.0" - }, - "dependencies": { - "office-ui-fabric-react": { - "version": "7.176.2", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", - "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", - "requires": { - "@fluentui/date-time-utilities": "^7.9.1", - "@fluentui/react-focus": "^7.18.0", - "@fluentui/react-window-provider": "^1.0.2", - "@microsoft/load-themed-styles": "^1.10.26", - "@uifabric/foundation": "^7.10.0", - "@uifabric/icons": "^7.6.0", - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/react-hooks": "^7.14.0", - "@uifabric/set-version": "^7.0.24", - "@uifabric/styling": "^7.19.1", - "@uifabric/utilities": "^7.33.5", - "prop-types": "^15.7.2", - "tslib": "^1.10.0" - } - } - } - }, - "@microsoft/sp-lodash-subset": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.13.1.tgz", - "integrity": "sha512-SXRG4KO0k/VVqWwkFFpC0177GxOOZ8jvsJHkg+i42+FyHGs5Uu4itffLarraGnPMokZLxHpkig9xRc8ZDytN7A==", - "requires": { - "@types/lodash": "4.14.117", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-module-interfaces": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.13.1.tgz", - "integrity": "sha512-qrzmQW+T/2+s9/Lu1I0G1chF5DPN4xcR7znn3N3IjuM67o6E4cdvKel+m66mrqqzSGfo4qmCb6lGYTTYZsS3vw==" - }, - "@microsoft/sp-odata-types": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.13.1.tgz", - "integrity": "sha512-+dHWQY4E44OT/2E8c+lsSAxQJiRiRgk4jLLpNeOj/NzlydS8D85iUyOGlKfbmRu/6ujrc31/L77juKKzPQh7kw==", - "requires": { - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-office-ui-fabric-core": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-office-ui-fabric-core/-/sp-office-ui-fabric-core-1.13.1.tgz", - "integrity": "sha512-vsOv5QLaII35Nznw/pOyFIFBtxXkzA1bSif4MaRJpnENSAR49+050ot/MWYRMBKoGiXq/5cZD8zOAiNMwASoxQ==", - "requires": { - "office-ui-fabric-core": "9.6.1-fluent2", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-page-context": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.13.1.tgz", - "integrity": "sha512-BO8I0TWCaubYpMKZ3/eTeGC/tx1nRirk2ulkQ/ggk2PhuKJo6NGcXKo/JHe48Mje4Yh4d1r5FkjUGHoqKK3ruA==", - "requires": { - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-diagnostics": "1.13.1", - "@microsoft/sp-dynamic-data": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1", - "@microsoft/sp-odata-types": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-polyfills": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-polyfills/-/sp-polyfills-1.13.1.tgz", - "integrity": "sha512-sSN0su+v3tAzNTFt2QYJ/vzAIAZXZX6ox/1IFGFzNH0U30jdtfGG3vs5d45NkFkVLjDw9DL8Sc8uSi1lpEPNpA==", - "requires": { - "es6-promise": "4.2.4", - "es6-symbol": "3.1.3", - "tslib": "~1.10.0", - "whatwg-fetch": "2.0.3", - "whatwg-url": "4.7.1" - }, - "dependencies": { - "es6-promise": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz", - "integrity": "sha512-/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==" - }, - "whatwg-fetch": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", - "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" - } - } - }, - "@microsoft/sp-property-pane": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-property-pane/-/sp-property-pane-1.13.1.tgz", - "integrity": "sha512-eRqnrZGGv0nhDw4JdIi6wxCInFP2zlEZXMDFNaCTFJwM/ritRqGrHyVTxviENg7PXC5TTkVvIM9Hk/cNISRftg==", - "requires": { - "@microsoft/office-ui-fabric-react-bundle": "1.13.1", - "@microsoft/sp-component-base": "1.13.1", - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-diagnostics": "1.13.1", - "@microsoft/sp-dynamic-data": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1", - "office-ui-fabric-react": "7.176.2", - "react": "16.13.1", - "react-dom": "16.13.1", - "tslib": "~1.10.0" - }, - "dependencies": { - "office-ui-fabric-react": { - "version": "7.176.2", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", - "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", - "requires": { - "@fluentui/date-time-utilities": "^7.9.1", - "@fluentui/react-focus": "^7.18.0", - "@fluentui/react-window-provider": "^1.0.2", - "@microsoft/load-themed-styles": "^1.10.26", - "@uifabric/foundation": "^7.10.0", - "@uifabric/icons": "^7.6.0", - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/react-hooks": "^7.14.0", - "@uifabric/set-version": "^7.0.24", - "@uifabric/styling": "^7.19.1", - "@uifabric/utilities": "^7.33.5", - "prop-types": "^15.7.2", - "tslib": "^1.10.0" - } - } - } - }, - "@microsoft/sp-tslint-rules": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-tslint-rules/-/sp-tslint-rules-1.13.1.tgz", - "integrity": "sha512-WVbK3jDy9+/xRURe3ySX8EKGKPYrRIv6R+qkORhSfUgZJOS9oOqBmszqZENS4YRKJvHebl6n38+xlCGrWVM3Wg==", - "dev": true, - "requires": { - "tslint": "~6.1.3", - "tsutils": "~2.11.2" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "tslint": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz", - "integrity": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^4.0.1", - "glob": "^7.1.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.3", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.13.0", - "tsutils": "^2.29.0" - }, - "dependencies": { - "tsutils": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", - "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - } - } - } - }, - "tsutils": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.11.2.tgz", - "integrity": "sha1-YBNgHjb6FP+VhBPlQdQn+4xqw0E=", - "dev": true, - "requires": { - "tslib": "^1.7.1" - } - } - } - }, - "@microsoft/sp-webpart-base": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@microsoft/sp-webpart-base/-/sp-webpart-base-1.13.1.tgz", - "integrity": "sha512-qBBtUaLGzP2rBuCrbwZQuEZqQtMmhF4MZQWGNvlDpJNOQEXJ6hj2vAnKxJjlTXdttWbfUdMWsyOx1Nb0bxOACg==", - "requires": { - "@microsoft/sp-component-base": "1.13.1", - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-diagnostics": "1.13.1", - "@microsoft/sp-dynamic-data": "1.13.1", - "@microsoft/sp-http": "1.13.1", - "@microsoft/sp-loader": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1", - "@microsoft/sp-module-interfaces": "1.13.1", - "@microsoft/sp-page-context": "1.13.1", - "@microsoft/sp-property-pane": "1.13.1", - "@microsoft/teams-js": "1.10.0", - "@types/office-js": "1.0.36", - "office-ui-fabric-react": "7.176.2", - "react": "16.13.1", - "react-dom": "16.13.1", - "tslib": "~1.10.0" - }, - "dependencies": { - "office-ui-fabric-react": { - "version": "7.176.2", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz", - "integrity": "sha512-ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ==", - "requires": { - "@fluentui/date-time-utilities": "^7.9.1", - "@fluentui/react-focus": "^7.18.0", - "@fluentui/react-window-provider": "^1.0.2", - "@microsoft/load-themed-styles": "^1.10.26", - "@uifabric/foundation": "^7.10.0", - "@uifabric/icons": "^7.6.0", - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/react-hooks": "^7.14.0", - "@uifabric/set-version": "^7.0.24", - "@uifabric/styling": "^7.19.1", - "@uifabric/utilities": "^7.33.5", - "prop-types": "^15.7.2", - "tslib": "^1.10.0" - } - } - } - }, - "@microsoft/spfx-heft-plugins": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/@microsoft/spfx-heft-plugins/-/spfx-heft-plugins-1.18.0.tgz", - "integrity": "sha512-tWj8mtnz4+gi9LUV/XIIArHw53fPXOs1R9eLh2hm/FcB5d3AMsDObhLyna+XjTY2JpJtsvRjC4A1nypHlG2uVQ==", - "dev": true, - "requires": { - "@azure/storage-blob": "~12.11.0", - "@microsoft/load-themed-styles": "1.10.292", - "@microsoft/loader-load-themed-styles": "2.0.68", - "@microsoft/rush-lib": "5.100.2", - "@microsoft/sp-css-loader": "1.18.0", - "@microsoft/sp-module-interfaces": "1.18.0", - "@rushstack/heft-config-file": "0.13.2", - "@rushstack/localization-utilities": "0.8.80", - "@rushstack/node-core-library": "3.59.6", - "@rushstack/rig-package": "0.4.0", - "@rushstack/set-webpack-public-path-plugin": "4.0.15", - "@rushstack/terminal": "0.5.36", - "@rushstack/webpack4-localization-plugin": "0.17.46", - "@rushstack/webpack4-module-minifier-plugin": "0.12.35", - "@types/tapable": "1.0.6", - "autoprefixer": "9.7.1", - "colors": "~1.2.1", - "copy-webpack-plugin": "~6.0.3", - "css-loader": "3.4.2", - "cssnano": "~5.1.14", - "express": "4.18.1", - "file-loader": "6.1.0", - "git-repo-info": "~2.1.1", - "glob": "~7.0.5", - "html-loader": "~0.5.1", - "jszip": "~3.8.0", - "lodash": "4.17.21", - "mime": "2.5.2", - "postcss": "^8.4.19", - "postcss-loader": "^4.2.0", - "resolve": "~1.17.0", - "source-map": "0.6.1", - "source-map-loader": "1.1.3", - "tapable": "1.1.3", - "true-case-path": "~2.2.1", - "uuid": "~3.1.0", - "webpack": "~4.47.0", - "webpack-dev-server": "~4.9.3", - "webpack-sources": "1.4.3", - "xml": "~1.0.1" - }, - "dependencies": { - "@microsoft/load-themed-styles": { - "version": "1.10.292", - "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.292.tgz", - "integrity": "sha512-LQWGImtpv2zHKIPySLalR1aFXumXfOq8UuJvR15mIZRKXIoM+KuN9wZq+ved2FyeuePjQSJGOxYynxtCLLwDBA==", - "dev": true - }, - "@microsoft/sp-module-interfaces": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.18.0.tgz", - "integrity": "sha512-fXLV70zP1S8z2FGYAf1iqfgIIC5rOfPQeeCh/qICFx+RuUFtvkbW+N5vr0ugFYaF6L0rfrYqspcllloHJPOVYQ==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "z-schema": "4.2.4" - } - }, - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - }, - "dependencies": { - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/rig-package": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.4.0.tgz", - "integrity": "sha512-FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw==", - "dev": true, - "requires": { - "resolve": "~1.22.1", - "strip-json-comments": "~3.1.1" - }, - "dependencies": { - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - } - } - }, - "@rushstack/terminal": { - "version": "0.5.36", - "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.5.36.tgz", - "integrity": "sha512-PMigbJYHuiKYe4IxA9pInLSFjOAQI4NV7OmIhTuh8Jy+YYjSexmQfnYwBqsZrwah4k/apY7VZ7lQucHxhJFiiQ==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "wordwrap": "~1.0.0" - } - }, - "autoprefixer": { - "version": "9.7.1", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.1.tgz", - "integrity": "sha512-w3b5y1PXWlhYulevrTJ0lizkQ5CyqfeU6BIRDbuhsMupstHQOeb1Ur80tcB1zxSu7AwyY/qCQ7Vvqklh31ZBFw==", - "dev": true, - "requires": { - "browserslist": "^4.7.2", - "caniuse-lite": "^1.0.30001006", - "chalk": "^2.4.2", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^7.0.21", - "postcss-value-parser": "^4.0.2" - }, - "dependencies": { - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - } - } - }, - "body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.10.3", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - } - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "requires": { - "safe-buffer": "5.2.1" - } - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true - }, - "express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", - "dev": true, - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.0", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.10.3", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - } - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "mime": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", - "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true - }, - "uuid": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", - "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==", - "dev": true - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", - "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", - "dev": true, - "requires": { - "commander": "^2.7.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.6.0" - }, - "dependencies": { - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true, - "optional": true - } - } - } - } - }, - "@microsoft/teams-js": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-1.10.0.tgz", - "integrity": "sha512-g8+ox5nWe9IjDFRHnCXk7mkQRGjHFcAMSn7JpUtJfuWu2tDUmXAp/4LUSgewvBbbmy68YtS+KTFPHRyUoTzk6w==" - }, - "@microsoft/tsdoc": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.13.2.tgz", - "integrity": "sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==", - "dev": true - }, - "@microsoft/tsdoc-config": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.15.2.tgz", - "integrity": "sha512-mK19b2wJHSdNf8znXSMYVShAHktVr/ib0Ck2FA3lsVBSEhSI/TfXT7DJQkAYgcztTuwazGcg58ZjYdk0hTCVrA==", - "dev": true, - "requires": { - "@microsoft/tsdoc": "0.13.2", - "ajv": "~6.12.6", - "jju": "~1.4.0", - "resolve": "~1.19.0" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "resolve": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", - "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", - "dev": true, - "requires": { - "is-core-module": "^2.1.0", - "path-parse": "^1.0.6" - } - } - } - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@npmcli/fs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", - "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", - "dev": true, - "requires": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "@opentelemetry/api": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.6.0.tgz", - "integrity": "sha512-OWlrQAnWn9577PhVgqjUvMr1pg57Bc4jv0iL4w0PRuOSRvq67rvHW9Ie/dZVMvCzhSCB+UxhcY/PmCmFj33Q+g==", - "dev": true - }, - "@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz", - "integrity": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==", - "dev": true, - "requires": { - "ansi-html-community": "^0.0.8", - "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.8.1", - "error-stack-parser": "^2.0.6", - "find-up": "^5.0.0", - "html-entities": "^2.1.0", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0", - "source-map": "^0.7.3" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true - } - } - }, - "@pnp/common": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@pnp/common/-/common-2.4.0.tgz", - "integrity": "sha512-YicQs3LhCTkF2pB6mURcF78bKe+0bqr50o0gh9wh6P3tXOb5HTPKDd9y8hkjfYRXMEdiGACvckuI7SWG4h0uhg==", - "requires": { - "tslib": "2.2.0" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } - } - }, - "@pnp/graph": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@pnp/graph/-/graph-2.4.0.tgz", - "integrity": "sha512-PE3C6hCEOI0SzXg5fHFRuJhV8koLih0PiwFGlbXUdg/nbYTGSKOS7eoTbjaMAJVBBicZ/x3O3SYwozLaQ279Vw==", - "requires": { - "@microsoft/microsoft-graph-types": "^1.35.0", - "@pnp/common": "2.4.0", - "@pnp/logging": "2.4.0", - "@pnp/odata": "2.4.0", - "tslib": "2.2.0" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } - } - }, - "@pnp/logging": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@pnp/logging/-/logging-2.4.0.tgz", - "integrity": "sha512-gWbxf3jdWavNjuAuruTz71eRDCKPEgrdxv/g1CoLzel9mr+NVYwQQ3+YLrrTv5XCBWkqNirb6Yhwy39p4mqzpQ==", - "requires": { - "tslib": "2.2.0" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } - } - }, - "@pnp/odata": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@pnp/odata/-/odata-2.4.0.tgz", - "integrity": "sha512-7d3T+I7LTPxCr/evLlXV6nfv1ivVo6HmT0eyi6HIQezR0td609MIVA2eUInNY68HpVfmUZ6biKwPKDigW193iA==", - "requires": { - "@pnp/common": "2.4.0", - "@pnp/logging": "2.4.0", - "tslib": "2.2.0" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } - } - }, - "@pnp/sp": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@pnp/sp/-/sp-2.0.8.tgz", - "integrity": "sha512-/+V3IilrOI2ab2LOHOjruQhHPAjMbtWaUNEziDSi2eFUGc+8joCtrudM6MN14z6yMGyAItW2AyyBMqaaaceH2Q==", - "requires": { - "@pnp/common": "2.0.8", - "@pnp/logging": "2.0.8", - "@pnp/odata": "2.0.8", - "tslib": "2.0.0" - }, - "dependencies": { - "@pnp/common": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@pnp/common/-/common-2.0.8.tgz", - "integrity": "sha512-z3un/uLnmBHCk6y+OxK9CioI2XqFWw8m6GLdSpkXUcoG7Is41Rqia89Sy6CatAVAhhAcLoW9brI884ju/OXhCA==", - "requires": { - "tslib": "2.0.0" - } - }, - "@pnp/logging": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@pnp/logging/-/logging-2.0.8.tgz", - "integrity": "sha512-76I5j9g/2CgxtscujPvx5vbm3OifuDJgjUYZ3hkuMSmFwK2dN7WcLA+gQqiEkLcSgPx1M9G7vdrZARQSc2pUNA==", - "requires": { - "tslib": "2.0.0" - } - }, - "@pnp/odata": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@pnp/odata/-/odata-2.0.8.tgz", - "integrity": "sha512-keHdsXIiRd6cd5xKQ2hA/RLfYCCm56um5CvWAFts0xdFjsxaLlSkFgvHaw0u2lF7+4Jyr6vvmjCAOlUuPwIZhg==", - "requires": { - "@pnp/common": "2.0.8", - "@pnp/logging": "2.0.8", - "tslib": "2.0.0" - } - }, - "tslib": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.0.tgz", - "integrity": "sha512-lTqkx847PI7xEDYJntxZH89L2/aXInsyF2luSafe/+0fHOMjlBNXdH6th7f70qxLDhul7KZK0zC8V5ZIyHl0/g==" - } - } - }, - "@pnp/sp-clientsvc": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@pnp/sp-clientsvc/-/sp-clientsvc-1.3.11.tgz", - "integrity": "sha512-eIUnmDWjizcWJzhWxAbfsxEyHF1dabkGlihnDnlcYGhtvh8BwuM67A57qc5fbxzCS59c0YU57szB1EucoNmV4A==", - "requires": { - "tslib": "1.10.0" - } - }, - "@pnp/sp-taxonomy": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@pnp/sp-taxonomy/-/sp-taxonomy-1.3.11.tgz", - "integrity": "sha512-shzCSjmOlr6mojCXJkfD8Xf9lJnhphq4Fj6mdUQGwpak+VIU+Fogf6AI0j6AReCKtKsKyqfud9X7C8tH07C3DA==", - "requires": { - "tslib": "1.10.0" - } - }, - "@pnp/spfx-controls-react": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@pnp/spfx-controls-react/-/spfx-controls-react-2.4.0.tgz", - "integrity": "sha512-JsdXOcGoD1gUYdzVqGcv6PcpuDWPx2ONDTI0y+qvZWqt482rQSDqYBba96WUZ4Gp9Uuto0gg8JpYFhUHECXbvA==", - "requires": { - "@fluentui/react-northstar": "^0.51.3", - "@microsoft/decorators": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-listview-extensibility": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-office-ui-fabric-core": "1.11.0", - "@microsoft/sp-webpart-base": "1.11.0", - "@pnp/sp": "2.0.6", - "@pnp/telemetry-js": "2.0.0", - "@uifabric/icons": "7.3.0", - "chart.js": "2.7.3", - "color": "3.1.2", - "lodash": "4.17.13", - "office-ui-fabric-react": "6.214.0", - "react": "16.8.5", - "react-accessible-accordion": "^3.3.3", - "react-dom": "16.8.5", - "react-quill": "1.3.5" - }, - "dependencies": { - "@microsoft/load-themed-styles": { - "version": "1.10.20", - "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.20.tgz", - "integrity": "sha512-auT1V9phsMScUQK/xVngVGQsABGG805/10RgP1TBbJvwoPoRq/Ed+ce47HoayFgqxtz5m/W/38OUNZpfuBqsCw==" - }, - "@microsoft/office-ui-fabric-react-bundle": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/office-ui-fabric-react-bundle/-/office-ui-fabric-react-bundle-1.11.0.tgz", - "integrity": "sha512-h7ldirreyBLyvCUelORCbET/M2sVa3mUaIvR6KQbCutoOnYcGXO8K/66xYGI4kwNRkBwJ91/1b967DP1g2gkTA==", - "requires": { - "@types/react": "16.8.8", - "@types/webpack-env": "1.13.1", - "@uifabric/icons": "7.3.0", - "office-ui-fabric-react": "7.59.0", - "react": "16.8.5", - "react-dom": "16.8.5", - "tslib": "~1.10.0" - }, - "dependencies": { - "office-ui-fabric-react": { - "version": "7.59.0", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.59.0.tgz", - "integrity": "sha512-bZg1Msffb7DKAawxzxmUYMEv+me6FzdPvRKbrG7pQrj/rRR8ofPbo43NRFfFmOdHnNs7290H0Cwpu3kRk+6msg==", - "requires": { - "@microsoft/load-themed-styles": "^1.7.13", - "@uifabric/foundation": "^7.5.0", - "@uifabric/icons": "^7.3.0", - "@uifabric/merge-styles": "^7.8.0", - "@uifabric/react-hooks": "^7.0.1", - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.2", - "@uifabric/utilities": "^7.5.0", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - } - } - }, - "@microsoft/sp-component-base": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.11.0.tgz", - "integrity": "sha512-ftOrH0HxvjJ7QHqrhO/fACLbUttjJ7b3UVKBN4CV5Vsmd4SRhX3lI+u8GB7iApufIuTUgSwdO9tZzIjrb1RdhQ==", - "requires": { - "@microsoft/decorators": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-loader": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1" - } - }, - "@microsoft/sp-core-library": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.11.0.tgz", - "integrity": "sha512-3/wQzbQp6E2R1tYn6eVmzJl8ay/1uxy+rW8JrDVX4GlzE4tLA+Pz90VuzQOJbmHLn7cgPSJFY3MFRdMjtqZVKg==", - "requires": { - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1" - } - }, - "@microsoft/sp-diagnostics": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.11.0.tgz", - "integrity": "sha512-Z+PoZY0wSGNpwQUCUqKGQz5AqE++Cgsul1afVNGRTTlYMzf1mot+GGX0ZxWGCU27awe4yf6+aEdzbsp8L7bfmw==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0" - } - }, - "@microsoft/sp-dynamic-data": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.11.0.tgz", - "integrity": "sha512-PRr1sA6M2f3lqFKlRGu+QMPAE/G91XoEC4LegiTYleK1i7WWrTpeU+yZohak8iQEZQsQ+e5alJZg+Xg3sdQKCQ==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-http": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.11.0.tgz", - "integrity": "sha512-n3YbHUSwhR4e9AQsVDPWJiTwoE3QtFzyT+DPKuMz4KEtPaAUfXvZ0zKdbJSspeUUCbjsFaMYsbEIsrgSDDgqvw==", - "requires": { - "@microsoft/microsoft-graph-client": "~1.1.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@types/adal-angular": "1.0.1", - "adal-angular": "1.0.16", - "msal": "1.1.3", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-loader": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.11.0.tgz", - "integrity": "sha512-z0goq+Ok/64waEDbI1YpekTRVWsu/ITnN0OTZuDvxGxdCL00+uB37Hog5Eoi9liEQCR6T2qTepawp8GnByuFew==", - "requires": { - "@microsoft/loader-raw-script": "1.2.182", - "@microsoft/office-ui-fabric-react-bundle": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-odata-types": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@microsoft/sp-polyfills": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/react": "16.8.8", - "@types/react-dom": "16.8.3", - "@types/requirejs": "2.1.29", - "@types/webpack-env": "1.13.1", - "@uifabric/utilities": "7.5.0", - "exports-loader": "~0.6.4", - "office-ui-fabric-react": "7.59.0", - "raw-loader": "~0.5.1", - "react": "16.8.5", - "react-dom": "16.8.5", - "requirejs": "2.1.20", - "tslib": "~1.10.0" - }, - "dependencies": { - "office-ui-fabric-react": { - "version": "7.59.0", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.59.0.tgz", - "integrity": "sha512-bZg1Msffb7DKAawxzxmUYMEv+me6FzdPvRKbrG7pQrj/rRR8ofPbo43NRFfFmOdHnNs7290H0Cwpu3kRk+6msg==", - "requires": { - "@microsoft/load-themed-styles": "^1.7.13", - "@uifabric/foundation": "^7.5.0", - "@uifabric/icons": "^7.3.0", - "@uifabric/merge-styles": "^7.8.0", - "@uifabric/react-hooks": "^7.0.1", - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.2", - "@uifabric/utilities": "^7.5.0", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - } - } - }, - "@microsoft/sp-lodash-subset": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.11.0.tgz", - "integrity": "sha512-r2T5HhlEpaX9nWnQkL9CJ6af7t+XQ6gYoSpeqz90VBi0XNN93B2qASjb8lzYPzB23D8Wr8qmTaz53nQj2fA4ow==", - "requires": { - "@types/lodash": "4.14.117", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-module-interfaces": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.11.0.tgz", - "integrity": "sha512-4KCIKM/Q7OLKY/jGWTmkYNtiCibjYh18PAfeXpAfwmnHnABXKsAmC59OP6chFYtHK0RTk55MwpWV34nRSbWZdw==", - "requires": { - "@types/node": "8.10.54", - "@types/z-schema": "3.16.31", - "z-schema": "~3.18.3" - } - }, - "@microsoft/sp-odata-types": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.11.0.tgz", - "integrity": "sha512-uIA4WsgvTlQ58R9H+svg0Hm2du1zz5w1FJ7VbT3f4TI9HW3zC+wItPgNAbxWddtx0s1jNoDxQFqQooAqTWxVCQ==", - "requires": { - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-office-ui-fabric-core": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-office-ui-fabric-core/-/sp-office-ui-fabric-core-1.11.0.tgz", - "integrity": "sha512-tc9dddjQPviaqI1AhCxnU2nMCx75zJhQHuy8vDqXCW2a6m7pjjM7SLGQcN8DRMk6/h/AKFy1TqyP2Q8o0lSQOg==", - "requires": { - "@types/webpack-env": "1.13.1", - "office-ui-fabric-core": "9.6.1-fluent2", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-page-context": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.11.0.tgz", - "integrity": "sha512-Tn57hYh8OErqIlYSiiggj3S6tjQ1GBKZV2o+dlq+aC1s++BgkCt7ql3jj+gyAC/Hb9cZrK+w12BkPO6P6fH0dQ==", - "requires": { - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-odata-types": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/webpack-env": "1.13.1", - "tslib": "~1.10.0" - } - }, - "@microsoft/sp-polyfills": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-polyfills/-/sp-polyfills-1.11.0.tgz", - "integrity": "sha512-QecBpOmZyvIo6fk0b/3qx/OT0HlUZCsjSh6ybxEa3A5drssulq6/7E8VcE6cLdXcVlSQ7270SRUotzfT8xAlGw==", - "requires": { - "@types/webpack-env": "1.13.1", - "es6-collections": "0.5.6", - "es6-promise": "4.1.1", - "tslib": "~1.10.0", - "whatwg-fetch": "2.0.3", - "whatwg-url": "4.7.1" - } - }, - "@microsoft/sp-property-pane": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-property-pane/-/sp-property-pane-1.11.0.tgz", - "integrity": "sha512-8Q4ZzyM6z36YASiORmqql7b5Sx+iSjbA+rN4mEV6o8i0hbE4GdTvDyQnrTxSyoT6hD6vCyYaTZhdMqk95dz0dA==", - "requires": { - "@microsoft/decorators": "1.11.0", - "@microsoft/office-ui-fabric-react-bundle": "1.11.0", - "@microsoft/sp-component-base": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@types/es6-promise": "0.0.33", - "@types/react": "16.8.8", - "@types/react-dom": "16.8.3", - "@types/webpack-env": "1.13.1", - "office-ui-fabric-react": "7.59.0", - "react": "16.8.5", - "react-dom": "16.8.5", - "tslib": "~1.10.0" - }, - "dependencies": { - "office-ui-fabric-react": { - "version": "7.59.0", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.59.0.tgz", - "integrity": "sha512-bZg1Msffb7DKAawxzxmUYMEv+me6FzdPvRKbrG7pQrj/rRR8ofPbo43NRFfFmOdHnNs7290H0Cwpu3kRk+6msg==", - "requires": { - "@microsoft/load-themed-styles": "^1.7.13", - "@uifabric/foundation": "^7.5.0", - "@uifabric/icons": "^7.3.0", - "@uifabric/merge-styles": "^7.8.0", - "@uifabric/react-hooks": "^7.0.1", - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.2", - "@uifabric/utilities": "^7.5.0", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - } - } - }, - "@microsoft/sp-webpart-base": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/@microsoft/sp-webpart-base/-/sp-webpart-base-1.11.0.tgz", - "integrity": "sha512-oKRQpcgU3zZXALmZx6EYuGUYbhZEaprED6JAO9GCEilJUDjKhnZ+DHbIsNiqfHs+ZLWsboBaVAo0bi3PGR/Qew==", - "requires": { - "@microsoft/decorators": "1.11.0", - "@microsoft/load-themed-styles": "1.10.20", - "@microsoft/sp-component-base": "1.11.0", - "@microsoft/sp-core-library": "1.11.0", - "@microsoft/sp-diagnostics": "1.11.0", - "@microsoft/sp-dynamic-data": "1.11.0", - "@microsoft/sp-http": "1.11.0", - "@microsoft/sp-loader": "1.11.0", - "@microsoft/sp-lodash-subset": "1.11.0", - "@microsoft/sp-module-interfaces": "1.11.0", - "@microsoft/sp-page-context": "1.11.0", - "@microsoft/sp-property-pane": "1.11.0", - "@microsoft/teams-js": "1.4.2", - "@types/es6-promise": "0.0.33", - "@types/office-js": "1.0.36", - "@types/webpack-env": "1.13.1", - "office-ui-fabric-react": "7.59.0", - "tslib": "~1.10.0" - }, - "dependencies": { - "office-ui-fabric-react": { - "version": "7.59.0", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.59.0.tgz", - "integrity": "sha512-bZg1Msffb7DKAawxzxmUYMEv+me6FzdPvRKbrG7pQrj/rRR8ofPbo43NRFfFmOdHnNs7290H0Cwpu3kRk+6msg==", - "requires": { - "@microsoft/load-themed-styles": "^1.7.13", - "@uifabric/foundation": "^7.5.0", - "@uifabric/icons": "^7.3.0", - "@uifabric/merge-styles": "^7.8.0", - "@uifabric/react-hooks": "^7.0.1", - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.2", - "@uifabric/utilities": "^7.5.0", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - } - } - }, - "@microsoft/teams-js": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-1.4.2.tgz", - "integrity": "sha512-O10tpakpm+NyClJOW4eCaidlDI5sW9b5oRGQiUA0WqFG6GQt1HEz/KFsCN+ebaFgjstx+trZzYIuYdpK98XsMQ==" - }, - "@pnp/common": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@pnp/common/-/common-2.0.6.tgz", - "integrity": "sha512-/NghaEt1Q03+f1iAniRpxlciXmnTqvMFIdtjcA4HX80xVOtTiZT0Gz1GAjH7ebzBO1YtSiHri013/bhZM7beRQ==", - "requires": { - "tslib": "1.10.0" - } - }, - "@pnp/logging": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@pnp/logging/-/logging-2.0.6.tgz", - "integrity": "sha512-Jd63mqEarpuFsvy2EKNZpvsRHMaF1Ozo9/qHOZeKiSiZIvkNu4W41KgCD3BTS48saFY4870L5/gXzVo9Rkvqug==", - "requires": { - "tslib": "1.10.0" - } - }, - "@pnp/odata": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@pnp/odata/-/odata-2.0.6.tgz", - "integrity": "sha512-opU8Ifwmb/wbHtfmbBhsd2CzJhtAppNd7fbnW8dFOouCWa/udvsAc5NMuiT5sL8G9DDLQsnxZCxi83e5cao3aA==", - "requires": { - "@pnp/common": "2.0.6", - "@pnp/logging": "2.0.6", - "tslib": "1.10.0" - } - }, - "@pnp/sp": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@pnp/sp/-/sp-2.0.6.tgz", - "integrity": "sha512-AForkvQjGogym3z0bBS7XUZ7sNQDLuyE4CYAZBLUtsBS6BMr4r3QXpCSmFChgD6F8lG265Aw6IMnPzgiBDbQhQ==", - "requires": { - "@pnp/common": "2.0.6", - "@pnp/logging": "2.0.6", - "@pnp/odata": "2.0.6", - "tslib": "1.10.0" - } - }, - "@types/react": { - "version": "16.8.8", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.8.8.tgz", - "integrity": "sha512-xwEvyet96u7WnB96kqY0yY7qxx/pEpU51QeACkKFtrgjjXITQn0oO1iwPEraXVgh10ZFPix7gs1R4OJXF7P5sg==", - "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" - } - }, - "@types/react-dom": { - "version": "16.8.3", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.8.3.tgz", - "integrity": "sha512-HF5hD5YR3z9Mn6kXcW1VKe4AQ04ZlZj1EdLBae61hzQ3eEWWxMgNLUbIxeZp40BnSxqY1eAYLsH9QopQcxzScA==", - "requires": { - "@types/react": "*" - } - }, - "@uifabric/icons": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.3.0.tgz", - "integrity": "sha512-wbcR8fJce20sPjsK2bbTC/cAZfAOFuE4dd4LHw194+8H+/dqotsowrQVp5Lu8aaHGQk+fXoiZmUy30WA9cAG4Q==", - "requires": { - "@uifabric/set-version": "^7.0.2", - "@uifabric/styling": "^7.7.1", - "tslib": "^1.7.1" - } - }, - "@uifabric/utilities": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@uifabric/utilities/-/utilities-7.5.0.tgz", - "integrity": "sha512-h9XwZVaKyLN3Ss4G+bXFWsmCzExID/SKbO64XPjsCIhuxVYsTg6/hDrvyU4TCEx06/ehXfdHRmyjCYL1PNdDMg==", - "requires": { - "@uifabric/merge-styles": "^7.7.0", - "@uifabric/set-version": "^7.0.2", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - }, - "es6-promise": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.1.1.tgz", - "integrity": "sha512-OaU1hHjgJf+b0NzsxCg7NdIYERD6Hy/PEmFLTjw+b65scuisG3Kt4QoTvJ66BBkPZ581gr0kpoVzKnxniM8nng==" - }, - "msal": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/msal/-/msal-1.1.3.tgz", - "integrity": "sha512-cdShb+N1H3OyR1y46ij6OO7QzeqC6BxrbrNcouS4JBrr1+DnZ55TumxQKEzWmTXHvsbsuz5PCyXZl812Un8L9g==", - "requires": { - "tslib": "^1.9.3" - } - }, - "office-ui-fabric-react": { - "version": "6.214.0", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-6.214.0.tgz", - "integrity": "sha512-sYqi0bhZSdEWpQAsHSropoHm0SxLJkdvQDE+3reSnP+rWABD+WCLvMxRuunoQIFjZKDHZ1f+w+L6Nr7nXc+wbQ==", - "requires": { - "@microsoft/load-themed-styles": "^1.7.13", - "@uifabric/foundation": "^0.8.3", - "@uifabric/icons": "^6.5.5", - "@uifabric/merge-styles": "^6.19.4", - "@uifabric/set-version": "^1.1.3", - "@uifabric/styling": "^6.50.7", - "@uifabric/utilities": "^6.45.2", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - }, - "dependencies": { - "@uifabric/foundation": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/@uifabric/foundation/-/foundation-0.8.3.tgz", - "integrity": "sha512-r3WhRj7Out8QAOe50BGA36R8zgRPy0D0GNPuwFK9BB9oIidf91ycj7/miY8U0TZRZi5fB3Kg+dy/uxSDfgC6Og==", - "requires": { - "@uifabric/set-version": "^1.1.3", - "@uifabric/styling": "^6.50.7", - "@uifabric/utilities": "^6.41.7", - "tslib": "^1.7.1" - } - }, - "@uifabric/icons": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-6.5.5.tgz", - "integrity": "sha512-cGjzdpT0jzQ2RJvzlCVTrewaHCi4rb+ZNL2LWoceMi+5h196Y32qJwKMsc0ggR6u5CjMrzBiAxUFNppBSCutdA==", - "requires": { - "@uifabric/set-version": "^1.1.3", - "@uifabric/styling": "^6.50.7", - "tslib": "^1.7.1" - } - }, - "@uifabric/merge-styles": { - "version": "6.19.4", - "resolved": "https://registry.npmjs.org/@uifabric/merge-styles/-/merge-styles-6.19.4.tgz", - "integrity": "sha512-bjQdDHxmRIZVPwL//MtErODhEfcRJ2y+zJXoIWNh3T8JfAepeRDdoJ/pGNnnyJxA/AHMtlWt0IgMaz150/nfAA==", - "requires": { - "@uifabric/set-version": "^1.1.3", - "tslib": "^1.7.1" - } - }, - "@uifabric/set-version": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@uifabric/set-version/-/set-version-1.1.3.tgz", - "integrity": "sha512-IYpwVIuN7MJOeiWzZzr9AmFSvA5zc6gJn4fNHtEFIQnNB8WVWIcYrvx8Tbf7wWj9MvhdHYp70F054zZlHbL/Ag==", - "requires": { - "tslib": "^1.7.1" - } - }, - "@uifabric/styling": { - "version": "6.50.7", - "resolved": "https://registry.npmjs.org/@uifabric/styling/-/styling-6.50.7.tgz", - "integrity": "sha512-F2aBiB30ZiFxlZzy5hzLXODWOl6jySvPFAsoaTofk37xucHiunBLZYjX6WkfZrCWiyGPva+DLssNcwly9ZHVjg==", - "requires": { - "@microsoft/load-themed-styles": "^1.7.13", - "@uifabric/merge-styles": "^6.19.4", - "@uifabric/set-version": "^1.1.3", - "@uifabric/utilities": "^6.41.7", - "tslib": "^1.7.1" - } - }, - "@uifabric/utilities": { - "version": "6.45.2", - "resolved": "https://registry.npmjs.org/@uifabric/utilities/-/utilities-6.45.2.tgz", - "integrity": "sha512-JiC92OjMOkVoiIAeS2b3R9B1XQU0cJ5bDr9B7VvrxlwKe1W9xMtVsCer7b8gNCU5NFNYBN5ckM3Q7x2Zs5cH0A==", - "requires": { - "@uifabric/merge-styles": "^6.19.4", - "@uifabric/set-version": "^1.1.3", - "prop-types": "^15.5.10", - "tslib": "^1.7.1" - } - } - } - }, - "react": { - "version": "16.8.5", - "resolved": "https://registry.npmjs.org/react/-/react-16.8.5.tgz", - "integrity": "sha512-daCb9TD6FZGvJ3sg8da1tRAtIuw29PbKZW++NN4wqkbEvxL+bZpaaYb4xuftW/SpXmgacf1skXl/ddX6CdOlDw==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.5" - } - }, - "react-dom": { - "version": "16.8.5", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.8.5.tgz", - "integrity": "sha512-VIEIvZLpFafsfu4kgmftP5L8j7P1f0YThfVTrANMhZUFMDOsA6e0kfR6wxw/8xxKs4NB59TZYbxNdPCDW34x4w==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.5" - } - }, - "requirejs": { - "version": "2.1.20", - "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.1.20.tgz", - "integrity": "sha1-EUgiyRfsh5NFCy2qoeubvxEB6TE=" - }, - "scheduler": { - "version": "0.13.6", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.13.6.tgz", - "integrity": "sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "whatwg-fetch": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", - "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" - } - } - }, - "@pnp/spfx-property-controls": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/@pnp/spfx-property-controls/-/spfx-property-controls-3.3.0.tgz", - "integrity": "sha512-jSoAVFBnClPOiuB3D4PrBu3g9oMxSxiHdzUW7dbtf2DcKn+273+ZsvMX2Fn94RjT9dzGVu+0ODF5s0SVzmBfIA==", - "requires": { - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1", - "@microsoft/sp-office-ui-fabric-core": "1.13.1", - "@microsoft/sp-property-pane": "1.13.1", - "@microsoft/sp-webpart-base": "1.13.1", - "@pnp/common": "1.3.11", - "@pnp/logging": "1.3.11", - "@pnp/odata": "1.3.11", - "@pnp/sp": "1.3.11", - "@pnp/sp-clientsvc": "1.3.11", - "@pnp/sp-taxonomy": "1.3.11", - "@pnp/telemetry-js": "2.0.0", - "@uifabric/icons": "7.5.17", - "lodash.omit": "4.5.0", - "markdown-to-jsx": "^6.11.4", - "office-ui-fabric-react": "7.174.1", - "react": "16.13.1", - "react-ace": "5.8.0", - "react-dom": "16.13.1" - }, - "dependencies": { - "@pnp/common": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@pnp/common/-/common-1.3.11.tgz", - "integrity": "sha512-RhYKcfMP+h0pAzORZRHSPPLOBB58djN/pfnorpWPjsx6ZxMqbiDqTzAtTF4m8z/mdNnxJr0Q3kwt4ImU3FjwnA==", - "requires": { - "adal-angular": "1.0.17", - "tslib": "1.10.0" - } - }, - "@pnp/logging": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@pnp/logging/-/logging-1.3.11.tgz", - "integrity": "sha512-hADlIXwvF/wjee7425nFJ6NhqaWpWTJ5yg02bpwBUsiSuFqEUf+LwuAcyHQre2lMs6KyNa65FWoRQok9BlZuxA==", - "requires": { - "tslib": "1.10.0" - } - }, - "@pnp/odata": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@pnp/odata/-/odata-1.3.11.tgz", - "integrity": "sha512-yMaRiuVZRei2pkryCOqsw3ZXD2Lw30IJv136WQmQPQPOxG4cvsS9+woXkfMqbWV2KQ1evFUqVXbitIz6eDVfNA==", - "requires": { - "tslib": "1.10.0" - } - }, - "@pnp/sp": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@pnp/sp/-/sp-1.3.11.tgz", - "integrity": "sha512-NjdeGe81aukiSPelSPjgAFRC1+SrNPTXvTdEqTH+Q1ZvgNtk8bdZp6K6xf9emfeM2qZDOu9GpKZpg0W/emq++g==", - "requires": { - "tslib": "1.10.0" - } - }, - "@uifabric/icons": { - "version": "7.5.17", - "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.5.17.tgz", - "integrity": "sha512-2S1kse0gtseTuV2r59iWukLxxoOJ6GgP2Yhxt9oxzaP9QubpYdxCUepvJmfPQQvvy4GELdykDUWQ6/hbzliJyw==", - "requires": { - "@uifabric/set-version": "^7.0.23", - "@uifabric/styling": "^7.16.18", - "tslib": "^1.10.0" - } - }, - "adal-angular": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/adal-angular/-/adal-angular-1.0.17.tgz", - "integrity": "sha1-bpNuDkH5HTsqiOf/ypwvb29WLMQ=" - } - } - }, - "@pnp/telemetry-js": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@pnp/telemetry-js/-/telemetry-js-2.0.0.tgz", - "integrity": "sha512-qFNm3mTerTnxgTR6c/4iMMt8EUKrQn5z0XG/IQtpNlp6m7KXRDFR87mQKeBVtSv2LhxGO0VNFndKJIibBw52zQ==", - "requires": { - "whatwg-fetch": "2.0.4" - }, - "dependencies": { - "whatwg-fetch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" - } - } - }, - "@pnpm/crypto.base32-hash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@pnpm/crypto.base32-hash/-/crypto.base32-hash-2.0.0.tgz", - "integrity": "sha512-3ttOeHBpmWRbgJrpDQ8Nwd3W8s8iuiP5YZM0JRyKWaMtX8lu9d7/AKyxPmhYsMJuN+q/1dwHa7QFeDZJ53b0oA==", - "dev": true, - "requires": { - "rfc4648": "^1.5.2" - } - }, - "@pnpm/dependency-path": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@pnpm/dependency-path/-/dependency-path-2.1.3.tgz", - "integrity": "sha512-OKuLDqRZfAJAb4fnPZyPyrR827ISL1WV5YBs0q4BitPAz8ORUPSXSCFVailLhoyZWLE0Ag6hROy42Jkw/WnCUw==", - "dev": true, - "requires": { - "@pnpm/crypto.base32-hash": "2.0.0", - "@pnpm/types": "9.2.0", - "encode-registry": "^3.0.0", - "semver": "^7.5.4" - }, - "dependencies": { - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@pnpm/error": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@pnpm/error/-/error-1.4.0.tgz", - "integrity": "sha512-vxkRrkneBPVmP23kyjnYwVOtipwlSl6UfL+h+Xa3TrABJTz5rYBXemlTsU5BzST8U4pD7YDkTb3SQu+MMuIDKA==", - "dev": true - }, - "@pnpm/link-bins": { - "version": "5.3.25", - "resolved": "https://registry.npmjs.org/@pnpm/link-bins/-/link-bins-5.3.25.tgz", - "integrity": "sha512-9Xq8lLNRHFDqvYPXPgaiKkZ4rtdsm7izwM/cUsFDc5IMnG0QYIVBXQbgwhz2UvjUotbJrvfKLJaCfA3NGBnLDg==", - "dev": true, - "requires": { - "@pnpm/error": "1.4.0", - "@pnpm/package-bins": "4.1.0", - "@pnpm/read-modules-dir": "2.0.3", - "@pnpm/read-package-json": "4.0.0", - "@pnpm/read-project-manifest": "1.1.7", - "@pnpm/types": "6.4.0", - "@zkochan/cmd-shim": "^5.0.0", - "is-subdir": "^1.1.1", - "is-windows": "^1.0.2", - "mz": "^2.7.0", - "normalize-path": "^3.0.0", - "p-settle": "^4.1.1", - "ramda": "^0.27.1" - }, - "dependencies": { - "@pnpm/types": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", - "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", - "dev": true - } - } - }, - "@pnpm/package-bins": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/package-bins/-/package-bins-4.1.0.tgz", - "integrity": "sha512-57/ioGYLBbVRR80Ux9/q2i3y8Q+uQADc3c+Yse8jr/60YLOi3jcWz13e2Jy+ANYtZI258Qc5wk2X077rp0Ly/Q==", - "dev": true, - "requires": { - "@pnpm/types": "6.4.0", - "fast-glob": "^3.2.4", - "is-subdir": "^1.1.1" - }, - "dependencies": { - "@pnpm/types": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", - "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", - "dev": true - } - } - }, - "@pnpm/read-modules-dir": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@pnpm/read-modules-dir/-/read-modules-dir-2.0.3.tgz", - "integrity": "sha512-i9OgRvSlxrTS9a2oXokhDxvQzDtfqtsooJ9jaGoHkznue5aFCTSrNZFQ6M18o8hC03QWfnxaKi0BtOvNkKu2+A==", - "dev": true, - "requires": { - "mz": "^2.7.0" - } - }, - "@pnpm/read-package-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@pnpm/read-package-json/-/read-package-json-4.0.0.tgz", - "integrity": "sha512-1cr2tEwe4YU6SI0Hmg+wnsr6yxBt2iJtqv6wrF84On8pS9hx4A2PLw3CIgbwxaG0b+ur5wzhNogwl4qD5FLFNg==", - "dev": true, - "requires": { - "@pnpm/error": "1.4.0", - "@pnpm/types": "6.4.0", - "load-json-file": "^6.2.0", - "normalize-package-data": "^3.0.2" - }, - "dependencies": { - "@pnpm/types": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", - "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", - "dev": true - }, - "hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "load-json-file": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", - "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.15", - "parse-json": "^5.0.0", - "strip-bom": "^4.0.0", - "type-fest": "^0.6.0" - } - }, - "normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "requires": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - } - }, - "type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true - } - } - }, - "@pnpm/read-project-manifest": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/@pnpm/read-project-manifest/-/read-project-manifest-1.1.7.tgz", - "integrity": "sha512-tj8ExXZeDcMmMUj7D292ETe/RiEirr1X1wpT6Zy85z2MrFYoG9jfCJpps40OdZBNZBhxbuKtGPWKVSgXD0yrVw==", - "dev": true, - "requires": { - "@pnpm/error": "1.4.0", - "@pnpm/types": "6.4.0", - "@pnpm/write-project-manifest": "1.1.7", - "detect-indent": "^6.0.0", - "fast-deep-equal": "^3.1.3", - "graceful-fs": "4.2.4", - "is-windows": "^1.0.2", - "json5": "^2.1.3", - "parse-json": "^5.1.0", - "read-yaml-file": "^2.0.0", - "sort-keys": "^4.1.0", - "strip-bom": "^4.0.0" - }, - "dependencies": { - "@pnpm/types": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", - "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", - "dev": true - }, - "graceful-fs": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", - "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - } - } - }, - "@pnpm/types": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-9.2.0.tgz", - "integrity": "sha512-LtkHgtJ5Bjny4poUWyMhOKHc822/zm8NhPx+7VbopfDYnTrKgJwTyTbZjZEyN5KpDw3R1Fr8VYdmv5gn4eyWbw==", - "dev": true - }, - "@pnpm/write-project-manifest": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/@pnpm/write-project-manifest/-/write-project-manifest-1.1.7.tgz", - "integrity": "sha512-OLkDZSqkA1mkoPNPvLFXyI6fb0enCuFji6Zfditi/CLAo9kmIhQFmEUDu4krSB8i908EljG8YwL5Xjxzm5wsWA==", - "dev": true, - "requires": { - "@pnpm/types": "6.4.0", - "json5": "^2.1.3", - "mz": "^2.7.0", - "write-file-atomic": "^3.0.3", - "write-yaml-file": "^4.1.3" - }, - "dependencies": { - "@pnpm/types": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", - "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - } - } - }, - "@popperjs/core": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.0.tgz", - "integrity": "sha512-zrsUxjLOKAzdewIDRWy9nsV1GQsKBCWaGwsZQlCgr6/q+vjyZhFgqedLfFBuI9anTPEUT4APq9Mu0SZBTzIcGQ==" - }, - "@quid/stylis-plugin-focus-visible": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@quid/stylis-plugin-focus-visible/-/stylis-plugin-focus-visible-4.0.0.tgz", - "integrity": "sha512-dS4Vl1D4NHN4gAiWxUQLPAN4k2NMmNpfujuAPU2JF5P/XX8OUD7svhM8f9TudWr8dVdWYjQEAMaRtSUcf4720w==" - }, - "@rushstack/debug-certificate-manager": { - "version": "1.1.84", - "resolved": "https://registry.npmjs.org/@rushstack/debug-certificate-manager/-/debug-certificate-manager-1.1.84.tgz", - "integrity": "sha512-GondfbezgkjT9U6WdMRdjJMkkYkUf/w2YiFKX2wUrmXyNmoApzpu8fXC3sDHb2LXKR7MvBNDY5YrpLooEYJhUg==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.53.2", - "node-forge": "~1.3.1", - "sudo": "~1.0.3" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.53.2", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.2.tgz", - "integrity": "sha512-FggLe5DQs0X9MNFeJN3/EXwb+8hyZUTEp2i+V1e8r4Va4JgkjBNY0BuEaQI+3DW6S4apV3UtXU3im17MSY00DA==", - "dev": true, - "requires": { - "@types/node": "12.20.24", - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "z-schema": "~5.0.2" - } - }, - "@types/node": { - "version": "12.20.24", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", - "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", - "dev": true - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/eslint-config": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-config/-/eslint-config-2.3.4.tgz", - "integrity": "sha512-mwEfj3e260slxM57A2eMtkNpVM9J2iMGoqzWfD4hHtO+dcZT6rEeYG4djwj61ZriNJdAY8QIMMhfuID/xV+cyw==", - "dev": true, - "requires": { - "@rushstack/eslint-patch": "1.0.6", - "@rushstack/eslint-plugin": "0.7.3", - "@rushstack/eslint-plugin-packlets": "0.2.2", - "@rushstack/eslint-plugin-security": "0.1.4", - "@typescript-eslint/eslint-plugin": "3.4.0", - "@typescript-eslint/experimental-utils": "^3.4.0", - "@typescript-eslint/parser": "3.4.0", - "@typescript-eslint/typescript-estree": "3.4.0", - "eslint-plugin-promise": "~4.2.1", - "eslint-plugin-react": "~7.20.0", - "eslint-plugin-tsdoc": "~0.2.10" - } - }, - "@rushstack/eslint-patch": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.0.6.tgz", - "integrity": "sha512-Myxw//kzromB9yWgS8qYGuGVf91oBUUJpNvy5eM50sqvmKLbKjwLxohJnkWGTeeI9v9IBMtPLxz5Gc60FIfvCA==", - "dev": true - }, - "@rushstack/eslint-plugin": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin/-/eslint-plugin-0.7.3.tgz", - "integrity": "sha512-8+AqxybpcJJuxn0+fsWwMIMj2g2tLfPrbOyhEi+Rozh36eTmgGXF45qh8bHE1gicsX4yGDj2ob1P62oQV6hs3g==", - "dev": true, - "requires": { - "@rushstack/tree-pattern": "0.2.1", - "@typescript-eslint/experimental-utils": "^3.4.0" - } - }, - "@rushstack/eslint-plugin-packlets": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-packlets/-/eslint-plugin-packlets-0.2.2.tgz", - "integrity": "sha512-8kKs5fq9Mm9sP4W7ETbp48eH6iECfXDKP1mdg2iBPl8CaZZHMzVYC2vQSSSOOMv+OV23LreRFWV0LlllEDuD3Q==", - "dev": true, - "requires": { - "@rushstack/tree-pattern": "0.2.1", - "@typescript-eslint/experimental-utils": "^3.4.0" - } - }, - "@rushstack/eslint-plugin-security": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-security/-/eslint-plugin-security-0.1.4.tgz", - "integrity": "sha512-AiNUS5H4/RvyNI9FDKdd4ya3PovjpPVU9Pr7He1JPvqLHOCT8P9n5YpRHjxx0ftD77mDLT5HrcOKjxTW7BZQHg==", - "dev": true, - "requires": { - "@rushstack/tree-pattern": "0.2.1", - "@typescript-eslint/experimental-utils": "^3.4.0" - } - }, - "@rushstack/heft-config-file": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.13.2.tgz", - "integrity": "sha512-eJCuVnKR+uSG7qyeyICA57IOBD3OoOlNTpsJgNjcZZiTj+ZlKPaGmJ8/mzXwNiEpTIlRsVvoQURYFz9QY9sfnQ==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "@rushstack/rig-package": "0.4.0", - "jsonpath-plus": "~4.0.0" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "@rushstack/rig-package": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.4.0.tgz", - "integrity": "sha512-FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw==", - "dev": true, - "requires": { - "resolve": "~1.22.1", - "strip-json-comments": "~3.1.1" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/loader-raw-script": { - "version": "1.3.175", - "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.3.175.tgz", - "integrity": "sha512-Rf+DewV7fMB5OX3yvhPNT5QRQgvI+2MWGbBmI0aYC5Aiax+RT5d+TN7CXket5CLFvT9/un3wN41vMtlnUbszKQ==", - "requires": { - "loader-utils": "~1.1.0" - } - }, - "@rushstack/localization-utilities": { - "version": "0.8.80", - "resolved": "https://registry.npmjs.org/@rushstack/localization-utilities/-/localization-utilities-0.8.80.tgz", - "integrity": "sha512-kEM8v6ULA3ReikAmdP4faFWMDG4WcATty3lDU2/XFKh2+oj6HLDtnyUgDpYBaASx2FQstu5f5J7QehTLcl21MA==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "@rushstack/typings-generator": "0.10.36", - "pseudolocale": "~1.1.0", - "xmldoc": "~1.1.2" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/module-minifier": { - "version": "0.3.38", - "resolved": "https://registry.npmjs.org/@rushstack/module-minifier/-/module-minifier-0.3.38.tgz", - "integrity": "sha512-o0HzguvsC+VUbpg8gqNCsE9myZ4s6ZIGZggPTR26Qz33yIKvnBHVwHkDu191Y3N1cqMYgVwcZznSUSWifV3qOw==", - "dev": true, - "requires": { - "@rushstack/worker-pool": "0.3.37", - "serialize-javascript": "6.0.0", - "source-map": "~0.7.3", - "terser": "^5.9.0" - }, - "dependencies": { - "acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", - "dev": true - }, - "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", - "dev": true, - "requires": { - "randombytes": "^2.1.0" - } - }, - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true - }, - "terser": { - "version": "5.21.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.21.0.tgz", - "integrity": "sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw==", - "dev": true, - "requires": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - } - } - } - }, - "@rushstack/node-core-library": { - "version": "3.38.0", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.38.0.tgz", - "integrity": "sha512-cmvl0yQx8sSmbuXwiRYJi8TO+jpTtrLJQ8UmFHhKvgPVJAW8cV8dnpD1Xx/BvTGrJZ2XtRAIkAhBS9okBnap4w==", - "dev": true, - "requires": { - "@types/node": "10.17.13", - "colors": "~1.2.1", + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", "fs-extra": "~7.0.1", "import-lazy": "~4.0.0", "jju": "~1.4.0", - "resolve": "~1.17.0", - "semver": "~7.3.0", - "timsort": "~0.3.0", - "z-schema": "~3.18.3" + "resolve": "~1.22.1", + "semver": "~7.5.4" }, - "dependencies": { + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { "@types/node": { - "version": "10.17.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", - "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", - "dev": true - } - } - }, - "@rushstack/package-deps-hash": { - "version": "4.0.41", - "resolved": "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.0.41.tgz", - "integrity": "sha512-bx1g0I54BidJuIqyQHY2Vr4Azn2ThLgrc6hHjEIBzIVmXeznZxJfYViAPNFAu7BV/TaLIU1BSYeRn/yObu9KZA==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } } } }, - "@rushstack/package-extractor": { - "version": "0.3.11", - "resolved": "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.3.11.tgz", - "integrity": "sha512-j5hRGB/ilCozT7qH5q3swM/xdf/TPFtolWkqciYCU8G8WFXxILbN2nwo4goWyWQaD9hFlCiw9S7z8LTEkSmapQ==", + "node_modules/@microsoft/rush-lib/node_modules/@rushstack/rig-package": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.3.tgz", + "integrity": "sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==", "dev": true, - "requires": { - "@pnpm/link-bins": "~5.3.7", - "@rushstack/node-core-library": "3.59.6", - "@rushstack/terminal": "0.5.34", - "ignore": "~5.1.6", - "jszip": "~3.8.0", - "minimatch": "~3.0.3", - "npm-packlist": "~2.1.2" - }, "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "ignore": { - "version": "5.1.9", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", - "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", - "dev": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/rig-package": { - "version": "0.2.12", - "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.2.12.tgz", - "integrity": "sha512-nbePcvF8hQwv0ql9aeQxcaMPK/h1OLAC00W7fWCRWIvD2MchZOE8jumIIr66HGrfG2X1sw++m/ZYI4D+BM5ovQ==", - "dev": true, - "requires": { - "resolve": "~1.17.0", + "resolve": "~1.22.1", "strip-json-comments": "~3.1.1" } }, - "@rushstack/rush-amazon-s3-build-cache-plugin": { - "version": "5.100.2", - "resolved": "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.100.2.tgz", - "integrity": "sha512-A49NzlRDcp0Hd5WZWN8jvnvI+0MoFOdRXL3iutVI12YAYBH6c7uSul+71MMY83x0yQqk4TcfGYVpFWx1j/n8/Q==", + "node_modules/@microsoft/rush-lib/node_modules/@rushstack/ts-command-line": { + "version": "4.22.8", + "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.22.8.tgz", + "integrity": "sha512-XbFjOoV7qZHJnSuFUHv0pKaFA4ixyCuki+xMjsMfDwfvQjs5MYG0IK5COal3tRnG7KCDe2l/G+9LrzYE/RJhgg==", "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "@rushstack/rush-sdk": "5.100.2", - "https-proxy-agent": "~5.0.0", - "node-fetch": "2.6.7" - }, "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/rush-azure-storage-build-cache-plugin": { - "version": "5.100.2", - "resolved": "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.100.2.tgz", - "integrity": "sha512-FIAvmIfYLWhnygDCyUWSZOuyTWVRLFHYeG9xPmUpwJSPqxUL3HG5cRGVYlyRgK9oSJSEq+g0mpbe7nE8WwJgtg==", - "dev": true, - "requires": { - "@azure/identity": "~2.1.0", - "@azure/storage-blob": "~12.11.0", - "@rushstack/node-core-library": "3.59.6", - "@rushstack/rush-sdk": "5.100.2", - "@rushstack/terminal": "0.5.34" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/rush-sdk": { - "version": "5.100.2", - "resolved": "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.100.2.tgz", - "integrity": "sha512-+4DKbXj6R8vilRYswH8Lb+WIuIoD29/ZjMmazKBKXJTm3x7sgGJy45ozAZbfeXvdOTzqsg11NzIbwaDm8rRhLQ==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "@types/node-fetch": "2.6.2", - "tapable": "2.2.1" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/set-webpack-public-path-plugin": { - "version": "4.0.15", - "resolved": "https://registry.npmjs.org/@rushstack/set-webpack-public-path-plugin/-/set-webpack-public-path-plugin-4.0.15.tgz", - "integrity": "sha512-TwXZVRPV0wRrjDfAYGXU38FTFihHjUDIn5iRWtu6rn/MCXNR6y4OwPVg5MlSVbqn/hU8WnmML6/hT54XCdOfPQ==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "@rushstack/webpack-plugin-utilities": "0.2.36" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/stream-collator": { - "version": "4.0.259", - "resolved": "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.0.259.tgz", - "integrity": "sha512-UfMRCp1avkUUs9pdtWQ8ZE8Nmuxeuw1a9bjLQ7cQJ3meuv8iDxKuxsyJRfrwIfCkVkNVw5OJ9eM6E/edUPP7qw==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "@rushstack/terminal": "0.5.34" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/terminal": { - "version": "0.5.34", - "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.5.34.tgz", - "integrity": "sha512-Q7YDkPTsvJZpHapapo5sK2VCxW7byoqhK89tXMUiva6dNwelomgEe0S+njKw4vcmGde4hQD7LAqQPJPYFeU4mw==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "wordwrap": "~1.0.0" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/tree-pattern": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@rushstack/tree-pattern/-/tree-pattern-0.2.1.tgz", - "integrity": "sha512-ZRPQdV0LxUY/HRIvVKNz3Sb/qbklSthL2pY0qkNoycXKcXbCgXEP3TxL+i1/tW9g1jqft4o+pl9wx12Q6Uc0Xw==", - "dev": true - }, - "@rushstack/ts-command-line": { - "version": "4.7.10", - "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.7.10.tgz", - "integrity": "sha512-8t042g8eerypNOEcdpxwRA3uCmz0duMo21rG4Z2mdz7JxJeylDmzjlU3wDdef2t3P1Z61JCdZB6fbm1Mh0zi7w==", - "dev": true, - "requires": { + "@rushstack/terminal": "0.14.2", "@types/argparse": "1.0.38", "argparse": "~1.0.9", - "colors": "~1.2.1", "string-argv": "~0.3.1" } }, - "@rushstack/typings-generator": { - "version": "0.10.36", - "resolved": "https://registry.npmjs.org/@rushstack/typings-generator/-/typings-generator-0.10.36.tgz", - "integrity": "sha512-9aB/D8lI+fbmM5LzPgGcUJzuw+Xg4FixGuQVnis70Bss+5SU6YzOk/bfN4/xhSghMzG+AI7S87368x37TgeQtA==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.6", - "chokidar": "~3.4.0", - "glob": "~7.0.5" - }, - "dependencies": { - "@rushstack/node-core-library": { - "version": "3.59.6", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz", - "integrity": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "chokidar": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", - "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", - "dev": true, - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.1.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "fsevents": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", - "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", - "dev": true, - "optional": true - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/webpack-plugin-utilities": { - "version": "0.2.36", - "resolved": "https://registry.npmjs.org/@rushstack/webpack-plugin-utilities/-/webpack-plugin-utilities-0.2.36.tgz", - "integrity": "sha512-LguxiG0b6AKSxUODKbmPqHr9Q08weilpK3qOiyzYMqIQ5nR3WOGoflaYbO/kDsKbjgLyxQWL2XPZdyyYke3gjg==", - "dev": true, - "requires": { - "memfs": "3.4.3", - "webpack-merge": "~5.8.0" - } - }, - "@rushstack/webpack4-localization-plugin": { - "version": "0.17.46", - "resolved": "https://registry.npmjs.org/@rushstack/webpack4-localization-plugin/-/webpack4-localization-plugin-0.17.46.tgz", - "integrity": "sha512-wEEVp6oBp5/OIrRzwgkuuQlawUY6MfjaWsp2T9Zp4MkbqGVgF+gdKG+iKzWtBKW2YbZ9fnVZJH23FoWwh81w4w==", - "dev": true, - "requires": { - "@rushstack/localization-utilities": "0.8.83", - "@rushstack/node-core-library": "3.59.7", - "@types/tapable": "1.0.6", - "loader-utils": "1.4.2", - "minimatch": "~3.0.3" - }, - "dependencies": { - "@rushstack/localization-utilities": { - "version": "0.8.83", - "resolved": "https://registry.npmjs.org/@rushstack/localization-utilities/-/localization-utilities-0.8.83.tgz", - "integrity": "sha512-0Wjvg/3686xgLIjX4aCxNoOfWb1BOpuckzNMjEK5MZyCEFz4Ral+ln13zP+AMKGGWcdxsYdWs+n1yfkJKEX9fQ==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.7", - "@rushstack/typings-generator": "0.11.1", - "pseudolocale": "~1.1.0", - "xmldoc": "~1.1.2" - } - }, - "@rushstack/node-core-library": { - "version": "3.59.7", - "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.7.tgz", - "integrity": "sha512-ln1Drq0h+Hwa1JVA65x5mlSgUrBa1uHL+V89FqVWQgXd1vVIMhrtqtWGQrhTnFHxru5ppX+FY39VWELF/FjQCw==", - "dev": true, - "requires": { - "colors": "~1.2.1", - "fs-extra": "~7.0.1", - "import-lazy": "~4.0.0", - "jju": "~1.4.0", - "resolve": "~1.22.1", - "semver": "~7.5.4", - "z-schema": "~5.0.2" - } - }, - "@rushstack/typings-generator": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/@rushstack/typings-generator/-/typings-generator-0.11.1.tgz", - "integrity": "sha512-pcnA9r14xl1TE4QXW6+t6yGP/5JfGZEGixlL6NH6PHjQVXAFnw91EXvc2NteslePTNdjPuR/34uLqE0i57WNpw==", - "dev": true, - "requires": { - "@rushstack/node-core-library": "3.59.7", - "chokidar": "~3.4.0", - "fast-glob": "~3.2.4" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "chokidar": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", - "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", - "dev": true, - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.1.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" - } - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "optional": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fsevents": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", - "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", - "dev": true, - "optional": true - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "resolve": { - "version": "1.22.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", - "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "validator": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz", - "integrity": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==", - "dev": true - }, - "z-schema": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", - "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", - "dev": true, - "requires": { - "commander": "^9.4.1", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "validator": "^13.7.0" - } - } - } - }, - "@rushstack/webpack4-module-minifier-plugin": { - "version": "0.12.35", - "resolved": "https://registry.npmjs.org/@rushstack/webpack4-module-minifier-plugin/-/webpack4-module-minifier-plugin-0.12.35.tgz", - "integrity": "sha512-/tHFN9iuKbsDt0GfSU/XQQEND9XkD1EkDkmQkSsc45YKnip7kCLRN8bpJL410MBiWIMOTWglkafVyiS9pyZ6bw==", - "dev": true, - "requires": { - "@rushstack/module-minifier": "0.3.38", - "@rushstack/worker-pool": "0.3.37", - "@types/tapable": "1.0.6", - "tapable": "1.1.3" - } - }, - "@rushstack/worker-pool": { - "version": "0.3.37", - "resolved": "https://registry.npmjs.org/@rushstack/worker-pool/-/worker-pool-0.3.37.tgz", - "integrity": "sha512-KVuklmysCkNdRxTcLb80MNEBG/KrDL74c+1XIYZlTvSlDnTs5j9gdjKIV73lZmYox+SWTpvUWrP6JhWb2noDJg==", - "dev": true - }, - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", - "dev": true - }, - "@sinonjs/commons": { - "version": "1.8.6", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", - "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", - "dev": true, - "requires": { - "type-detect": "4.0.8" - } - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "dev": true, - "requires": { - "defer-to-connect": "^1.0.1" - } - }, - "@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true - }, - "@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true - }, - "@types/adal-angular": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/adal-angular/-/adal-angular-1.0.1.tgz", - "integrity": "sha512-2sRGxJYrluhvIz8ae98i5k5woe9Fics4dMFHTcNfY2xAkj5QGZor+sfZzlgM58Fpw7Kklau9Gn6OhgJP25dKug==" - }, - "@types/anymatch": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-3.0.0.tgz", - "integrity": "sha512-qLChUo6yhpQ9k905NwL74GU7TxH+9UODwwQ6ICNI+O6EDMExqH/Cv9NsbmcZ7yC/rRXJ/AHCzfgjsFRY5fKjYw==", - "dev": true, - "requires": { - "anymatch": "*" - } - }, - "@types/argparse": { - "version": "1.0.38", - "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", - "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", - "dev": true - }, - "@types/babel__core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.2.tgz", - "integrity": "sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==", - "dev": true, - "requires": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.5", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.5.tgz", - "integrity": "sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.2.tgz", - "integrity": "sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.2.tgz", - "integrity": "sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==", - "dev": true, - "requires": { - "@babel/types": "^7.20.7" - } - }, - "@types/body-parser": { - "version": "1.19.3", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.3.tgz", - "integrity": "sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==", - "dev": true, - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/bonjour": { - "version": "3.5.11", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.11.tgz", - "integrity": "sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/chalk": { - "version": "0.4.31", - "resolved": "https://registry.npmjs.org/@types/chalk/-/chalk-0.4.31.tgz", - "integrity": "sha512-nF0fisEPYMIyfrFgabFimsz9Lnuu9MwkNrrlATm2E4E46afKDyeelT+8bXfw1VSc7sLBxMxRgT7PxTC2JcqN4Q==", - "dev": true - }, - "@types/classnames": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@types/classnames/-/classnames-2.3.1.tgz", - "integrity": "sha512-zeOWb0JGBoVmlQoznvqXbE0tEC/HONsnoUNH19Hc96NFsTAwTXbTqb8FMYkru1F/iqp7a18Ws3nWJvtA1sHD1A==", - "requires": { - "classnames": "*" - } - }, - "@types/connect": { - "version": "3.4.36", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.36.tgz", - "integrity": "sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/connect-history-api-fallback": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.1.tgz", - "integrity": "sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw==", - "dev": true, - "requires": { - "@types/express-serve-static-core": "*", - "@types/node": "*" - } - }, - "@types/copy-webpack-plugin": { - "version": "6.4.3", - "resolved": "https://registry.npmjs.org/@types/copy-webpack-plugin/-/copy-webpack-plugin-6.4.3.tgz", - "integrity": "sha512-yk7QO2/WrtkDLcsqQXfjU3EIYzggNHVl5y6gnxfMtCPB+bxVUIUzwb1BNxlk+78wENoh9ZgkVSNqn80T9rqO8w==", - "dev": true, - "requires": { - "@types/webpack": "^4" - } - }, - "@types/cross-spawn": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.3.tgz", - "integrity": "sha512-BDAkU7WHHRHnvBf5z89lcvACsvkz/n7Tv+HyD/uW76O29HoH1Tk/W6iQrepaZVbisvlEek4ygwT8IW7ow9XLAA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/es6-promise": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/es6-promise/-/es6-promise-0.0.33.tgz", - "integrity": "sha512-HKJFVLCGrWQ/1unEw8JdaTxu6n3EUxmwTxJ6D0O1x0gD8joCsgoTWxEgevb7fp2XIogNjof3KEd+3bJoGne/nw==" - }, - "@types/eslint": { - "version": "7.29.0", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", - "integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==", - "dev": true, - "requires": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "@types/eslint-visitor-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==", - "dev": true - }, - "@types/estree": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.2.tgz", - "integrity": "sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==", - "dev": true - }, - "@types/express": { - "version": "4.17.18", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.18.tgz", - "integrity": "sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ==", - "dev": true, - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "4.17.37", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.37.tgz", - "integrity": "sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" - } - }, - "@types/glob": { - "version": "5.0.30", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.30.tgz", - "integrity": "sha512-ZM05wDByI+WA153sfirJyEHoYYoIuZ7lA2dB/Gl8ymmpMTR78fNRtDMqa7Z6SdH4fZdLWZNRE6mZpx3XqBOrHw==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/glob-stream": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@types/glob-stream/-/glob-stream-8.0.0.tgz", - "integrity": "sha512-fxTWwdQmX9LWSHD7ZLlv3BHR992mKcVcDnT/2v+l/QZZo7TfDdyasqlSYVzOnMGWhRbrWeWkbj/mgezFjKynhw==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/picomatch": "*", - "@types/streamx": "*" - } - }, - "@types/graceful-fs": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.7.tgz", - "integrity": "sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/gulp": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-4.0.6.tgz", - "integrity": "sha512-0E8/iV/7FKWyQWSmi7jnUvgXXgaw+pfAzEB06Xu+l0iXVJppLbpOye5z7E2klw5akXd+8kPtYuk65YBcZPM4ow==", - "dev": true, - "requires": { - "@types/undertaker": "*", - "@types/vinyl-fs": "*", - "chokidar": "^2.1.2" - } - }, - "@types/http-errors": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.2.tgz", - "integrity": "sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg==", - "dev": true - }, - "@types/http-proxy": { - "version": "1.17.12", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.12.tgz", - "integrity": "sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "@types/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", - "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*", - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "25.2.1", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-25.2.1.tgz", - "integrity": "sha512-msra1bCaAeEdkSyA0CZ6gW1ukMIvZ5YoJkdXw/qhQdsuuDlFTcEUrUw8CLCPt2rVRUfXlClVvK2gvPs9IokZaA==", - "dev": true, - "requires": { - "jest-diff": "^25.2.1", - "pretty-format": "^25.2.1" - } - }, - "@types/json-schema": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", - "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", - "dev": true - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "@types/loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-y3UaQ1rIkp2Nzv67Wa/MS7GJM958CDyWkMmnFneTRcWKlaSPreESrwruQ2WhEapQHCV6HJ2Pj62k0BB7mtQNHw==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/webpack": "^4" - } - }, - "@types/lodash": { - "version": "4.14.117", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.117.tgz", - "integrity": "sha512-xyf2m6tRbz8qQKcxYZa7PA4SllYcay+eh25DN3jmNYY6gSTL7Htc/bttVdkqj2wfJGbeWlQiX8pIyJpKU+tubw==" - }, - "@types/mime": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.3.tgz", - "integrity": "sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg==", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", - "dev": true - }, - "@types/minimist": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.3.tgz", - "integrity": "sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==", - "dev": true - }, - "@types/node": { - "version": "8.10.54", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.54.tgz", - "integrity": "sha512-kaYyLYf6ICn6/isAyD4K1MyWWd5Q3JgH6bnMN089LUx88+s4W8GvK9Q6JMBVu5vsFFp7pMdSxdKmlBXwH/VFRg==" - }, - "@types/node-fetch": { + "node_modules/@microsoft/rush-lib/node_modules/@types/node-fetch": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz", "integrity": "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==", "dev": true, - "requires": { + "dependencies": { "@types/node": "*", "form-data": "^3.0.0" - }, + } + }, + "node_modules/@microsoft/rush-lib/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, "dependencies": { - "form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@microsoft/rush-lib/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true } } }, - "@types/node-notifier": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@types/node-notifier/-/node-notifier-8.0.2.tgz", - "integrity": "sha512-5v0PhPv0AManpxT7W25Zipmj/Lxp1WqfkcpZHyqSloB+gGoAHRBuzhrCelFKrPvNF5ki3gAcO4kxaGO2/21u8g==", + "node_modules/@microsoft/rush-lib/node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/normalize-package-data": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", - "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==", - "dev": true - }, - "@types/office-js": { - "version": "1.0.36", - "resolved": "https://registry.npmjs.org/@types/office-js/-/office-js-1.0.36.tgz", - "integrity": "sha512-v5jOXCPS0nbbuVzZThhDMzttuJrpzzvx1GsPo5Qed8Cs9uzMwEV1vdkKN5zLFnAUlEF4s8Szl9KXnhnSvH89Kw==" - }, - "@types/orchestrator": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/orchestrator/-/orchestrator-0.0.30.tgz", - "integrity": "sha512-rT9So631KbmirIGsZ5m6T15FKHqiWhYRULdl03l/WBezzZ8wwhYTS2zyfHjsvAGYFVff1wtmGFd0akRCBDSZrA==", - "dev": true, - "requires": { - "@types/q": "*" - } - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true - }, - "@types/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@types/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-Ejq9/KBsgfZZafGGdr9R7011EZhDzcAEMjoBl2W4eGNcZGhsUFMbUA0D+sHxjtAA1ldk3e6wapzXeyp0NSuM8Q==", - "dev": true - }, - "@types/prettier": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-1.19.1.tgz", - "integrity": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==", - "dev": true - }, - "@types/prop-types": { - "version": "15.7.4", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", - "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" - }, - "@types/q": { - "version": "1.5.6", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.6.tgz", - "integrity": "sha512-IKjZ8RjTSwD4/YG+2gtj7BPFRB/lNbWKTiSj3M7U/TD2B7HfYCxvp2Zz6xA2WIY7pAuL1QOUPw8gQRbUrrq4fQ==", - "dev": true - }, - "@types/qs": { - "version": "6.9.8", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.8.tgz", - "integrity": "sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==", - "dev": true - }, - "@types/quill": { - "version": "1.3.10", - "resolved": "https://registry.npmjs.org/@types/quill/-/quill-1.3.10.tgz", - "integrity": "sha512-IhW3fPW+bkt9MLNlycw8u8fWb7oO7W5URC9MfZYHBlA24rex9rs23D5DETChu1zvgVdc5ka64ICjJOgQMr6Shw==", - "requires": { - "parchment": "^1.1.2" - } - }, - "@types/range-parser": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.5.tgz", - "integrity": "sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA==", - "dev": true - }, - "@types/react": { - "version": "16.9.51", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.51.tgz", - "integrity": "sha512-lQa12IyO+DMlnSZ3+AGHRUiUcpK47aakMMoBG8f7HGxJT8Yfe+WE128HIXaHOHVPReAW0oDS3KAI0JI2DDe1PQ==", - "dev": true, - "requires": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - }, "dependencies": { - "csstype": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz", - "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==", - "dev": true + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/@microsoft/rush-lib/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@microsoft/rush-lib/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@microsoft/rush-lib/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/rush-lib/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@microsoft/rush-lib/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true } } }, - "@types/react-dom": { - "version": "16.9.8", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.8.tgz", - "integrity": "sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA==", + "node_modules/@microsoft/rush-lib/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, - "requires": { - "@types/react": "*" + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@types/requirejs": { - "version": "2.1.29", - "resolved": "https://registry.npmjs.org/@types/requirejs/-/requirejs-2.1.29.tgz", - "integrity": "sha1-vEi8gzwHnCwkumr7ym06A7P04vM=" - }, - "@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "dev": true - }, - "@types/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-iotVxtCCsPLRAvxMFFgxL8HD2l4mAZ2Oin7/VJ2ooWO0VOK4EGOGmZWZn1uCq7RofR3I/1IOSjCHlFT71eVK0Q==", - "dev": true - }, - "@types/send": { - "version": "0.17.2", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.2.tgz", - "integrity": "sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw==", + "node_modules/@microsoft/rush-lib/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, - "requires": { - "@types/mime": "^1", - "@types/node": "*" + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "@types/serve-index": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.2.tgz", - "integrity": "sha512-asaEIoc6J+DbBKXtO7p2shWUpKacZOoMBEGBgPG91P8xhO53ohzHWGCs4ScZo5pQMf5ukQzVT9fhX1WzpHihig==", + "node_modules/@microsoft/rush-lib/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true, - "requires": { - "@types/express": "*" + "engines": { + "node": ">=6" } }, - "@types/serve-static": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.3.tgz", - "integrity": "sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg==", - "dev": true, - "requires": { - "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" - } - }, - "@types/sockjs": { - "version": "0.3.34", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.34.tgz", - "integrity": "sha512-R+n7qBFnm/6jinlteC9DBL5dGiDGjWAvjo4viUanpnc/dG1y7uDoacXPIQ/PQEg1fI912SMHIa014ZjRpvDw4g==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/source-list-map": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.3.tgz", - "integrity": "sha512-I9R/7fUjzUOyDy6AFkehCK711wWoAXEaBi80AfjZt1lIkbe6AcXKd3ckQc3liMvQExWvfOeh/8CtKzrfUFN5gA==", - "dev": true - }, - "@types/stack-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", - "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", - "dev": true - }, - "@types/streamx": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/@types/streamx/-/streamx-2.9.2.tgz", - "integrity": "sha512-HmO0hbPVLzr6HIcc86QQPjJRLpBDQmC+c/qd1jG3vpH1ZgGxl9R9xhofm19vh7Xm8wHUcKBek1Ef1OHrwipmiA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-xevGOReSYGM7g/kUBZzPqCrR/KYAo+F0yiPc85WFTJa0MSLtyFTVTU6cJu/aV4mid7IffDIWqo69THF2o4JiEQ==", - "dev": true - }, - "@types/strip-json-comments": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz", - "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", - "dev": true - }, - "@types/tapable": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", - "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", - "dev": true - }, - "@types/through2": { - "version": "2.0.32", - "resolved": "https://registry.npmjs.org/@types/through2/-/through2-2.0.32.tgz", - "integrity": "sha512-VYclBauj55V0qPDHs9QMdKBdxdob6zta8mcayjTyOzlRgl+PNERnvNol99W1PBnvQXaYoTTqSce97rr9dz9oXQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/tunnel": { + "node_modules/@microsoft/rush-lib/node_modules/tr46": { "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/tunnel/-/tunnel-0.0.3.tgz", - "integrity": "sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/uglify-js": { - "version": "3.17.2", - "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.2.tgz", - "integrity": "sha512-9SjrHO54LINgC/6Ehr81NjAxAYvwEZqjUHLjJYvC4Nmr9jbLQCIZbWSvl4vXQkkmR1UAuaKDycau3O1kWGFyXQ==", - "dev": true, - "requires": { - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "@types/undertaker": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/@types/undertaker/-/undertaker-1.2.9.tgz", - "integrity": "sha512-rOGGHtWFP4jsSKXvW2BJn+hYIAJ4cvsJi5wscbfbBHQ0yLQvTUXKvL+i72cv+8biktveFLEqbMpsKmJQxYVPQw==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/undertaker-registry": "*", - "async-done": "~1.3.2" - } - }, - "@types/undertaker-registry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/undertaker-registry/-/undertaker-registry-1.0.2.tgz", - "integrity": "sha512-O9CqcXYnCsHUSd71+hohlhEaP57dThYQQ8/cDwskhTCJ1kA3E5CVaK1sbEnukP2eWlpSgae/8KqgJBw3w/DmoQ==", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, - "@types/vinyl": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.3.tgz", - "integrity": "sha512-hrT6xg16CWSmndZqOTJ6BGIn2abKyTw0B58bI+7ioUoj3Sma6u8ftZ1DTI2yCaJamOVGLOnQWiPH3a74+EaqTA==", + "node_modules/@microsoft/rush-lib/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, - "requires": { - "@types/node": "*" + "bin": { + "uuid": "dist/bin/uuid" } }, - "@types/vinyl-fs": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/vinyl-fs/-/vinyl-fs-3.0.3.tgz", - "integrity": "sha512-lh/EgJwJikII5ZvdcrwUcm1zoBOwVG8/Szo3Q4opb6HE8yYUPejiE5UDiDrhzgU2Zka8jKjEDPHblAvg8faMqw==", - "dev": true, - "requires": { - "@types/glob-stream": "*", - "@types/node": "*", - "@types/vinyl": "*" - } - }, - "@types/webpack": { - "version": "4.41.24", - "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.24.tgz", - "integrity": "sha512-1A0MXPwZiMOD3DPMuOKUKcpkdPo8Lq33UGggZ7xio6wJ/jV1dAu5cXDrOfGDnldUroPIRLsr/DT43/GqOA4RFQ==", - "dev": true, - "requires": { - "@types/anymatch": "*", - "@types/node": "*", - "@types/tapable": "*", - "@types/uglify-js": "*", - "@types/webpack-sources": "*", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "@types/webpack-dev-server": { - "version": "3.11.4", - "resolved": "https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.4.tgz", - "integrity": "sha512-DCKORHjqNNVuMIDWFrlljftvc9CL0+09p3l7lBpb8dRqgN5SmvkWCY4MPKxoI6wJgdRqohmoNbptkxqSKAzLRg==", - "dev": true, - "requires": { - "@types/connect-history-api-fallback": "*", - "@types/express": "*", - "@types/serve-static": "*", - "@types/webpack": "^4", - "http-proxy-middleware": "^1.0.0" - }, - "dependencies": { - "http-proxy-middleware": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", - "integrity": "sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==", - "dev": true, - "requires": { - "@types/http-proxy": "^1.17.5", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" - } - }, - "is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true - } - } - }, - "@types/webpack-env": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.13.1.tgz", - "integrity": "sha512-oHyg0NssP2RCpCvE35hhbSqMJRsc5lSW+GFe+Vc65JL+kHII1VMYM+0KeV/z4utFuUqPoQRmq8KMMp7ba0dj6Q==" - }, - "@types/webpack-sources": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.1.tgz", - "integrity": "sha512-iLC3Fsx62ejm3ST3PQ8vBMC54Rb3EoCprZjeJGI5q+9QjfDLGt9jeg/k245qz1G9AQnORGk0vqPicJFPT1QODQ==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/source-list-map": "*", - "source-map": "^0.7.3" - }, - "dependencies": { - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true - } - } - }, - "@types/ws": { - "version": "8.5.6", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.6.tgz", - "integrity": "sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/yargs": { - "version": "0.0.34", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-0.0.34.tgz", - "integrity": "sha512-Rrj9a2bqpcPKGYCIyQGkD24PeCZG3ow58cgaAtI4jwsUMe/9hDaCInMpXZ+PaUK3cVwsFUstpOEkSfMdQpCnYA==", + "node_modules/@microsoft/rush-lib/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", "dev": true }, - "@types/yargs-parser": { - "version": "21.0.1", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.1.tgz", - "integrity": "sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==", + "node_modules/@microsoft/rush-lib/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@microsoft/rush-lib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "@types/z-schema": { - "version": "3.16.31", - "resolved": "https://registry.npmjs.org/@types/z-schema/-/z-schema-3.16.31.tgz", - "integrity": "sha1-LrHQCl5Ow/pYx2r94S4YK2bcXBw=" - }, - "@typescript-eslint/eslint-plugin": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.4.0.tgz", - "integrity": "sha512-wfkpiqaEVhZIuQRmudDszc01jC/YR7gMSxa6ulhggAe/Hs0KVIuo9wzvFiDbG3JD5pRFQoqnf4m7REDsUvBnMQ==", + "node_modules/@microsoft/rush-stack-compiler-4.7": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@microsoft/rush-stack-compiler-4.7/-/rush-stack-compiler-4.7-0.1.0.tgz", + "integrity": "sha512-fl7vWuAJjhsJWauSlUgC/ldF4vL8qmMX0LozTvHM5ICmM82O3exPFjLjvgw9q/niGt77P1OGIrwiDClCHfZQJQ==", "dev": true, - "requires": { - "@typescript-eslint/experimental-utils": "3.4.0", - "debug": "^4.1.1", + "dependencies": { + "@microsoft/api-extractor": "~7.15.2", + "@rushstack/eslint-config": "~2.6.2", + "@rushstack/node-core-library": "~3.53.0", + "@types/node": "10.17.13", + "import-lazy": "~4.0.0", + "typescript": "~4.7.4" + }, + "bin": { + "rush-api-extractor": "bin/rush-api-extractor", + "rush-eslint": "bin/rush-eslint", + "rush-tsc": "bin/rush-tsc", + "rush-tslint": "bin/rush-tslint" + }, + "peerDependencies": { + "eslint": "^8.7.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@microsoft/tsdoc": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.14.2.tgz", + "integrity": "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==", + "dev": true + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@microsoft/tsdoc-config": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.16.2.tgz", + "integrity": "sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==", + "dev": true, + "dependencies": { + "@microsoft/tsdoc": "0.14.2", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@microsoft/tsdoc-config/node_modules/resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dev": true, + "dependencies": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@rushstack/eslint-config": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-config/-/eslint-config-2.6.2.tgz", + "integrity": "sha512-EcZENq5HlXe5XN9oFZ90K8y946zBXRgliNhy+378H0oK00v3FYADj8aSisEHS5OWz4HO0hYWe6IU57CNg+syYQ==", + "dev": true, + "dependencies": { + "@rushstack/eslint-patch": "1.1.4", + "@rushstack/eslint-plugin": "0.9.1", + "@rushstack/eslint-plugin-packlets": "0.4.1", + "@rushstack/eslint-plugin-security": "0.3.1", + "@typescript-eslint/eslint-plugin": "~5.20.0", + "@typescript-eslint/experimental-utils": "~5.20.0", + "@typescript-eslint/parser": "~5.20.0", + "@typescript-eslint/typescript-estree": "~5.20.0", + "eslint-plugin-promise": "~6.0.0", + "eslint-plugin-react": "~7.27.1", + "eslint-plugin-tsdoc": "~0.2.16" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0", + "typescript": ">=3.0.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@rushstack/eslint-patch": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz", + "integrity": "sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==", + "dev": true + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@rushstack/eslint-plugin": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin/-/eslint-plugin-0.9.1.tgz", + "integrity": "sha512-iMfRyk9FE1xdhuenIYwDEjJ67u7ygeFw/XBGJC2j4GHclznHWRfSGiwTeYZ66H74h7NkVTuTp8RYw/x2iDblOA==", + "dev": true, + "dependencies": { + "@rushstack/tree-pattern": "0.2.4", + "@typescript-eslint/experimental-utils": "~5.20.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@rushstack/eslint-plugin-packlets": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-packlets/-/eslint-plugin-packlets-0.4.1.tgz", + "integrity": "sha512-A+mb+45fAUV6SRRlRy5EXrZAHNTnvOO3ONxw0hmRDcvyPAJwoX0ClkKQriz56QQE5SL4sPxhYoqbkoKbBmsxcA==", + "dev": true, + "dependencies": { + "@rushstack/tree-pattern": "0.2.4", + "@typescript-eslint/experimental-utils": "~5.20.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@rushstack/eslint-plugin-security": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-security/-/eslint-plugin-security-0.3.1.tgz", + "integrity": "sha512-LOBJj7SLPkeonBq2CD9cKqujwgc84YXJP18UXmGYl8xE3OM+Fwgnav7GzsakyvkeWJwq7EtpZjjSW8DTpwfA4w==", + "dev": true, + "dependencies": { + "@rushstack/tree-pattern": "0.2.4", + "@typescript-eslint/experimental-utils": "~5.20.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@rushstack/tree-pattern": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@rushstack/tree-pattern/-/tree-pattern-0.2.4.tgz", + "integrity": "sha512-H8i0OinWsdKM1TKEKPeRRTw85e+/7AIFpxm7q1blceZJhuxRBjCGAUZvQXZK4CMLx75xPqh/h1t5WHwFmElAPA==", + "dev": true + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz", + "integrity": "sha512-fapGzoxilCn3sBtC6NtXZX6+P/Hef7VDbyfGqTTpzYydwhlkevB+0vE0EnmHPVTVSy68GUncyJ/2PcrFBeCo5Q==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.20.0", + "@typescript-eslint/type-utils": "5.20.0", + "@typescript-eslint/utils": "5.20.0", + "debug": "^4.3.2", "functional-red-black-tree": "^1.0.1", - "regexpp": "^3.0.0", - "semver": "^7.3.2", - "tsutils": "^3.17.1" + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" }, - "dependencies": { - "@typescript-eslint/experimental-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.4.0.tgz", - "integrity": "sha512-rHPOjL43lOH1Opte4+dhC0a/+ks+8gOBwxXnyrZ/K4OTAChpSjP76fbI8Cglj7V5GouwVAGaK+xVwzqTyE/TPw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/typescript-estree": "3.4.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - } + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "@typescript-eslint/experimental-utils": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", - "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@typescript-eslint/parser": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.20.0.tgz", + "integrity": "sha512-UWKibrCZQCYvobmu3/N8TWbEeo/EPQbS41Ux1F9XqPzGuV7pfg6n50ZrFo6hryynD8qOTTfLHtHjjdQtxJ0h/w==", "dev": true, - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/types": "3.10.1", - "@typescript-eslint/typescript-estree": "3.10.1", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - }, "dependencies": { - "@typescript-eslint/typescript-estree": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", - "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", - "dev": true, - "requires": { - "@typescript-eslint/types": "3.10.1", - "@typescript-eslint/visitor-keys": "3.10.1", - "debug": "^4.1.1", - "glob": "^7.1.6", - "is-glob": "^4.0.1", - "lodash": "^4.17.15", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "@typescript-eslint/scope-manager": "5.20.0", + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/typescript-estree": "5.20.0", + "debug": "^4.3.2" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "@typescript-eslint/parser": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-3.4.0.tgz", - "integrity": "sha512-ZUGI/de44L5x87uX5zM14UYcbn79HSXUR+kzcqU42gH0AgpdB/TjuJy3m4ezI7Q/jk3wTQd755mxSDLhQP79KA==", + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@typescript-eslint/scope-manager": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz", + "integrity": "sha512-h9KtuPZ4D/JuX7rpp1iKg3zOH0WNEa+ZIXwpW/KWmEFDxlA/HSfCMhiyF1HS/drTICjIbpA6OqkAhrP/zkCStg==", "dev": true, - "requires": { - "@types/eslint-visitor-keys": "^1.0.0", - "@typescript-eslint/experimental-utils": "3.4.0", - "@typescript-eslint/typescript-estree": "3.4.0", - "eslint-visitor-keys": "^1.1.0" - }, "dependencies": { - "@typescript-eslint/experimental-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.4.0.tgz", - "integrity": "sha512-rHPOjL43lOH1Opte4+dhC0a/+ks+8gOBwxXnyrZ/K4OTAChpSjP76fbI8Cglj7V5GouwVAGaK+xVwzqTyE/TPw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/typescript-estree": "3.4.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - } + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/visitor-keys": "5.20.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@typescript-eslint/type-utils": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.20.0.tgz", + "integrity": "sha512-WxNrCwYB3N/m8ceyoGCgbLmuZwupvzN0rE8NBuwnl7APgjv24ZJIjkNzoFBXPRCGzLNkoU/WfanW0exvp/+3Iw==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "5.20.0", + "debug": "^4.3.2", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "@typescript-eslint/types": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", - "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.4.0.tgz", - "integrity": "sha512-zKwLiybtt4uJb4mkG5q2t6+W7BuYx2IISiDNV+IY68VfoGwErDx/RfVI7SWL4gnZ2t1A1ytQQwZ+YOJbHHJ2rw==", + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@typescript-eslint/types": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.20.0.tgz", + "integrity": "sha512-+d8wprF9GyvPwtoB4CxBAR/s0rpP25XKgnOvMf/gMXYDvlUC3rPFHupdTQ/ow9vn7UDe5rX02ovGYQbv/IUCbg==", "dev": true, - "requires": { - "debug": "^4.1.1", - "eslint-visitor-keys": "^1.1.0", - "glob": "^7.1.6", - "is-glob": "^4.0.1", - "lodash": "^4.17.15", - "semver": "^7.3.2", - "tsutils": "^3.17.1" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz", + "integrity": "sha512-36xLjP/+bXusLMrT9fMMYy1KJAGgHhlER2TqpUVDYUQg4w0q/NW/sg4UGAgVwAqb8V4zYg43KMUpM8vV2lve6w==", + "dev": true, "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/visitor-keys": "5.20.0", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "@typescript-eslint/visitor-keys": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", - "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@typescript-eslint/utils": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.20.0.tgz", + "integrity": "sha512-lHONGJL1LIO12Ujyx8L8xKbwWSkoUKFSO+0wDAqGXiudWB2EO7WEUT+YZLtVbmOmSllAjLb9tpoIPwpRe5Tn6w==", "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "@uifabric/foundation": { - "version": "7.10.1", - "resolved": "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.10.1.tgz", - "integrity": "sha512-Op05qHLBFEieT4+fG8OgpzqDHTQyei1dgVXDd6M4VS6CFJ5ZIPtC7Lwi+ZlkPkwUwccQ9mijuQumzpNKdv035A==", - "requires": { - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/set-version": "^7.0.24", - "@uifabric/styling": "^7.20.0", - "@uifabric/utilities": "^7.33.5", - "tslib": "^1.10.0" - } - }, - "@uifabric/icons": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.0.tgz", - "integrity": "sha512-Xx+CVMYOafJDijllYYkgE22lvKpKaodrB9XUgVSI77QveGcOV+x9z5FVa5CzwERb6Zjoafyj7q7SmH/EOi+AZw==", - "requires": { - "@uifabric/set-version": "^7.0.24", - "@uifabric/styling": "^7.19.1", - "tslib": "^1.10.0" - } - }, - "@uifabric/merge-styles": { - "version": "7.19.2", - "resolved": "https://registry.npmjs.org/@uifabric/merge-styles/-/merge-styles-7.19.2.tgz", - "integrity": "sha512-kTlhwglDqwVgIaJq+0yXgzi65plGhmFcPrfme/rXUGMJZoU+qlGT5jXj5d3kuI59p6VB8jWEg9DAxHozhYeu0g==", - "requires": { - "@uifabric/set-version": "^7.0.24", - "tslib": "^1.10.0" - } - }, - "@uifabric/react-hooks": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@uifabric/react-hooks/-/react-hooks-7.14.0.tgz", - "integrity": "sha512-Ndu/DEKHF4gFXEZa2AGgSkdWaj+njVrsSyXbkWRh2UZReFWnH1LMko9p/ZCwk1i9kAd5CUmyIfURUzIEya9YCg==", - "requires": { - "@fluentui/react-window-provider": "^1.0.2", - "@uifabric/set-version": "^7.0.24", - "@uifabric/utilities": "^7.33.5", - "tslib": "^1.10.0" - } - }, - "@uifabric/set-version": { - "version": "7.0.24", - "resolved": "https://registry.npmjs.org/@uifabric/set-version/-/set-version-7.0.24.tgz", - "integrity": "sha512-t0Pt21dRqdC707/ConVJC0WvcQ/KF7tKLU8AZY7YdjgJpMHi1c0C427DB4jfUY19I92f60LOQyhJ4efH+KpFEg==", - "requires": { - "tslib": "^1.10.0" - } - }, - "@uifabric/styling": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@uifabric/styling/-/styling-7.20.0.tgz", - "integrity": "sha512-SoaK5J4cwn8D9DWejRlWo+TmKZaHIiVlkIH+B2zLXE8Uc4ZYcotwYGxaSc1gCA16viLvGQkQU+ieWFq91RxdRw==", - "requires": { - "@fluentui/theme": "^1.7.4", - "@microsoft/load-themed-styles": "^1.10.26", - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/set-version": "^7.0.24", - "@uifabric/utilities": "^7.33.5", - "tslib": "^1.10.0" - } - }, - "@uifabric/utilities": { - "version": "7.33.5", - "resolved": "https://registry.npmjs.org/@uifabric/utilities/-/utilities-7.33.5.tgz", - "integrity": "sha512-I+Oi0deD/xltSluFY8l2EVd/J4mvOaMljxKO2knSD9/KoGDlo/o5GN4gbnVo8nIt76HWHLAk3KtlJKJm6BhbIQ==", - "requires": { - "@fluentui/dom-utilities": "^1.1.2", - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/set-version": "^7.0.24", - "prop-types": "^15.7.2", - "tslib": "^1.10.0" - } - }, - "@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", - "dev": true, - "requires": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" - } - }, - "@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", - "dev": true, - "requires": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", - "dev": true, - "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", - "source-map-js": "^1.0.2" - } - }, - "@vue/compiler-ssr": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", - "dev": true, - "requires": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" - } - }, - "@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", - "dev": true, - "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" - } - }, - "@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==", - "dev": true - }, - "@webassemblyjs/ast": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", - "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", - "dev": true, - "requires": { - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", - "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", - "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", - "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", - "dev": true - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", - "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", - "dev": true, - "requires": { - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "@webassemblyjs/helper-fsm": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", - "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", - "dev": true - }, - "@webassemblyjs/helper-module-context": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", - "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", - "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", - "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", - "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", - "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", - "dev": true, - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", - "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", - "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/helper-wasm-section": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-opt": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", - "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", - "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", - "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", - "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/floating-point-hex-parser": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-code-frame": "1.9.0", - "@webassemblyjs/helper-fsm": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", - "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "@webpack-cli/configtest": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", - "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", - "dev": true - }, - "@webpack-cli/info": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", - "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", - "dev": true, - "requires": { - "envinfo": "^7.7.3" - } - }, - "@webpack-cli/serve": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", - "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", - "dev": true - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "@yarnpkg/lockfile": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.0.2.tgz", - "integrity": "sha512-MqJ00WXw89ga0rK6GZkdmmgv3bAsxpJixyTthjcix73O44pBqotyU2BejBkLuIsaOBI6SEu77vAnSyLe5iIHkw==", - "dev": true - }, - "@zkochan/cmd-shim": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-5.4.1.tgz", - "integrity": "sha512-odWb1qUzt0dIOEUPyWBEpFDYQPRjEMr/dbHHAfgBkVkYR9aO7Zo+I7oYWrXIxl+cKlC7+49ftPm8uJxL1MA9kw==", - "dev": true, - "requires": { - "cmd-extension": "^1.0.2", - "graceful-fs": "^4.2.10", - "is-windows": "^1.0.2" - }, "dependencies": { - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - } - } - }, - "abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "acorn-globals": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", - "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", - "dev": true, - "requires": { - "acorn": "^6.0.1", - "acorn-walk": "^6.0.1" + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.20.0", + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/typescript-estree": "5.20.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz", + "integrity": "sha512-1flRpNF+0CAQkMNlTJ6L/Z5jiODG/e5+7mk6XwtPOUS3UrTz3UOiAg9jG2VtKsWI6rZQfy4C6a232QNRZTRGlg==", + "dev": true, "dependencies": { - "acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", - "dev": true - } + "@typescript-eslint/types": "5.20.0", + "eslint-visitor-keys": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true - }, - "acorn-walk": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", - "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", - "dev": true - }, - "adal-angular": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/adal-angular/-/adal-angular-1.0.16.tgz", - "integrity": "sha1-4rwxvHEqr/ugU6pN1GvITrXSCQ8=" - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "requires": { - "debug": "4" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz", - "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==", - "dev": true, - "requires": { + "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "dev": true - }, - "ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, - "requires": { - "ajv": "^8.0.0" - }, "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/eslint-plugin-promise": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.0.1.tgz", + "integrity": "sha512-uM4Tgo5u3UWQiroOyDEsYcVMOo7re3zmno0IZmB5auxoaQNIceAbXEkSt8RNrKtaYehARHG06pYK6K1JhtP0Zw==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/eslint-plugin-react": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.27.1.tgz", + "integrity": "sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/eslint-plugin-tsdoc": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/eslint-plugin-tsdoc/-/eslint-plugin-tsdoc-0.2.17.tgz", + "integrity": "sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==", + "dev": true, + "dependencies": { + "@microsoft/tsdoc": "0.14.2", + "@microsoft/tsdoc-config": "0.16.2" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@microsoft/rush-stack-compiler-4.7/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-adaptive-card-extension-base": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-adaptive-card-extension-base/-/sp-adaptive-card-extension-base-1.20.0.tgz", + "integrity": "sha512-66se/0nk4WYjyIyH3x7SosDTDsgyVjdnUCGtXC3S14Iw/iueiDR0OxgxtmyWRwOjFMdbERnyUM+po6nvOZmn5A==", + "dependencies": { + "@microsoft/sp-component-base": "1.20.0", + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-http": "1.20.0", + "@microsoft/sp-http-base": "1.20.0", + "@microsoft/sp-loader": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-module-interfaces": "1.20.2", + "@microsoft/sp-property-pane": "1.20.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.24.0", + "adaptivecards": "2.11.2", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-application-base/-/sp-application-base-1.19.0.tgz", + "integrity": "sha512-Z5xfbdZ2hll2ztFgKdOJJHSeGyGJxjehoHSPG4Xr3cA8fydakTwkpsSDlG/81xb2+6Yek61xlrJVR0qAEFbeog==", + "dependencies": { + "@microsoft/sp-component-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-extension-base": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/sp-search-extensibility": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-component-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.19.0.tgz", + "integrity": "sha512-FtJMBewzS4+8tUSTE+K5ndiWvEbWWhu0uIP3M265d/+LDUzp1UX9RcpWHlcqIAdHw9P6VaX+5ADsXE0XDn4jZw==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-page-context": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-core-library": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.19.0.tgz", + "integrity": "sha512-FzXy27IyS5acxgDvxGlycaoB1RLH9Mq0TDYT0UXrch9wBiQ7Cs2Lvh2qJbT954KdtrR5pyz7mWJP2MKPXKSmyA==", + "dependencies": { + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-diagnostics": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.19.0.tgz", + "integrity": "sha512-w5D3oz8sbEwOPStOupjJwT/1Ud0ujwbQ27SCBPncVYO/EXD4RWTM50+ZLoZepPnK0GDX0FCZsYMDaKnNZHlB6A==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-dynamic-data": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.19.0.tgz", + "integrity": "sha512-yKHCyV+YXI9HhkTWBVF/odGWofjQFRw9JaZ8C06JrmGaJ7raQc8d0nTuc13Y/1tpGmAd/tvbkcqd006k8WvJsw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-http": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.19.0.tgz", + "integrity": "sha512-9tu580LgtkCheDYgYXHMDD3x6Plz5x1c3fTWSwWpjEOIFZGK/Fmse1c1YopQyLu/YUHinW+01TYnF/XyQywoKg==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-http-msgraph": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-http-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-base/-/sp-http-base-1.19.0.tgz", + "integrity": "sha512-jd3eX9agA+r/BUuMFBPS+BR18OfH/+a5cJL0RVaB4jRUX6FplAaOgkMbG71orDc1I8WWG2MWgK+XZ419hPKPVw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.12.0", + "adal-angular": "1.0.16", + "msalBrowserLegacy": "npm:@azure/msal-browser@2.22.0", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "2.3.1" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-http-msgraph": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-msgraph/-/sp-http-msgraph-1.19.0.tgz", + "integrity": "sha512-wjRQ+VBenkqZg9GTHpV0Y7YWDEII3Kzihe2exdwBgLMZlUnf60M1222foHtGrd/PzyLyHbntuqzGfmE36VNlfQ==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "tslib": "2.3.1" + }, + "peerDependencies": { + "@microsoft/microsoft-graph-client": "3.0.2" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-loader": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.19.0.tgz", + "integrity": "sha512-KFQ7AvTXn+PKT5YzxZMvgrjRDq0UZxZp6MoZP14mjo/fJ/vU5SQJG1csWz/0MdTpv3OooxeqgstwOL2hM/cB4A==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@rushstack/loader-raw-script": "1.4.37", + "@types/requirejs": "2.1.29", + "raw-loader": "~0.5.1", + "react": "17.0.1", + "react-dom": "17.0.1", + "requirejs": "2.3.6", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-lodash-subset": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.19.0.tgz", + "integrity": "sha512-jTFdYxU52dYFNbEuIy7p7QPG6ujO5ZaX/pKmxRpXZb1v6JM0l7SzaLMEEyhBeu/HFovlErAM6n5IOccJx31SXA==", + "dependencies": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-module-interfaces": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.20.1.tgz", + "integrity": "sha512-kV5ipmUyCPL0FgS8uf+OH6Gpu33x8tr7q4eXUQFaG8TaCbrLkCh6F+H1CdcFEPcp7GIC3qdSfI7IhAKG5Cuz4w==", + "dependencies": { + "@rushstack/node-core-library": "4.0.2", + "z-schema": "4.2.4" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-odata-types": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.19.0.tgz", + "integrity": "sha512-4he2OU/QLcerLGd0RYQ1BOeIRESsM9A14I9g83Db4g+Gs6IrZi8lPSo4dydInL0kPM4U7/z+wRJcw9OGpkTieA==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/sp-page-context": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.19.0.tgz", + "integrity": "sha512-fUkwWkEOcRgz6jkLoX18qKLGSLdqyDG1tR8bpXKJloQL6hq6n5RUdq41m3atIGWCLO+UsvkGSgixBMfSGiDGSA==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@microsoft/teams-js-v2": { + "name": "@microsoft/teams-js", + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-2.12.0.tgz", + "integrity": "sha512-4gBtIC/Jc4elZ+R9i1LR+4QFwTAPtJ4P1MsCMDafe3HLtFGu/ZQngG9jZkWQ4A/rP4z1wNaDNn39XC+dLfURHQ==", + "deprecated": "Package no longer supported. Use at your own risk", + "dependencies": { + "debug": "^4.3.3" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@rushstack/loader-raw-script": { + "version": "1.4.37", + "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.4.37.tgz", + "integrity": "sha512-pw+e6pLfeqPqmwZgxN/Yxj73AvajjC4NAgiKLdDTd88dYf57er7lRC9jBYz4ETSb/ANjktGNgrJP/4YeLvGF8g==", + "dependencies": { + "loader-utils": "1.4.2" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@rushstack/node-core-library": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz", + "integrity": "sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==", + "dependencies": { + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "z-schema": "~5.0.2" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@rushstack/node-core-library/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/@rushstack/node-core-library/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/@microsoft/sp-application-base/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==", + "bin": { + "r_js": "bin/r.js", + "r.js": "bin/r.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@microsoft/sp-application-base/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@microsoft/sp-application-base/node_modules/z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=6.0.0" + }, + "optionalDependencies": { + "commander": "^2.7.1" + } + }, + "node_modules/@microsoft/sp-build-core-tasks": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-build-core-tasks/-/sp-build-core-tasks-1.20.2.tgz", + "integrity": "sha512-WHfKcTaengpxMXQ8pW+iOASjXbklU+twATYZJqOnSm17RGozYtovu1gdhc3+3SWN+JgD1r6Bh5dYaMCRI7ee9g==", + "dev": true, + "dependencies": { + "@microsoft/gulp-core-build": "3.19.0", + "@microsoft/gulp-core-build-serve": "3.13.0", + "@microsoft/gulp-core-build-webpack": "6.0.3", + "@microsoft/spfx-heft-plugins": "1.20.2", + "@rushstack/node-core-library": "5.9.0", + "@rushstack/terminal": "0.14.2", + "@types/lodash": "4.14.117", + "colors": "~1.2.1", + "gulp": "4.0.2", + "lodash": "4.17.21", + "webpack": "~5.88.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-build-core-tasks/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@microsoft/sp-build-core-tasks/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@microsoft/sp-build-core-tasks/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "optional": true } } }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "node_modules/@microsoft/sp-build-core-tasks/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "node_modules/@microsoft/sp-build-core-tasks/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "requires": { - "string-width": "^4.1.0" - }, "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } - } - }, - "ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "dev": true - }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" + "yallist": "^4.0.0" }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-build-core-tasks/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, "dependencies": { - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-build-core-tasks/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-build-core-tasks/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@microsoft/sp-build-web": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-build-web/-/sp-build-web-1.20.2.tgz", + "integrity": "sha512-VDWfJqi42C4jqS7SvCLtokK3d3v7FhQEjFRwxIOWu0x10YhzgMmQS66412SnSQlFH1AQlG6QHzPJu2/noGHaPg==", + "dev": true, + "dependencies": { + "@microsoft/gulp-core-build": "3.19.0", + "@microsoft/gulp-core-build-sass": "4.17.3", + "@microsoft/gulp-core-build-serve": "3.13.0", + "@microsoft/gulp-core-build-typescript": "8.6.3", + "@microsoft/gulp-core-build-webpack": "6.0.3", + "@microsoft/sp-build-core-tasks": "1.20.2", + "gulp": "4.0.2", + "semver": "~7.3.2", + "true-case-path": "~2.2.1", + "webpack": "~5.88.1", + "yargs": "~4.6.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-component-base": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.20.0.tgz", + "integrity": "sha512-WqSO70PGm3+uWozOx5lzA0TPkN+P5ug8XCSO1v0mnPe58dr6XWq7SG4aq+K6P0OfpQwbtC2fN816j2qJww/TIA==", + "dependencies": { + "@fluentui/react": "^8.117.5", + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-dynamic-data": "1.20.0", + "@microsoft/sp-http": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-module-interfaces": "1.20.2", + "@microsoft/sp-page-context": "1.20.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-component-base/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@microsoft/sp-core-library": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.20.0.tgz", + "integrity": "sha512-RMookiROCKRhadmDWK9i/pC+hgyBP+R4j28RLpRsYZ5BA8UsLzFhyWrJJcehkF9CK3z/EPltJoDFuAVdv/taCw==", + "dependencies": { + "@microsoft/sp-module-interfaces": "1.20.2", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@microsoft/sp-css-loader": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-css-loader/-/sp-css-loader-1.20.2.tgz", + "integrity": "sha512-s11fA/tR1rqSRcfb2dCAvN0iUYIqLF3ykAWSETiQLFU9wsJXry3hJwQskuPHm4DbweiEkdHcVJWWgLvDH6pTNw==", + "dev": true, + "dependencies": { + "@microsoft/load-themed-styles": "2.0.142", + "@rushstack/node-core-library": "5.9.0", + "autoprefixer": "9.7.1", + "css-loader": "3.4.2", + "cssnano": "~5.1.14", + "loader-utils": "~3.2.1", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "~3.0.0", + "postcss-modules-local-by-default": "~4.0.0", + "postcss-modules-scope": "~3.0.0", + "postcss-modules-values": "~4.0.0" + }, + "peerDependencies": { + "webpack": "^5.88.1" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/@microsoft/load-themed-styles": { + "version": "2.0.142", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-2.0.142.tgz", + "integrity": "sha512-ee7XGfseTf91ZsLXckYwAsLmQpFVLCOr0GbVtdsKU4MmUe3eQ1FR2P7T2023dCgks131eWK4l2oVfazKIz2gVA==", + "dev": true + }, + "node_modules/@microsoft/sp-css-loader/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true } } }, - "ansi-gray": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=", + "node_modules/@microsoft/sp-css-loader/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", "dev": true, - "requires": { - "ansi-wrap": "0.1.0" + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "dev": true + "node_modules/@microsoft/sp-css-loader/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { + "node_modules/@microsoft/sp-css-loader/node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "requires": { + "dependencies": { "color-convert": "^1.9.0" - } - }, - "ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", - "dev": true - }, - "any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", - "dev": true, - "requires": { - "buffer-equal": "^1.0.0" - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, - "archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "arr-filter": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", - "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=", - "dev": true, - "requires": { - "make-iterator": "^1.0.0" - } - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", - "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=", - "dev": true, - "requires": { - "make-iterator": "^1.0.0" - } - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true - }, - "array-differ": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", - "integrity": "sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==", - "dev": true - }, - "array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", - "dev": true - }, - "array-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", - "integrity": "sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA==", - "dev": true - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "array-includes": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", - "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.7" - } - }, - "array-initial": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", - "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=", - "dev": true, - "requires": { - "array-slice": "^1.0.0", - "is-number": "^4.0.0" }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/autoprefixer": { + "version": "9.7.1", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.1.tgz", + "integrity": "sha512-w3b5y1PXWlhYulevrTJ0lizkQ5CyqfeU6BIRDbuhsMupstHQOeb1Ur80tcB1zxSu7AwyY/qCQ7Vvqklh31ZBFw==", + "dev": true, "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, - "array-last": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", - "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", - "dev": true, - "requires": { - "is-number": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, - "array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", - "dev": true - }, - "array-sort": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", - "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", - "dev": true, - "requires": { - "default-compare": "^1.0.0", - "get-value": "^2.0.6", - "kind-of": "^5.0.2" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "array.prototype.flatmap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", - "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0" - } - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "dev": true - }, - "asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dev": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "assert": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz", - "integrity": "sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==", - "dev": true, - "requires": { - "object.assign": "^4.1.4", - "util": "^0.10.4" - }, - "dependencies": { - "define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "requires": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "dev": true, - "requires": { - "inherits": "2.0.3" - } - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true - }, - "ast-types": { - "version": "0.9.6", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz", - "integrity": "sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ==", - "dev": true - }, - "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", - "dev": true - }, - "async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "requires": { - "lodash": "^4.17.14" - }, - "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - } - } - }, - "async-done": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", - "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.2", - "process-nextick-args": "^2.0.0", - "stream-exhaust": "^1.0.1" - } - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", - "dev": true - }, - "async-settle": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", - "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=", - "dev": true, - "requires": { - "async-done": "^1.2.2" - } - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true - }, - "autoprefixer": { - "version": "9.8.8", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", - "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", - "dev": true, - "requires": { - "browserslist": "^4.12.0", - "caniuse-lite": "^1.0.30001109", + "browserslist": "^4.7.2", + "caniuse-lite": "^1.0.30001006", + "chalk": "^2.4.2", "normalize-range": "^0.1.2", "num2fraction": "^1.2.2", + "postcss": "^7.0.21", + "postcss-value-parser": "^4.0.2" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/autoprefixer/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/@microsoft/sp-css-loader/node_modules/autoprefixer/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { "picocolors": "^0.2.1", - "postcss": "^7.0.32", - "postcss-value-parser": "^4.1.0" + "source-map": "^0.6.1" }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "dev": true - }, - "aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", - "dev": true - }, - "babel-jest": { - "version": "25.5.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-25.5.1.tgz", - "integrity": "sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==", - "dev": true, - "requires": { - "@jest/transform": "^25.5.1", - "@jest/types": "^25.5.0", - "@types/babel__core": "^7.1.7", - "babel-plugin-istanbul": "^6.0.0", - "babel-preset-jest": "^25.5.0", - "chalk": "^3.0.0", - "graceful-fs": "^4.2.4", - "slash": "^3.0.0" + "engines": { + "node": ">=6.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" } }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "node_modules/@microsoft/sp-css-loader/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, - "dependencies": { - "istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } + "engines": { + "node": ">=4" } }, - "babel-plugin-jest-hoist": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz", - "integrity": "sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-preset-current-node-syntax": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz", - "integrity": "sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==", - "dev": true, - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "babel-preset-jest": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz", - "integrity": "sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==", - "dev": true, - "requires": { - "babel-plugin-jest-hoist": "^25.5.0", - "babel-preset-current-node-syntax": "^0.1.2" - } - }, - "bach": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", - "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=", - "dev": true, - "requires": { - "arr-filter": "^1.1.1", - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "array-each": "^1.0.0", - "array-initial": "^1.0.0", - "array-last": "^1.1.1", - "async-done": "^1.2.2", - "async-settle": "^1.0.0", - "now-and-later": "^2.0.0" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "beeper": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", - "integrity": "sha512-3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA==", - "dev": true - }, - "better-path-resolve": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz", - "integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==", - "dev": true, - "requires": { - "is-windows": "^1.0.0" - } - }, - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==" - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", - "requires": { - "inherits": "~2.0.0" - } - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", - "dev": true - }, - "body": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", - "integrity": "sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==", - "dev": true, - "requires": { - "continuable-cache": "^0.3.1", - "error": "^7.0.0", - "raw-body": "~1.1.0", - "safe-json-parse": "~1.0.1" - }, - "dependencies": { - "bytes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", - "integrity": "sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==", - "dev": true - }, - "raw-body": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", - "integrity": "sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==", - "dev": true, - "requires": { - "bytes": "1", - "string_decoder": "0.10" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true - } - } - }, - "body-parser": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", - "integrity": "sha512-YQyoqQG3sO8iCmf8+hyVpgHHOv0/hCEFiS4zTGUwTA1HjAFX66wRcNQrVCeJq9pgESMRvUAOvSil5MJlmccuKQ==", - "dev": true, - "requires": { - "bytes": "3.0.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "~1.6.3", - "iconv-lite": "0.4.23", - "on-finished": "~2.3.0", - "qs": "6.5.2", - "raw-body": "2.3.3", - "type-is": "~1.6.16" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true - } - } - }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", - "dev": true, - "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" - }, - "dependencies": { - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - }, - "dns-packet": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", - "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", - "dev": true, - "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" - } - }, - "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", - "dev": true, - "requires": { - "dns-packet": "^1.3.1", - "thunky": "^1.0.2" - } - } - } - }, - "bonjour-service": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", - "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", - "dev": true, - "requires": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" - }, - "dependencies": { - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - } - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "boxen": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", - "dev": true, - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - } - } - }, - "brace": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/brace/-/brace-0.11.1.tgz", - "integrity": "sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg=" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", - "dev": true - }, - "browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", - "dev": true - }, - "browser-resolve": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", - "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", - "dev": true, - "requires": { - "resolve": "1.1.7" - }, - "dependencies": { - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", - "dev": true - } - } - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dev": true, - "requires": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", - "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", - "dev": true, - "requires": { - "bn.js": "^5.2.1", - "browserify-rsa": "^4.1.0", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.4", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.6", - "readable-stream": "^3.6.2", - "safe-buffer": "^5.2.1" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dev": true, - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "buffer-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", - "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=", - "dev": true - }, - "buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", - "dev": true - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", - "dev": true - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", - "dev": true - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", - "dev": true - }, - "builtins": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", - "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", - "dev": true - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true - }, - "cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "dev": true, - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - } - } - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "dev": true, - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true - } - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsite": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", - "integrity": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==", - "dev": true - }, - "callsite-record": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/callsite-record/-/callsite-record-4.1.5.tgz", - "integrity": "sha512-OqeheDucGKifjQRx524URgV4z4NaKjocGhygTptDea+DLROre4ZEecA4KXDq+P7qlGCohYVNOh3qr+y5XH5Ftg==", - "dev": true, - "requires": { - "@devexpress/error-stack-parser": "^2.0.6", - "@types/lodash": "^4.14.72", - "callsite": "^1.0.0", - "chalk": "^2.4.0", - "highlight-es": "^1.0.0", - "lodash": "4.6.1 || ^4.16.1", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", - "dev": true, - "requires": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - } - }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001543", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001543.tgz", - "integrity": "sha512-qxdO8KPWPQ+Zk6bvNpPeQIOH47qZSYdFZd6dXQzb2KzhnSXju4Kd7H1PkSJx6NICSMgo/IhRZRhhfPTHYpJUCA==", - "dev": true - }, - "capture-exit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", - "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", - "dev": true, - "requires": { - "rsvp": "^4.8.4" - } - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "chart.js": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.7.3.tgz", - "integrity": "sha512-3+7k/DbR92m6BsMUYP6M0dMsMVZpMnwkUyNSAbqolHKsbIzH2Q4LWVEHHYq7v0fmEV8whXE0DrjANulw9j2K5g==", - "requires": { - "chartjs-color": "^2.1.0", - "moment": "^2.10.2" - } - }, - "chartjs-color": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz", - "integrity": "sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==", - "requires": { - "chartjs-color-string": "^0.6.0", - "color-convert": "^1.9.3" - } - }, - "chartjs-color-string": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz", - "integrity": "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==", - "requires": { - "color-name": "^1.0.0" - } - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true, - "requires": { - "nan": "^2.12.1" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true - }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "classnames": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz", - "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" - }, - "clean-css": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", - "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", - "dev": true, - "requires": { - "source-map": "~0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "clean-css-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/clean-css-loader/-/clean-css-loader-3.0.0.tgz", - "integrity": "sha512-r99ZAb/PlHqGGK9CVMbd4q/v8jDU79Jgm9NA39Uoilt52+2wEBPPXmX0cMpV+avwwtUUDtjBBPyxCU2A7lnTbA==", - "dev": true, - "requires": { - "clean-css": "^4.2.3", - "loader-utils": "^2.0.0" - }, - "dependencies": { - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "clean-css": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", - "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", - "dev": true, - "requires": { - "source-map": "~0.6.0" - } - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "cli-boxes": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", - "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", - "dev": true - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-spinners": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.1.tgz", - "integrity": "sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==", - "dev": true - }, - "cli-table": { - "version": "0.3.11", - "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz", - "integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==", - "dev": true, - "requires": { - "colors": "1.0.3" - }, - "dependencies": { - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", - "dev": true - } - } - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - }, - "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } - } - }, - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" - }, - "clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", - "dev": true - }, - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - } - }, - "clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "requires": { - "mimic-response": "^1.0.0" - } - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", - "dev": true - }, - "cloneable-readable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", - "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" - } - }, - "cmd-extension": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cmd-extension/-/cmd-extension-1.0.2.tgz", - "integrity": "sha512-iWDjmP8kvsMdBmLTHxFaqXikO8EdFRDfim7k6vUHglY/2xJ5jLrPsnQGijdfp4U+sr/BeecG0wKm02dSIAeQ1g==", - "dev": true - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "dev": true - }, - "collection-map": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", - "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=", - "dev": true, - "requires": { - "arr-map": "^2.0.2", - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - } - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz", - "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==", - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.2" - } - }, - "color-convert": { + "node_modules/@microsoft/sp-css-loader/node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { + "dev": true, + "dependencies": { "color-name": "1.1.3" - }, - "dependencies": { - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - } } }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "color-string": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz", - "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "color-support": { + "node_modules/@microsoft/sp-css-loader/node_modules/color-name": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "colors": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz", - "integrity": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dev": true, - "requires": { - "mime-db": ">= 1.43.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dev": true, - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "compute-scroll-into-view": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.11.tgz", - "integrity": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "configstore": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", - "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" - } - }, - "connect": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", - "dev": true, - "requires": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true - } - } - }, - "connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", - "dev": true - }, - "connect-livereload": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/connect-livereload/-/connect-livereload-0.6.1.tgz", - "integrity": "sha512-3R0kMOdL7CjJpU66fzAkCe6HNtd3AavCS4m+uW4KtJjrdGPT0SQEZieAYd+cm+lJoBznNQ4lqipYWkhBMgk00g==", - "dev": true - }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", - "dev": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", - "dev": true - }, - "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", - "dev": true - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true - }, - "continuable-cache": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", - "integrity": "sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==", - "dev": true - }, - "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true - }, - "copy-props": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", - "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", - "dev": true, - "requires": { - "each-props": "^1.3.2", - "is-plain-object": "^5.0.0" - }, - "dependencies": { - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - } - } - }, - "copy-webpack-plugin": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.0.4.tgz", - "integrity": "sha512-zCazfdYAh3q/O4VzZFiadWGpDA2zTs6FC6D7YTHD6H1J40pzo0H4z22h1NYMCl4ArQP4CK8y/KWqPrJ4rVkZ5A==", - "dev": true, - "requires": { - "cacache": "^15.0.5", - "fast-glob": "^3.2.4", - "find-cache-dir": "^3.3.1", - "glob-parent": "^5.1.1", - "globby": "^11.0.1", - "loader-utils": "^2.0.0", - "normalize-path": "^3.0.0", - "p-limit": "^3.0.2", - "schema-utils": "^2.7.0", - "serialize-javascript": "^4.0.0", - "webpack-sources": "^1.4.3" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "requires": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "tar": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - } - } - } - } - }, - "core-js-pure": { - "version": "3.33.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.33.0.tgz", - "integrity": "sha512-FKSIDtJnds/YFIEaZ4HszRX7hkxGpNKM7FC9aJ9WLJbSd3lD4vOltFuVIBLR8asSx9frkTSqL0dw90SKQxgKrg==", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "dependencies": { - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - } - } - }, - "create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "create-react-class": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", - "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", - "requires": { - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dev": true, - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true - }, - "css-declaration-sorter": { + "node_modules/@microsoft/sp-css-loader/node_modules/css-declaration-sorter": { "version": "6.4.1", "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", - "dev": true - }, - "css-in-js-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", - "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", - "requires": { - "hyphenate-style-name": "^1.0.3" - } - }, - "css-loader": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz", - "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==", "dev": true, - "requires": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.23", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.1.1", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.0.2", - "schema-utils": "^2.6.0" + "engines": { + "node": "^10 || ^12 || >=14" }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - }, - "postcss-modules-extract-imports": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", - "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", - "dev": true, - "requires": { - "postcss": "^7.0.5" - } - }, - "postcss-modules-local-by-default": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", - "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", - "dev": true, - "requires": { - "icss-utils": "^4.1.1", - "postcss": "^7.0.32", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - } - }, - "postcss-modules-scope": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", - "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", - "dev": true, - "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^6.0.0" - } - }, - "postcss-modules-values": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", - "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", - "dev": true, - "requires": { - "icss-utils": "^4.0.0", - "postcss": "^7.0.6" - } - }, - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "peerDependencies": { + "postcss": "^8.0.9" } }, - "css-modules-loader-core": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz", - "integrity": "sha512-XWOBwgy5nwBn76aA+6ybUGL/3JBnCtBX9Ay9/OWIpzKYWlVHMazvJ+WtHumfi+xxdPF440cWK7JCYtt8xDifew==", - "dev": true, - "requires": { - "icss-replace-symbols": "1.1.0", - "postcss": "6.0.1", - "postcss-modules-extract-imports": "1.1.0", - "postcss-modules-local-by-default": "1.2.0", - "postcss-modules-scope": "1.1.0", - "postcss-modules-values": "1.3.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", - "dev": true - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", - "dev": true - }, - "postcss": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.1.tgz", - "integrity": "sha512-VbGX1LQgQbf9l3cZ3qbUuC3hGqIEOGQFHAEHQ/Diaeo0yLgpgK5Rb8J+OcamIfQ9PbAU/fzBjVtQX3AhJHUvZw==", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", - "dev": true, - "requires": { - "has-flag": "^1.0.0" - } - } - } - }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dev": true, - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - } - }, - "css-selector-tokenizer": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", - "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", - "dev": true, - "requires": { - "cssesc": "^3.0.0", - "fastparse": "^1.1.2" - } - }, - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "dev": true, - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true - }, - "cssjanus": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/cssjanus/-/cssjanus-1.3.2.tgz", - "integrity": "sha512-5pM/C1MIfoqhXa7k9PqSnrjj1SSZDakfyB1DZhdYyJoDUH+evGbsUg6/bpQapTJeSnYaj0rdzPUMeM33CvB0vw==" - }, - "cssnano": { + "node_modules/@microsoft/sp-css-loader/node_modules/cssnano": { "version": "5.1.15", "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", "dev": true, - "requires": { + "dependencies": { "cssnano-preset-default": "^5.2.14", "lilconfig": "^2.0.3", "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "cssnano-preset-default": { + "node_modules/@microsoft/sp-css-loader/node_modules/cssnano-preset-default": { "version": "5.2.14", "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", "dev": true, - "requires": { + "dependencies": { "css-declaration-sorter": "^6.3.1", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", @@ -12096,407 +5938,13006 @@ "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "cssnano-utils": { + "node_modules/@microsoft/sp-css-loader/node_modules/cssnano-utils": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "csso": { + "node_modules/@microsoft/sp-css-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-modules-local-by-default": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dev": true, + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dev": true, + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@microsoft/sp-css-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@microsoft/sp-diagnostics": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.20.0.tgz", + "integrity": "sha512-I0OVNuN2RMPxpl/seu67ab7XvNsUGaw0eaWnHpP52GazhyERux3OK+aAlTADyBeZuNUcvWpO3qfUbfpSD+MDPQ==", + "dependencies": { + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-dialog": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dialog/-/sp-dialog-1.19.0.tgz", + "integrity": "sha512-wgH4Ofc2hDWgY+BRfNklOsTB/q3U9qUhtM/2B3AAvW7+R2UXhS1Dao0RyaPj6kyKW5NY5n3/aqAU6iTu9Jimpg==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-application-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "react": "17.0.1", + "react-dom": "17.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@microsoft/sp-core-library": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.19.0.tgz", + "integrity": "sha512-FzXy27IyS5acxgDvxGlycaoB1RLH9Mq0TDYT0UXrch9wBiQ7Cs2Lvh2qJbT954KdtrR5pyz7mWJP2MKPXKSmyA==", + "dependencies": { + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@microsoft/sp-diagnostics": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.19.0.tgz", + "integrity": "sha512-w5D3oz8sbEwOPStOupjJwT/1Ud0ujwbQ27SCBPncVYO/EXD4RWTM50+ZLoZepPnK0GDX0FCZsYMDaKnNZHlB6A==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@microsoft/sp-lodash-subset": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.19.0.tgz", + "integrity": "sha512-jTFdYxU52dYFNbEuIy7p7QPG6ujO5ZaX/pKmxRpXZb1v6JM0l7SzaLMEEyhBeu/HFovlErAM6n5IOccJx31SXA==", + "dependencies": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@microsoft/sp-module-interfaces": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.20.1.tgz", + "integrity": "sha512-kV5ipmUyCPL0FgS8uf+OH6Gpu33x8tr7q4eXUQFaG8TaCbrLkCh6F+H1CdcFEPcp7GIC3qdSfI7IhAKG5Cuz4w==", + "dependencies": { + "@rushstack/node-core-library": "4.0.2", + "z-schema": "4.2.4" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@microsoft/sp-odata-types": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.19.0.tgz", + "integrity": "sha512-4he2OU/QLcerLGd0RYQ1BOeIRESsM9A14I9g83Db4g+Gs6IrZi8lPSo4dydInL0kPM4U7/z+wRJcw9OGpkTieA==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@rushstack/node-core-library": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz", + "integrity": "sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==", + "dependencies": { + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "z-schema": "~5.0.2" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@rushstack/node-core-library/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/@rushstack/node-core-library/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/@microsoft/sp-dialog/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@microsoft/sp-dialog/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@microsoft/sp-dialog/node_modules/z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=6.0.0" + }, + "optionalDependencies": { + "commander": "^2.7.1" + } + }, + "node_modules/@microsoft/sp-dynamic-data": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.20.0.tgz", + "integrity": "sha512-g3XiC0rmsRUywn5sZopicOf8tUlz/s8iNae23fyoJSFFkUV5DpxUbNqcdJTaTOeLpi/UT1D9EbrmSC8PGDun2Q==", + "dependencies": { + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-module-interfaces": "1.20.2", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-extension-base/-/sp-extension-base-1.19.0.tgz", + "integrity": "sha512-wD2H1ipsAfvBatnDpRe5TUyxkAdJn4w/dPEAsY8TpVVq0aItzpN8MQ22YcF3Sf4Yg5QmMdGv9FtQ+FeK799zbA==", + "dependencies": { + "@microsoft/sp-component-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-component-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.19.0.tgz", + "integrity": "sha512-FtJMBewzS4+8tUSTE+K5ndiWvEbWWhu0uIP3M265d/+LDUzp1UX9RcpWHlcqIAdHw9P6VaX+5ADsXE0XDn4jZw==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-page-context": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-core-library": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.19.0.tgz", + "integrity": "sha512-FzXy27IyS5acxgDvxGlycaoB1RLH9Mq0TDYT0UXrch9wBiQ7Cs2Lvh2qJbT954KdtrR5pyz7mWJP2MKPXKSmyA==", + "dependencies": { + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-diagnostics": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.19.0.tgz", + "integrity": "sha512-w5D3oz8sbEwOPStOupjJwT/1Ud0ujwbQ27SCBPncVYO/EXD4RWTM50+ZLoZepPnK0GDX0FCZsYMDaKnNZHlB6A==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-dynamic-data": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.19.0.tgz", + "integrity": "sha512-yKHCyV+YXI9HhkTWBVF/odGWofjQFRw9JaZ8C06JrmGaJ7raQc8d0nTuc13Y/1tpGmAd/tvbkcqd006k8WvJsw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-http": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.19.0.tgz", + "integrity": "sha512-9tu580LgtkCheDYgYXHMDD3x6Plz5x1c3fTWSwWpjEOIFZGK/Fmse1c1YopQyLu/YUHinW+01TYnF/XyQywoKg==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-http-msgraph": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-http-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-base/-/sp-http-base-1.19.0.tgz", + "integrity": "sha512-jd3eX9agA+r/BUuMFBPS+BR18OfH/+a5cJL0RVaB4jRUX6FplAaOgkMbG71orDc1I8WWG2MWgK+XZ419hPKPVw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.12.0", + "adal-angular": "1.0.16", + "msalBrowserLegacy": "npm:@azure/msal-browser@2.22.0", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "2.3.1" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-http-msgraph": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-msgraph/-/sp-http-msgraph-1.19.0.tgz", + "integrity": "sha512-wjRQ+VBenkqZg9GTHpV0Y7YWDEII3Kzihe2exdwBgLMZlUnf60M1222foHtGrd/PzyLyHbntuqzGfmE36VNlfQ==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "tslib": "2.3.1" + }, + "peerDependencies": { + "@microsoft/microsoft-graph-client": "3.0.2" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-loader": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.19.0.tgz", + "integrity": "sha512-KFQ7AvTXn+PKT5YzxZMvgrjRDq0UZxZp6MoZP14mjo/fJ/vU5SQJG1csWz/0MdTpv3OooxeqgstwOL2hM/cB4A==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@rushstack/loader-raw-script": "1.4.37", + "@types/requirejs": "2.1.29", + "raw-loader": "~0.5.1", + "react": "17.0.1", + "react-dom": "17.0.1", + "requirejs": "2.3.6", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-lodash-subset": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.19.0.tgz", + "integrity": "sha512-jTFdYxU52dYFNbEuIy7p7QPG6ujO5ZaX/pKmxRpXZb1v6JM0l7SzaLMEEyhBeu/HFovlErAM6n5IOccJx31SXA==", + "dependencies": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-module-interfaces": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.20.1.tgz", + "integrity": "sha512-kV5ipmUyCPL0FgS8uf+OH6Gpu33x8tr7q4eXUQFaG8TaCbrLkCh6F+H1CdcFEPcp7GIC3qdSfI7IhAKG5Cuz4w==", + "dependencies": { + "@rushstack/node-core-library": "4.0.2", + "z-schema": "4.2.4" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-odata-types": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.19.0.tgz", + "integrity": "sha512-4he2OU/QLcerLGd0RYQ1BOeIRESsM9A14I9g83Db4g+Gs6IrZi8lPSo4dydInL0kPM4U7/z+wRJcw9OGpkTieA==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/sp-page-context": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.19.0.tgz", + "integrity": "sha512-fUkwWkEOcRgz6jkLoX18qKLGSLdqyDG1tR8bpXKJloQL6hq6n5RUdq41m3atIGWCLO+UsvkGSgixBMfSGiDGSA==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@microsoft/teams-js-v2": { + "name": "@microsoft/teams-js", + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-2.12.0.tgz", + "integrity": "sha512-4gBtIC/Jc4elZ+R9i1LR+4QFwTAPtJ4P1MsCMDafe3HLtFGu/ZQngG9jZkWQ4A/rP4z1wNaDNn39XC+dLfURHQ==", + "deprecated": "Package no longer supported. Use at your own risk", + "dependencies": { + "debug": "^4.3.3" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@rushstack/loader-raw-script": { + "version": "1.4.37", + "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.4.37.tgz", + "integrity": "sha512-pw+e6pLfeqPqmwZgxN/Yxj73AvajjC4NAgiKLdDTd88dYf57er7lRC9jBYz4ETSb/ANjktGNgrJP/4YeLvGF8g==", + "dependencies": { + "loader-utils": "1.4.2" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@rushstack/node-core-library": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz", + "integrity": "sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==", + "dependencies": { + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "z-schema": "~5.0.2" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@rushstack/node-core-library/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/@rushstack/node-core-library/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/@microsoft/sp-extension-base/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==", + "bin": { + "r_js": "bin/r.js", + "r.js": "bin/r.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@microsoft/sp-extension-base/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@microsoft/sp-extension-base/node_modules/z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=6.0.0" + }, + "optionalDependencies": { + "commander": "^2.7.1" + } + }, + "node_modules/@microsoft/sp-http": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.20.0.tgz", + "integrity": "sha512-6pYRkFMN2WxwT654uUJiyOMFHWQ8xHbUmBdwklpsK5b6zGVPnYb5cWI859E2jn+3XLrmc8pQbI+jOPKJSz/CVw==", + "dependencies": { + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-http-base": "1.20.0", + "@microsoft/sp-http-msgraph": "1.20.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-http-base": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-base/-/sp-http-base-1.20.0.tgz", + "integrity": "sha512-QSxG/+UKauLP+x2p8YzBAL0BN9+66PAd1fK0a7zKYF1VYLAnwpEUa2DJKW2BWzYx2O8a+9po2cnkeAu7WeBAuA==", + "dependencies": { + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-page-context": "1.20.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.24.0", + "adal-angular": "1.0.16", + "msalBrowserLegacy": "npm:@azure/msal-browser@2.22.0", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "2.3.1" + } + }, + "node_modules/@microsoft/sp-http-msgraph": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-msgraph/-/sp-http-msgraph-1.20.0.tgz", + "integrity": "sha512-NLJyFwe+y+OIpaYYt67I9riV7tUbGr1Y663NQvmP+ZC7US2cQiVhWGB/LgIPkyxKnkcAzYahYB940NiqULqZNQ==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-http-base": "1.20.0", + "@microsoft/sp-loader": "1.20.0", + "tslib": "2.3.1" + }, + "peerDependencies": { + "@microsoft/microsoft-graph-client": "3.0.2" + } + }, + "node_modules/@microsoft/sp-image-helper": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-image-helper/-/sp-image-helper-1.20.0.tgz", + "integrity": "sha512-rLlRE/DLNCYg5+0sCnQDtFntuLehCLrU3HxKHdvKskep1TJdMM+k7GEm056PW3dGZQWanX8ddlBxnJZLd5EkTQ==", + "dependencies": { + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-http-base": "1.20.0", + "@microsoft/sp-loader": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-page-context": "1.20.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-listview-extensibility/-/sp-listview-extensibility-1.19.0.tgz", + "integrity": "sha512-Q2j3NdpV05+ECOuLVaavsM/EBggIIBkgLOFCBQO86hn+LSWwqTwKI8OWExcpQhgB86eUbMT389np5rYf4lIKdw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-extension-base": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-page-context": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@microsoft/sp-core-library": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.19.0.tgz", + "integrity": "sha512-FzXy27IyS5acxgDvxGlycaoB1RLH9Mq0TDYT0UXrch9wBiQ7Cs2Lvh2qJbT954KdtrR5pyz7mWJP2MKPXKSmyA==", + "dependencies": { + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@microsoft/sp-diagnostics": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.19.0.tgz", + "integrity": "sha512-w5D3oz8sbEwOPStOupjJwT/1Ud0ujwbQ27SCBPncVYO/EXD4RWTM50+ZLoZepPnK0GDX0FCZsYMDaKnNZHlB6A==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@microsoft/sp-dynamic-data": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.19.0.tgz", + "integrity": "sha512-yKHCyV+YXI9HhkTWBVF/odGWofjQFRw9JaZ8C06JrmGaJ7raQc8d0nTuc13Y/1tpGmAd/tvbkcqd006k8WvJsw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@microsoft/sp-lodash-subset": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.19.0.tgz", + "integrity": "sha512-jTFdYxU52dYFNbEuIy7p7QPG6ujO5ZaX/pKmxRpXZb1v6JM0l7SzaLMEEyhBeu/HFovlErAM6n5IOccJx31SXA==", + "dependencies": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@microsoft/sp-module-interfaces": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.20.1.tgz", + "integrity": "sha512-kV5ipmUyCPL0FgS8uf+OH6Gpu33x8tr7q4eXUQFaG8TaCbrLkCh6F+H1CdcFEPcp7GIC3qdSfI7IhAKG5Cuz4w==", + "dependencies": { + "@rushstack/node-core-library": "4.0.2", + "z-schema": "4.2.4" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@microsoft/sp-odata-types": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.19.0.tgz", + "integrity": "sha512-4he2OU/QLcerLGd0RYQ1BOeIRESsM9A14I9g83Db4g+Gs6IrZi8lPSo4dydInL0kPM4U7/z+wRJcw9OGpkTieA==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@microsoft/sp-page-context": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.19.0.tgz", + "integrity": "sha512-fUkwWkEOcRgz6jkLoX18qKLGSLdqyDG1tR8bpXKJloQL6hq6n5RUdq41m3atIGWCLO+UsvkGSgixBMfSGiDGSA==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@rushstack/node-core-library": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz", + "integrity": "sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==", + "dependencies": { + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "z-schema": "~5.0.2" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@rushstack/node-core-library/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/@rushstack/node-core-library/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@microsoft/sp-listview-extensibility/node_modules/z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=6.0.0" + }, + "optionalDependencies": { + "commander": "^2.7.1" + } + }, + "node_modules/@microsoft/sp-loader": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.20.0.tgz", + "integrity": "sha512-rTyI1oWWu1WB+QbRpqF4v2Q9F59pmdEQvpCxgqjvgdFVqdKQmev2kpPeTJpAv63nIJmJPX1a1jOPyc/2qlDAvA==", + "dependencies": { + "@fluentui/react": "^8.117.5", + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-dynamic-data": "1.20.0", + "@microsoft/sp-http-base": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-module-interfaces": "1.20.2", + "@microsoft/sp-odata-types": "1.20.0", + "@microsoft/sp-page-context": "1.20.0", + "@rushstack/loader-raw-script": "1.4.64", + "@types/requirejs": "2.1.29", + "raw-loader": "~0.5.1", + "react": "17.0.1", + "react-dom": "17.0.1", + "requirejs": "2.3.7", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@microsoft/sp-loader/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@microsoft/sp-lodash-subset": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.20.0.tgz", + "integrity": "sha512-xKOHUarrX3tVG/PAJ60KJPzuk7aoOUNuoRyB9/M79Mo4iidyT+7PD9XmS5tcdseUfPzi6N2uE7X9BYsbCG0EbA==", + "dependencies": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-module-interfaces": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.20.2.tgz", + "integrity": "sha512-s4hm7PNes++7uviF+aJsqLsrzcaQttye/xuW+8IxMg1b2v/ys1bvfKUucM2N9T2hsz0q8+yWAwwuAl1C3PgBtA==", + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "z-schema": "4.2.4" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@microsoft/sp-module-interfaces/node_modules/z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=6.0.0" + }, + "optionalDependencies": { + "commander": "^2.7.1" + } + }, + "node_modules/@microsoft/sp-odata-types": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.20.0.tgz", + "integrity": "sha512-PbdK2U+1n44Msmkt5Y2PvYfuckDYURjLA0kAQSA9YxFYGe00N4EVj8CN0HegK59F/KGfAZdqM1OlQCJ+4SClGg==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-office-ui-fabric-core": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-office-ui-fabric-core/-/sp-office-ui-fabric-core-1.20.0.tgz", + "integrity": "sha512-4bVXNuO05WvMG1xnFEUcbT1wyg2e751QfI7ULRaIvG3597UEv3rKrdETut5QWyHrqmE3x+ERkcC0sHS/Y4Gh3w==", + "dependencies": { + "office-ui-fabric-core": "11.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-page-context": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.20.0.tgz", + "integrity": "sha512-4H8+QuPJTvyAlf/xbJ8OK/xoxGmaUATCvFIRcEtMfhgEjwcUICpkl7hHeOlPfmscrHafmW4nxTqj16IVIW66kQ==", + "dependencies": { + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-dynamic-data": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-odata-types": "1.20.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-property-pane": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-property-pane/-/sp-property-pane-1.20.0.tgz", + "integrity": "sha512-6cffQiTSM6fMdhAFvkZGvwWhUM0D/h3H5TDaXZGCuinHD5juJcvIjTRJDLfLp99ZM90yrwxhWG6qdt3Vb5FTnQ==", + "dependencies": { + "@fluentui/react": "^8.117.5", + "@fluentui/react-components": "^9.54.4", + "@fluentui/react-icons": "~2.0.203", + "@fluentui/react-tabster": "^9.22.1", + "@microsoft/sp-component-base": "1.20.0", + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-dynamic-data": "1.20.0", + "@microsoft/sp-image-helper": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-page-context": "1.20.0", + "react": "17.0.1", + "react-dom": "17.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@microsoft/sp-property-pane/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-search-extensibility/-/sp-search-extensibility-1.19.0.tgz", + "integrity": "sha512-XCHJqcbWQ5R3Rvd5i88SFhVzffY99pAQ6UWrVOMQyf18r50AIl6W2kVCW0mWuMK8hSCLvtePB47x4jx6Gf+jmg==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-extension-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-core-library": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.19.0.tgz", + "integrity": "sha512-FzXy27IyS5acxgDvxGlycaoB1RLH9Mq0TDYT0UXrch9wBiQ7Cs2Lvh2qJbT954KdtrR5pyz7mWJP2MKPXKSmyA==", + "dependencies": { + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-diagnostics": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.19.0.tgz", + "integrity": "sha512-w5D3oz8sbEwOPStOupjJwT/1Ud0ujwbQ27SCBPncVYO/EXD4RWTM50+ZLoZepPnK0GDX0FCZsYMDaKnNZHlB6A==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-dynamic-data": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.19.0.tgz", + "integrity": "sha512-yKHCyV+YXI9HhkTWBVF/odGWofjQFRw9JaZ8C06JrmGaJ7raQc8d0nTuc13Y/1tpGmAd/tvbkcqd006k8WvJsw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-http-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-base/-/sp-http-base-1.19.0.tgz", + "integrity": "sha512-jd3eX9agA+r/BUuMFBPS+BR18OfH/+a5cJL0RVaB4jRUX6FplAaOgkMbG71orDc1I8WWG2MWgK+XZ419hPKPVw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.12.0", + "adal-angular": "1.0.16", + "msalBrowserLegacy": "npm:@azure/msal-browser@2.22.0", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "2.3.1" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-loader": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.19.0.tgz", + "integrity": "sha512-KFQ7AvTXn+PKT5YzxZMvgrjRDq0UZxZp6MoZP14mjo/fJ/vU5SQJG1csWz/0MdTpv3OooxeqgstwOL2hM/cB4A==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@rushstack/loader-raw-script": "1.4.37", + "@types/requirejs": "2.1.29", + "raw-loader": "~0.5.1", + "react": "17.0.1", + "react-dom": "17.0.1", + "requirejs": "2.3.6", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-lodash-subset": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.19.0.tgz", + "integrity": "sha512-jTFdYxU52dYFNbEuIy7p7QPG6ujO5ZaX/pKmxRpXZb1v6JM0l7SzaLMEEyhBeu/HFovlErAM6n5IOccJx31SXA==", + "dependencies": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-module-interfaces": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.20.1.tgz", + "integrity": "sha512-kV5ipmUyCPL0FgS8uf+OH6Gpu33x8tr7q4eXUQFaG8TaCbrLkCh6F+H1CdcFEPcp7GIC3qdSfI7IhAKG5Cuz4w==", + "dependencies": { + "@rushstack/node-core-library": "4.0.2", + "z-schema": "4.2.4" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-odata-types": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.19.0.tgz", + "integrity": "sha512-4he2OU/QLcerLGd0RYQ1BOeIRESsM9A14I9g83Db4g+Gs6IrZi8lPSo4dydInL0kPM4U7/z+wRJcw9OGpkTieA==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/sp-page-context": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.19.0.tgz", + "integrity": "sha512-fUkwWkEOcRgz6jkLoX18qKLGSLdqyDG1tR8bpXKJloQL6hq6n5RUdq41m3atIGWCLO+UsvkGSgixBMfSGiDGSA==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@microsoft/teams-js-v2": { + "name": "@microsoft/teams-js", + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-2.12.0.tgz", + "integrity": "sha512-4gBtIC/Jc4elZ+R9i1LR+4QFwTAPtJ4P1MsCMDafe3HLtFGu/ZQngG9jZkWQ4A/rP4z1wNaDNn39XC+dLfURHQ==", + "deprecated": "Package no longer supported. Use at your own risk", + "dependencies": { + "debug": "^4.3.3" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@rushstack/loader-raw-script": { + "version": "1.4.37", + "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.4.37.tgz", + "integrity": "sha512-pw+e6pLfeqPqmwZgxN/Yxj73AvajjC4NAgiKLdDTd88dYf57er7lRC9jBYz4ETSb/ANjktGNgrJP/4YeLvGF8g==", + "dependencies": { + "loader-utils": "1.4.2" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@rushstack/node-core-library": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz", + "integrity": "sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==", + "dependencies": { + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "z-schema": "~5.0.2" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@rushstack/node-core-library/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/@rushstack/node-core-library/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==", + "bin": { + "r_js": "bin/r.js", + "r.js": "bin/r.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@microsoft/sp-search-extensibility/node_modules/z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=6.0.0" + }, + "optionalDependencies": { + "commander": "^2.7.1" + } + }, + "node_modules/@microsoft/sp-top-actions": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-top-actions/-/sp-top-actions-1.20.0.tgz", + "integrity": "sha512-Ir07zIdwRJ3yHeHomu1ALsBb7Ohhdaud4UdKGpz3ghVk82xvHzNkWWIR7V8AVe6S991lEEnD9O9E1ASHsbTvJQ==" + }, + "node_modules/@microsoft/sp-webpart-base": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-webpart-base/-/sp-webpart-base-1.20.0.tgz", + "integrity": "sha512-kwW4MSBvbjxljZXwOhETZjrcGZryUhFtbBIbJ6hG6gbWsUNeZA4JBm5+jXsq07pOfYS8tIMfcYKpEEsbCEiHRw==", + "dependencies": { + "@fluentui/react": "^8.117.5", + "@microsoft/sp-component-base": "1.20.0", + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-diagnostics": "1.20.0", + "@microsoft/sp-http": "1.20.0", + "@microsoft/sp-http-base": "1.20.0", + "@microsoft/sp-loader": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-module-interfaces": "1.20.2", + "@microsoft/sp-page-context": "1.20.0", + "@microsoft/sp-property-pane": "1.20.0", + "@microsoft/sp-top-actions": "1.20.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.24.0", + "@types/office-js": "1.0.36", + "react": "17.0.1", + "react-dom": "17.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@microsoft/sp-webpart-base/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@microsoft/spfx-heft-plugins": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@microsoft/spfx-heft-plugins/-/spfx-heft-plugins-1.20.2.tgz", + "integrity": "sha512-uExUJxYrBEMkvfe76TFqW9Jz4VpZvopJSSVchqTUCFi6efkqODnzBXXU+6jThY0Du00YbCamnDQfIY4AqA++wQ==", + "dev": true, + "dependencies": { + "@azure/storage-blob": "~12.17.0", + "@microsoft/rush-lib": "5.135.0-pr4927.1", + "@microsoft/sp-css-loader": "1.20.2", + "@microsoft/sp-module-interfaces": "1.20.2", + "@rushstack/heft-config-file": "0.15.7", + "@rushstack/localization-utilities": "0.12.2", + "@rushstack/module-minifier": "0.6.22", + "@rushstack/node-core-library": "5.9.0", + "@rushstack/rig-package": "0.5.3", + "@rushstack/set-webpack-public-path-plugin": "5.1.50", + "@rushstack/terminal": "0.14.2", + "@rushstack/webpack5-localization-plugin": "0.11.8", + "@rushstack/webpack5-module-minifier-plugin": "5.5.69", + "@types/tapable": "1.0.6", + "express": "4.18.1", + "fast-glob": "~3.2.12", + "git-repo-info": "~2.1.1", + "html-loader": "~4.2.0", + "jszip": "~3.8.0", + "lodash": "4.17.21", + "mime": "2.5.2", + "resolve": "~1.17.0", + "source-map": "0.6.1", + "source-map-loader": "~4.0.1", + "tapable": "1.1.3", + "true-case-path": "~2.2.1", + "uuid": "^9.0.0", + "webpack": "~5.88.1", + "xml": "~1.0.1" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/@rushstack/node-core-library/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/@rushstack/rig-package": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.3.tgz", + "integrity": "sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==", + "dev": true, + "dependencies": { + "resolve": "~1.22.1", + "strip-json-comments": "~3.1.1" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/@rushstack/rig-package/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/spfx-heft-plugins/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@microsoft/teams-js-v2": { + "name": "@microsoft/teams-js", + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-2.24.0.tgz", + "integrity": "sha512-C4s+Cy9HNLyob0iFmtzMAqElSXusnQMiWXgXPl+7aImqg6IKam4KPvf98QrZNhYDFaNMD8rgZT7OnBVUkMCW5w==", + "dependencies": { + "base64-js": "^1.3.1", + "debug": "^4.3.3" + } + }, + "node_modules/@microsoft/tsdoc": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.13.2.tgz", + "integrity": "sha512-WrHvO8PDL8wd8T2+zBGKrMwVL5IyzR3ryWUsl0PXgEV0QHup4mTLi0QcATefGI6Gx9Anu7vthPyyyLpY0EpiQg==", + "dev": true + }, + "node_modules/@microsoft/tsdoc-config": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.15.2.tgz", + "integrity": "sha512-mK19b2wJHSdNf8znXSMYVShAHktVr/ib0Ck2FA3lsVBSEhSI/TfXT7DJQkAYgcztTuwazGcg58ZjYdk0hTCVrA==", + "dev": true, + "dependencies": { + "@microsoft/tsdoc": "0.13.2", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "node_modules/@microsoft/tsdoc-config/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@microsoft/tsdoc-config/node_modules/resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dev": true, + "dependencies": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@monaco-editor/loader": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz", + "integrity": "sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==", + "dependencies": { + "state-local": "^1.0.6" + }, + "peerDependencies": { + "monaco-editor": ">= 0.21.0 < 1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@opentelemetry/api": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", + "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz", + "integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==", + "dev": true, + "dependencies": { + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x || 5.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pnp/common": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@pnp/common/-/common-2.5.0.tgz", + "integrity": "sha512-ea4zTNC3sjLolrHZXP+/2SrJM+yC8PygmPW/yRfgbErdvdwYMUSogT69dW+NUaqhkfYZfkkAoWn42irlLMSpdw==", + "dependencies": { + "tslib": "2.2.0" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/patrick-rodgers/" + } + }, + "node_modules/@pnp/common/node_modules/tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + }, + "node_modules/@pnp/core": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@pnp/core/-/core-4.5.0.tgz", + "integrity": "sha512-8BaF0clEoL31tHNV4dZYJ4343/kmdbYl0EUGixc4pZm+xLeMiId42R9mNpNfWKxhE3htlm7mU+vgseOFib8pxA==", + "dependencies": { + "tslib": "2.7.0" + }, + "engines": { + "node": ">=18.12.0" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/patrick-rodgers/" + } + }, + "node_modules/@pnp/core/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + }, + "node_modules/@pnp/graph": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@pnp/graph/-/graph-4.5.0.tgz", + "integrity": "sha512-VRamIST8X4hAAYHTPOCB/eofiXXvebc2mjhRPM/M7Qb1Voft0EfsFzV0IPXRvhhDHrPHOVBp85YJWJZastwNDA==", + "dependencies": { + "@microsoft/microsoft-graph-types": "2.40.0", + "@pnp/core": "4.5.0", + "@pnp/queryable": "4.5.0", + "tslib": "2.7.0" + }, + "engines": { + "node": ">=18.12.0" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/patrick-rodgers/" + } + }, + "node_modules/@pnp/graph/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + }, + "node_modules/@pnp/logging": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@pnp/logging/-/logging-2.5.0.tgz", + "integrity": "sha512-SnmMCN6oADjiHKAIR23FfTqXeQZeXPBnWeVfyZAgzJfRn9uEQoUlkyET3jHjl9kkrFOVkiOD1CRI7TWMIxURbA==", + "dependencies": { + "tslib": "2.2.0" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/patrick-rodgers/" + } + }, + "node_modules/@pnp/logging/node_modules/tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + }, + "node_modules/@pnp/odata": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@pnp/odata/-/odata-2.5.0.tgz", + "integrity": "sha512-AeP01jDvnkiUVn7V+4FT07chz+G/yzrJDH0Gk+qzujJ393ZO6FwJpJEiOCRh9cxF48gqSj/f7r/IIyDHe0+IpQ==", + "dependencies": { + "@pnp/common": "2.5.0", + "@pnp/logging": "2.5.0", + "tslib": "2.2.0" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/patrick-rodgers/" + } + }, + "node_modules/@pnp/odata/node_modules/tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + }, + "node_modules/@pnp/queryable": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@pnp/queryable/-/queryable-4.5.0.tgz", + "integrity": "sha512-uvhfV0bCL2cLulcx/AQ5AEPQesRphuQ5pTqPLcxfbqHFXZY6T3cjkKBYfNqRpYjPzMQlNW5qo9vEA3JUGCrbVw==", + "dependencies": { + "@pnp/core": "4.5.0", + "tslib": "2.7.0" + }, + "engines": { + "node": ">=18.12.0" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/patrick-rodgers/" + } + }, + "node_modules/@pnp/queryable/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + }, + "node_modules/@pnp/sp": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@pnp/sp/-/sp-4.5.0.tgz", + "integrity": "sha512-hKTR4kc6hsZ/nrxjB8T9GCYg5tNY6/hut9P1gkK08Df8gzh42rlYKk7gb7K0U00hqlwoRfw9iS/18Ah8ErZVzg==", + "dependencies": { + "@pnp/core": "4.5.0", + "@pnp/queryable": "4.5.0", + "tslib": "2.7.0" + }, + "engines": { + "node": ">=18.12.0" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/patrick-rodgers/" + } + }, + "node_modules/@pnp/sp/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + }, + "node_modules/@pnp/spfx-controls-react": { + "version": "3.19.0", + "resolved": "https://registry.npmjs.org/@pnp/spfx-controls-react/-/spfx-controls-react-3.19.0.tgz", + "integrity": "sha512-VJc660MgBQvkW/LukwPbZE0DRoDyrM16QubYOzccIqNHFHRPA4xF88pnmFIOAx+R4Iyuoy2W+mVWqL/VnweuhQ==", + "hasInstallScript": true, + "dependencies": { + "@fluentui/merge-styles": "8.5.12", + "@fluentui/react": "8.106.4", + "@fluentui/react-components": "^9.32.1", + "@fluentui/react-file-type-icons": "^8.8.3", + "@fluentui/react-hooks": "^8.2.6", + "@fluentui/react-icons": "^2.0.200", + "@fluentui/react-icons-northstar": "0.66.5", + "@fluentui/react-migration-v8-v9": "^9.4.17", + "@fluentui/react-northstar": "0.66.0", + "@fluentui/react-theme-provider": "^0.19.16", + "@fluentui/scheme-utilities": "^8.2.12", + "@fluentui/styles": "0.66.5", + "@fluentui/theme": "^2.6.6", + "@iconify/react": "^4.1.1", + "@microsoft/decorators": "1.19.0", + "@microsoft/mgt-react": "3.1.3", + "@microsoft/mgt-spfx": "3.1.3", + "@microsoft/sp-application-base": "1.19.0", + "@microsoft/sp-component-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-dialog": "1.19.0", + "@microsoft/sp-extension-base": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-listview-extensibility": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-office-ui-fabric-core": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/sp-property-pane": "1.19.0", + "@microsoft/sp-webpart-base": "1.19.0", + "@monaco-editor/loader": "^1.3.1", + "@pnp/common": "2.5.0", + "@pnp/odata": "2.5.0", + "@pnp/sp": "2.5.0", + "@pnp/telemetry-js": "2.0.0", + "@popperjs/core": "2.5.4", + "@uifabric/icons": "7.9.5", + "@uifabric/react-hooks": "7.16.4", + "@uifabric/utilities": "7.38.2", + "adaptive-expressions": "^4.15.0", + "adaptivecards": "2.11.2", + "adaptivecards-designer": "2.4.3", + "adaptivecards-templating": "^2.2.0", + "animate.css": "^4.1.1", + "chart.js": "2.9.4", + "color": "4.2.3", + "date-fns": "^2.22.1", + "he": "^1.2.0", + "jotai": "^2.4.2", + "lodash": "4.17.21", + "markdown-it": "^12.3.2", + "moment": "2.29.4", + "monaco-editor": "^0.29.1", + "nano-css": "^5.3.4", + "react": "17.0.1", + "react-accessible-accordion": "^5.0.0", + "react-dom": "17.0.1", + "react-mentions": "^4.3.0", + "react-quill": "2.0.0", + "regexify-string": "^1.0.16", + "spfx-uifabric-themes": "^0.9.0", + "swiper": "^8.2.6" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@fluentui/merge-styles": { + "version": "8.5.12", + "resolved": "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.12.tgz", + "integrity": "sha512-ZnUo0YuMP7AYi68dkknFqVxopIAgbrUnqR/MZlemmRvBYyy1SMj1WQeHcoiLFA8mF8YKn7B+jxQgJbN2bfcrRw==", + "dependencies": { + "@fluentui/set-version": "^8.2.11", + "tslib": "^2.1.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-component-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.19.0.tgz", + "integrity": "sha512-FtJMBewzS4+8tUSTE+K5ndiWvEbWWhu0uIP3M265d/+LDUzp1UX9RcpWHlcqIAdHw9P6VaX+5ADsXE0XDn4jZw==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-page-context": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-component-base/node_modules/@fluentui/merge-styles": { + "version": "8.6.13", + "resolved": "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.6.13.tgz", + "integrity": "sha512-IWgvi2CC+mcQ7/YlCvRjsmHL2+PUz7q+Pa2Rqk3a+QHN0V1uBvgIbKk5y/Y/awwDXy1yJHiqMCcDHjBNmS1d4A==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-component-base/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-core-library": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.19.0.tgz", + "integrity": "sha512-FzXy27IyS5acxgDvxGlycaoB1RLH9Mq0TDYT0UXrch9wBiQ7Cs2Lvh2qJbT954KdtrR5pyz7mWJP2MKPXKSmyA==", + "dependencies": { + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-diagnostics": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.19.0.tgz", + "integrity": "sha512-w5D3oz8sbEwOPStOupjJwT/1Ud0ujwbQ27SCBPncVYO/EXD4RWTM50+ZLoZepPnK0GDX0FCZsYMDaKnNZHlB6A==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-dynamic-data": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.19.0.tgz", + "integrity": "sha512-yKHCyV+YXI9HhkTWBVF/odGWofjQFRw9JaZ8C06JrmGaJ7raQc8d0nTuc13Y/1tpGmAd/tvbkcqd006k8WvJsw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-http": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.19.0.tgz", + "integrity": "sha512-9tu580LgtkCheDYgYXHMDD3x6Plz5x1c3fTWSwWpjEOIFZGK/Fmse1c1YopQyLu/YUHinW+01TYnF/XyQywoKg==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-http-msgraph": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-http-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-base/-/sp-http-base-1.19.0.tgz", + "integrity": "sha512-jd3eX9agA+r/BUuMFBPS+BR18OfH/+a5cJL0RVaB4jRUX6FplAaOgkMbG71orDc1I8WWG2MWgK+XZ419hPKPVw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.12.0", + "adal-angular": "1.0.16", + "msalBrowserLegacy": "npm:@azure/msal-browser@2.22.0", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "2.3.1" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-http-msgraph": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-msgraph/-/sp-http-msgraph-1.19.0.tgz", + "integrity": "sha512-wjRQ+VBenkqZg9GTHpV0Y7YWDEII3Kzihe2exdwBgLMZlUnf60M1222foHtGrd/PzyLyHbntuqzGfmE36VNlfQ==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "tslib": "2.3.1" + }, + "peerDependencies": { + "@microsoft/microsoft-graph-client": "3.0.2" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-image-helper": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-image-helper/-/sp-image-helper-1.19.0.tgz", + "integrity": "sha512-tsgy9iy/8NqXqywYm0M+XBt1fAO03mwEccALoICNECU5CX+KRb/a80FfQ1CbaqvzQqeuAzFp48ZIHqFAgzxE9Q==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-loader": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.19.0.tgz", + "integrity": "sha512-KFQ7AvTXn+PKT5YzxZMvgrjRDq0UZxZp6MoZP14mjo/fJ/vU5SQJG1csWz/0MdTpv3OooxeqgstwOL2hM/cB4A==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@rushstack/loader-raw-script": "1.4.37", + "@types/requirejs": "2.1.29", + "raw-loader": "~0.5.1", + "react": "17.0.1", + "react-dom": "17.0.1", + "requirejs": "2.3.6", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-loader/node_modules/@fluentui/merge-styles": { + "version": "8.6.13", + "resolved": "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.6.13.tgz", + "integrity": "sha512-IWgvi2CC+mcQ7/YlCvRjsmHL2+PUz7q+Pa2Rqk3a+QHN0V1uBvgIbKk5y/Y/awwDXy1yJHiqMCcDHjBNmS1d4A==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-loader/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-lodash-subset": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.19.0.tgz", + "integrity": "sha512-jTFdYxU52dYFNbEuIy7p7QPG6ujO5ZaX/pKmxRpXZb1v6JM0l7SzaLMEEyhBeu/HFovlErAM6n5IOccJx31SXA==", + "dependencies": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-module-interfaces": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.20.1.tgz", + "integrity": "sha512-kV5ipmUyCPL0FgS8uf+OH6Gpu33x8tr7q4eXUQFaG8TaCbrLkCh6F+H1CdcFEPcp7GIC3qdSfI7IhAKG5Cuz4w==", + "dependencies": { + "@rushstack/node-core-library": "4.0.2", + "z-schema": "4.2.4" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-odata-types": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.19.0.tgz", + "integrity": "sha512-4he2OU/QLcerLGd0RYQ1BOeIRESsM9A14I9g83Db4g+Gs6IrZi8lPSo4dydInL0kPM4U7/z+wRJcw9OGpkTieA==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-office-ui-fabric-core": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-office-ui-fabric-core/-/sp-office-ui-fabric-core-1.19.0.tgz", + "integrity": "sha512-rh54f6JgjZm0qphHk9UIhV1rRSzX3GwDz4joTNw+kSumLCGXVmef5+qrtd6HAFHI/TQCf/FQkgW0a4DFF/qDAA==", + "dependencies": { + "office-ui-fabric-core": "11.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-page-context": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.19.0.tgz", + "integrity": "sha512-fUkwWkEOcRgz6jkLoX18qKLGSLdqyDG1tR8bpXKJloQL6hq6n5RUdq41m3atIGWCLO+UsvkGSgixBMfSGiDGSA==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-property-pane": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-property-pane/-/sp-property-pane-1.19.0.tgz", + "integrity": "sha512-tBejgARjdkwrlKVEA4sm0c8AcrAdrc99wwRZF4tZHBdAFd/LB7mw7+ZuW71eIYB97efHUdOo5Z9YkrSwRmKd7Q==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-component-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-image-helper": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "react": "17.0.1", + "react-dom": "17.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-property-pane/node_modules/@fluentui/merge-styles": { + "version": "8.6.13", + "resolved": "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.6.13.tgz", + "integrity": "sha512-IWgvi2CC+mcQ7/YlCvRjsmHL2+PUz7q+Pa2Rqk3a+QHN0V1uBvgIbKk5y/Y/awwDXy1yJHiqMCcDHjBNmS1d4A==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-property-pane/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-top-actions": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-top-actions/-/sp-top-actions-1.19.0.tgz", + "integrity": "sha512-/1G0J/2sNYK/LXqHnD5h4jitMzatbZRjwT2Qzd4JRxGSujFUe+VYRET90LXdA6lBnDrfZ2MlsVfRkEPrnGyZFQ==" + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-webpart-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-webpart-base/-/sp-webpart-base-1.19.0.tgz", + "integrity": "sha512-UEWWPDahD4tEAiZVeqCVV0DEU/0LhTgshWDLAeiRvcz5G83JrCN10JCwucYmAzwV3Irisy0DX9nt6C5qWzbvcA==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-component-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/sp-property-pane": "1.19.0", + "@microsoft/sp-top-actions": "1.19.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.12.0", + "@types/office-js": "1.0.36", + "react": "17.0.1", + "react-dom": "17.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-webpart-base/node_modules/@fluentui/merge-styles": { + "version": "8.6.13", + "resolved": "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.6.13.tgz", + "integrity": "sha512-IWgvi2CC+mcQ7/YlCvRjsmHL2+PUz7q+Pa2Rqk3a+QHN0V1uBvgIbKk5y/Y/awwDXy1yJHiqMCcDHjBNmS1d4A==", + "dependencies": { + "@fluentui/set-version": "^8.2.23", + "tslib": "^2.1.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/sp-webpart-base/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/teams-js-v2": { + "name": "@microsoft/teams-js", + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-2.12.0.tgz", + "integrity": "sha512-4gBtIC/Jc4elZ+R9i1LR+4QFwTAPtJ4P1MsCMDafe3HLtFGu/ZQngG9jZkWQ4A/rP4z1wNaDNn39XC+dLfURHQ==", + "deprecated": "Package no longer supported. Use at your own risk", + "dependencies": { + "debug": "^4.3.3" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@pnp/sp": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@pnp/sp/-/sp-2.5.0.tgz", + "integrity": "sha512-4s2p+X5qvkXR72NViKb8DIfC+pvj/a3psZ3Im5PRIan2ErMtu9ch3Lb9nkSaMCF3NTJxWOhkUQ/R6tx8ApaUkg==", + "dependencies": { + "@pnp/common": "2.5.0", + "@pnp/logging": "2.5.0", + "@pnp/odata": "2.5.0", + "tslib": "2.2.0" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/patrick-rodgers/" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@pnp/sp/node_modules/tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@rushstack/loader-raw-script": { + "version": "1.4.37", + "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.4.37.tgz", + "integrity": "sha512-pw+e6pLfeqPqmwZgxN/Yxj73AvajjC4NAgiKLdDTd88dYf57er7lRC9jBYz4ETSb/ANjktGNgrJP/4YeLvGF8g==", + "dependencies": { + "loader-utils": "1.4.2" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@rushstack/node-core-library": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz", + "integrity": "sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==", + "dependencies": { + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "z-schema": "~5.0.2" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@rushstack/node-core-library/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/@rushstack/node-core-library/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/@pnp/spfx-controls-react/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==", + "bin": { + "r_js": "bin/r.js", + "r.js": "bin/r.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@pnp/spfx-controls-react/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@pnp/spfx-controls-react/node_modules/z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=6.0.0" + }, + "optionalDependencies": { + "commander": "^2.7.1" + } + }, + "node_modules/@pnp/spfx-property-controls": { + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/@pnp/spfx-property-controls/-/spfx-property-controls-3.18.0.tgz", + "integrity": "sha512-hEHdfZHqv+y4q0qoDElx4YlfZ7O+GOwbBlHtgML8ztgo/6uP3i/NWnQDY5D+E2UJyo3eb2b4eULUDCtH446nyg==", + "hasInstallScript": true, + "dependencies": { + "@fluentui/react": "8.106.4", + "@fluentui/react-components": "^9.48.0", + "@microsoft/sp-adaptive-card-extension-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-office-ui-fabric-core": "1.19.0", + "@microsoft/sp-property-pane": "1.19.0", + "@microsoft/sp-webpart-base": "1.19.0", + "@monaco-editor/loader": "^1.2.0", + "@pnp/common": "1.3.11", + "@pnp/logging": "1.3.11", + "@pnp/odata": "1.3.11", + "@pnp/sp": "1.3.11", + "@pnp/sp-clientsvc": "1.3.11", + "@pnp/sp-taxonomy": "1.3.11", + "@pnp/telemetry-js": "2.0.0", + "@uifabric/icons": "7.5.17", + "brace": "0.11.1", + "lodash.omit": "4.5.0", + "markdown-to-jsx": "^6.11.4", + "monaco-editor": "^0.32.1", + "react": "17.0.1", + "react-ace": "10.1.0", + "react-dom": "17.0.1" + }, + "engines": { + "node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-adaptive-card-extension-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-adaptive-card-extension-base/-/sp-adaptive-card-extension-base-1.19.0.tgz", + "integrity": "sha512-tCJXQ8jIuJZ9okAg3zGYOnDlGJCYZY4/JPt5cmCNd/jQoqd1YH69qa8AO74PjdeK5CUVC5Eq//7VVyw3GHg5SA==", + "dependencies": { + "@microsoft/sp-component-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-property-pane": "1.19.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.12.0", + "adaptivecards": "2.11.2", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-component-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-component-base/-/sp-component-base-1.19.0.tgz", + "integrity": "sha512-FtJMBewzS4+8tUSTE+K5ndiWvEbWWhu0uIP3M265d/+LDUzp1UX9RcpWHlcqIAdHw9P6VaX+5ADsXE0XDn4jZw==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-page-context": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-component-base/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-core-library": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-core-library/-/sp-core-library-1.19.0.tgz", + "integrity": "sha512-FzXy27IyS5acxgDvxGlycaoB1RLH9Mq0TDYT0UXrch9wBiQ7Cs2Lvh2qJbT954KdtrR5pyz7mWJP2MKPXKSmyA==", + "dependencies": { + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-diagnostics": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-diagnostics/-/sp-diagnostics-1.19.0.tgz", + "integrity": "sha512-w5D3oz8sbEwOPStOupjJwT/1Ud0ujwbQ27SCBPncVYO/EXD4RWTM50+ZLoZepPnK0GDX0FCZsYMDaKnNZHlB6A==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-dynamic-data": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-dynamic-data/-/sp-dynamic-data-1.19.0.tgz", + "integrity": "sha512-yKHCyV+YXI9HhkTWBVF/odGWofjQFRw9JaZ8C06JrmGaJ7raQc8d0nTuc13Y/1tpGmAd/tvbkcqd006k8WvJsw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-http": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http/-/sp-http-1.19.0.tgz", + "integrity": "sha512-9tu580LgtkCheDYgYXHMDD3x6Plz5x1c3fTWSwWpjEOIFZGK/Fmse1c1YopQyLu/YUHinW+01TYnF/XyQywoKg==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-http-msgraph": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-http-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-base/-/sp-http-base-1.19.0.tgz", + "integrity": "sha512-jd3eX9agA+r/BUuMFBPS+BR18OfH/+a5cJL0RVaB4jRUX6FplAaOgkMbG71orDc1I8WWG2MWgK+XZ419hPKPVw==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.12.0", + "adal-angular": "1.0.16", + "msalBrowserLegacy": "npm:@azure/msal-browser@2.22.0", + "msalLegacy": "npm:msal@1.4.12", + "tslib": "2.3.1" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-http-msgraph": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-http-msgraph/-/sp-http-msgraph-1.19.0.tgz", + "integrity": "sha512-wjRQ+VBenkqZg9GTHpV0Y7YWDEII3Kzihe2exdwBgLMZlUnf60M1222foHtGrd/PzyLyHbntuqzGfmE36VNlfQ==", + "dependencies": { + "@microsoft/microsoft-graph-clientv1": "npm:@microsoft/microsoft-graph-client@1.7.2-spfx", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "tslib": "2.3.1" + }, + "peerDependencies": { + "@microsoft/microsoft-graph-client": "3.0.2" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-image-helper": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-image-helper/-/sp-image-helper-1.19.0.tgz", + "integrity": "sha512-tsgy9iy/8NqXqywYm0M+XBt1fAO03mwEccALoICNECU5CX+KRb/a80FfQ1CbaqvzQqeuAzFp48ZIHqFAgzxE9Q==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0", + "react": ">=16.13.1 <18.0.0", + "react-dom": ">=16.13.1 <18.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-loader": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-loader/-/sp-loader-1.19.0.tgz", + "integrity": "sha512-KFQ7AvTXn+PKT5YzxZMvgrjRDq0UZxZp6MoZP14mjo/fJ/vU5SQJG1csWz/0MdTpv3OooxeqgstwOL2hM/cB4A==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-odata-types": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "@rushstack/loader-raw-script": "1.4.37", + "@types/requirejs": "2.1.29", + "raw-loader": "~0.5.1", + "react": "17.0.1", + "react-dom": "17.0.1", + "requirejs": "2.3.6", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-loader/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-lodash-subset": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-lodash-subset/-/sp-lodash-subset-1.19.0.tgz", + "integrity": "sha512-jTFdYxU52dYFNbEuIy7p7QPG6ujO5ZaX/pKmxRpXZb1v6JM0l7SzaLMEEyhBeu/HFovlErAM6n5IOccJx31SXA==", + "dependencies": { + "@types/lodash": "4.14.117", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-module-interfaces": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/@microsoft/sp-module-interfaces/-/sp-module-interfaces-1.20.1.tgz", + "integrity": "sha512-kV5ipmUyCPL0FgS8uf+OH6Gpu33x8tr7q4eXUQFaG8TaCbrLkCh6F+H1CdcFEPcp7GIC3qdSfI7IhAKG5Cuz4w==", + "dependencies": { + "@rushstack/node-core-library": "4.0.2", + "z-schema": "4.2.4" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-odata-types": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-odata-types/-/sp-odata-types-1.19.0.tgz", + "integrity": "sha512-4he2OU/QLcerLGd0RYQ1BOeIRESsM9A14I9g83Db4g+Gs6IrZi8lPSo4dydInL0kPM4U7/z+wRJcw9OGpkTieA==", + "dependencies": { + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-office-ui-fabric-core": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-office-ui-fabric-core/-/sp-office-ui-fabric-core-1.19.0.tgz", + "integrity": "sha512-rh54f6JgjZm0qphHk9UIhV1rRSzX3GwDz4joTNw+kSumLCGXVmef5+qrtd6HAFHI/TQCf/FQkgW0a4DFF/qDAA==", + "dependencies": { + "office-ui-fabric-core": "11.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-page-context": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-page-context/-/sp-page-context-1.19.0.tgz", + "integrity": "sha512-fUkwWkEOcRgz6jkLoX18qKLGSLdqyDG1tR8bpXKJloQL6hq6n5RUdq41m3atIGWCLO+UsvkGSgixBMfSGiDGSA==", + "dependencies": { + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-odata-types": "1.19.0", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-property-pane": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-property-pane/-/sp-property-pane-1.19.0.tgz", + "integrity": "sha512-tBejgARjdkwrlKVEA4sm0c8AcrAdrc99wwRZF4tZHBdAFd/LB7mw7+ZuW71eIYB97efHUdOo5Z9YkrSwRmKd7Q==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-component-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-image-helper": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-page-context": "1.19.0", + "react": "17.0.1", + "react-dom": "17.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-property-pane/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-top-actions": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-top-actions/-/sp-top-actions-1.19.0.tgz", + "integrity": "sha512-/1G0J/2sNYK/LXqHnD5h4jitMzatbZRjwT2Qzd4JRxGSujFUe+VYRET90LXdA6lBnDrfZ2MlsVfRkEPrnGyZFQ==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-webpart-base": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@microsoft/sp-webpart-base/-/sp-webpart-base-1.19.0.tgz", + "integrity": "sha512-UEWWPDahD4tEAiZVeqCVV0DEU/0LhTgshWDLAeiRvcz5G83JrCN10JCwucYmAzwV3Irisy0DX9nt6C5qWzbvcA==", + "dependencies": { + "@fluentui/react": "^8.110.12", + "@microsoft/sp-component-base": "1.19.0", + "@microsoft/sp-core-library": "1.19.0", + "@microsoft/sp-diagnostics": "1.19.0", + "@microsoft/sp-dynamic-data": "1.19.0", + "@microsoft/sp-http": "1.19.0", + "@microsoft/sp-http-base": "1.19.0", + "@microsoft/sp-loader": "1.19.0", + "@microsoft/sp-lodash-subset": "1.19.0", + "@microsoft/sp-module-interfaces": "1.20.1", + "@microsoft/sp-page-context": "1.19.0", + "@microsoft/sp-property-pane": "1.19.0", + "@microsoft/sp-top-actions": "1.19.0", + "@microsoft/teams-js-v2": "npm:@microsoft/teams-js@2.12.0", + "@types/office-js": "1.0.36", + "react": "17.0.1", + "react-dom": "17.0.1", + "tslib": "2.3.1" + }, + "engines": { + "node": ">=18.17.1 <19.0.0" + }, + "peerDependencies": { + "@types/react": ">=16.9.51 <18.0.0", + "@types/react-dom": ">=16.9.8 <18.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/sp-webpart-base/node_modules/@fluentui/react": { + "version": "8.121.2", + "resolved": "https://registry.npmjs.org/@fluentui/react/-/react-8.121.2.tgz", + "integrity": "sha512-6MtVYh7aIAVzBLhP4WbCUgS/jCGMCchm/Pdez3vR36knkKf3cdF4+3SGU5TcC73eY6Y9kUuuqxCItxLgfEZyGw==", + "dependencies": { + "@fluentui/date-time-utilities": "^8.6.9", + "@fluentui/font-icons-mdl2": "^8.5.52", + "@fluentui/foundation-legacy": "^8.4.18", + "@fluentui/merge-styles": "^8.6.13", + "@fluentui/react-focus": "^8.9.15", + "@fluentui/react-hooks": "^8.8.14", + "@fluentui/react-portal-compat-context": "^9.0.12", + "@fluentui/react-window-provider": "^2.2.28", + "@fluentui/set-version": "^8.2.23", + "@fluentui/style-utilities": "^8.11.1", + "@fluentui/theme": "^2.6.61", + "@fluentui/utilities": "^8.15.17", + "@microsoft/load-themed-styles": "^1.10.26", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@microsoft/teams-js-v2": { + "name": "@microsoft/teams-js", + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/teams-js/-/teams-js-2.12.0.tgz", + "integrity": "sha512-4gBtIC/Jc4elZ+R9i1LR+4QFwTAPtJ4P1MsCMDafe3HLtFGu/ZQngG9jZkWQ4A/rP4z1wNaDNn39XC+dLfURHQ==", + "deprecated": "Package no longer supported. Use at your own risk", + "dependencies": { + "debug": "^4.3.3" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/common": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/common/-/common-1.3.11.tgz", + "integrity": "sha512-RhYKcfMP+h0pAzORZRHSPPLOBB58djN/pfnorpWPjsx6ZxMqbiDqTzAtTF4m8z/mdNnxJr0Q3kwt4ImU3FjwnA==", + "dependencies": { + "adal-angular": "1.0.17", + "tslib": "1.10.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/common/node_modules/adal-angular": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/adal-angular/-/adal-angular-1.0.17.tgz", + "integrity": "sha512-+Z9aq7L25OncsaVcnhSsi7AMR/dlg0gWVNptsdtkL9Ih7hA1oJ14mhWB60CB83JF6DlzamVKLMGbrAcgFQqhCg==", + "deprecated": "This package is no longer supported. Please migrate to @azure/msal-angular.", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/common/node_modules/tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/logging": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/logging/-/logging-1.3.11.tgz", + "integrity": "sha512-hADlIXwvF/wjee7425nFJ6NhqaWpWTJ5yg02bpwBUsiSuFqEUf+LwuAcyHQre2lMs6KyNa65FWoRQok9BlZuxA==", + "dependencies": { + "tslib": "1.10.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/logging/node_modules/tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/odata": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/odata/-/odata-1.3.11.tgz", + "integrity": "sha512-yMaRiuVZRei2pkryCOqsw3ZXD2Lw30IJv136WQmQPQPOxG4cvsS9+woXkfMqbWV2KQ1evFUqVXbitIz6eDVfNA==", + "dependencies": { + "tslib": "1.10.0" + }, + "peerDependencies": { + "@pnp/common": "1.3.11", + "@pnp/logging": "1.3.11" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/odata/node_modules/tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/sp": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/sp/-/sp-1.3.11.tgz", + "integrity": "sha512-NjdeGe81aukiSPelSPjgAFRC1+SrNPTXvTdEqTH+Q1ZvgNtk8bdZp6K6xf9emfeM2qZDOu9GpKZpg0W/emq++g==", + "dependencies": { + "tslib": "1.10.0" + }, + "peerDependencies": { + "@pnp/common": "1.3.11", + "@pnp/logging": "1.3.11", + "@pnp/odata": "1.3.11" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/sp-clientsvc": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/sp-clientsvc/-/sp-clientsvc-1.3.11.tgz", + "integrity": "sha512-eIUnmDWjizcWJzhWxAbfsxEyHF1dabkGlihnDnlcYGhtvh8BwuM67A57qc5fbxzCS59c0YU57szB1EucoNmV4A==", + "dependencies": { + "tslib": "1.10.0" + }, + "peerDependencies": { + "@pnp/common": "1.3.11", + "@pnp/logging": "1.3.11", + "@pnp/odata": "1.3.11", + "@pnp/sp": "1.3.11" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/sp-clientsvc/node_modules/tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/sp-taxonomy": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@pnp/sp-taxonomy/-/sp-taxonomy-1.3.11.tgz", + "integrity": "sha512-shzCSjmOlr6mojCXJkfD8Xf9lJnhphq4Fj6mdUQGwpak+VIU+Fogf6AI0j6AReCKtKsKyqfud9X7C8tH07C3DA==", + "dependencies": { + "tslib": "1.10.0" + }, + "peerDependencies": { + "@pnp/common": "1.3.11", + "@pnp/logging": "1.3.11", + "@pnp/odata": "1.3.11", + "@pnp/sp": "1.3.11", + "@pnp/sp-clientsvc": "1.3.11" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/sp-taxonomy/node_modules/tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@pnp/sp/node_modules/tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@rushstack/loader-raw-script": { + "version": "1.4.37", + "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.4.37.tgz", + "integrity": "sha512-pw+e6pLfeqPqmwZgxN/Yxj73AvajjC4NAgiKLdDTd88dYf57er7lRC9jBYz4ETSb/ANjktGNgrJP/4YeLvGF8g==", + "dependencies": { + "loader-utils": "1.4.2" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@rushstack/node-core-library": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz", + "integrity": "sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==", + "dependencies": { + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "z-schema": "~5.0.2" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@rushstack/node-core-library/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@rushstack/node-core-library/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons": { + "version": "7.5.17", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.5.17.tgz", + "integrity": "sha512-2S1kse0gtseTuV2r59iWukLxxoOJ6GgP2Yhxt9oxzaP9QubpYdxCUepvJmfPQQvvy4GELdykDUWQ6/hbzliJyw==", + "dependencies": { + "@uifabric/set-version": "^7.0.23", + "@uifabric/styling": "^7.16.18", + "tslib": "^1.10.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/@pnp/spfx-property-controls/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/monaco-editor": { + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.32.1.tgz", + "integrity": "sha512-LUt2wsUvQmEi2tfTOK+tjAPvt7eQ+K5C4rZPr6SeuyzjAuAHrIvlUloTcOiGjZW3fn3a/jFQCONrEJbNOaCqbA==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==", + "bin": { + "r_js": "bin/r.js", + "r.js": "bin/r.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@pnp/spfx-property-controls/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@pnp/spfx-property-controls/node_modules/z-schema": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz", + "integrity": "sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.6.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=6.0.0" + }, + "optionalDependencies": { + "commander": "^2.7.1" + } + }, + "node_modules/@pnp/telemetry-js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@pnp/telemetry-js/-/telemetry-js-2.0.0.tgz", + "integrity": "sha512-qFNm3mTerTnxgTR6c/4iMMt8EUKrQn5z0XG/IQtpNlp6m7KXRDFR87mQKeBVtSv2LhxGO0VNFndKJIibBw52zQ==", + "dependencies": { + "whatwg-fetch": "2.0.4" + } + }, + "node_modules/@pnpm/crypto.base32-hash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@pnpm/crypto.base32-hash/-/crypto.base32-hash-2.0.0.tgz", + "integrity": "sha512-3ttOeHBpmWRbgJrpDQ8Nwd3W8s8iuiP5YZM0JRyKWaMtX8lu9d7/AKyxPmhYsMJuN+q/1dwHa7QFeDZJ53b0oA==", + "dev": true, + "dependencies": { + "rfc4648": "^1.5.2" + }, + "engines": { + "node": ">=16.14" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/dependency-path": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@pnpm/dependency-path/-/dependency-path-2.1.8.tgz", + "integrity": "sha512-ywBaTjy0iSEF7lH3DlF8UXrdL2bw4AQFV2tTOeNeY7wc1W5CE+RHSJhf9MXBYcZPesqGRrPiU7Pimj3l05L9VA==", + "dev": true, + "dependencies": { + "@pnpm/crypto.base32-hash": "2.0.0", + "@pnpm/types": "9.4.2", + "encode-registry": "^3.0.1", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=16.14" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/dependency-path/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pnpm/error": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/error/-/error-1.4.0.tgz", + "integrity": "sha512-vxkRrkneBPVmP23kyjnYwVOtipwlSl6UfL+h+Xa3TrABJTz5rYBXemlTsU5BzST8U4pD7YDkTb3SQu+MMuIDKA==", + "dev": true, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/link-bins": { + "version": "5.3.25", + "resolved": "https://registry.npmjs.org/@pnpm/link-bins/-/link-bins-5.3.25.tgz", + "integrity": "sha512-9Xq8lLNRHFDqvYPXPgaiKkZ4rtdsm7izwM/cUsFDc5IMnG0QYIVBXQbgwhz2UvjUotbJrvfKLJaCfA3NGBnLDg==", + "dev": true, + "dependencies": { + "@pnpm/error": "1.4.0", + "@pnpm/package-bins": "4.1.0", + "@pnpm/read-modules-dir": "2.0.3", + "@pnpm/read-package-json": "4.0.0", + "@pnpm/read-project-manifest": "1.1.7", + "@pnpm/types": "6.4.0", + "@zkochan/cmd-shim": "^5.0.0", + "is-subdir": "^1.1.1", + "is-windows": "^1.0.2", + "mz": "^2.7.0", + "normalize-path": "^3.0.0", + "p-settle": "^4.1.1", + "ramda": "^0.27.1" + }, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/link-bins/node_modules/@pnpm/types": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", + "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", + "dev": true, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/package-bins": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/package-bins/-/package-bins-4.1.0.tgz", + "integrity": "sha512-57/ioGYLBbVRR80Ux9/q2i3y8Q+uQADc3c+Yse8jr/60YLOi3jcWz13e2Jy+ANYtZI258Qc5wk2X077rp0Ly/Q==", + "dev": true, + "dependencies": { + "@pnpm/types": "6.4.0", + "fast-glob": "^3.2.4", + "is-subdir": "^1.1.1" + }, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/package-bins/node_modules/@pnpm/types": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", + "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", + "dev": true, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/read-modules-dir": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@pnpm/read-modules-dir/-/read-modules-dir-2.0.3.tgz", + "integrity": "sha512-i9OgRvSlxrTS9a2oXokhDxvQzDtfqtsooJ9jaGoHkznue5aFCTSrNZFQ6M18o8hC03QWfnxaKi0BtOvNkKu2+A==", + "dev": true, + "dependencies": { + "mz": "^2.7.0" + }, + "engines": { + "node": ">=10.13" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/read-package-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@pnpm/read-package-json/-/read-package-json-4.0.0.tgz", + "integrity": "sha512-1cr2tEwe4YU6SI0Hmg+wnsr6yxBt2iJtqv6wrF84On8pS9hx4A2PLw3CIgbwxaG0b+ur5wzhNogwl4qD5FLFNg==", + "dev": true, + "dependencies": { + "@pnpm/error": "1.4.0", + "@pnpm/types": "6.4.0", + "load-json-file": "^6.2.0", + "normalize-package-data": "^3.0.2" + }, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/read-package-json/node_modules/@pnpm/types": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", + "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", + "dev": true, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/read-project-manifest": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@pnpm/read-project-manifest/-/read-project-manifest-1.1.7.tgz", + "integrity": "sha512-tj8ExXZeDcMmMUj7D292ETe/RiEirr1X1wpT6Zy85z2MrFYoG9jfCJpps40OdZBNZBhxbuKtGPWKVSgXD0yrVw==", + "dev": true, + "dependencies": { + "@pnpm/error": "1.4.0", + "@pnpm/types": "6.4.0", + "@pnpm/write-project-manifest": "1.1.7", + "detect-indent": "^6.0.0", + "fast-deep-equal": "^3.1.3", + "graceful-fs": "4.2.4", + "is-windows": "^1.0.2", + "json5": "^2.1.3", + "parse-json": "^5.1.0", + "read-yaml-file": "^2.0.0", + "sort-keys": "^4.1.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/read-project-manifest/node_modules/@pnpm/types": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", + "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", + "dev": true, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/read-project-manifest/node_modules/graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true + }, + "node_modules/@pnpm/types": { + "version": "9.4.2", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-9.4.2.tgz", + "integrity": "sha512-g1hcF8Nv4gd76POilz9gD4LITAPXOe5nX4ijgr8ixCbLQZfcpYiMfJ+C1RlMNRUDo8vhlNB4O3bUlxmT6EAQXA==", + "dev": true, + "engines": { + "node": ">=16.14" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/write-project-manifest": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@pnpm/write-project-manifest/-/write-project-manifest-1.1.7.tgz", + "integrity": "sha512-OLkDZSqkA1mkoPNPvLFXyI6fb0enCuFji6Zfditi/CLAo9kmIhQFmEUDu4krSB8i908EljG8YwL5Xjxzm5wsWA==", + "dev": true, + "dependencies": { + "@pnpm/types": "6.4.0", + "json5": "^2.1.3", + "mz": "^2.7.0", + "write-file-atomic": "^3.0.3", + "write-yaml-file": "^4.1.3" + }, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@pnpm/write-project-manifest/node_modules/@pnpm/types": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-6.4.0.tgz", + "integrity": "sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg==", + "dev": true, + "engines": { + "node": ">=10.16" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/@popperjs/core": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.5.4.tgz", + "integrity": "sha512-ZpKr+WTb8zsajqgDkvCEWgp6d5eJT6Q63Ng2neTbzBO76Lbe91vX/iVIW9dikq+Fs3yEo+ls4cxeXABD2LtcbQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@rushstack/debug-certificate-manager": { + "version": "1.1.84", + "resolved": "https://registry.npmjs.org/@rushstack/debug-certificate-manager/-/debug-certificate-manager-1.1.84.tgz", + "integrity": "sha512-GondfbezgkjT9U6WdMRdjJMkkYkUf/w2YiFKX2wUrmXyNmoApzpu8fXC3sDHb2LXKR7MvBNDY5YrpLooEYJhUg==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "3.53.2", + "node-forge": "~1.3.1", + "sudo": "~1.0.3" + } + }, + "node_modules/@rushstack/debug-certificate-manager/node_modules/@rushstack/node-core-library": { + "version": "3.53.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.2.tgz", + "integrity": "sha512-FggLe5DQs0X9MNFeJN3/EXwb+8hyZUTEp2i+V1e8r4Va4JgkjBNY0BuEaQI+3DW6S4apV3UtXU3im17MSY00DA==", + "dev": true, + "dependencies": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "z-schema": "~5.0.2" + } + }, + "node_modules/@rushstack/debug-certificate-manager/node_modules/@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", + "dev": true + }, + "node_modules/@rushstack/debug-certificate-manager/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@rushstack/debug-certificate-manager/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@rushstack/debug-certificate-manager/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dev": true, + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@rushstack/eslint-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-config/-/eslint-config-4.0.1.tgz", + "integrity": "sha512-V9vzoZ2oLa4eYviVO9c/E/eHbDpCev2XQUY+suPSU6JwHntbMxfJknB1PEZr/FPu/SnGwUgo1tDol/vRVQLUfQ==", + "dev": true, + "dependencies": { + "@rushstack/eslint-patch": "1.10.4", + "@rushstack/eslint-plugin": "0.16.0", + "@rushstack/eslint-plugin-packlets": "0.9.2", + "@rushstack/eslint-plugin-security": "0.8.2", + "@typescript-eslint/eslint-plugin": "~8.1.0", + "@typescript-eslint/parser": "~8.1.0", + "@typescript-eslint/typescript-estree": "~8.1.0", + "@typescript-eslint/utils": "~8.1.0", + "eslint-plugin-promise": "~6.1.1", + "eslint-plugin-react": "~7.33.2", + "eslint-plugin-tsdoc": "~0.3.0" + }, + "peerDependencies": { + "eslint": "^8.57.0", + "typescript": ">=4.7.0" + } + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz", + "integrity": "sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==", + "dev": true + }, + "node_modules/@rushstack/eslint-plugin": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin/-/eslint-plugin-0.16.0.tgz", + "integrity": "sha512-pR+iaqZTX1V0gCdWS9UJM5ge8n0R1TWosctmFjdXmYAgVIzKUWw8uMm4rBQRskFlItFm1HxAvC9m9Fmd0IKRNQ==", + "dev": true, + "dependencies": { + "@rushstack/tree-pattern": "0.3.4", + "@typescript-eslint/utils": "~8.1.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-packlets/-/eslint-plugin-packlets-0.9.2.tgz", + "integrity": "sha512-rZofSLJpwyP7Xo6e4eKYkI7N4JM5PycvPuoX5IEK08PgxPDm/k5pdltH9DkIKnmWvLrxIMU+85VrB5xnjbK0RQ==", + "dev": true, + "dependencies": { + "@rushstack/tree-pattern": "0.3.4", + "@typescript-eslint/utils": "~6.19.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/@typescript-eslint/scope-manager": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.19.1.tgz", + "integrity": "sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/visitor-keys": "6.19.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/@typescript-eslint/types": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.19.1.tgz", + "integrity": "sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/@typescript-eslint/typescript-estree": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.19.1.tgz", + "integrity": "sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/visitor-keys": "6.19.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/@typescript-eslint/utils": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.19.1.tgz", + "integrity": "sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.19.1", + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/typescript-estree": "6.19.1", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/@typescript-eslint/visitor-keys": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.19.1.tgz", + "integrity": "sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.19.1", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@rushstack/eslint-plugin-packlets/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/eslint-plugin-security": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-plugin-security/-/eslint-plugin-security-0.8.2.tgz", + "integrity": "sha512-AkY8BXanfV+RZLaifBglBpWYbR4vJNzYEj6C2m9TLDsRhZPW0h/rUHw6XDVpORhqJYCOXxoZcIwWnKenPbzDuQ==", + "dev": true, + "dependencies": { + "@rushstack/tree-pattern": "0.3.4", + "@typescript-eslint/utils": "~6.19.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/@typescript-eslint/scope-manager": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.19.1.tgz", + "integrity": "sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/visitor-keys": "6.19.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/@typescript-eslint/types": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.19.1.tgz", + "integrity": "sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/@typescript-eslint/typescript-estree": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.19.1.tgz", + "integrity": "sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/visitor-keys": "6.19.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/@typescript-eslint/utils": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.19.1.tgz", + "integrity": "sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.19.1", + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/typescript-estree": "6.19.1", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/@typescript-eslint/visitor-keys": { + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.19.1.tgz", + "integrity": "sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.19.1", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@rushstack/eslint-plugin-security/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/heft-config-file": { + "version": "0.15.7", + "resolved": "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.15.7.tgz", + "integrity": "sha512-d8rwr9ctVmnVBPyl0o1WFh6NKsAJEX9eJip3mRGKOUd6Lq5FLHaTELwVNbqmZ76oQITABueD5MS02QE5Yq2fhw==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "@rushstack/rig-package": "0.5.3", + "@rushstack/terminal": "0.14.2", + "jsonpath-plus": "~4.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@rushstack/heft-config-file/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/heft-config-file/node_modules/@rushstack/rig-package": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.3.tgz", + "integrity": "sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==", + "dev": true, + "dependencies": { + "resolve": "~1.22.1", + "strip-json-comments": "~3.1.1" + } + }, + "node_modules/@rushstack/heft-config-file/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/heft-config-file/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/heft-config-file/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/heft-config-file/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/heft-config-file/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/heft-config-file/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/heft-config-file/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/loader-raw-script": { + "version": "1.4.64", + "resolved": "https://registry.npmjs.org/@rushstack/loader-raw-script/-/loader-raw-script-1.4.64.tgz", + "integrity": "sha512-OIuPkbIJhCw7CixrsB+9DcQDZEiZU3y3tW8kupKmFzbD6ny57ZvEAincBwnyxZdTBElgjz9jYUHFEBIWxse1Ug==", + "dependencies": { + "loader-utils": "1.4.2" + } + }, + "node_modules/@rushstack/loader-raw-script/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@rushstack/loader-raw-script/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@rushstack/localization-utilities": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/@rushstack/localization-utilities/-/localization-utilities-0.12.2.tgz", + "integrity": "sha512-sNErW+OFd3YqMktJPjgimFRH2G2COfGEc3nVQOoxeLOhTI9ZjxhFAPbPHInS96t8pTuFz6UYx0WI2MUzIwzQVQ==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "@rushstack/terminal": "0.14.2", + "@rushstack/typings-generator": "0.14.2", + "pseudolocale": "~1.1.0", + "xmldoc": "~1.1.2" + } + }, + "node_modules/@rushstack/localization-utilities/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/localization-utilities/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/localization-utilities/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/localization-utilities/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/localization-utilities/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/localization-utilities/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/localization-utilities/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/localization-utilities/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/lookup-by-path": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@rushstack/lookup-by-path/-/lookup-by-path-0.2.2.tgz", + "integrity": "sha512-yUz281pQjxXjKWapQc0KeXYjHnLFjnBmC2V+Gvc3itmJmK7MxFlhDwOUiORzKcmy+ICpwCi3DEnmA5/FinHIYA==", + "dev": true, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/module-minifier": { + "version": "0.6.22", + "resolved": "https://registry.npmjs.org/@rushstack/module-minifier/-/module-minifier-0.6.22.tgz", + "integrity": "sha512-pYuXQ22J7t/ZWDUKX6F94x/dnIsSUhgQUa8TSQ3hMuSqSJ5C1mf/q3WDYrzEp5Cnp3oJUz0g9ittTxBayL5vGg==", + "dev": true, + "dependencies": { + "@rushstack/worker-pool": "0.4.67", + "serialize-javascript": "6.0.0", + "source-map": "~0.7.3", + "terser": "^5.9.0" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/module-minifier/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rushstack/node-core-library": { + "version": "3.53.3", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz", + "integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==", + "dev": true, + "dependencies": { + "@types/node": "12.20.24", + "colors": "~1.2.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.17.0", + "semver": "~7.3.0", + "z-schema": "~5.0.2" + } + }, + "node_modules/@rushstack/node-core-library/node_modules/@types/node": { + "version": "12.20.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.24.tgz", + "integrity": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==", + "dev": true + }, + "node_modules/@rushstack/node-core-library/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@rushstack/node-core-library/node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@rushstack/node-core-library/node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dev": true, + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/@rushstack/package-deps-hash": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.2.0.tgz", + "integrity": "sha512-sh60w8H3SliPBxfnvJzrvcSf2M/9KqBK/xB7uWaCPxkX8In/5bolKzL9Gl4MrNBMKm/yOBSYHJ2qOR9xKg8mHA==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0" + } + }, + "node_modules/@rushstack/package-deps-hash/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/package-deps-hash/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/package-deps-hash/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/package-deps-hash/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/package-deps-hash/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/package-deps-hash/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/package-deps-hash/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/package-deps-hash/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/package-extractor": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.9.1.tgz", + "integrity": "sha512-akddNvE0hnupW1dttzOQFFJPaZHk9LaloU6RlOQ0XzR3vEgHfTxaWuhGf+3JI1M5xB6is7ifZYyxZVR5UAQjJQ==", + "dev": true, + "dependencies": { + "@pnpm/link-bins": "~5.3.7", + "@rushstack/node-core-library": "5.9.0", + "@rushstack/terminal": "0.14.2", + "ignore": "~5.1.6", + "jszip": "~3.8.0", + "minimatch": "~3.0.3", + "npm-packlist": "~2.1.2", + "semver": "~7.5.4" + } + }, + "node_modules/@rushstack/package-extractor/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/package-extractor/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/package-extractor/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/package-extractor/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/package-extractor/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/package-extractor/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/package-extractor/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/package-extractor/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/rig-package": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.2.12.tgz", + "integrity": "sha512-nbePcvF8hQwv0ql9aeQxcaMPK/h1OLAC00W7fWCRWIvD2MchZOE8jumIIr66HGrfG2X1sw++m/ZYI4D+BM5ovQ==", + "dev": true, + "dependencies": { + "resolve": "~1.17.0", + "strip-json-comments": "~3.1.1" + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin": { + "version": "5.135.0-pr4927.1", + "resolved": "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.135.0-pr4927.1.tgz", + "integrity": "sha512-8YvIpDeJhYfr1+9W9ie0JlOoCu/8eN7/ObaMkQgyQuapzZ1g2myunW58+85TvfjfZ2ATtR7YCYm/0s8CyP6ddw==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "@rushstack/rush-sdk": "5.135.0-pr4927.1", + "@rushstack/terminal": "0.14.2", + "https-proxy-agent": "~5.0.0", + "node-fetch": "2.6.7" + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@rushstack/rush-amazon-s3-build-cache-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin": { + "version": "5.135.0-pr4927.1", + "resolved": "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.135.0-pr4927.1.tgz", + "integrity": "sha512-8hsj3eJ5BE+YmRTIGRwvy0hFZwqxPLK1ar2Oo/hwetqQiRZbOnTBNZ53iJe4DQbGhNJJzOpVUDG7Sg90optrhg==", + "dev": true, + "dependencies": { + "@azure/identity": "~4.2.1", + "@azure/storage-blob": "~12.17.0", + "@rushstack/node-core-library": "5.9.0", + "@rushstack/rush-sdk": "5.135.0-pr4927.1", + "@rushstack/terminal": "0.14.2" + } + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/rush-azure-storage-build-cache-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/rush-http-build-cache-plugin": { + "version": "5.135.0-pr4927.1", + "resolved": "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.135.0-pr4927.1.tgz", + "integrity": "sha512-3X4XOGcbmxWshgZrUF+g9yuJThEodaHvsvL/fp22y4W7bHuqxKdl6BQjLRBmrhgFZu9WcpgxSVdlZXy/fVw41A==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "@rushstack/rush-sdk": "5.135.0-pr4927.1", + "https-proxy-agent": "~5.0.0", + "node-fetch": "2.6.7" + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@rushstack/rush-http-build-cache-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/rush-sdk": { + "version": "5.135.0-pr4927.1", + "resolved": "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.135.0-pr4927.1.tgz", + "integrity": "sha512-SPoVx1ZKjZkyWWkQ6DHz0nuMTJwseyGGjMt8kyygBRmLFlmT4Q/8nEniZBuPnw8b6uGs8A16u+x0YKxUgvgjuA==", + "dev": true, + "dependencies": { + "@rushstack/lookup-by-path": "0.2.2", + "@rushstack/node-core-library": "5.9.0", + "@rushstack/terminal": "0.14.2", + "@types/node-fetch": "2.6.2", + "tapable": "2.2.1" + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/@types/node-fetch": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz", + "integrity": "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/rush-sdk/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@rushstack/rush-sdk/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/set-webpack-public-path-plugin": { + "version": "5.1.50", + "resolved": "https://registry.npmjs.org/@rushstack/set-webpack-public-path-plugin/-/set-webpack-public-path-plugin-5.1.50.tgz", + "integrity": "sha512-f3jVlBnKraUskPjj2JbEYuE9sR44+7Y8R4Sy4zGLnYrIQfzVAEbLkTu3a/WCGqASc2A5uX64Ng9QuI7kS/AYpQ==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "@rushstack/webpack-plugin-utilities": "0.4.50" + }, + "peerDependencies": { + "@types/node": "*", + "webpack": "^5.68.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/set-webpack-public-path-plugin/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/set-webpack-public-path-plugin/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/set-webpack-public-path-plugin/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/set-webpack-public-path-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/set-webpack-public-path-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/set-webpack-public-path-plugin/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/set-webpack-public-path-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/set-webpack-public-path-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/stream-collator": { + "version": "4.1.67", + "resolved": "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.67.tgz", + "integrity": "sha512-gb8lP0pQ8qA5/54MpetF16oVlK7ruTH1N/Hk72Brx3S0sXpJbc6SrZz6Ifi6OjHr2/ZS8HmG9PGq9btUkq0uxw==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "@rushstack/terminal": "0.14.2" + } + }, + "node_modules/@rushstack/stream-collator/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/stream-collator/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/stream-collator/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/stream-collator/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/stream-collator/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/stream-collator/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/stream-collator/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/stream-collator/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/terminal": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.14.2.tgz", + "integrity": "sha512-2fC1wqu1VCExKC0/L+0noVcFQEXEnoBOtCIex1TOjBzEDWcw8KzJjjj7aTP6mLxepG0XIyn9OufeFb6SFsa+sg==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "supports-color": "~8.1.1" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/terminal/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/terminal/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/terminal/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/terminal/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/terminal/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/terminal/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/terminal/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/terminal/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/tree-pattern": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@rushstack/tree-pattern/-/tree-pattern-0.3.4.tgz", + "integrity": "sha512-9uROnkiHWsQqxW6HirXABfTRlgzhYp6tevbYIGkwKQ09VaayUBkvFvt/urDKMwlo+tGU0iQQLuVige6c48wTgw==", + "dev": true + }, + "node_modules/@rushstack/ts-command-line": { + "version": "4.7.10", + "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.7.10.tgz", + "integrity": "sha512-8t042g8eerypNOEcdpxwRA3uCmz0duMo21rG4Z2mdz7JxJeylDmzjlU3wDdef2t3P1Z61JCdZB6fbm1Mh0zi7w==", + "dev": true, + "dependencies": { + "@types/argparse": "1.0.38", + "argparse": "~1.0.9", + "colors": "~1.2.1", + "string-argv": "~0.3.1" + } + }, + "node_modules/@rushstack/typings-generator": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/@rushstack/typings-generator/-/typings-generator-0.14.2.tgz", + "integrity": "sha512-ivtCWBvFBkZb0c8jPeacQMCQc8Kf5NzDMYK6DuatFxbFGE56MzTN9Pr1DOBTjaNWyw45mAgTD7kzGc+iG239xw==", + "dev": true, + "dependencies": { + "@rushstack/node-core-library": "5.9.0", + "@rushstack/terminal": "0.14.2", + "chokidar": "~3.4.0", + "fast-glob": "~3.3.1" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/typings-generator/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/typings-generator/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/typings-generator/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/typings-generator/node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/@rushstack/typings-generator/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/typings-generator/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/typings-generator/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rushstack/typings-generator/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/typings-generator/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/typings-generator/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/webpack-plugin-utilities": { + "version": "0.4.50", + "resolved": "https://registry.npmjs.org/@rushstack/webpack-plugin-utilities/-/webpack-plugin-utilities-0.4.50.tgz", + "integrity": "sha512-p3TTt5XNz/bar2JnLDinUI7xL6RgqOWfWyyjveJSzozV/Jh/VtIFbh/e5JCL77GzruT3WZlpkspS7sqpXhQaHg==", + "dev": true, + "dependencies": { + "memfs": "3.4.3", + "webpack-merge": "~5.8.0" + }, + "peerDependencies": { + "@types/webpack": "^4.39.8", + "webpack": "^5.35.1 || ^4.31.0" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/@rushstack/webpack5-localization-plugin": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@rushstack/webpack5-localization-plugin/-/webpack5-localization-plugin-0.11.8.tgz", + "integrity": "sha512-qjXAs6+JvCy3Xkgu47KZWGw1aGt6r2gIMxeWXDFekYPE95bM17e5G5rtb1GFU5Ta9Mj3qG+tHaOHOgr0j8pX1g==", + "dev": true, + "dependencies": { + "@rushstack/localization-utilities": "0.12.2", + "@rushstack/node-core-library": "5.9.0", + "@rushstack/terminal": "0.14.2" + }, + "peerDependencies": { + "@types/node": "*", + "webpack": "^5.68.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/webpack5-localization-plugin/node_modules/@rushstack/node-core-library": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.9.0.tgz", + "integrity": "sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==", + "dev": true, + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/webpack5-localization-plugin/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@rushstack/webpack5-localization-plugin/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "dev": true, + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@rushstack/webpack5-localization-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@rushstack/webpack5-localization-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/webpack5-localization-plugin/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@rushstack/webpack5-localization-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/webpack5-localization-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@rushstack/webpack5-module-minifier-plugin": { + "version": "5.5.69", + "resolved": "https://registry.npmjs.org/@rushstack/webpack5-module-minifier-plugin/-/webpack5-module-minifier-plugin-5.5.69.tgz", + "integrity": "sha512-W3M4He1tv5pFMxT7E7634su+kpIHvalHDMaxEHJU1WeC/ug4CF//CwXpUE2v/gc4Ou82pXTB1EyEHMy2JnRgqQ==", + "dev": true, + "dependencies": { + "@rushstack/worker-pool": "0.4.67", + "@types/estree": "1.0.5", + "@types/tapable": "1.0.6", + "tapable": "2.2.1" + }, + "engines": { + "node": ">=14.19.0" + }, + "peerDependencies": { + "@rushstack/module-minifier": "*", + "@types/node": "*", + "webpack": "^5.68.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/webpack5-module-minifier-plugin/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@rushstack/worker-pool": { + "version": "0.4.67", + "resolved": "https://registry.npmjs.org/@rushstack/worker-pool/-/worker-pool-0.4.67.tgz", + "integrity": "sha512-HUDOp7PpHfBxRld2vTLrKXEB4fcif0IsWy5uqSYQB4Wh4akBSec5S6ksJTpP/QagpH8gRuRgP4Z9W6tzITpk0Q==", + "dev": true, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@swc/helpers": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.13.tgz", + "integrity": "sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@swc/helpers/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + }, + "node_modules/@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "dependencies": { + "defer-to-connect": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/argparse": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", + "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", + "dev": true + }, + "node_modules/@types/atob-lite": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/atob-lite/-/atob-lite-2.0.2.tgz", + "integrity": "sha512-BbCDWqZzlBBq8czVNYPiQNnHPrdPmR1mcyv3c8autpLEDmBMJY4hjziedi4RlXC+jnquD6Ba/yFU6bboZ3ZKVA==" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/btoa-lite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/btoa-lite/-/btoa-lite-1.0.2.tgz", + "integrity": "sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==" + }, + "node_modules/@types/chalk": { + "version": "0.4.31", + "resolved": "https://registry.npmjs.org/@types/chalk/-/chalk-0.4.31.tgz", + "integrity": "sha512-nF0fisEPYMIyfrFgabFimsz9Lnuu9MwkNrrlATm2E4E46afKDyeelT+8bXfw1VSc7sLBxMxRgT7PxTC2JcqN4Q==", + "dev": true + }, + "node_modules/@types/classnames": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@types/classnames/-/classnames-2.3.1.tgz", + "integrity": "sha512-zeOWb0JGBoVmlQoznvqXbE0tEC/HONsnoUNH19Hc96NFsTAwTXbTqb8FMYkru1F/iqp7a18Ws3nWJvtA1sHD1A==", + "deprecated": "This is a stub types definition. classnames provides its own type definitions, so you do not need this installed.", + "dependencies": { + "classnames": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "dev": true, + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/copy-webpack-plugin": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/copy-webpack-plugin/-/copy-webpack-plugin-8.0.1.tgz", + "integrity": "sha512-TwEeGse0/wq+t3SFW0DEwroMS/cDkwVZT+vj7tMAYTp7llt/yz6NuW2n04X2M5P/kSfBQOORhrHAN2mqZdmybg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "tapable": "^2.0.0", + "webpack": "^5.1.0" + } + }, + "node_modules/@types/copy-webpack-plugin/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@types/cross-spawn": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.56.12", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz", + "integrity": "sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.0.tgz", + "integrity": "sha512-AbXMTZGt40T+KON9/Fdxx0B2WK5hsgxcfXJLr5bFpZ7b4JCex2WyQPTEKdXqfHiY5nKKBScZ7yCoO6Pvgxfvnw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/glob-stream": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@types/glob-stream/-/glob-stream-8.0.2.tgz", + "integrity": "sha512-kyuRfGE+yiSJWzSO3t74rXxdZNdYfLcllO0IUha4eX1fl40pm9L02Q/TEc3mykTLjoWz4STBNwYnUWdFu3I0DA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/picomatch": "*", + "@types/streamx": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/gulp": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-4.0.6.tgz", + "integrity": "sha512-0E8/iV/7FKWyQWSmi7jnUvgXXgaw+pfAzEB06Xu+l0iXVJppLbpOye5z7E2klw5akXd+8kPtYuk65YBcZPM4ow==", + "dev": true, + "dependencies": { + "@types/undertaker": "*", + "@types/vinyl-fs": "*", + "chokidar": "^2.1.2" + } + }, + "node_modules/@types/gulp/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/@types/gulp/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/@types/gulp/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "Upgrade to fsevents v2 to mitigate potential security issues", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/@types/gulp/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/@types/gulp/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/@types/gulp/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/micromatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/micromatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/gulp/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/@types/gulp/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.15", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "25.2.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-25.2.1.tgz", + "integrity": "sha512-msra1bCaAeEdkSyA0CZ6gW1ukMIvZ5YoJkdXw/qhQdsuuDlFTcEUrUw8CLCPt2rVRUfXlClVvK2gvPs9IokZaA==", + "dev": true, + "dependencies": { + "jest-diff": "^25.2.1", + "pretty-format": "^25.2.1" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/lodash": { + "version": "4.14.117", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.117.tgz", + "integrity": "sha512-xyf2m6tRbz8qQKcxYZa7PA4SllYcay+eh25DN3jmNYY6gSTL7Htc/bttVdkqj2wfJGbeWlQiX8pIyJpKU+tubw==" + }, + "node_modules/@types/lodash.isequal": { + "version": "4.5.8", + "resolved": "https://registry.npmjs.org/@types/lodash.isequal/-/lodash.isequal-4.5.8.tgz", + "integrity": "sha512-uput6pg4E/tj2LGxCZo9+y27JNyB2OZuuI/T5F+ylVDYuqICLG2/ktjxx0v6GvVntAf8TvEzeQLcV0ffRirXuA==", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==" + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "node_modules/@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "dev": true + }, + "node_modules/@types/node": { + "version": "10.17.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.13.tgz", + "integrity": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==", + "devOptional": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node-notifier": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@types/node-notifier/-/node-notifier-8.0.2.tgz", + "integrity": "sha512-5v0PhPv0AManpxT7W25Zipmj/Lxp1WqfkcpZHyqSloB+gGoAHRBuzhrCelFKrPvNF5ki3gAcO4kxaGO2/21u8g==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/@types/office-js": { + "version": "1.0.36", + "resolved": "https://registry.npmjs.org/@types/office-js/-/office-js-1.0.36.tgz", + "integrity": "sha512-v5jOXCPS0nbbuVzZThhDMzttuJrpzzvx1GsPo5Qed8Cs9uzMwEV1vdkKN5zLFnAUlEF4s8Szl9KXnhnSvH89Kw==" + }, + "node_modules/@types/orchestrator": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/orchestrator/-/orchestrator-0.0.30.tgz", + "integrity": "sha512-rT9So631KbmirIGsZ5m6T15FKHqiWhYRULdl03l/WBezzZ8wwhYTS2zyfHjsvAGYFVff1wtmGFd0akRCBDSZrA==", + "dev": true, + "dependencies": { + "@types/q": "*" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "dev": true + }, + "node_modules/@types/picomatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/picomatch/-/picomatch-3.0.1.tgz", + "integrity": "sha512-1MRgzpzY0hOp9pW/kLRxeQhUWwil6gnrUYd3oEpeYBqp/FexhaCPv3F8LsYr47gtUU45fO2cm1dbwkSrHEo8Uw==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-1.19.1.tgz", + "integrity": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==", + "dev": true + }, + "node_modules/@types/prop-types": { + "version": "15.7.13", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz", + "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==" + }, + "node_modules/@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.16", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.16.tgz", + "integrity": "sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==", + "dev": true + }, + "node_modules/@types/quill": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/@types/quill/-/quill-1.3.10.tgz", + "integrity": "sha512-IhW3fPW+bkt9MLNlycw8u8fWb7oO7W5URC9MfZYHBlA24rex9rs23D5DETChu1zvgVdc5ka64ICjJOgQMr6Shw==", + "dependencies": { + "parchment": "^1.1.2" + } + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true + }, + "node_modules/@types/react": { + "version": "17.0.45", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.45.tgz", + "integrity": "sha512-YfhQ22Lah2e3CHPsb93tRwIGNiSwkuz1/blk4e6QrWS0jQzCSNbGLtOEYhPg02W0yGTTmpajp7dCTbBAMN3qsg==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "17.0.17", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.17.tgz", + "integrity": "sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==", + "dependencies": { + "@types/react": "^17" + } + }, + "node_modules/@types/react-js-pagination": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/react-js-pagination/-/react-js-pagination-3.0.7.tgz", + "integrity": "sha512-h16F5eFcVaTO5LTT5jJrvK8SxTlxkuv03ZKt/e6L3GPng/0TZTqhEKEyD8F5XksLeKBalsS1tTN2foJLWv/6mA==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/requirejs": { + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/@types/requirejs/-/requirejs-2.1.29.tgz", + "integrity": "sha512-61MNgoBY6iEsHhFGiElSjEu8HbHOahJLGh9BdGSfzgAN+2qOuFJKuG3f7F+/ggKr+0yEM3Y4fCWAgxU6es0otg==" + }, + "node_modules/@types/retry": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", + "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", + "dev": true + }, + "node_modules/@types/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==" + }, + "node_modules/@types/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-iotVxtCCsPLRAvxMFFgxL8HD2l4mAZ2Oin7/VJ2ooWO0VOK4EGOGmZWZn1uCq7RofR3I/1IOSjCHlFT71eVK0Q==", + "dev": true + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dev": true, + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "dev": true, + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "node_modules/@types/streamx": { + "version": "2.9.5", + "resolved": "https://registry.npmjs.org/@types/streamx/-/streamx-2.9.5.tgz", + "integrity": "sha512-IHYsa6jYrck8VEdSwpY141FTTf6D7boPeMq9jy4qazNrFMA4VbRz/sw5LSsfR7jwdDcx0QKWkUexZvsWBC2eIQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", + "dev": true + }, + "node_modules/@types/through2": { + "version": "2.0.32", + "resolved": "https://registry.npmjs.org/@types/through2/-/through2-2.0.32.tgz", + "integrity": "sha512-VYclBauj55V0qPDHs9QMdKBdxdob6zta8mcayjTyOzlRgl+PNERnvNol99W1PBnvQXaYoTTqSce97rr9dz9oXQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==" + }, + "node_modules/@types/tunnel": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/tunnel/-/tunnel-0.0.3.tgz", + "integrity": "sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/undertaker": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/@types/undertaker/-/undertaker-1.2.11.tgz", + "integrity": "sha512-j1Z0V2ByRHr8ZK7eOeGq0LGkkdthNFW0uAZGY22iRkNQNL9/vAV0yFPr1QN3FM/peY5bxs9P+1f0PYJTQVa5iA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/undertaker-registry": "*", + "async-done": "~1.3.2" + } + }, + "node_modules/@types/undertaker-registry": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@types/undertaker-registry/-/undertaker-registry-1.0.4.tgz", + "integrity": "sha512-tW77pHh2TU4uebWXWeEM5laiw8BuJ7pyJYDh6xenOs75nhny2kVgwYbegJ4BoLMYsIrXaBpKYaPdYO3/udG+hg==", + "dev": true + }, + "node_modules/@types/vinyl": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.3.tgz", + "integrity": "sha512-hrT6xg16CWSmndZqOTJ6BGIn2abKyTw0B58bI+7ioUoj3Sma6u8ftZ1DTI2yCaJamOVGLOnQWiPH3a74+EaqTA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/vinyl-fs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/vinyl-fs/-/vinyl-fs-3.0.5.tgz", + "integrity": "sha512-ckYz9giHgV6U10RFuf9WsDQ3X86EFougapxHmmoxLK7e6ICQqO8CE+4V/3lBN148V5N1pb4nQMmMjyScleVsig==", + "dev": true, + "dependencies": { + "@types/glob-stream": "*", + "@types/node": "*", + "@types/vinyl": "*" + } + }, + "node_modules/@types/webpack-dev-server": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-4.7.1.tgz", + "integrity": "sha512-T6UeAUQWojf1toimSIf6sBwaO4HQ4iHdF4BL2RbPbzKTqe5blB7Iih7i7h69NSg/fOjWlkdszNPlaWD1/aX5LQ==", + "dev": true, + "dependencies": { + "webpack-dev-server": "*" + } + }, + "node_modules/@types/webpack-env": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.15.2.tgz", + "integrity": "sha512-67ZgZpAlhIICIdfQrB5fnDvaKFcDxpKibxznfYRVAT4mQE41Dido/3Ty+E3xGBmTogc5+0Qb8tWhna+5B8z1iQ==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.12", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz", + "integrity": "sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/xmldom": { + "version": "0.1.34", + "resolved": "https://registry.npmjs.org/@types/xmldom/-/xmldom-0.1.34.tgz", + "integrity": "sha512-7eZFfxI9XHYjJJuugddV6N5YNeXgQE1lArWOcd1eCOKWb/FGs5SIjacSYuEJuwhsGS3gy4RuZ5EUIcqYscuPDA==" + }, + "node_modules/@types/yargs": { + "version": "0.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-0.0.34.tgz", + "integrity": "sha512-Rrj9a2bqpcPKGYCIyQGkD24PeCZG3ow58cgaAtI4jwsUMe/9hDaCInMpXZ+PaUK3cVwsFUstpOEkSfMdQpCnYA==", + "dev": true + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "dev": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.1.0.tgz", + "integrity": "sha512-LlNBaHFCEBPHyD4pZXb35mzjGkuGKXU5eeCA1SxvHfiRES0E82dOounfVpL4DCqYvJEKab0bZIA0gCRpdLKkCw==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.1.0", + "@typescript-eslint/type-utils": "8.1.0", + "@typescript-eslint/utils": "8.1.0", + "@typescript-eslint/visitor-keys": "8.1.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.20.0.tgz", + "integrity": "sha512-w5qtx2Wr9x13Dp/3ic9iGOGmVXK5gMwyc8rwVgZU46K9WTjPZSyPvdER9Ycy+B5lNHvoz+z2muWhUvlTpQeu+g==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "5.20.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/scope-manager": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz", + "integrity": "sha512-h9KtuPZ4D/JuX7rpp1iKg3zOH0WNEa+ZIXwpW/KWmEFDxlA/HSfCMhiyF1HS/drTICjIbpA6OqkAhrP/zkCStg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/visitor-keys": "5.20.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/types": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.20.0.tgz", + "integrity": "sha512-+d8wprF9GyvPwtoB4CxBAR/s0rpP25XKgnOvMf/gMXYDvlUC3rPFHupdTQ/ow9vn7UDe5rX02ovGYQbv/IUCbg==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz", + "integrity": "sha512-36xLjP/+bXusLMrT9fMMYy1KJAGgHhlER2TqpUVDYUQg4w0q/NW/sg4UGAgVwAqb8V4zYg43KMUpM8vV2lve6w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/visitor-keys": "5.20.0", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/utils": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.20.0.tgz", + "integrity": "sha512-lHONGJL1LIO12Ujyx8L8xKbwWSkoUKFSO+0wDAqGXiudWB2EO7WEUT+YZLtVbmOmSllAjLb9tpoIPwpRe5Tn6w==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.20.0", + "@typescript-eslint/types": "5.20.0", + "@typescript-eslint/typescript-estree": "5.20.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz", + "integrity": "sha512-1flRpNF+0CAQkMNlTJ6L/Z5jiODG/e5+7mk6XwtPOUS3UrTz3UOiAg9jG2VtKsWI6rZQfy4C6a232QNRZTRGlg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.20.0", + "eslint-visitor-keys": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.1.0.tgz", + "integrity": "sha512-U7iTAtGgJk6DPX9wIWPPOlt1gO57097G06gIcl0N0EEnNw8RGD62c+2/DiP/zL7KrkqnnqF7gtFGR7YgzPllTA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "8.1.0", + "@typescript-eslint/types": "8.1.0", + "@typescript-eslint/typescript-estree": "8.1.0", + "@typescript-eslint/visitor-keys": "8.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.1.0.tgz", + "integrity": "sha512-DsuOZQji687sQUjm4N6c9xABJa7fjvfIdjqpSIIVOgaENf2jFXiM9hIBZOL3hb6DHK9Nvd2d7zZnoMLf9e0OtQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.1.0", + "@typescript-eslint/visitor-keys": "8.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.1.0.tgz", + "integrity": "sha512-oLYvTxljVvsMnldfl6jIKxTaU7ok7km0KDrwOt1RHYu6nxlhN3TIx8k5Q52L6wR33nOwDgM7VwW1fT1qMNfFIA==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "8.1.0", + "@typescript-eslint/utils": "8.1.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.1.0.tgz", + "integrity": "sha512-q2/Bxa0gMOu/2/AKALI0tCKbG2zppccnRIRCW6BaaTlRVaPKft4oVYPp7WOPpcnsgbr0qROAVCVKCvIQ0tbWog==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.1.0.tgz", + "integrity": "sha512-NTHhmufocEkMiAord/g++gWKb0Fr34e9AExBRdqgWdVBaKoei2dIyYKD9Q0jBnvfbEA5zaf8plUFMUH6kQ0vGg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.1.0", + "@typescript-eslint/visitor-keys": "8.1.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.1.0.tgz", + "integrity": "sha512-ypRueFNKTIFwqPeJBfeIpxZ895PQhNyH4YID6js0UoBImWYoSjBsahUn9KMiJXh94uOjVBgHD9AmkyPsPnFwJA==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.1.0", + "@typescript-eslint/types": "8.1.0", + "@typescript-eslint/typescript-estree": "8.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.1.0.tgz", + "integrity": "sha512-ba0lNI19awqZ5ZNKh6wCModMwoZs457StTebQ0q1NP58zSi2F6MOZRXwfKZy+jB78JNJ/WH8GSh2IQNzXX8Nag==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.1.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@uifabric/icons": { + "version": "7.9.5", + "resolved": "https://registry.npmjs.org/@uifabric/icons/-/icons-7.9.5.tgz", + "integrity": "sha512-0e2fEURtR7sNqoGr9gU/pzcOp24B/Lkdc05s1BSnIgXlaL2QxRszfaEsl3/E9vsNmqA3tvRwDJWbtRolDbjCpQ==", + "dependencies": { + "@uifabric/set-version": "^7.0.24", + "@uifabric/styling": "^7.25.1", + "@uifabric/utilities": "^7.38.2", + "tslib": "^1.10.0" + } + }, + "node_modules/@uifabric/icons/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@uifabric/merge-styles": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@uifabric/merge-styles/-/merge-styles-7.20.2.tgz", + "integrity": "sha512-cJy8hW9smlWOKgz9xSDMCz/A0yMl4mdo466pcGlIOn84vz+e94grfA7OoTuTzg3Cl0Gj6ODBSf1o0ZwIXYL1Xg==", + "dependencies": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + } + }, + "node_modules/@uifabric/merge-styles/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@uifabric/react-hooks": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@uifabric/react-hooks/-/react-hooks-7.16.4.tgz", + "integrity": "sha512-k8RJYTMICWA6varT5Y+oCf2VDHHXN0tC2GuPD4I2XqYCTLaXtNCm4+dMcVA2x8mv1HIO7khvm/8aqKheU/tDfQ==", + "dependencies": { + "@fluentui/react-window-provider": "^1.0.6", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.2", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "@types/react-dom": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0", + "react-dom": ">=16.8.0 <18.0.0" + } + }, + "node_modules/@uifabric/react-hooks/node_modules/@fluentui/react-window-provider": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-1.0.6.tgz", + "integrity": "sha512-m2HoxhU2m/yWxUauf79y+XZvrrWNx+bMi7ZiL6DjiAKHjTSa8KOyvicbOXd/3dvuVzOaNTnLDdZAvhRFcelOIA==", + "dependencies": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "@types/react-dom": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0", + "react-dom": ">=16.8.0 <18.0.0" + } + }, + "node_modules/@uifabric/react-hooks/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@uifabric/set-version": { + "version": "7.0.24", + "resolved": "https://registry.npmjs.org/@uifabric/set-version/-/set-version-7.0.24.tgz", + "integrity": "sha512-t0Pt21dRqdC707/ConVJC0WvcQ/KF7tKLU8AZY7YdjgJpMHi1c0C427DB4jfUY19I92f60LOQyhJ4efH+KpFEg==", + "dependencies": { + "tslib": "^1.10.0" + } + }, + "node_modules/@uifabric/set-version/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@uifabric/styling": { + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@uifabric/styling/-/styling-7.25.1.tgz", + "integrity": "sha512-bd4QDYyb0AS0+KmzrB8VsAfOkxZg0dpEpF1YN5Ben10COmT8L1DoE4bEF5NvybHEaoTd3SKxpJ42m+ceNzehSw==", + "dependencies": { + "@fluentui/theme": "^1.7.13", + "@microsoft/load-themed-styles": "^1.10.26", + "@uifabric/merge-styles": "^7.20.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.2", + "tslib": "^1.10.0" + } + }, + "node_modules/@uifabric/styling/node_modules/@fluentui/theme": { + "version": "1.7.13", + "resolved": "https://registry.npmjs.org/@fluentui/theme/-/theme-1.7.13.tgz", + "integrity": "sha512-/1ZDHZNzV7Wgohay47DL9TAH4uuib5+B2D6Rxoc3T6ULoWcFzwLeVb+VZB/WOCTUbG+NGTrmsWPBOz5+lbuOxA==", + "dependencies": { + "@uifabric/merge-styles": "^7.20.2", + "@uifabric/set-version": "^7.0.24", + "@uifabric/utilities": "^7.38.2", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "@types/react-dom": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0", + "react-dom": ">=16.8.0 <18.0.0" + } + }, + "node_modules/@uifabric/styling/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@uifabric/utilities": { + "version": "7.38.2", + "resolved": "https://registry.npmjs.org/@uifabric/utilities/-/utilities-7.38.2.tgz", + "integrity": "sha512-5yM4sm142VEBg3/Q5SFheBXqnrZi9CNF5rjHNoex0GgGtG3AHPuS7U8gjm+/Io1MvbuCrn6lyyIw0MDvh1Ebkw==", + "dependencies": { + "@fluentui/dom-utilities": "^1.1.2", + "@uifabric/merge-styles": "^7.20.2", + "@uifabric/set-version": "^7.0.24", + "prop-types": "^15.7.2", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "@types/react": ">=16.8.0 <18.0.0", + "@types/react-dom": ">=16.8.0 <18.0.0", + "react": ">=16.8.0 <18.0.0", + "react-dom": ">=16.8.0 <18.0.0" + } + }, + "node_modules/@uifabric/utilities/node_modules/@fluentui/dom-utilities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-1.1.2.tgz", + "integrity": "sha512-XqPS7l3YoMwxdNlaYF6S2Mp0K3FmVIOIy2K3YkMc+eRxu9wFK6emr2Q/3rBhtG5u/On37NExRT7/5CTLnoi9gw==", + "dependencies": { + "@uifabric/set-version": "^7.0.24", + "tslib": "^1.10.0" + } + }, + "node_modules/@uifabric/utilities/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.11", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.11.tgz", + "integrity": "sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.11", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.11", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.11.tgz", + "integrity": "sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==", + "dev": true, + "dependencies": { + "@vue/compiler-core": "3.5.11", + "@vue/shared": "3.5.11" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.11", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.11.tgz", + "integrity": "sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/compiler-core": "3.5.11", + "@vue/compiler-dom": "3.5.11", + "@vue/compiler-ssr": "3.5.11", + "@vue/shared": "3.5.11", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.11", + "postcss": "^8.4.47", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-sfc/node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.11", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.11.tgz", + "integrity": "sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==", + "dev": true, + "dependencies": { + "@vue/compiler-dom": "3.5.11", + "@vue/shared": "3.5.11" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.11", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.11.tgz", + "integrity": "sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/@yarnpkg/lockfile": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.0.2.tgz", + "integrity": "sha512-MqJ00WXw89ga0rK6GZkdmmgv3bAsxpJixyTthjcix73O44pBqotyU2BejBkLuIsaOBI6SEu77vAnSyLe5iIHkw==", + "dev": true + }, + "node_modules/@zkochan/cmd-shim": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-5.4.1.tgz", + "integrity": "sha512-odWb1qUzt0dIOEUPyWBEpFDYQPRjEMr/dbHHAfgBkVkYR9aO7Zo+I7oYWrXIxl+cKlC7+49ftPm8uJxL1MA9kw==", + "dev": true, + "dependencies": { + "cmd-extension": "^1.0.2", + "graceful-fs": "^4.2.10", + "is-windows": "^1.0.2" + }, + "engines": { + "node": ">=10.13" + } + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ace-builds": { + "version": "1.36.2", + "resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.36.2.tgz", + "integrity": "sha512-eqqfbGwx/GKjM/EnFu4QtQ+d2NNBu84MGgxoG8R5iyFpcVeQ4p9YlTL+ZzdEJqhdkASqoqOxCSNNGyB6lvMm+A==" + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", + "dev": true, + "dependencies": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/adal-angular": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/adal-angular/-/adal-angular-1.0.16.tgz", + "integrity": "sha512-tJf2bRwolKA8/J+wcy4CFOTAva8gpueHplptfjz3Wt1XOb7Y1jnwdm2VdkFZQUhxCtd/xPvcRSAQP2+ROtAD5g==", + "deprecated": "This package is no longer supported. Please migrate to @azure/msal-angular.", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/adaptive-expressions": { + "version": "4.23.1", + "resolved": "https://registry.npmjs.org/adaptive-expressions/-/adaptive-expressions-4.23.1.tgz", + "integrity": "sha512-wQVhfmF8I0CI+8Bgcoc0sl/oLRek31XzjYq03QjdHyPjIeTmtofgf5qmJDdGQt6nz6fP9Jd0FlnesqasdUEjFA==", + "dependencies": { + "@microsoft/recognizers-text-data-types-timex-expression": "~1.3.1", + "@types/atob-lite": "^2.0.2", + "@types/btoa-lite": "^1.0.2", + "@types/lodash.isequal": "^4.5.8", + "@types/lru-cache": "^5.1.1", + "@types/xmldom": "^0.1.34", + "@xmldom/xmldom": "^0.8.6", + "antlr4ts": "0.5.0-alpha.4", + "atob-lite": "^2.0.0", + "big-integer": "^1.6.52", + "btoa-lite": "^1.0.0", + "d3-format": "^2.0.0", + "dayjs": "^1.11.13", + "fast-xml-parser": "^4.4.1", + "jspath": "^0.4.0", + "lodash.isequal": "^4.5.0", + "lru-cache": "^5.1.1", + "uuid": "^10.0.0", + "xpath": "^0.0.34" + } + }, + "node_modules/adaptive-expressions/node_modules/uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/adaptivecards": { + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/adaptivecards/-/adaptivecards-2.11.2.tgz", + "integrity": "sha512-yV+o272Xe+qVoz0yIaJAo0RwLtRUX8XyuXIaKepaS+Ei3BgU2w5yl2g0d1UbgoFAyRtk9mVZuvWtPiM8mj+FmA==", + "peerDependencies": { + "swiper": "^8.2.6" + } + }, + "node_modules/adaptivecards-controls": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/adaptivecards-controls/-/adaptivecards-controls-0.10.1.tgz", + "integrity": "sha512-6Ec6lfYfgG0enzVzRPtNSuaLqImqz+L3jq3NL1z+7MfNXFtf3Evk9yfwx/I5OhN9fNXZhvi2Fss+cNpxg0gDxQ==" + }, + "node_modules/adaptivecards-designer": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/adaptivecards-designer/-/adaptivecards-designer-2.4.3.tgz", + "integrity": "sha512-Nolojtbr5aRLRpvyJQCX3ChFeJkZ+pDWtxAxful6LD4/RIMI/LtjH0Cy9kEt53M7ckXdtMBNSmAeK2g50M9GNg==", + "dependencies": { + "adaptivecards-controls": "^0.10.1", + "clipboard": "^2.0.1" + }, + "peerDependencies": { + "adaptive-expressions": "^4.11.0", + "adaptivecards": "^2.10.0", + "adaptivecards-templating": "^2.2.0", + "monaco-editor": "^0.29.1" + } + }, + "node_modules/adaptivecards-templating": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/adaptivecards-templating/-/adaptivecards-templating-2.3.1.tgz", + "integrity": "sha512-rYN1tCb+4NeWUCbo7xzGhwuOG3XllpGWCtgdl/drSJA32tljAvDrMeBO/eUk7uwXx8/1hSc5WJvzbAZQWMd35Q==", + "peerDependencies": { + "adaptive-expressions": "^4.11.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.5", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.5.tgz", + "integrity": "sha512-lRF8RORchjpKG50/WFf8xmg7sgCLFiYNNnqdKflk63whMQcWR5ngGjiSXkL9bjxy6B2npOK2HSMN49jEBMSkag==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", + "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/animate.css": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/animate.css/-/animate.css-4.1.1.tgz", + "integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==" + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "dependencies": { + "ansi-wrap": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-cyan": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", + "integrity": "sha512-eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A==", + "dev": true, + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "dev": true, + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", + "dev": true, + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/antlr4ts": { + "version": "0.5.0-alpha.4", + "resolved": "https://registry.npmjs.org/antlr4ts/-/antlr4ts-0.5.0-alpha.4.tgz", + "integrity": "sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ==" + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "dev": true, + "dependencies": { + "buffer-equal": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/arr-diff": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", + "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.0.1", + "array-slice": "^0.2.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-diff/node_modules/array-slice": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", + "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "dev": true, + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "dev": true, + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", + "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-differ": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-equal": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.2.tgz", + "integrity": "sha512-gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "dev": true, + "dependencies": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "dependencies": { + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "dependencies": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] + }, + "node_modules/async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "dev": true, + "dependencies": { + "async-done": "^1.2.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/atob-lite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz", + "integrity": "sha512-LEeSAWeh2Gfa2FtlQE1shxQ8zi5F9GHarrGKz08TMdODD5T4eH6BMsvtnhbWZ+XQn+Gb6om/917ucvRu7l7ukw==" + }, + "node_modules/autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dev": true, + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/autoprefixer/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz", + "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "25.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-25.5.1.tgz", + "integrity": "sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==", + "dev": true, + "dependencies": { + "@jest/transform": "^25.5.1", + "@jest/types": "^25.5.0", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^25.5.0", + "chalk": "^3.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz", + "integrity": "sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz", + "integrity": "sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz", + "integrity": "sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^25.5.0", + "babel-preset-current-node-syntax": "^0.1.2" + }, + "engines": { + "node": ">= 8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "dev": true, + "dependencies": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/better-path-resolve": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz", + "integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==", + "dev": true, + "dependencies": { + "is-windows": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/block-stream": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", + "integrity": "sha512-OorbnJVPII4DuUKbjARAe8u8EfqOmkEEaSFIyoQ7OjTHn6kafxWl0wLgoZ2rXaYd7MyLcDaU4TmhfxtwgcccMQ==", + "dependencies": { + "inherits": "~2.0.0" + }, + "engines": { + "node": "0.4 || >=0.5.8" + } + }, + "node_modules/body": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", + "integrity": "sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==", + "dev": true, + "dependencies": { + "continuable-cache": "^0.3.1", + "error": "^7.0.0", + "raw-body": "~1.1.0", + "safe-json-parse": "~1.0.1" + } + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/body-scroll-lock": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/body-scroll-lock/-/body-scroll-lock-3.1.5.tgz", + "integrity": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==" + }, + "node_modules/body/node_modules/bytes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", + "integrity": "sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==", + "dev": true + }, + "node_modules/body/node_modules/raw-body": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", + "integrity": "sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==", + "dev": true, + "dependencies": { + "bytes": "1", + "string_decoder": "0.10" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/body/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + }, + "node_modules/bonjour-service": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", + "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/brace/-/brace-0.11.1.tgz", + "integrity": "sha512-Fc8Ne62jJlKHiG/ajlonC4Sd66Pq68fFwK4ihJGNZpGqboc324SQk+lRvMzpPRuJOmfrJefdG8/7JdWX4bzJ2Q==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "node_modules/browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "dependencies": { + "resolve": "1.1.7" + } + }, + "node_modules/browser-resolve/node_modules/resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", + "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001663", + "electron-to-chromium": "^1.5.28", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/btoa-lite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz", + "integrity": "sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==" + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "dev": true, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "dev": true + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtin-modules": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz", + "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", + "dev": true + }, + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "dev": true, + "dependencies": { + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true + }, + "node_modules/cacheable-request/node_modules/keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/callsite-record": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/callsite-record/-/callsite-record-4.1.5.tgz", + "integrity": "sha512-OqeheDucGKifjQRx524URgV4z4NaKjocGhygTptDea+DLROre4ZEecA4KXDq+P7qlGCohYVNOh3qr+y5XH5Ftg==", + "dev": true, + "dependencies": { + "@devexpress/error-stack-parser": "^2.0.6", + "@types/lodash": "^4.14.72", + "callsite": "^1.0.0", + "chalk": "^2.4.0", + "highlight-es": "^1.0.0", + "lodash": "4.6.1 || ^4.16.1", + "pinkie-promise": "^2.0.0" + } + }, + "node_modules/callsite-record/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsite-record/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsite-record/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/callsite-record/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/callsite-record/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/callsite-record/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsite-record/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001667", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001667.tgz", + "integrity": "sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/chart.js": { + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.9.4.tgz", + "integrity": "sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==", + "dependencies": { + "chartjs-color": "^2.1.0", + "moment": "^2.10.2" + } + }, + "node_modules/chartjs-color": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz", + "integrity": "sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==", + "dependencies": { + "chartjs-color-string": "^0.6.0", + "color-convert": "^1.9.3" + } + }, + "node_modules/chartjs-color-string": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz", + "integrity": "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==", + "dependencies": { + "color-name": "^1.0.0" + } + }, + "node_modules/chartjs-color/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/chartjs-color/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/chokidar": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", + "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.1.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" + }, + "node_modules/clean-css": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", + "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-table": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz", + "integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==", + "dev": true, + "dependencies": { + "colors": "1.0.3" + }, + "engines": { + "node": ">= 0.2.0" + } + }, + "node_modules/cli-table/node_modules/colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/clipboard": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz", + "integrity": "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==", + "dependencies": { + "good-listener": "^1.2.2", + "select": "^1.1.2", + "tiny-emitter": "^2.0.0" + } + }, + "node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-deep/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "node_modules/cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/cmd-extension": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cmd-extension/-/cmd-extension-1.0.2.tgz", + "integrity": "sha512-iWDjmP8kvsMdBmLTHxFaqXikO8EdFRDfim7k6vUHglY/2xJ5jLrPsnQGijdfp4U+sr/BeecG0wKm02dSIAeQ1g==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "dev": true, + "dependencies": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/colors": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz", + "integrity": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/compute-scroll-into-view": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.11.tgz", + "integrity": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/configstore/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/configstore/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/connect-livereload": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/connect-livereload/-/connect-livereload-0.6.1.tgz", + "integrity": "sha512-3R0kMOdL7CjJpU66fzAkCe6HNtd3AavCS4m+uW4KtJjrdGPT0SQEZieAYd+cm+lJoBznNQ4lqipYWkhBMgk00g==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/connect/node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/connect/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/connect/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/connect/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/continuable-cache": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", + "integrity": "sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "dependencies": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + } + }, + "node_modules/copy-webpack-plugin": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-12.0.2.tgz", + "integrity": "sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==", + "dev": true, + "dependencies": { + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.1", + "globby": "^14.0.0", + "normalize-path": "^3.0.0", + "schema-utils": "^4.2.0", + "serialize-javascript": "^6.0.2" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/copy-webpack-plugin/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/copy-webpack-plugin/node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/globby": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", + "dev": true, + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/copy-webpack-plugin/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/copy-webpack-plugin/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/copy-webpack-plugin/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/copy-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/core-js-pure": { + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.38.1.tgz", + "integrity": "sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/css-in-js-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", + "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", + "dependencies": { + "hyphenate-style-name": "^1.0.3" + } + }, + "node_modules/css-loader": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz", + "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^1.2.3", + "normalize-path": "^3.0.0", + "postcss": "^7.0.23", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.2", + "postcss-modules-scope": "^2.1.1", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.0.2", + "schema-utils": "^2.6.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/css-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/css-modules-loader-core": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz", + "integrity": "sha512-XWOBwgy5nwBn76aA+6ybUGL/3JBnCtBX9Ay9/OWIpzKYWlVHMazvJ+WtHumfi+xxdPF440cWK7JCYtt8xDifew==", + "dev": true, + "dependencies": { + "icss-replace-symbols": "1.1.0", + "postcss": "6.0.1", + "postcss-modules-extract-imports": "1.1.0", + "postcss-modules-local-by-default": "1.2.0", + "postcss-modules-scope": "1.1.0", + "postcss-modules-values": "1.3.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/chalk/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/postcss": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.1.tgz", + "integrity": "sha512-VbGX1LQgQbf9l3cZ3qbUuC3hGqIEOGQFHAEHQ/Diaeo0yLgpgK5Rb8J+OcamIfQ9PbAU/fzBjVtQX3AhJHUvZw==", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/postcss-modules-extract-imports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz", + "integrity": "sha512-zF9+UIEvtpeqMGxhpeT9XaIevQSrBBCz9fi7SwfkmjVacsSj8DY5eFVgn+wY8I9vvdDDwK5xC8Myq4UkoLFIkA==", + "dev": true, + "dependencies": { + "postcss": "^6.0.1" + } + }, + "node_modules/css-modules-loader-core/node_modules/postcss-modules-local-by-default": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", + "integrity": "sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==", + "dev": true, + "dependencies": { + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" + } + }, + "node_modules/css-modules-loader-core/node_modules/postcss-modules-scope": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", + "integrity": "sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==", + "dev": true, + "dependencies": { + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" + } + }, + "node_modules/css-modules-loader-core/node_modules/postcss-modules-values": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", + "integrity": "sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==", + "dev": true, + "dependencies": { + "icss-replace-symbols": "^1.1.0", + "postcss": "^6.0.1" + } + }, + "node_modules/css-modules-loader-core/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-modules-loader-core/node_modules/supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "dev": true, + "dependencies": { + "has-flag": "^1.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-selector-tokenizer": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", + "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "fastparse": "^1.1.2" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csso": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "dev": true, - "requires": { + "dependencies": { "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" } }, - "cssom": { + "node_modules/cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", "dev": true }, - "cssstyle": { + "node_modules/cssstyle": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, - "requires": { + "dependencies": { "cssom": "~0.3.6" }, - "dependencies": { - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "csstype": { - "version": "2.6.19", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.19.tgz", - "integrity": "sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==" - }, - "cyclist": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz", - "integrity": "sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==", + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/d": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", + "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", + "dev": true, + "dependencies": { + "es5-ext": "^0.10.64", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.12" } }, - "dashdash": { + "node_modules/d3-format": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-2.0.0.tgz", + "integrity": "sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==" + }, + "node_modules/dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, - "requires": { + "dependencies": { "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" } }, - "data-urls": { + "node_modules/data-urls": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", "dev": true, - "requires": { + "dependencies": { "abab": "^2.0.0", "whatwg-mimetype": "^2.2.0", "whatwg-url": "^7.0.0" - }, + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, "dependencies": { - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/dayjs": { + "version": "1.11.13", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==" + }, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "dateformat": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz", - "integrity": "sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==", - "dev": true - }, - "debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "debuglog": { + "node_modules/debuglog": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz", "integrity": "sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==", - "dev": true + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "dev": true, + "engines": { + "node": "*" + } }, - "decamelize": { + "node_modules/decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "decamelize-keys": { + "node_modules/decamelize-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", "dev": true, - "requires": { + "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" }, - "dependencies": { - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true - } + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "decode-uri-component": { + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10" + } }, - "decomment": { + "node_modules/decomment": { "version": "0.9.5", "resolved": "https://registry.npmjs.org/decomment/-/decomment-0.9.5.tgz", "integrity": "sha512-h0TZ8t6Dp49duwyDHo3iw67mnh9/UpFiSSiOb5gDK1sqoXzrfX/SQxIUQd2R2QEiSnqib0KF2fnKnGfAhAs6lg==", "dev": true, - "requires": { + "dependencies": { "esprima": "4.0.1" + }, + "engines": { + "node": ">=6.4", + "npm": ">=2.15" } }, - "decompress-response": { + "node_modules/decompress-response": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", "dev": true, - "requires": { + "dependencies": { "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", - "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", + "node_modules/deep-equal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", + "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", + "dependencies": { + "is-arguments": "^1.1.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "object-is": "^1.1.5", "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" + "regexp.prototype.flags": "^1.5.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "deep-extend": { + "node_modules/deep-extend": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true + "dev": true, + "engines": { + "node": ">=4.0.0" + } }, - "deep-is": { + "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "deepmerge": { + "node_modules/deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "default-compare": { + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "dev": true, + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-compare": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^5.0.2" }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "default-gateway": { + "node_modules/default-gateway": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, - "requires": { + "dependencies": { "execa": "^5.0.0" }, - "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - } + "engines": { + "node": ">= 10" } }, - "default-resolution": { + "node_modules/default-gateway/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/default-gateway/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-gateway/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/default-resolution": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", - "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=", - "dev": true + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "defaults": { + "node_modules/defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, - "requires": { + "dependencies": { "clone": "^1.0.2" }, - "dependencies": { - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "defer-to-connect": { + "node_modules/defaults/node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/defer-to-connect": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", "dev": true }, - "define-data-property": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.0.tgz", - "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", - "dev": true, - "requires": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dependencies": { - "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - } - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - } + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "define-lazy-prop": { + "node_modules/define-lazy-prop": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "requires": { - "object-keys": "^1.0.12" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "engines": { + "node": ">=8" } }, - "del": { + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", "integrity": "sha512-Z4fzpbIRjOu7lO5jCETSWoqUDVe0IPOlfugBsF6suen2LKDlVb4QZpKEM9P+buNJ4KI1eN7I083w/pbKUpsrWQ==", "dev": true, - "requires": { + "dependencies": { "globby": "^5.0.0", "is-path-cwd": "^1.0.0", "is-path-in-cwd": "^1.0.0", @@ -12504,20 +18945,77 @@ "pify": "^2.0.0", "pinkie-promise": "^2.0.0", "rimraf": "^2.2.8" + }, + "engines": { + "node": ">=0.10.0" } }, - "delayed-stream": { + "node_modules/del/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/del/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/del/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.4.0" + } }, - "depcheck": { + "node_modules/delegate": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", + "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" + }, + "node_modules/depcheck": { "version": "1.4.7", "resolved": "https://registry.npmjs.org/depcheck/-/depcheck-1.4.7.tgz", "integrity": "sha512-1lklS/bV5chOxwNKA/2XUUk/hPORp8zihZsXflr8x0kLwmcZ9Y9BsS6Hs3ssvA+2wUVbG0U2Ciqvm1SokNjPkA==", "dev": true, - "requires": { + "dependencies": { "@babel/parser": "^7.23.0", "@babel/traverse": "^7.23.2", "@vue/compiler-sfc": "^3.3.4", @@ -12542,1359 +19040,1834 @@ "semver": "^7.5.4", "yargs": "^16.2.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "deps-regex": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/deps-regex/-/deps-regex-0.2.0.tgz", - "integrity": "sha512-PwuBojGMQAYbWkMXOY9Pd/NWCDNHVH12pnS7WHqZkTSeMESe4hwnKKRp0yR87g37113x4JPbo/oIvXY+s/f56Q==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "findup-sync": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz", - "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", - "dev": true, - "requires": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.3", - "micromatch": "^4.0.4", - "resolve-dir": "^1.0.1" - } - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "minimatch": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", - "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - } + "bin": { + "depcheck": "bin/depcheck.js" + }, + "engines": { + "node": ">=10" } }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true + "node_modules/depcheck/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } }, - "dependency-path": { + "node_modules/depcheck/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/depcheck/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/depcheck/node_modules/findup-sync": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz", + "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.3", + "micromatch": "^4.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/depcheck/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/depcheck/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/depcheck/node_modules/minimatch": { + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", + "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/depcheck/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/depcheck/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/depcheck/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/depcheck/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/depcheck/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dependency-path": { "version": "9.2.8", "resolved": "https://registry.npmjs.org/dependency-path/-/dependency-path-9.2.8.tgz", "integrity": "sha512-S0OhIK7sIyAsph8hVH/LMCTDL3jozKtlrPx3dMQrlE2nAlXTquTT+AcOufphDMTQqLkfn4acvfiem9I1IWZ4jQ==", "dev": true, - "requires": { + "dependencies": { "@pnpm/crypto.base32-hash": "1.0.1", "@pnpm/types": "8.9.0", "encode-registry": "^3.0.0", "semver": "^7.3.8" }, - "dependencies": { - "@pnpm/crypto.base32-hash": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@pnpm/crypto.base32-hash/-/crypto.base32-hash-1.0.1.tgz", - "integrity": "sha512-pzAXNn6KxTA3kbcI3iEnYs4vtH51XEVqmK/1EiD18MaPKylhqy8UvMJK3zKG+jeP82cqQbozcTGm4yOQ8i3vNw==", - "dev": true, - "requires": { - "rfc4648": "^1.5.1" - } - }, - "@pnpm/types": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-8.9.0.tgz", - "integrity": "sha512-3MYHYm8epnciApn6w5Fzx6sepawmsNU7l6lvIq+ER22/DPSrr83YMhU/EQWnf4lORn2YyiXFj0FJSyJzEtIGmw==", - "dev": true - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "engines": { + "node": ">=14.6" + }, + "funding": { + "url": "https://opencollective.com/pnpm" } }, - "des.js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "node_modules/dependency-path/node_modules/@pnpm/crypto.base32-hash": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@pnpm/crypto.base32-hash/-/crypto.base32-hash-1.0.1.tgz", + "integrity": "sha512-pzAXNn6KxTA3kbcI3iEnYs4vtH51XEVqmK/1EiD18MaPKylhqy8UvMJK3zKG+jeP82cqQbozcTGm4yOQ8i3vNw==", "dev": true, - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "dependencies": { + "rfc4648": "^1.5.1" + }, + "engines": { + "node": ">=14.6" + }, + "funding": { + "url": "https://opencollective.com/pnpm" } }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==", + "node_modules/dependency-path/node_modules/@pnpm/types": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/@pnpm/types/-/types-8.9.0.tgz", + "integrity": "sha512-3MYHYm8epnciApn6w5Fzx6sepawmsNU7l6lvIq+ER22/DPSrr83YMhU/EQWnf4lORn2YyiXFj0FJSyJzEtIGmw==", + "dev": true, + "engines": { + "node": ">=14.6" + }, + "funding": { + "url": "https://opencollective.com/pnpm" + } + }, + "node_modules/deps-regex": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deps-regex/-/deps-regex-0.2.0.tgz", + "integrity": "sha512-PwuBojGMQAYbWkMXOY9Pd/NWCDNHVH12pnS7WHqZkTSeMESe4hwnKKRp0yR87g37113x4JPbo/oIvXY+s/f56Q==", "dev": true }, - "detect-file": { + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-file": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", - "dev": true + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "detect-indent": { + "node_modules/detect-indent": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "detect-newline": { + "node_modules/detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "detect-node": { + "node_modules/detect-node": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, - "dezalgo": { + "node_modules/dezalgo": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", "dev": true, - "requires": { + "dependencies": { "asap": "^2.0.0", "wrappy": "1" } }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true + "node_modules/diff-match-patch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", + "integrity": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" }, - "diff-sequences": { + "node_modules/diff-sequences": { "version": "25.2.6", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.2.6.tgz", "integrity": "sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==", - "dev": true - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "dev": true, - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } + "engines": { + "node": ">= 8.3" } }, - "dir-glob": { + "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, - "requires": { + "dependencies": { "path-type": "^4.0.0" }, - "dependencies": { - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", - "dev": true - }, - "dns-packet": { + "node_modules/dns-packet": { "version": "5.6.1", "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dev": true, - "requires": { + "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" } }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, - "requires": { - "buffer-indexof": "^1.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { + "dependencies": { "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" } }, - "dom-helpers": { + "node_modules/dom-helpers": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "requires": { + "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" - }, - "dependencies": { - "csstype": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz", - "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==" - } } }, - "dom-serializer": { + "node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, - "requires": { + "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, - "domelementtype": { + "node_modules/dom7": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/dom7/-/dom7-4.0.6.tgz", + "integrity": "sha512-emjdpPLhpNubapLFdjNL9tP06Sr+GZkrIHEXLWvOGsytACUrkbeIdjO5g77m00BrHTznnlcNqgmn7pCN192TBA==", + "dependencies": { + "ssr-window": "^4.0.0" + } + }, + "node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] }, - "domexception": { + "node_modules/domexception": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "deprecated": "Use your platform's native DOMException instead", "dev": true, - "requires": { - "webidl-conversions": "^4.0.2" - }, "dependencies": { - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - } + "webidl-conversions": "^4.0.2" } }, - "domhandler": { + "node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, - "requires": { + "dependencies": { "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "domutils": { + "node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, - "requires": { + "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "dot-prop": { + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, - "requires": { + "dependencies": { "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "downshift": { + "node_modules/downshift": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/downshift/-/downshift-5.0.5.tgz", "integrity": "sha512-V1idov3Rkvz1YWA1K67aIx51EgokIDvep4x6KmU7HhsayI8DvTEZBeH4O92zeFVGximKujRO7ChBzBAf4PKWFA==", - "requires": { + "dependencies": { "@babel/runtime": "^7.4.5", "compute-scroll-into-view": "^1.0.9", "prop-types": "^15.7.2", "react-is": "^16.9.0" - } - }, - "duplexer2": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", - "integrity": "sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==", - "dev": true, - "requires": { - "readable-stream": "~1.1.9" }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true - } + "peerDependencies": { + "react": ">=0.14.9" } }, - "duplexer3": { + "node_modules/downshift/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/duplexer3": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", "dev": true }, - "duplexify": { + "node_modules/duplexify": { "version": "3.7.1", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", "dev": true, - "requires": { + "dependencies": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", "readable-stream": "^2.0.0", "stream-shift": "^1.0.0" } }, - "each-props": { + "node_modules/each-props": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", "dev": true, - "requires": { + "dependencies": { "is-plain-object": "^2.0.1", "object.defaults": "^1.1.0" } }, - "ecc-jsbn": { + "node_modules/each-props/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, - "requires": { + "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" } }, - "ecdsa-sig-formatter": { + "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", "dev": true, - "requires": { + "dependencies": { "safe-buffer": "^5.0.1" } }, - "ee-first": { + "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, - "electron-to-chromium": { - "version": "1.4.540", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.540.tgz", - "integrity": "sha512-aoCqgU6r9+o9/S7wkcSbmPRFi7OWZWiXS9rtjEd+Ouyu/Xyw5RSq2XN8s5Qp8IaFOLiRrhQCphCIjAxgG3eCAg==", + "node_modules/electron-to-chromium": { + "version": "1.5.32", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.32.tgz", + "integrity": "sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==", "dev": true }, - "elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "dev": true, - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" } }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "encode-registry": { + "node_modules/encode-registry": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/encode-registry/-/encode-registry-3.0.1.tgz", "integrity": "sha512-6qOwkl1g0fv0DN3Y3ggr2EaZXN71aoAqPp3p/pVaWSBSIo+YjLOWN61Fva43oVyQNPf7kgm8lkudzlzojwE2jw==", "dev": true, - "requires": { + "dependencies": { "mem": "^8.0.0" + }, + "engines": { + "node": ">=10" } }, - "encodeurl": { + "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "requires": { - "iconv-lite": "^0.6.2" + "dev": true, + "engines": { + "node": ">= 0.8" } }, - "end-of-stream": { + "node_modules/end-of-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz", - "integrity": "sha1-6TUyWLqpEIll78QcsO+K3i88+wc=", + "integrity": "sha512-EoulkdKF/1xa92q25PbjuDcgJ9RDHYU2Rs3SCIvs2/dSQ3BpmxneNHmA/M7fe60M3PrV7nNGTTNbkK62l6vXiQ==", "dev": true, - "requires": { + "dependencies": { "once": "~1.3.0" - }, - "dependencies": { - "once": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", - "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", - "dev": true, - "requires": { - "wrappy": "1" - } - } } }, - "enhanced-resolve": { + "node_modules/end-of-stream/node_modules/once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/enhanced-resolve/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/entities": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" + "engines": { + "node": ">=0.12" }, - "dependencies": { - "memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - } + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, - "requires": { - "ansi-colors": "^4.1.1" + "engines": { + "node": ">=6" } }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true - }, - "envinfo": { - "version": "7.10.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", - "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==", - "dev": true - }, - "errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "node_modules/envinfo": { + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", + "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", "dev": true, - "requires": { - "prr": "~1.0.1" + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" } }, - "error": { + "node_modules/error": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz", "integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==", "dev": true, - "requires": { + "dependencies": { "string-template": "~0.2.1" } }, - "error-ex": { + "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - }, "dependencies": { - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - } + "is-arrayish": "^0.2.1" } }, - "error-stack-parser": { + "node_modules/error-stack-parser": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", - "dev": true, - "requires": { + "dependencies": { "stackframe": "^1.3.4" } }, - "es-abstract": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", - "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", "dev": true, - "requires": { - "call-bind": "^1.0.2", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.1", + "is-shared-array-buffer": "^1.0.3", "is-string": "^1.0.7", - "is-weakref": "^1.0.1", - "object-inspect": "^1.11.0", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "es-to-primitive": { + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", + "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "dev": true + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, - "requires": { + "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "es5-ext": { - "version": "0.10.63", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.63.tgz", - "integrity": "sha512-hUCZd2Byj/mNKjfP9jXrdVZ62B8KuA/VoK7X8nUh5qT+AxDmcbvZz041oDVZdbIN1qW6XY9VDNwzkvKnZvK2TQ==", - "requires": { + "node_modules/es5-ext": { + "version": "0.10.64", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", + "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", + "dev": true, + "hasInstallScript": true, + "dependencies": { "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.3", "esniff": "^2.0.1", "next-tick": "^1.1.0" }, - "dependencies": { - "next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - } + "engines": { + "node": ">=0.10" } }, - "es6-collections": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/es6-collections/-/es6-collections-0.5.6.tgz", - "integrity": "sha1-VVLoAK0SwYIM2ivUp5rn27A9iaI=" - }, - "es6-iterator": { + "node_modules/es6-iterator": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "requires": { + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "dependencies": { "d": "1", "es5-ext": "^0.10.35", "es6-symbol": "^3.1.1" } }, - "es6-promise": { + "node_modules/es6-promise": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "es6-templates": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz", - "integrity": "sha512-sziUVwcvQ+lOsrTyUY0Q11ilAPj+dy7AQ1E1MgSaHTaaAFTffaa08QSlGNU61iyVaroyb6nYdBV6oD7nzn6i8w==", + "node_modules/es6-symbol": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", + "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", "dev": true, - "requires": { - "recast": "~0.11.12", - "through": "~2.3.6" + "dependencies": { + "d": "^1.0.2", + "ext": "^1.7.0" + }, + "engines": { + "node": ">=0.12" } }, - "es6-weak-map": { + "node_modules/es6-weak-map": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", "dev": true, - "requires": { + "dependencies": { "d": "1", "es5-ext": "^0.10.46", "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.1" } }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } }, - "escape-goat": { + "node_modules/escape-goat": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "escape-html": { + "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "escodegen": { + "node_modules/escodegen": { "version": "1.14.3", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", "dev": true, - "requires": { + "dependencies": { "esprima": "^4.0.1", "estraverse": "^4.2.0", "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" + "optionator": "^0.8.1" }, - "dependencies": { - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - } + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "eslint": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.12.1.tgz", - "integrity": "sha512-HlMTEdr/LicJfN08LB3nM1rRYliDXOmfoO4vj39xN6BLpFzF00hbwBoqHk8UcJ2M/3nlARZWy/mslvGEuZFvsg==", + "node_modules/escodegen/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@eslint/eslintrc": "^0.2.1", - "ajv": "^6.10.0", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", - "debug": "^4.0.1", + "debug": "^4.3.2", "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.0", - "esquery": "^1.2.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", - "lodash": "^4.17.19", - "minimatch": "^3.0.4", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^5.2.3", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - } + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "eslint-plugin-promise": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz", - "integrity": "sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==", - "dev": true - }, - "eslint-plugin-react": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.20.6.tgz", - "integrity": "sha512-kidMTE5HAEBSLu23CUDvj8dc3LdBU0ri1scwHBZjI41oDv4tjsWZKU7MQccFzH1QYPYhsnTF2ovh7JlcIcmxgg==", + "node_modules/eslint-plugin-promise": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", + "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", "dev": true, - "requires": { - "array-includes": "^3.1.1", - "array.prototype.flatmap": "^1.2.3", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", "doctrine": "^2.1.0", - "has": "^1.0.3", - "jsx-ast-utils": "^2.4.1", - "object.entries": "^1.1.2", - "object.fromentries": "^2.0.2", - "object.values": "^1.1.1", - "prop-types": "^15.7.2", - "resolve": "^1.17.0", - "string.prototype.matchall": "^4.0.2" + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "eslint-plugin-tsdoc": { - "version": "0.2.14", - "resolved": "https://registry.npmjs.org/eslint-plugin-tsdoc/-/eslint-plugin-tsdoc-0.2.14.tgz", - "integrity": "sha512-fJ3fnZRsdIoBZgzkQjv8vAj6NeeOoFkTfgosj6mKsFjX70QV256sA/wq+y/R2+OL4L8E79VVaVWrPeZnKNe8Ng==", + "node_modules/eslint-plugin-react-hooks": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz", + "integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==", "dev": true, - "requires": { - "@microsoft/tsdoc": "0.13.2", - "@microsoft/tsdoc-config": "0.15.2" + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" } }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "eslint-utils": { + "node_modules/eslint-plugin-react/node_modules/doctrine": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "node_modules/eslint-plugin-react/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-tsdoc": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-tsdoc/-/eslint-plugin-tsdoc-0.3.0.tgz", + "integrity": "sha512-0MuFdBrrJVBjT/gyhkP2BqpD0np1NxNLfQ38xXDlSs/KVVpKI2A6vN7jx2Rve/CyUsvOsMGwp9KKrinv7q9g3A==", + "dev": true, + "dependencies": { + "@microsoft/tsdoc": "0.15.0", + "@microsoft/tsdoc-config": "0.17.0" + } + }, + "node_modules/eslint-plugin-tsdoc/node_modules/@microsoft/tsdoc": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.15.0.tgz", + "integrity": "sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA==", "dev": true }, - "eslint-webpack-plugin": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.4.tgz", - "integrity": "sha512-7rYh0m76KyKSDE+B+2PUQrlNS4HJ51t3WKpkJg6vo2jFMbEPTG99cBV0Dm7LXSHucN4WGCG65wQcRiTFrj7iWw==", + "node_modules/eslint-plugin-tsdoc/node_modules/@microsoft/tsdoc-config": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.17.0.tgz", + "integrity": "sha512-v/EYRXnCAIHxOHW+Plb6OWuUoMotxTN0GLatnpOb1xq0KuTNw/WI3pamJx/UbsoJP5k9MCw1QxvvhPcF9pH3Zg==", "dev": true, - "requires": { - "@types/eslint": "^7.2.6", - "arrify": "^2.0.1", - "jest-worker": "^26.6.2", - "micromatch": "^4.0.2", - "normalize-path": "^3.0.0", - "schema-utils": "^3.0.0" - }, "dependencies": { + "@microsoft/tsdoc": "0.15.0", + "ajv": "~8.12.0", + "jju": "~1.4.0", + "resolve": "~1.22.2" + } + }, + "node_modules/eslint-plugin-tsdoc/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-plugin-tsdoc/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/eslint-plugin-tsdoc/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-4.2.0.tgz", + "integrity": "sha512-rsfpFQ01AWQbqtjgPRr2usVRxhWDuG0YDYcG8DJOteD3EFnpeuYuOwk0PQiN7PRBTqS6ElNdtPZPggj8If9WnA==", + "dev": true, + "dependencies": { + "@types/eslint": "^8.56.10", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.2.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^8.0.0 || ^9.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/@types/yargs": { + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "arrify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "jest-worker": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", - "dev": true, - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - } - }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } + "optional": true } } }, - "esniff": { + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esniff": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", - "requires": { + "dev": true, + "dependencies": { "d": "^1.0.1", "es5-ext": "^0.10.62", "event-emitter": "^0.3.5", "type": "^2.7.2" }, - "dependencies": { - "type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" - } + "engines": { + "node": ">=0.10" } }, - "espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "esprima": { + "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, - "requires": { - "estraverse": "^5.1.0" + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } + "engines": { + "node": ">=4" } }, - "esrecurse": { + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "requires": { + "dependencies": { "estraverse": "^5.2.0" }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } + "engines": { + "node": ">=4.0" } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } }, - "estree-walker": { + "node_modules/estree-walker": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", "dev": true }, - "esutils": { + "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "etag": { + "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "event-emitter": { + "node_modules/event-emitter": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", - "requires": { + "dev": true, + "dependencies": { "d": "1", "es5-ext": "~0.10.14" } }, - "eventemitter3": { + "node_modules/eventemitter3": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", - "integrity": "sha1-teEHm1n7XhuidxwKmTvgYKWMmbo=" + "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==" }, - "events": { + "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true - }, - "eventsource": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", - "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", - "dev": true - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "dev": true, - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "engines": { + "node": ">=0.8.x" } }, - "exec-sh": { + "node_modules/exec-sh": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==", "dev": true }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "node_modules/execa": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true - }, - "semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": "^8.12.0 || >=9.7.0" } }, - "exit": { + "node_modules/exenv-es6": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz", + "integrity": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" + }, + "node_modules/exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8.0" + } }, - "expand-brackets": { + "node_modules/expand-brackets": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", "dev": true, - "requires": { + "dependencies": { "debug": "^2.3.3", "define-property": "^0.2.5", "extend-shallow": "^2.0.1", @@ -13903,57 +20876,64 @@ "snapdragon": "^0.8.1", "to-regex": "^3.0.1" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "expand-tilde": { + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/expand-tilde": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", "dev": true, - "requires": { + "dependencies": { "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "expect": { + "node_modules/expect": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/expect/-/expect-25.5.0.tgz", "integrity": "sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "ansi-styles": "^4.0.0", "jest-get-type": "^25.2.6", @@ -13961,166 +20941,122 @@ "jest-message-util": "^25.5.0", "jest-regex-util": "^25.2.6" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - } + "engines": { + "node": ">= 8.3" } }, - "exports-loader": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/exports-loader/-/exports-loader-0.6.4.tgz", - "integrity": "sha1-1w/GEhl1s1/BKDDPUnVL4nQPyIY=", - "requires": { - "loader-utils": "^1.0.2", - "source-map": "0.5.x" - } - }, - "express": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", - "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", + "node_modules/express": { + "version": "4.18.3", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.3.tgz", + "integrity": "sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw==", "dev": true, - "requires": { - "accepts": "~1.3.5", + "dependencies": { + "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.18.3", - "content-disposition": "0.5.2", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.3.1", + "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", - "depd": "~1.1.2", + "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.1.1", + "finalhandler": "1.2.0", "fresh": "0.5.2", + "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.4", - "qs": "6.5.2", - "range-parser": "~1.2.0", - "safe-buffer": "5.1.2", - "send": "0.16.2", - "serve-static": "1.13.2", - "setprototypeof": "1.1.0", - "statuses": "~1.4.0", - "type-is": "~1.6.16", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true - } + "engines": { + "node": ">= 0.10.0" } }, - "ext": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", - "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", - "requires": { - "type": "^2.5.0" - }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "type": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", - "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==" - } + "ms": "2.0.0" } }, - "extend": { + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "node_modules/extend-shallow": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", + "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } + "kind-of": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "external-editor": { + "node_modules/extend-shallow/node_modules/kind-of": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", + "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, - "requires": { + "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" }, - "dependencies": { - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - } + "engines": { + "node": ">=4" } }, - "extglob": { + "node_modules/extglob": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, - "requires": { + "dependencies": { "array-unique": "^0.3.2", "define-property": "^1.0.0", "expand-brackets": "^2.1.4", @@ -14130,167 +21066,213 @@ "snapdragon": "^0.8.1", "to-regex": "^3.0.1" }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "engines": { + "node": ">=0.10.0" } }, - "extsprintf": { + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "dev": true + "dev": true, + "engines": [ + "node >=0.6.0" + ] }, - "fancy-log": { + "node_modules/fancy-log": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", "dev": true, - "requires": { + "dependencies": { "ansi-gray": "^0.1.1", "color-support": "^1.1.3", "parse-node-version": "^1.0.0", "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "fast-deep-equal": { + "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, - "fast-diff": { + "node_modules/fast-diff": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" }, - "fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, - "requires": { + "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" }, - "dependencies": { - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - } + "engines": { + "node": ">=8.6.0" } }, - "fast-json-stable-stringify": { + "node_modules/fast-glob/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "fast-levenshtein": { + "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "fast-loops": { + "node_modules/fast-loops": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/fast-loops/-/fast-loops-1.1.4.tgz", "integrity": "sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg==" }, - "fastest-levenshtein": { + "node_modules/fast-uri": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.2.tgz", + "integrity": "sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==" + }, + "node_modules/fast-xml-parser": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz", + "integrity": "sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/fastest-levenshtein": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 4.9.1" + } }, - "fastparse": { + "node_modules/fastest-stable-stringify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fastest-stable-stringify/-/fastest-stable-stringify-2.0.2.tgz", + "integrity": "sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==" + }, + "node_modules/fastparse": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", "dev": true }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, - "requires": { + "dependencies": { "reusify": "^1.0.4" } }, - "faye-websocket": { + "node_modules/faye-websocket": { "version": "0.10.0", "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", "dev": true, - "requires": { + "dependencies": { "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.4.0" } }, - "fb-watchman": { + "node_modules/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, - "requires": { + "dependencies": { "bser": "2.1.1" } }, - "fela": { + "node_modules/fela": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/fela/-/fela-10.8.2.tgz", "integrity": "sha512-rdF2h6U9gBhLged2WpOE43zqDG3f9rV7PNmcCoTuMIoKZqN0tYsc71nJRS7aNQtk+kRB5VsvMpoK0JGbs4s0qA==", - "requires": { + "dependencies": { "css-in-js-utils": "^3.0.0", "csstype": "^2.5.5", "fast-loops": "^1.0.0", @@ -14298,900 +21280,1278 @@ "isobject": "^3.0.1" } }, - "fela-bindings": { - "version": "10.8.2", - "resolved": "https://registry.npmjs.org/fela-bindings/-/fela-bindings-10.8.2.tgz", - "integrity": "sha512-NeZaTD8XaR2HmZKdVy0X2eTsTXeN9w/9ys0sd101djI4lD7rjfU6NroUB5YeGtOV/drehs7ufbzI/rStVUYx1g==", - "requires": { - "fast-loops": "^1.0.0", - "fela-dom": "^10.8.2", - "fela-tools": "^10.8.2", - "react-addons-shallow-compare": "^15.6.2", - "shallow-equal": "^1.0.0" - } - }, - "fela-dom": { - "version": "10.8.2", - "resolved": "https://registry.npmjs.org/fela-dom/-/fela-dom-10.8.2.tgz", - "integrity": "sha512-6zv4X180/GT44g+Bss0t4r6zPGdg1VfQrrR4raHZLiviIBOx3QbHO2m/JAs3Hp22GF9X2jKItwyT2hGVw3c2fw==", - "requires": { + "node_modules/fela-dom": { + "version": "11.7.0", + "resolved": "https://registry.npmjs.org/fela-dom/-/fela-dom-11.7.0.tgz", + "integrity": "sha512-mYboADGGQc/EihhyPOs8Xo2aJ0cOQI4q3+aWQ11KPzaCAT3TTVdXuTslT5QeXoE6cT6nS77GvvrRzXb3U/gY6Q==", + "dependencies": { "css-in-js-utils": "^3.0.0", "fast-loops": "^1.0.1", - "fela-utils": "^10.8.2" + "fela-utils": "^11.7.0", + "sort-css-media-queries": "^1.4.3" } }, - "fela-plugin-custom-property": { + "node_modules/fela-plugin-custom-property": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/fela-plugin-custom-property/-/fela-plugin-custom-property-10.8.2.tgz", "integrity": "sha512-SFbuMRQpetEUYwMsG0ngZrdEB7N7ytH+jsXeWt54GKhdz68XcvbAEIoc5vWSPiNVBKH47jV3+dwXjhejd5AdaQ==", - "requires": { + "dependencies": { "css-in-js-utils": "^3.0.0", "isobject": "^3.0.1" + }, + "peerDependencies": { + "fela": "^10.0.0" } }, - "fela-plugin-embedded": { + "node_modules/fela-plugin-embedded": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/fela-plugin-embedded/-/fela-plugin-embedded-10.8.2.tgz", "integrity": "sha512-HeLyDJHQgpBEMbWjsCES1Jtptawtaqnp0Ml3zKebPMrryCQj4j0k4VdyzcS+QzE4M0JD1r0FYhKla+mpuMP5Qw==", - "requires": { + "dependencies": { "fast-loops": "^1.0.0", "isobject": "^3.0.1" } }, - "fela-plugin-fallback-value": { + "node_modules/fela-plugin-fallback-value": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/fela-plugin-fallback-value/-/fela-plugin-fallback-value-10.8.2.tgz", "integrity": "sha512-pjNQ4TJVJz8rDS8kEB7afRDHelQFzi0kIOhLSR0/LWLLFC7CfaQ3Vop9/w5Ot7iJtH8oR1dAxSQEyk497QcyPw==", - "requires": { + "dependencies": { "css-in-js-utils": "^3.0.0", "isobject": "^3.0.1" } }, - "fela-plugin-placeholder-prefixer": { + "node_modules/fela-plugin-placeholder-prefixer": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/fela-plugin-placeholder-prefixer/-/fela-plugin-placeholder-prefixer-10.8.2.tgz", "integrity": "sha512-5Uh1ceC03mnfZanlxb4Y4F3MJNoqcReb5lFhme9Yuh74gwFYUAFgsA/vjE2FXfJ8DG4OP69cB/JEGc5cBRtjAg==", - "requires": { + "dependencies": { "fast-loops": "^1.0.0", "fela-plugin-custom-property": "^10.8.2" } }, - "fela-plugin-rtl": { + "node_modules/fela-plugin-rtl": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/fela-plugin-rtl/-/fela-plugin-rtl-10.8.2.tgz", "integrity": "sha512-Xc3uYTNU0TponAtMwqfJQc/F33gACCCPr7QOMqpJurlYUU9VaYhchgs7YMocqns6kBPRGrYc0mYiQqNCfpKsjw==", - "requires": { + "dependencies": { "rtl-css-js": "^1.1.3" } }, - "fela-tools": { + "node_modules/fela-tools": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/fela-tools/-/fela-tools-10.8.2.tgz", "integrity": "sha512-9HVPA7PABxCh8ybiDlhhVKuFlVeFazmhthlf5CybiFcxh6DVKDEacYsFdXSC7NGJW2i4cWACiy7pjUvOyvqhRQ==", - "requires": { + "dependencies": { "css-in-js-utils": "^3.0.0", "fast-loops": "^1.0.0", "fela": "^10.8.2", "fela-utils": "^10.8.2" + }, + "peerDependencies": { + "fela": "^10.0.0" } }, - "fela-utils": { + "node_modules/fela-tools/node_modules/fela-utils": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/fela-utils/-/fela-utils-10.8.2.tgz", "integrity": "sha512-RmoDOIby14Zb3Xn03noLolyMC2528xcNO5KcNCaznyByd1Acq8DnvQn91Ph9nBLcLqdC1rGme5HwRcrCOHG+kA==", - "requires": { + "dependencies": { "css-in-js-utils": "^3.0.0", "fast-loops": "^1.0.0" } }, - "figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", - "dev": true + "node_modules/fela-utils": { + "version": "11.7.0", + "resolved": "https://registry.npmjs.org/fela-utils/-/fela-utils-11.7.0.tgz", + "integrity": "sha512-s/3QJtkCesH+2/yJDpedHVAvMgKy9hSt2++6l7Xjio5BixiUnvkwbqdCV/fcAb4E3reJLNzYeatgPdcw4HVXRQ==", + "dependencies": { + "css-in-js-utils": "^3.0.0", + "fast-loops": "^1.0.0" + } }, - "figures": { + "node_modules/fela/node_modules/csstype": { + "version": "2.6.21", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + }, + "node_modules/fela/node_modules/fela-utils": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/fela-utils/-/fela-utils-10.8.2.tgz", + "integrity": "sha512-RmoDOIby14Zb3Xn03noLolyMC2528xcNO5KcNCaznyByd1Acq8DnvQn91Ph9nBLcLqdC1rGme5HwRcrCOHG+kA==", + "dependencies": { + "css-in-js-utils": "^3.0.0", + "fast-loops": "^1.0.0" + } + }, + "node_modules/figures": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.0.0.tgz", "integrity": "sha512-HKri+WoWoUgr83pehn/SIgLOMZ9nAWC6dcGj26RY2R4F50u4+RTUz0RCrUlOV3nKRAICW1UGzyb+kcX2qK1S/g==", "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", - "dev": true, - "requires": { - "flat-cache": "^2.0.1" - } - }, - "file-loader": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.0.tgz", - "integrity": "sha512-26qPdHyTsArQ6gU4P1HJbAbnFTyT2r0pG7czh1GFAd9TZbj0n94wWbupgixZH/ET/meqi2/5+F7DhW4OAXD+Lg==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^2.7.1" - }, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - } + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" } }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "requires": { + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "finalhandler": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", - "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, - "requires": { + "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.4.0", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", "unpipe": "~1.0.0" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } + "engines": { + "node": ">= 0.8" } }, - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - }, "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - }, - "semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true - } + "ms": "2.0.0" } }, - "find-up": { + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "requires": { + "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "find-yarn-workspace-root2": { + "node_modules/find-yarn-workspace-root2": { "version": "1.2.16", "resolved": "https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz", "integrity": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==", "dev": true, - "requires": { + "dependencies": { "micromatch": "^4.0.2", "pkg-dir": "^4.2.0" } }, - "findup-sync": { + "node_modules/findup-sync": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", "dev": true, - "requires": { + "dependencies": { "detect-file": "^1.0.0", "is-glob": "^4.0.0", "micromatch": "^3.0.4", "resolve-dir": "^1.0.1" }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } + "engines": { + "node": ">= 0.10" } }, - "fined": { + "node_modules/findup-sync/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/braces/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/fill-range/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/findup-sync/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fined": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", "dev": true, - "requires": { + "dependencies": { "expand-tilde": "^2.0.2", "is-plain-object": "^2.0.3", "object.defaults": "^1.1.0", "object.pick": "^1.2.0", "parse-filepath": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" } }, - "flagged-respawn": { + "node_modules/fined/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flagged-respawn": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", - "dev": true - }, - "flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", "dev": true, - "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" - }, - "dependencies": { - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } + "engines": { + "node": ">= 0.10" } }, - "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, - "flush-write-stream": { + "node_modules/flush-write-stream": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", "dev": true, - "requires": { + "dependencies": { "inherits": "^2.0.3", "readable-stream": "^2.3.6" } }, - "follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - "dev": true - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "dev": true, - "requires": { - "for-in": "^1.0.1" + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "forever-agent": { + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "dev": true + "dev": true, + "engines": { + "node": "*" + } }, - "fork-stream": { + "node_modules/fork-stream": { "version": "0.0.4", "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", "integrity": "sha512-Pqq5NnT78ehvUnAk/We/Jr22vSvanRlFTpAmQ88xBY/M1TlHe+P0ILuEyXS595ysdGfaj22634LBkGMA2GTcpA==", "dev": true }, - "fork-ts-checker-webpack-plugin": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.4.0.tgz", - "integrity": "sha512-3I3wFkc4DbzaUDPWEi96wdYGu4EKtxBafhZYm0o4mX51d9bphAY4P3mBl8K5mFXFJqVzHfmdbm9kLGnm7vwwBg==", + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-9.0.2.tgz", + "integrity": "sha512-Uochze2R8peoN1XqlSi/rGUkDQpRogtLFocP9+PGu68zk1BDAKXfdeCdyVZpgTk8V8WFVQXdEz426VKjXLO1Gg==", "dev": true, - "requires": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, "dependencies": { - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^8.2.0", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">=12.13.0", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "typescript": ">3.6.0", + "webpack": "^5.11.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" } }, - "forwarded": { + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", "dev": true, - "requires": { - "map-cache": "^0.2.2" + "engines": { + "node": ">= 0.6" } }, - "fresh": { + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" + "engines": { + "node": ">= 0.6" } }, - "fs-extra": { + "node_modules/fs-extra": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.1.2", "jsonfile": "^4.0.0", "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" } }, - "fs-minipass": { + "node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, - "requires": { + "dependencies": { "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" } }, - "fs-mkdirp-stream": { + "node_modules/fs-mkdirp-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.1.11", "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" } }, - "fs-monkey": { + "node_modules/fs-monkey": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", "dev": true }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, - "fs.realpath": { + "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, - "fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "node_modules/fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", "dev": true, - "optional": true + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } }, - "fstream": { + "node_modules/fstream": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", - "requires": { + "deprecated": "This package is no longer supported.", + "dependencies": { "graceful-fs": "^4.1.2", "inherits": "~2.0.0", "mkdirp": ">=0.5 0", "rimraf": "2" + }, + "engines": { + "node": ">=0.6" } }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "node_modules/fstream/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "functional-red-black-tree": { + "node_modules/fstream/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/fstream/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, - "generic-names": { + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generic-names": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz", "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==", "dev": true, - "requires": { + "dependencies": { "loader-utils": "^1.1.0" } }, - "gensync": { + "node_modules/generic-names/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/generic-names/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, - "get-caller-file": { + "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" } }, - "get-package-type": { + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=8.0.0" + } }, - "get-port": { + "node_modules/get-port": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", - "dev": true - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, - "requires": { + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "get-them-args": { + "node_modules/get-them-args": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/get-them-args/-/get-them-args-1.3.2.tgz", "integrity": "sha512-LRn8Jlk+DwZE4GTlDbT3Hikd1wSHgLMme/+7ddlqKd7ldwR6LjJgTVWzBnR01wnYGe4KgrXjg287RaI22UHmAw==", "dev": true }, - "get-value": { + "node_modules/get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "getpass": { + "node_modules/getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, - "requires": { + "dependencies": { "assert-plus": "^1.0.0" } }, - "git-repo-info": { + "node_modules/git-repo-info": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/git-repo-info/-/git-repo-info-2.1.1.tgz", "integrity": "sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 4.0" + } }, - "giturl": { + "node_modules/giturl": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/giturl/-/giturl-1.0.3.tgz", "integrity": "sha512-qVDEXufVtYUzYqI5hoDUONh9GCEPi0n+e35KNDafdsNt9fPxB0nvFW/kFiw7W42wkg8TUyhBqb+t24yyaoc87A==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10.0" + } }, - "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "requires": { + "node_modules/glob": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", + "minimatch": "^3.0.2", "once": "^1.3.0", "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" } }, - "glob-escape": { + "node_modules/glob-escape": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/glob-escape/-/glob-escape-0.0.2.tgz", "integrity": "sha512-L/cXYz8x7qer1HAyUQ+mbjcUsJVdpRxpAf7CwqHoNBs9vTpABlGfNN4tzkDxt+u3Z7ZncVyKlCNPtzb0R/7WbA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "glob-parent": { + "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "requires": { + "dependencies": { "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "glob-stream": { + "node_modules/glob-stream": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", "dev": true, - "requires": { + "dependencies": { "extend": "^3.0.0", "glob": "^7.1.1", "glob-parent": "^3.1.0", @@ -15203,34 +22563,77 @@ "to-absolute-glob": "^2.0.0", "unique-stream": "^2.0.2" }, - "dependencies": { - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } + "engines": { + "node": ">= 0.10" } }, - "glob-watcher": { + "node_modules/glob-stream/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-stream/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-stream/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-stream/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/glob-watcher": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", "dev": true, - "requires": { + "dependencies": { "anymatch": "^2.0.0", "async-done": "^1.2.0", "chokidar": "^2.0.0", @@ -15239,252 +22642,479 @@ "normalize-path": "^3.0.0", "object.defaults": "^1.1.0" }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } + "engines": { + "node": ">= 0.10" } }, - "global-dirs": { + "node_modules/glob-watcher/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/glob-watcher/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/glob-watcher/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "Upgrade to fsevents v2 to mitigate potential security issues", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/glob-watcher/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-watcher/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/glob-watcher/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/micromatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/micromatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-watcher/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/glob-watcher/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-dirs": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, - "requires": { + "dependencies": { "ini": "2.0.0" }, - "dependencies": { - "ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true - } - } - }, - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - } - }, - "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", - "dev": true, - "requires": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" + "engines": { + "node": ">=10" }, - "dependencies": { - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true, - "requires": { - "type-fest": "^0.8.1" + "engines": { + "node": ">=10" } }, - "globby": { + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", "integrity": "sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==", "dev": true, - "requires": { + "dependencies": { "array-union": "^1.0.1", "arrify": "^1.0.0", "glob": "^7.0.3", "object-assign": "^4.0.1", "pify": "^2.0.0", "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "glogg": { + "node_modules/glogg": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", "dev": true, - "requires": { + "dependencies": { "sparkles": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "gopd": { + "node_modules/good-listener": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", + "integrity": "sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==", + "dependencies": { + "delegate": "^3.1.2" + } + }, + "node_modules/gopd": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { + "dependencies": { "get-intrinsic": "^1.1.3" }, - "dependencies": { - "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - } - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "got": { + "node_modules/got": { "version": "9.6.0", "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", "dev": true, - "requires": { + "dependencies": { "@sindresorhus/is": "^0.14.0", "@szmarczak/http-timer": "^1.1.2", "cacheable-request": "^6.0.0", @@ -15496,231 +23126,322 @@ "p-cancelable": "^1.0.0", "to-readable-stream": "^1.0.0", "url-parse-lax": "^3.0.0" + }, + "engines": { + "node": ">=8.6" } }, - "graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + "node_modules/got/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } }, - "growly": { + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/growly": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", "dev": true }, - "gulp": { + "node_modules/gulp": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", "dev": true, - "requires": { + "dependencies": { "glob-watcher": "^5.0.3", "gulp-cli": "^2.2.0", "undertaker": "^1.2.1", "vinyl-fs": "^3.0.0" }, - "dependencies": { - "ansi-colors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", - "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", - "dev": true, - "requires": { - "ansi-wrap": "^0.1.0" - } - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "gulp-cli": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", - "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", - "dev": true, - "requires": { - "ansi-colors": "^1.0.1", - "archy": "^1.0.0", - "array-sort": "^1.0.0", - "color-support": "^1.1.3", - "concat-stream": "^1.6.0", - "copy-props": "^2.0.1", - "fancy-log": "^1.3.2", - "gulplog": "^1.0.0", - "interpret": "^1.4.0", - "isobject": "^3.0.1", - "liftoff": "^3.1.0", - "matchdep": "^2.0.0", - "mute-stdout": "^1.0.0", - "pretty-hrtime": "^1.0.0", - "replace-homedir": "^1.0.0", - "semver-greatest-satisfied-range": "^1.1.0", - "v8flags": "^3.2.0", - "yargs": "^7.1.0" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - } - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - } - }, - "y18n": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", - "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", - "dev": true - }, - "yargs": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", - "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.1" - } - }, - "yargs-parser": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", - "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "object.assign": "^4.1.0" - } - } + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" } }, - "gulp-connect": { + "node_modules/gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "node_modules/gulp-cli/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/gulp-cli/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/gulp-cli/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/gulp-cli/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dev": true, + "dependencies": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + } + }, + "node_modules/gulp-cli/node_modules/yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dev": true, + "dependencies": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + } + }, + "node_modules/gulp-connect": { "version": "5.7.0", "resolved": "https://registry.npmjs.org/gulp-connect/-/gulp-connect-5.7.0.tgz", "integrity": "sha512-8tRcC6wgXMLakpPw9M7GRJIhxkYdgZsXwn7n56BA2bQYGLR9NOPhMzx7js+qYDy6vhNkbApGKURjAw1FjY4pNA==", "dev": true, - "requires": { + "dependencies": { "ansi-colors": "^2.0.5", "connect": "^3.6.6", "connect-livereload": "^0.6.0", @@ -15731,782 +23452,989 @@ "serve-static": "^1.13.2", "tiny-lr": "^1.1.1" }, - "dependencies": { - "ansi-colors": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-2.0.5.tgz", - "integrity": "sha512-yAdfUZ+c2wetVNIFsNRn44THW+Lty6S5TwMpUfLA/UaGhiXbBv/F8E60/1hMLd0cnF/CDoWH8vzVaI5bAcHCjw==", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "gulp-flatten": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/gulp-flatten/-/gulp-flatten-0.2.0.tgz", - "integrity": "sha512-8kKeBDfHGx0CEWoB6BPh5bsynUG2VGmSz6hUlX531cfDz/+PRYZa9i3e3+KYuaV0GuCsRZNThSRjBfHOyypy8Q==", + "node_modules/gulp-connect/node_modules/ansi-colors": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-2.0.5.tgz", + "integrity": "sha512-yAdfUZ+c2wetVNIFsNRn44THW+Lty6S5TwMpUfLA/UaGhiXbBv/F8E60/1hMLd0cnF/CDoWH8vzVaI5bAcHCjw==", "dev": true, - "requires": { - "gulp-util": "^3.0.1", - "through2": "^2.0.0" + "engines": { + "node": ">=6" } }, - "gulp-if": { + "node_modules/gulp-connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/gulp-connect/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/gulp-connect/node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==", + "dev": true + }, + "node_modules/gulp-connect/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/gulp-connect/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/gulp-connect/node_modules/mime": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "dev": true, + "bin": { + "mime": "cli.js" + } + }, + "node_modules/gulp-connect/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/gulp-connect/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/gulp-connect/node_modules/send": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", + "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.6.2", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "~2.3.0", + "range-parser": "~1.2.0", + "statuses": "~1.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/gulp-connect/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/gulp-connect/node_modules/statuses": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/gulp-flatten": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/gulp-flatten/-/gulp-flatten-0.4.0.tgz", + "integrity": "sha512-eg4spVTAiv1xXmugyaCxWne1oPtNG0UHEtABx5W8ScLiqAYceyYm6GYA36x0Qh8KOIXmAZV97L2aYGnKREG3Sg==", + "dev": true, + "dependencies": { + "plugin-error": "^0.1.2", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/gulp-if": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-2.0.2.tgz", "integrity": "sha512-tV0UfXkZodpFq6CYxEqH8tqLQgN6yR9qOhpEEN3O6N5Hfqk3fFLcbAavSex5EqnmoQjyaZ/zvgwclvlTI1KGfw==", "dev": true, - "requires": { + "dependencies": { "gulp-match": "^1.0.3", "ternary-stream": "^2.0.1", "through2": "^2.0.1" + }, + "engines": { + "node": ">= 0.10.0" } }, - "gulp-match": { + "node_modules/gulp-match": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", "dev": true, - "requires": { + "dependencies": { "minimatch": "^3.0.3" } }, - "gulp-util": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", - "integrity": "sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==", - "dev": true, - "requires": { - "array-differ": "^1.0.0", - "array-uniq": "^1.0.2", - "beeper": "^1.0.0", - "chalk": "^1.0.0", - "dateformat": "^2.0.0", - "fancy-log": "^1.1.0", - "gulplog": "^1.0.0", - "has-gulplog": "^0.1.0", - "lodash._reescape": "^3.0.0", - "lodash._reevaluate": "^3.0.0", - "lodash._reinterpolate": "^3.0.0", - "lodash.template": "^3.0.0", - "minimist": "^1.1.0", - "multipipe": "^0.1.2", - "object-assign": "^3.0.0", - "replace-ext": "0.0.1", - "through2": "^2.0.0", - "vinyl": "^0.5.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true - }, - "clone-stats": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha512-dhUqc57gSMCo6TX85FLfe51eC/s+Im2MLkAgJwfaRRexR2tA4dd3eLEW4L6efzHc2iNorrRRXITifnDLlRrhaA==", - "dev": true - }, - "object-assign": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==", - "dev": true - }, - "replace-ext": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha512-AFBWBy9EVRTa/LhEcG8QDP3FvpwZqmvN2QFDuJswFeaVhWnZMp8q3E6Zd90SR04PlIwfGdyVjNyLPyen/ek5CQ==", - "dev": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", - "dev": true - }, - "vinyl": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", - "integrity": "sha512-P5zdf3WB9uzr7IFoVQ2wZTmUwHL8cMZWJGzLBNCHNZ3NB6HTMsYABtt7z8tAGIINLXyAob9B9a1yzVGMFOYKEA==", - "dev": true, - "requires": { - "clone": "^1.0.0", - "clone-stats": "^0.0.1", - "replace-ext": "0.0.1" - } - } - } - }, - "gulplog": { + "node_modules/gulplog": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", "dev": true, - "requires": { + "dependencies": { "glogg": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "handle-thing": { + "node_modules/handle-thing": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, - "har-schema": { + "node_modules/har-schema": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "har-validator": { + "node_modules/har-validator": { "version": "5.1.5", "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", "dev": true, - "requires": { + "dependencies": { "ajv": "^6.12.3", "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "hard-rejection": { + "node_modules/hard-rejection": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" + "dev": true, + "engines": { + "node": ">=6" } }, - "has-ansi": { + "node_modules/has-ansi": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", "dev": true, - "requires": { + "dependencies": { "ansi-regex": "^2.0.0" }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "has-gulplog": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", - "integrity": "sha512-+F4GzLjwHNNDEAJW2DC1xXfEoPkRDmUdJ7CBYw4MpqtDwOnqdImJl7GWlpqx+Wko6//J8uKTnIe4wZSv7yCqmw==", + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, - "requires": { - "sparkles": "^1.0.0" + "engines": { + "node": ">=0.10.0" } }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true - }, - "has-symbols": { + "node_modules/has-bigints": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "requires": { - "has-symbols": "^1.0.2" + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "has-value": { + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", "dev": true, - "requires": { + "dependencies": { "get-value": "^2.0.6", "has-values": "^1.0.0", "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "has-values": { + "node_modules/has-values": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", "dev": true, - "requires": { + "dependencies": { "is-number": "^3.0.0", "kind-of": "^4.0.0" }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "engines": { + "node": ">=0.10.0" } }, - "has-yarn": { + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-yarn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", - "dev": true - }, - "hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", "dev": true, - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - } + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" } }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "he": { + "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true + "bin": { + "he": "bin/he" + } }, - "highlight-es": { + "node_modules/highlight-es": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/highlight-es/-/highlight-es-1.0.3.tgz", "integrity": "sha512-s/SIX6yp/5S1p8aC/NRDC1fwEb+myGIfp8/TzZz0rtAv8fzsdX7vGl3Q1TrXCsczFq8DI3CBFBCySPClfBSdbg==", "dev": true, - "requires": { + "dependencies": { "chalk": "^2.4.0", "is-es2016-keyword": "^1.0.0", "js-tokens": "^3.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", - "dev": true - } } }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "node_modules/highlight-es/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "homedir-polyfill": { + "node_modules/highlight-es/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/highlight-es/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/highlight-es/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/highlight-es/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/highlight-es/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/highlight-es/node_modules/js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", + "dev": true + }, + "node_modules/highlight-es/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, - "requires": { + "dependencies": { "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "hpack.js": { + "node_modules/hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, - "requires": { + "dependencies": { "inherits": "^2.0.1", "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" } }, - "html-encoding-sniffer": { + "node_modules/html-encoding-sniffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", "dev": true, - "requires": { + "dependencies": { "whatwg-encoding": "^1.0.1" } }, - "html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", - "dev": true + "node_modules/html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] }, - "html-escaper": { + "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "html-loader": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz", - "integrity": "sha512-7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==", + "node_modules/html-loader": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-4.2.0.tgz", + "integrity": "sha512-OxCHD3yt+qwqng2vvcaPApCEvbx+nXWu+v69TYHx1FO8bffHn/JjHtE3TTQZmHjwvnJe4xxzuecetDVBrQR1Zg==", "dev": true, - "requires": { - "es6-templates": "^0.2.3", - "fastparse": "^1.1.1", - "html-minifier": "^3.5.8", - "loader-utils": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "html-minifier": { - "version": "3.5.21", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", - "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", - "dev": true, - "requires": { - "camel-case": "3.0.x", - "clean-css": "4.2.x", - "commander": "2.17.x", - "he": "1.2.x", - "param-case": "2.1.x", - "relateurl": "0.2.x", - "uglify-js": "3.4.x" - }, "dependencies": { - "commander": { - "version": "2.17.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", - "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", - "dev": true - } + "html-minifier-terser": "^7.0.0", + "parse5": "^7.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "http-cache-semantics": { + "node_modules/html-minifier-terser": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-7.2.0.tgz", + "integrity": "sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "~5.3.2", + "commander": "^10.0.0", + "entities": "^4.4.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.15.1" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": "^14.13.1 || >=16.0.0" + } + }, + "node_modules/html-minifier-terser/node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/http-cache-semantics": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", "dev": true }, - "http-deceiver": { + "node_modules/http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", "dev": true }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - } + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" } }, - "http-parser-js": { + "node_modules/http-parser-js": { "version": "0.5.8", "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", "dev": true }, - "http-proxy": { + "node_modules/http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, - "requires": { + "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dev": true, "dependencies": { - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - } + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" } }, - "http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "node_modules/http-proxy-middleware": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz", + "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==", "dev": true, - "requires": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - } - }, - "http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", - "dev": true, - "requires": { + "dependencies": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", "micromatch": "^4.0.2" }, - "dependencies": { - "is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true } } }, - "http-signature": { + "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/http-proxy/node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/http-signature": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "dev": true, - "requires": { + "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", - "dev": true - }, - "https-proxy-agent": { + "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, - "requires": { + "dependencies": { "agent-base": "6", "debug": "4" + }, + "engines": { + "node": ">= 6" } }, - "human-signals": { + "node_modules/https-proxy-agent/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/human-signals": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true - }, - "hyphenate-style-name": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", - "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "dev": true, + "engines": { + "node": ">=8.12.0" } }, - "icss-replace-symbols": { + "node_modules/hyperdyperid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", + "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", + "dev": true, + "engines": { + "node": ">=10.18" + } + }, + "node_modules/hyphenate-style-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz", + "integrity": "sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==" + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-replace-symbols": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", "dev": true }, - "icss-utils": { + "node_modules/icss-utils": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", "dev": true, - "requires": { + "dependencies": { "postcss": "^7.0.14" }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "engines": { + "node": ">= 6" } }, - "ieee754": { + "node_modules/idb": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.0.0.tgz", + "integrity": "sha512-+M367poGtpzAylX4pwcrZIa7cFQLfNkAOlMMLN2kw/2jGfJP6h+TB/unQNSVYwNtP8XqkLYrfuiVnxLQNP1tjA==" + }, + "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==", - "dev": true + "node_modules/ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", + "dev": true, + "engines": { + "node": ">= 4" + } }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "ignore-walk": { + "node_modules/ignore-walk": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", "dev": true, - "requires": { + "dependencies": { "minimatch": "^3.0.4" } }, - "immediate": { + "node_modules/immediate": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", "dev": true }, - "immutable": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", - "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "node_modules/immutable": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", + "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", "dev": true }, - "import-fresh": { + "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, - "requires": { + "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "import-lazy": { + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-lazy": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true - }, - "import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" + "engines": { + "node": ">=8" } }, - "imurmurhash": { + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } }, - "indent-string": { + "node_modules/indent-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { + "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, - "inherits": { + "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "ini": { + "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, - "inline-style-expand-shorthand": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/inline-style-expand-shorthand/-/inline-style-expand-shorthand-1.3.0.tgz", - "integrity": "sha512-cYW3cf2Tzi43jjHk8yyHAAnwgVXOC0jdmv7QkHMmha2zI2znhWh8LEC+Enb+PHcZi9afsbcP4JHyr5C08jDRHA==" + "node_modules/inline-style-expand-shorthand": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/inline-style-expand-shorthand/-/inline-style-expand-shorthand-1.6.0.tgz", + "integrity": "sha512-REormb3TCk/CIeL5/Q1rdHYM9tW8YKGKzbvgAH4IXrDsJmq9BnV69yhIGGMzV2IRkR/J6MuLNhY7UfoIJjunog==" }, - "inpath": { + "node_modules/inline-style-prefixer": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-7.0.1.tgz", + "integrity": "sha512-lhYo5qNTQp3EvSSp3sRvXMbVQTLrvGV6DycRMJ5dm2BLMiJ30wpXKdDdgX+GmJZ5uQMucwRKHamXSst3Sj/Giw==", + "dependencies": { + "css-in-js-utils": "^3.1.0" + } + }, + "node_modules/inpath": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/inpath/-/inpath-1.0.2.tgz", "integrity": "sha512-DTt55ovuYFC62a8oJxRjV2MmTPUdxN43Gd8I2ZgawxbAha6PvJkDQy/RbZGFCJF5IXrpp4PAYtW1w3aV7jXkew==", - "dev": true + "dev": true, + "engines": { + "node": "*" + } }, - "inquirer": { + "node_modules/inquirer": { "version": "7.3.3", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, - "requires": { + "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", @@ -16521,959 +24449,1161 @@ "strip-ansi": "^6.0.0", "through": "^2.3.6" }, - "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } + "engines": { + "node": ">=8.0.0" } }, - "internal-ip": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "dependencies": { - "default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" - } - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "interpret": { + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "invert-kv": { + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/invert-kv": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", - "dev": true + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "ip": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz", - "integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==", - "dev": true - }, - "ip-regex": { + "node_modules/ip-regex": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "ipaddr.js": { + "node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "is-absolute": { + "node_modules/is-absolute": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "dev": true, - "requires": { + "dependencies": { "is-relative": "^1.0.0", "is-windows": "^1.0.1" - } - }, - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", - "dev": true - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "engines": { + "node": ">=0.10.0" } }, - "is-arguments": { + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arguments": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "requires": { + "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "is-bigint": { + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, - "requires": { + "dependencies": { "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "requires": { - "binary-extensions": "^1.0.0" + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "is-boolean-object": { + "node_modules/is-boolean-object": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, - "requires": { + "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-buffer": { + "node_modules/is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, - "is-callable": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", - "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", - "dev": true + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "is-ci": { + "node_modules/is-ci": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dev": true, - "requires": { - "ci-info": "^2.0.0" - } - }, - "is-core-module": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", - "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" } }, - "is-date-object": { + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-docker": { + "node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "is-es2016-keyword": { + "node_modules/is-es2016-keyword": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-es2016-keyword/-/is-es2016-keyword-1.0.0.tgz", "integrity": "sha512-JtZWPUwjdbQ1LIo9OSZ8MdkWEve198ors27vH+RzUUvZXXZkzXCxFnlUhzWYxy5IexQSRiXVw9j2q/tHMmkVYQ==", "dev": true }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "requires": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, "dependencies": { - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - } + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true - }, - "is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true - }, - "is-npm": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", - "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", - "dev": true - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-number-object": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", - "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, - "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha512-cnS56eR9SPAscL77ik76ATVqoPARTqPIVkMDVxRaWH06zT+6+CzIroYRJ0VVvm0Z1zfAvxvz9i/D3Ppjaqt5Nw==", - "dev": true - }, - "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true, - "requires": { - "is-path-inside": "^1.0.0" - } - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", - "dev": true, - "requires": { - "path-is-inside": "^1.0.1" - } - }, - "is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "dev": true - }, - "is-plain-object": { + "node_modules/is-extendable/node_modules/is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, - "requires": { + "dependencies": { "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-regex": { + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "dev": true, + "dependencies": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-network-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.1.0.tgz", + "integrity": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha512-cnS56eR9SPAscL77ik76ATVqoPARTqPIVkMDVxRaWH06zT+6+CzIroYRJ0VVvm0Z1zfAvxvz9i/D3Ppjaqt5Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-in-cwd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", + "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-in-cwd/node_modules/is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "requires": { + "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-relative": { + "node_modules/is-relative": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "dev": true, - "requires": { + "dependencies": { "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-shared-array-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", - "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", - "dev": true + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "is-string": { + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, - "requires": { + "dependencies": { "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-subdir": { + "node_modules/is-subdir": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz", "integrity": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==", "dev": true, - "requires": { + "dependencies": { "better-path-resolve": "1.0.0" + }, + "engines": { + "node": ">=4" } }, - "is-symbol": { + "node_modules/is-symbol": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, - "requires": { + "dependencies": { "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-typedarray": { + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "dev": true }, - "is-unc-path": { + "node_modules/is-unc-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "dev": true, - "requires": { + "dependencies": { "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-unicode-supported": { + "node_modules/is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "is-utf8": { + "node_modules/is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", "dev": true }, - "is-valid-glob": { + "node_modules/is-valid-glob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=", - "dev": true + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-weakref": { + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, - "requires": { + "dependencies": { "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-windows": { + "node_modules/is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "is-wsl": { + "node_modules/is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, - "requires": { + "dependencies": { "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "is-yarn-global": { + "node_modules/is-yarn-global": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", "dev": true }, - "isarray": { + "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true }, - "isexe": { + "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, - "isobject": { + "node_modules/isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "isomorphic-fetch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", - "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", - "requires": { - "node-fetch": "^1.0.1", - "whatwg-fetch": ">=0.10.0" + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" } }, - "isstream": { + "node_modules/isomorphic-fetch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", + "dependencies": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "node_modules/isomorphic-fetch/node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" + }, + "node_modules/isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "dev": true }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "istanbul-lib-instrument": { + "node_modules/istanbul-lib-instrument": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", "dev": true, - "requires": { + "dependencies": { "@babel/core": "^7.7.5", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.0.0", "semver": "^6.3.0" }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "istanbul-lib-report": { + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, - "requires": { + "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "dev": true, - "requires": { - "semver": "^7.5.3" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">=10" } }, - "istanbul-lib-source-maps": { + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "requires": { + "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", "source-map": "^0.6.1" }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "engines": { + "node": ">=10" } }, - "istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, - "requires": { + "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "jest": { + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest": { "version": "25.4.0", "resolved": "https://registry.npmjs.org/jest/-/jest-25.4.0.tgz", "integrity": "sha512-XWipOheGB4wai5JfCYXd6vwsWNwM/dirjRoZgAa7H2wd8ODWbli2AiKjqG8AYhyx+8+5FBEdpO92VhGlBydzbw==", "dev": true, - "requires": { + "dependencies": { "@jest/core": "^25.4.0", "import-local": "^3.0.2", "jest-cli": "^25.4.0" }, - "dependencies": { - "@jest/reporters": { - "version": "25.5.1", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-25.5.1.tgz", - "integrity": "sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw==", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^25.5.0", - "@jest/test-result": "^25.5.0", - "@jest/transform": "^25.5.1", - "@jest/types": "^25.5.0", - "chalk": "^3.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.4", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^4.0.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "jest-haste-map": "^25.5.1", - "jest-resolve": "^25.5.1", - "jest-util": "^25.5.0", - "jest-worker": "^25.5.0", - "node-notifier": "^6.0.0", - "slash": "^3.0.0", - "source-map": "^0.6.0", - "string-length": "^3.1.0", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^4.1.3" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "jest-cli": { - "version": "25.5.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.5.4.tgz", - "integrity": "sha512-rG8uJkIiOUpnREh1768/N3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw==", - "dev": true, - "requires": { - "@jest/core": "^25.5.4", - "@jest/test-result": "^25.5.0", - "@jest/types": "^25.5.0", - "chalk": "^3.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "import-local": "^3.0.2", - "is-ci": "^2.0.0", - "jest-config": "^25.5.4", - "jest-util": "^25.5.0", - "jest-validate": "^25.5.0", - "prompts": "^2.0.1", - "realpath-native": "^2.0.0", - "yargs": "^15.3.1" - }, - "dependencies": { - "@jest/core": { - "version": "25.5.4", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-25.5.4.tgz", - "integrity": "sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA==", - "dev": true, - "requires": { - "@jest/console": "^25.5.0", - "@jest/reporters": "^25.5.1", - "@jest/test-result": "^25.5.0", - "@jest/transform": "^25.5.1", - "@jest/types": "^25.5.0", - "ansi-escapes": "^4.2.1", - "chalk": "^3.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-changed-files": "^25.5.0", - "jest-config": "^25.5.4", - "jest-haste-map": "^25.5.1", - "jest-message-util": "^25.5.0", - "jest-regex-util": "^25.2.6", - "jest-resolve": "^25.5.1", - "jest-resolve-dependencies": "^25.5.4", - "jest-runner": "^25.5.4", - "jest-runtime": "^25.5.4", - "jest-snapshot": "^25.5.1", - "jest-util": "^25.5.0", - "jest-validate": "^25.5.0", - "jest-watcher": "^25.5.0", - "micromatch": "^4.0.2", - "p-each-series": "^2.1.0", - "realpath-native": "^2.0.0", - "rimraf": "^3.0.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - } - } - } - }, - "node-notifier": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz", - "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==", - "dev": true, - "optional": true, - "requires": { - "growly": "^1.3.0", - "is-wsl": "^2.1.1", - "semver": "^6.3.0", - "shellwords": "^0.1.1", - "which": "^1.3.1" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "optional": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "optional": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - } - } + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 8.3" } }, - "jest-changed-files": { + "node_modules/jest-changed-files": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-25.5.0.tgz", "integrity": "sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm/1nAn5fPQ/NDaYhX/AHkrGwwkCncpAVSXcw==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "execa": "^3.2.0", "throat": "^5.0.0" }, - "dependencies": { - "execa": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz", - "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "p-finally": "^2.0.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "p-finally": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", - "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", - "dev": true - } + "engines": { + "node": ">= 8.3" } }, - "jest-config": { + "node_modules/jest-cli": { + "version": "25.4.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-25.4.0.tgz", + "integrity": "sha512-usyrj1lzCJZMRN1r3QEdnn8e6E6yCx/QN7+B1sLoA68V7f3WlsxSSQfy0+BAwRiF4Hz2eHauf11GZG3PIfWTXQ==", + "dev": true, + "dependencies": { + "@jest/core": "^25.4.0", + "@jest/test-result": "^25.4.0", + "@jest/types": "^25.4.0", + "chalk": "^3.0.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^25.4.0", + "jest-util": "^25.4.0", + "jest-validate": "^25.4.0", + "prompts": "^2.0.1", + "realpath-native": "^2.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/jest-cli/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/jest-cli/node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/jest-cli/node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true + }, + "node_modules/jest-cli/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/jest-cli/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-config": { "version": "25.5.4", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-25.5.4.tgz", "integrity": "sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==", "dev": true, - "requires": { + "dependencies": { "@babel/core": "^7.1.0", "@jest/test-sequencer": "^25.5.4", "@jest/types": "^25.5.0", @@ -17494,256 +25624,109 @@ "pretty-format": "^25.5.0", "realpath-native": "^2.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "jest-environment-jsdom": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-25.5.0.tgz", - "integrity": "sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==", - "dev": true, - "requires": { - "@jest/environment": "^25.5.0", - "@jest/fake-timers": "^25.5.0", - "@jest/types": "^25.5.0", - "jest-mock": "^25.5.0", - "jest-util": "^25.5.0", - "jsdom": "^15.2.1" - } - }, - "jsdom": { - "version": "15.2.1", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz", - "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", - "dev": true, - "requires": { - "abab": "^2.0.0", - "acorn": "^7.1.0", - "acorn-globals": "^4.3.2", - "array-equal": "^1.0.0", - "cssom": "^0.4.1", - "cssstyle": "^2.0.0", - "data-urls": "^1.1.0", - "domexception": "^1.0.1", - "escodegen": "^1.11.1", - "html-encoding-sniffer": "^1.0.2", - "nwsapi": "^2.2.0", - "parse5": "5.1.0", - "pn": "^1.1.0", - "request": "^2.88.0", - "request-promise-native": "^1.0.7", - "saxes": "^3.1.9", - "symbol-tree": "^3.2.2", - "tough-cookie": "^3.0.1", - "w3c-hr-time": "^1.0.1", - "w3c-xmlserializer": "^1.1.2", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^7.0.0", - "ws": "^7.0.0", - "xml-name-validator": "^3.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-diff": { + "node_modules/jest-config/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/jest-config/node_modules/jest-environment-jsdom": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-25.5.0.tgz", + "integrity": "sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A==", + "dev": true, + "dependencies": { + "@jest/environment": "^25.5.0", + "@jest/fake-timers": "^25.5.0", + "@jest/types": "^25.5.0", + "jest-mock": "^25.5.0", + "jest-util": "^25.5.0", + "jsdom": "^15.2.1" + }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/jest-config/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jest-diff": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.5.0.tgz", "integrity": "sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A==", "dev": true, - "requires": { + "dependencies": { "chalk": "^3.0.0", "diff-sequences": "^25.2.6", "jest-get-type": "^25.2.6", "pretty-format": "^25.5.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-docblock": { + "node_modules/jest-docblock": { "version": "25.3.0", "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-25.3.0.tgz", "integrity": "sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg==", "dev": true, - "requires": { + "dependencies": { "detect-newline": "^3.0.0" + }, + "engines": { + "node": ">= 8.3" } }, - "jest-each": { + "node_modules/jest-each": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-25.5.0.tgz", "integrity": "sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "chalk": "^3.0.0", "jest-get-type": "^25.2.6", "jest-util": "^25.5.0", "pretty-format": "^25.5.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-environment-jsdom": { + "node_modules/jest-environment-jsdom": { "version": "25.4.0", "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-25.4.0.tgz", "integrity": "sha512-KTitVGMDrn2+pt7aZ8/yUTuS333w3pWt1Mf88vMntw7ZSBNDkRS6/4XLbFpWXYfWfp1FjcjQTOKzbK20oIehWQ==", "dev": true, - "requires": { + "dependencies": { "@jest/environment": "^25.4.0", "@jest/fake-timers": "^25.4.0", "@jest/types": "^25.4.0", @@ -17751,75 +25734,16 @@ "jest-util": "^25.4.0", "jsdom": "^15.2.1" }, - "dependencies": { - "jsdom": { - "version": "15.2.1", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz", - "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", - "dev": true, - "requires": { - "abab": "^2.0.0", - "acorn": "^7.1.0", - "acorn-globals": "^4.3.2", - "array-equal": "^1.0.0", - "cssom": "^0.4.1", - "cssstyle": "^2.0.0", - "data-urls": "^1.1.0", - "domexception": "^1.0.1", - "escodegen": "^1.11.1", - "html-encoding-sniffer": "^1.0.2", - "nwsapi": "^2.2.0", - "parse5": "5.1.0", - "pn": "^1.1.0", - "request": "^2.88.0", - "request-promise-native": "^1.0.7", - "saxes": "^3.1.9", - "symbol-tree": "^3.2.2", - "tough-cookie": "^3.0.1", - "w3c-hr-time": "^1.0.1", - "w3c-xmlserializer": "^1.1.2", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^7.0.0", - "ws": "^7.0.0", - "xml-name-validator": "^3.0.0" - } - }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-environment-node": { + "node_modules/jest-environment-node": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-25.5.0.tgz", "integrity": "sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA==", "dev": true, - "requires": { + "dependencies": { "@jest/environment": "^25.5.0", "@jest/fake-timers": "^25.5.0", "@jest/types": "^25.5.0", @@ -17827,32 +25751,38 @@ "jest-util": "^25.5.0", "semver": "^6.3.0" }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } + "engines": { + "node": ">= 8.3" } }, - "jest-get-type": { + "node_modules/jest-environment-node/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/jest-get-type": { "version": "25.2.6", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz", "integrity": "sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig==", - "dev": true + "dev": true, + "engines": { + "node": ">= 8.3" + } }, - "jest-haste-map": { + "node_modules/jest-haste-map": { "version": "25.5.1", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-25.5.1.tgz", "integrity": "sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "@types/graceful-fs": "^4.1.2", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", - "fsevents": "^2.1.2", "graceful-fs": "^4.2.4", "jest-serializer": "^25.5.0", "jest-util": "^25.5.0", @@ -17861,14 +25791,20 @@ "sane": "^4.0.3", "walker": "^1.0.7", "which": "^2.0.2" + }, + "engines": { + "node": ">= 8.3" + }, + "optionalDependencies": { + "fsevents": "^2.1.2" } }, - "jest-jasmine2": { + "node_modules/jest-jasmine2": { "version": "25.5.4", "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-25.5.4.tgz", "integrity": "sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==", "dev": true, - "requires": { + "dependencies": { "@babel/traverse": "^7.1.0", "@jest/environment": "^25.5.0", "@jest/source-map": "^25.5.0", @@ -17887,125 +25823,44 @@ "pretty-format": "^25.5.0", "throat": "^5.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-leak-detector": { + "node_modules/jest-leak-detector": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-25.5.0.tgz", "integrity": "sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA==", "dev": true, - "requires": { + "dependencies": { "jest-get-type": "^25.2.6", "pretty-format": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" } }, - "jest-matcher-utils": { + "node_modules/jest-matcher-utils": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz", "integrity": "sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw==", "dev": true, - "requires": { + "dependencies": { "chalk": "^3.0.0", "jest-diff": "^25.5.0", "jest-get-type": "^25.2.6", "pretty-format": "^25.5.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-message-util": { + "node_modules/jest-message-util": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-25.5.0.tgz", "integrity": "sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA==", "dev": true, - "requires": { + "dependencies": { "@babel/code-frame": "^7.0.0", "@jest/types": "^25.5.0", "@types/stack-utils": "^1.0.1", @@ -18015,146 +25870,65 @@ "slash": "^3.0.0", "stack-utils": "^1.0.1" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-mock": { + "node_modules/jest-mock": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-25.5.0.tgz", "integrity": "sha512-eXWuTV8mKzp/ovHc5+3USJMYsTBhyQ+5A1Mak35dey/RG8GlM4YWVylZuGgVXinaW6tpvk/RSecmF37FKUlpXA==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0" + }, + "engines": { + "node": ">= 8.3" } }, - "jest-nunit-reporter": { + "node_modules/jest-nunit-reporter": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/jest-nunit-reporter/-/jest-nunit-reporter-1.3.1.tgz", "integrity": "sha512-yeERKTYPZutqdNIe3EHjoSAjhPxd5J5Svd8ULB/eiqDkn0EI2n8W4OVTuyFwY5b23hw5f0RLDuEvBjy5V95Ffw==", "dev": true, - "requires": { + "dependencies": { "mkdirp": "^0.5.1", "read-pkg": "^3.0.0", "xml": "^1.0.1" - }, - "dependencies": { - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", - "dev": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - } } }, - "jest-pnp-resolver": { + "node_modules/jest-pnp-resolver": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } }, - "jest-regex-util": { + "node_modules/jest-regex-util": { "version": "25.2.6", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-25.2.6.tgz", "integrity": "sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw==", - "dev": true + "dev": true, + "engines": { + "node": ">= 8.3" + } }, - "jest-resolve": { + "node_modules/jest-resolve": { "version": "25.5.1", "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-25.5.1.tgz", "integrity": "sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "browser-resolve": "^1.11.3", "chalk": "^3.0.0", @@ -18165,69 +25939,30 @@ "resolve": "^1.17.0", "slash": "^3.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-resolve-dependencies": { + "node_modules/jest-resolve-dependencies": { "version": "25.5.4", "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.4.tgz", "integrity": "sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "jest-regex-util": "^25.2.6", "jest-snapshot": "^25.5.1" + }, + "engines": { + "node": ">= 8.3" } }, - "jest-runner": { + "node_modules/jest-runner": { "version": "25.5.4", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-25.5.4.tgz", "integrity": "sha512-V/2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg==", "dev": true, - "requires": { + "dependencies": { "@jest/console": "^25.5.0", "@jest/environment": "^25.5.0", "@jest/test-result": "^25.5.0", @@ -18248,58 +25983,16 @@ "source-map-support": "^0.5.6", "throat": "^5.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-runtime": { + "node_modules/jest-runtime": { "version": "25.5.4", "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-25.5.4.tgz", "integrity": "sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3/gC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ==", "dev": true, - "requires": { + "dependencies": { "@jest/console": "^25.5.0", "@jest/environment": "^25.5.0", "@jest/globals": "^25.5.2", @@ -18327,118 +26020,151 @@ "strip-bom": "^4.0.0", "yargs": "^15.3.1" }, - "dependencies": { - "@types/yargs": { - "version": "15.0.16", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.16.tgz", - "integrity": "sha512-2FeD5qezW3FvLpZ0JpfuaEWepgNLl9b2gQYiz/ce0NhoB1W/D+VZu98phITXkADYerfr/jb7JcDcVhITsc9bwg==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - } - } + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 8.3" } }, - "jest-serializer": { + "node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runtime/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/jest-runtime/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/jest-runtime/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jest-runtime/node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-serializer": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-25.5.0.tgz", "integrity": "sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA==", "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.2.4" + }, + "engines": { + "node": ">= 8.3" } }, - "jest-snapshot": { + "node_modules/jest-snapshot": { "version": "25.5.1", "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-25.5.1.tgz", "integrity": "sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==", "dev": true, - "requires": { + "dependencies": { "@babel/types": "^7.0.0", "@jest/types": "^25.5.0", "@types/prettier": "^1.19.0", @@ -18455,122 +26181,80 @@ "pretty-format": "^25.5.0", "semver": "^6.3.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-util": { + "node_modules/jest-snapshot/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/jest-util": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-25.5.0.tgz", "integrity": "sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "chalk": "^3.0.0", "graceful-fs": "^4.2.4", "is-ci": "^2.0.0", "make-dir": "^3.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-validate": { + "node_modules/jest-util/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-util/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/jest-validate": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-25.5.0.tgz", "integrity": "sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "camelcase": "^5.3.1", "chalk": "^3.0.0", @@ -18578,58 +26262,16 @@ "leven": "^3.1.0", "pretty-format": "^25.5.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-watcher": { + "node_modules/jest-watcher": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-25.5.0.tgz", "integrity": "sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q==", "dev": true, - "requires": { + "dependencies": { "@jest/test-result": "^25.5.0", "@jest/types": "^25.5.0", "ansi-escapes": "^4.2.1", @@ -18637,295 +26279,245 @@ "jest-util": "^25.5.0", "string-length": "^3.1.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">= 8.3" } }, - "jest-worker": { + "node_modules/jest-worker": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", "dev": true, - "requires": { + "dependencies": { "merge-stream": "^2.0.0", "supports-color": "^7.0.0" }, + "engines": { + "node": ">= 8.3" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + }, + "node_modules/jotai": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/jotai/-/jotai-2.10.0.tgz", + "integrity": "sha512-8W4u0aRlOIwGlLQ0sqfl/c6+eExl5D8lZgAUolirZLktyaj4WnxO/8a0HEPmtriQAB6X5LMhXzZVmw02X0P0qQ==", + "engines": { + "node": ">=12.20.0" + }, + "peerDependencies": { + "@types/react": ">=17.0.0", + "react": ">=17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } + "react": { + "optional": true } } }, - "jju": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", - "integrity": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=", - "dev": true - }, - "js-tokens": { + "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "node_modules/js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", "dev": true, - "requires": { + "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "jsbn": { + "node_modules/jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "dev": true }, - "jsdom": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.11.0.tgz", - "integrity": "sha512-ou1VyfjwsSuWkudGxb03FotDajxAto6USAlmMZjE2lc0jCznt7sBWkhfRBRaWwbnmDqdMSTKTLT5d9sBFkkM7A==", + "node_modules/jsdom": { + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.2.1.tgz", + "integrity": "sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==", "dev": true, - "requires": { - "abab": "^1.0.4", - "acorn": "^5.3.0", - "acorn-globals": "^4.1.0", + "dependencies": { + "abab": "^2.0.0", + "acorn": "^7.1.0", + "acorn-globals": "^4.3.2", "array-equal": "^1.0.0", - "cssom": ">= 0.3.2 < 0.4.0", - "cssstyle": ">= 0.3.1 < 0.4.0", - "data-urls": "^1.0.0", - "domexception": "^1.0.0", - "escodegen": "^1.9.0", + "cssom": "^0.4.1", + "cssstyle": "^2.0.0", + "data-urls": "^1.1.0", + "domexception": "^1.0.1", + "escodegen": "^1.11.1", "html-encoding-sniffer": "^1.0.2", - "left-pad": "^1.2.0", - "nwsapi": "^2.0.0", - "parse5": "4.0.0", + "nwsapi": "^2.2.0", + "parse5": "5.1.0", "pn": "^1.1.0", - "request": "^2.83.0", - "request-promise-native": "^1.0.5", - "sax": "^1.2.4", + "request": "^2.88.0", + "request-promise-native": "^1.0.7", + "saxes": "^3.1.9", "symbol-tree": "^3.2.2", - "tough-cookie": "^2.3.3", + "tough-cookie": "^3.0.1", "w3c-hr-time": "^1.0.1", + "w3c-xmlserializer": "^1.1.2", "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.3", - "whatwg-mimetype": "^2.1.0", - "whatwg-url": "^6.4.1", - "ws": "^4.0.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^7.0.0", + "ws": "^7.0.0", "xml-name-validator": "^3.0.0" }, - "dependencies": { - "abab": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz", - "integrity": "sha512-I+Wi+qiE2kUXyrRhNsWv6XsjUTBJjSoVSctKNBfLG5zG/Xe7Rjbxf13+vqYHNTwHaFU+FtSlVxOCTiMEVtPv0A==", - "dev": true - }, - "acorn": { - "version": "5.7.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", - "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", - "dev": true - }, - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "cssstyle": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.3.1.tgz", - "integrity": "sha512-tNvaxM5blOnxanyxI6panOsnfiyLRj3HV4qjqqS45WPNS1usdYWRUQjqTEEELK73lpeP/1KoIGYUwrBn/VcECA==", - "dev": true, - "requires": { - "cssom": "0.3.x" - } - }, - "parse5": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", - "dev": true - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - }, - "whatwg-url": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", - "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "ws": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-4.1.0.tgz", - "integrity": "sha512-ZGh/8kF9rrRNffkLFV4AzhvooEclrOH0xaugmqGsIfFgOE/pIz4fMc4Ef+5HSQqTEug2S9JZIWDR47duDSLfaA==", - "dev": true, - "requires": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0" - } + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true } } }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "node_modules/jsdom/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsdom/node_modules/parse5": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", + "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==", "dev": true }, - "json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, - "json-parse-better-errors": { + "node_modules/json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, - "json-parse-even-better-errors": { + "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "json-schema": { + "node_modules/json-schema": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, - "json-schema-traverse": { + "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "json-stable-stringify-without-jsonify": { + "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "json-stringify-safe": { + "node_modules/json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=" + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } }, - "jsonfile": { + "node_modules/jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "dev": true, - "requires": { + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "optionalDependencies": { "graceful-fs": "^4.1.6" } }, - "jsonpath-plus": { + "node_modules/jsonpath-plus": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-4.0.0.tgz", "integrity": "sha512-e0Jtg4KAzDJKKwzbLaUtinCn0RZseWBVRTRGihSpvFlM3wTR7ExSp+PTdeTsDrLNJUe7L7JYJe8mblHX5SCT6A==", - "dev": true + "dev": true, + "engines": { + "node": ">=10.0" + } }, - "jsonwebtoken": { + "node_modules/jsonwebtoken": { "version": "9.0.2", "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", "dev": true, - "requires": { + "dependencies": { "jws": "^3.2.2", "lodash.includes": "^4.3.0", "lodash.isboolean": "^3.0.3", @@ -18937,228 +26529,274 @@ "ms": "^2.1.1", "semver": "^7.5.4" }, - "dependencies": { - "jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "dev": true, - "requires": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "engines": { + "node": ">=12", + "npm": ">=6" } }, - "jsprim": { + "node_modules/jsonwebtoken/node_modules/jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "dev": true, + "dependencies": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jsonwebtoken/node_modules/jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "dev": true, + "dependencies": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jsonwebtoken/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jspath": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/jspath/-/jspath-0.4.0.tgz", + "integrity": "sha512-2/R8wkot8NCXrppBT/onp+4mcAUAZqtPxsW6aSJU3hrFAVqKqtFYcat2XJZ7inN4RtATUxfv0UQSYOmvJKiIGA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/jsprim": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, - "requires": { + "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", "json-schema": "0.4.0", "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" } }, - "jsx-ast-utils": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", - "integrity": "sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==", + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dev": true, - "requires": { - "array-includes": "^3.1.1", - "object.assign": "^4.1.0" + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" } }, - "jszip": { + "node_modules/jszip": { "version": "3.8.0", "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.8.0.tgz", "integrity": "sha512-cnpQrXvFSLdsR9KR5/x7zdf6c3m8IhZfZzSblFEHSqBaVwD2nvJ4CuCKLyvKvwBgZm08CgfSoiTBQLm5WW9hGw==", "dev": true, - "requires": { + "dependencies": { "lie": "~3.3.0", "pako": "~1.0.2", "readable-stream": "~2.3.6", "set-immediate-shim": "~1.0.1" } }, - "just-debounce": { + "node_modules/just-debounce": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", "dev": true }, - "jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "node_modules/jwa": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", + "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", "dev": true, - "requires": { + "dependencies": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, - "jws": { + "node_modules/jws": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", "dev": true, - "requires": { + "dependencies": { "jwa": "^2.0.0", "safe-buffer": "^5.0.1" - }, + } + }, + "node_modules/keyborg": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/keyborg/-/keyborg-2.6.0.tgz", + "integrity": "sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, "dependencies": { - "jwa": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", - "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", - "dev": true, - "requires": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - } + "json-buffer": "3.0.1" } }, - "keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "node_modules/kill-port": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/kill-port/-/kill-port-2.0.1.tgz", + "integrity": "sha512-e0SVOV5jFo0mx8r7bS29maVWp17qGqLBZ5ricNSajON6//kmb7qqqNnml4twNE8Dtj97UQD+gNFOaipS/q1zzQ==", "dev": true, - "requires": { - "json-buffer": "3.0.0" - } - }, - "kill-port": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/kill-port/-/kill-port-1.6.1.tgz", - "integrity": "sha512-un0Y55cOM7JKGaLnGja28T38tDDop0AQ8N0KlAdyh+B1nmMoX8AnNmqPNZbS3mUMgiST51DCVqmbFT1gNJpVNw==", - "dev": true, - "requires": { + "dependencies": { "get-them-args": "1.3.2", "shell-exec": "1.0.2" + }, + "bin": { + "kill-port": "cli.js" } }, - "killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", - "dev": true + "node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - }, - "kleur": { + "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true - }, - "klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true - }, - "last-run": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", - "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=", "dev": true, - "requires": { - "default-resolution": "^2.0.0", - "es6-weak-map": "^2.0.1" + "engines": { + "node": ">=6" } }, - "latest-version": { + "node_modules/last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "dev": true, + "dependencies": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/latest-version": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", "dev": true, - "requires": { + "dependencies": { "package-json": "^6.3.0" + }, + "engines": { + "node": ">=8" } }, - "lazystream": { + "node_modules/launch-editor": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz", + "integrity": "sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/lazystream": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", "dev": true, - "requires": { + "dependencies": { "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" } }, - "lcid": { + "node_modules/lcid": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", "dev": true, - "requires": { + "dependencies": { "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "lead": { + "node_modules/lead": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", "dev": true, - "requires": { + "dependencies": { "flush-write-stream": "^1.0.2" + }, + "engines": { + "node": ">= 0.10" } }, - "left-pad": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", - "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", - "dev": true - }, - "leven": { + "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "levn": { + "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, - "requires": { + "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "lie": { + "node_modules/lie": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", "dev": true, - "requires": { + "dependencies": { "immediate": "~3.0.5" } }, - "liftoff": { + "node_modules/liftoff": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", "dev": true, - "requires": { + "dependencies": { "extend": "^3.0.0", "findup-sync": "^3.0.0", "fined": "^1.0.1", @@ -19167,674 +26805,806 @@ "object.map": "^1.0.0", "rechoir": "^0.6.2", "resolve": "^1.1.7" + }, + "engines": { + "node": ">= 0.8" } }, - "lilconfig": { + "node_modules/liftoff/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lilconfig": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + } }, - "lines-and-columns": { + "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, - "livereload-js": { + "node_modules/linkify-it": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/lit": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/lit/-/lit-2.8.0.tgz", + "integrity": "sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==", + "dependencies": { + "@lit/reactive-element": "^1.6.0", + "lit-element": "^3.3.0", + "lit-html": "^2.8.0" + } + }, + "node_modules/lit-element": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.3.3.tgz", + "integrity": "sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.1.0", + "@lit/reactive-element": "^1.3.0", + "lit-html": "^2.8.0" + } + }, + "node_modules/lit-html": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.8.0.tgz", + "integrity": "sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==", + "dependencies": { + "@types/trusted-types": "^2.0.2" + } + }, + "node_modules/livereload-js": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==", "dev": true }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "node_modules/load-json-file": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", + "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - }, "dependencies": { - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "^1.2.0" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "^0.2.0" - } - } + "graceful-fs": "^4.1.15", + "parse-json": "^5.0.0", + "strip-bom": "^4.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" } }, - "load-yaml-file": { + "node_modules/load-json-file/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/load-yaml-file": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz", "integrity": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==", "dev": true, - "requires": { + "dependencies": { "graceful-fs": "^4.1.5", "js-yaml": "^3.13.0", "pify": "^4.0.1", "strip-bom": "^3.0.0" }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - } + "engines": { + "node": ">=6" } }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", - "dev": true - }, - "loader-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", - "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0" + "node_modules/load-yaml-file/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" } }, - "locate-path": { + "node_modules/load-yaml-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.2.tgz", + "integrity": "sha512-vjJi4vQDasD8t0kMpxe+9URAcgbSuASqoj/Wuk3MawTk97LYa2KfdHreAkd1G/pmPLMvzZEw7/OsydADNemerQ==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "requires": { + "dependencies": { "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, - "lodash": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.13.tgz", - "integrity": "sha512-vm3/XWXfWtRua0FkUyEHBZy8kCPjErNBT9fJx8Zvs+U6zjqPbTUOpkaoum3O5uiA8sm+yNMHXfYkTUHFoMxFNA==" + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "lodash._basecopy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", - "integrity": "sha512-rFR6Vpm4HeCK1WPGvjZSJ+7yik8d8PVUdCJx5rT2pogG4Ve/2ZS7kfmO5l5T2o5V2mqlNIfSF5MZlr1+xOoYQQ==", - "dev": true - }, - "lodash._basetostring": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", - "integrity": "sha512-mTzAr1aNAv/i7W43vOR/uD/aJ4ngbtsRaCubp2BfZhlGU/eORUjg/7F6X0orNMdv33JOrdgGybtvMN/po3EWrA==", - "dev": true - }, - "lodash._basevalues": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", - "integrity": "sha512-H94wl5P13uEqlCg7OcNNhMQ8KvWSIyqXzOPusRgHC9DK3o54P6P3xtbXlVbRABG4q5gSmp7EDdJ0MSuW9HX6Mg==", - "dev": true - }, - "lodash._getnative": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", - "integrity": "sha512-RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA==", - "dev": true - }, - "lodash._isiterateecall": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", - "integrity": "sha512-De+ZbrMu6eThFti/CSzhRvTKMgQToLxbij58LMfM8JnYDNSOjkjTCIaa8ixglOeGh2nyPlakbt5bJWJ7gvpYlQ==", - "dev": true - }, - "lodash._reescape": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", - "integrity": "sha512-Sjlavm5y+FUVIF3vF3B75GyXrzsfYV8Dlv3L4mEpuB9leg8N6yf/7rU06iLPx9fY0Mv3khVp9p7Dx0mGV6V5OQ==", - "dev": true - }, - "lodash._reevaluate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", - "integrity": "sha512-OrPwdDc65iJiBeUe5n/LIjd7Viy99bKwDdk7Z5ljfZg0uFRFlfQaCy9tZ4YMAag9WAZmlVpe1iZrkIMMSMHD3w==", - "dev": true - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true - }, - "lodash._root": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", - "integrity": "sha512-O0pWuFSK6x4EXhM1dhZ8gchNtG7JMqBtrHdoUFUWXD7dJnNSUze1GuyQr5sOs0aCvgGeI3o/OJW8f4ca7FDxmQ==", - "dev": true - }, - "lodash.assign": { + "node_modules/lodash.assign": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", "integrity": "sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==", "dev": true }, - "lodash.camelcase": { + "node_modules/lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", "dev": true }, - "lodash.escape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", - "integrity": "sha512-n1PZMXgaaDWZDSvuNZ/8XOcYO2hOKDqZel5adtR30VKQAtoWs/5AOeFA0vPV8moiPzlqe7F4cP2tzpFewQyelQ==", - "dev": true, - "requires": { - "lodash._root": "^3.0.0" - } - }, - "lodash.get": { + "node_modules/lodash.get": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==" }, - "lodash.includes": { + "node_modules/lodash.includes": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==", "dev": true }, - "lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==", - "dev": true - }, - "lodash.isarray": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", - "integrity": "sha512-JwObCrNJuT0Nnbuecmqr5DgtuBppuCvGD9lxjFpAzwnVtdGoDQ1zig+5W8k5/6Gcn0gZ3936HDAlGd28i7sOGQ==", - "dev": true - }, - "lodash.isboolean": { + "node_modules/lodash.isboolean": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", "dev": true }, - "lodash.isequal": { + "node_modules/lodash.isequal": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" }, - "lodash.isinteger": { + "node_modules/lodash.isinteger": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==", "dev": true }, - "lodash.isnumber": { + "node_modules/lodash.isnumber": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", "dev": true }, - "lodash.isplainobject": { + "node_modules/lodash.isplainobject": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", "dev": true }, - "lodash.isstring": { + "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", "dev": true }, - "lodash.keys": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", - "integrity": "sha512-CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ==", - "dev": true, - "requires": { - "lodash._getnative": "^3.0.0", - "lodash.isarguments": "^3.0.0", - "lodash.isarray": "^3.0.0" - } - }, - "lodash.memoize": { + "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true }, - "lodash.merge": { + "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, - "lodash.omit": { + "node_modules/lodash.omit": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", - "integrity": "sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA=" + "integrity": "sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==" }, - "lodash.once": { + "node_modules/lodash.once": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", "dev": true }, - "lodash.restparam": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", - "integrity": "sha512-L4/arjjuq4noiUJpt3yS6KIKDtJwNe2fIYgMqyYYKoeIfV1iEqvPwhCx23o+R9dzouGihDAPN1dTIRWa7zk8tw==", - "dev": true - }, - "lodash.sortby": { + "node_modules/lodash.sortby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", "dev": true }, - "lodash.template": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", - "integrity": "sha512-0B4Y53I0OgHUJkt+7RmlDFWKjVAI/YUpWNiL9GQz5ORDr4ttgfQGo+phBWKFLJbBdtOwgMuUkdOHOnPg45jKmQ==", - "dev": true, - "requires": { - "lodash._basecopy": "^3.0.0", - "lodash._basetostring": "^3.0.0", - "lodash._basevalues": "^3.0.0", - "lodash._isiterateecall": "^3.0.0", - "lodash._reinterpolate": "^3.0.0", - "lodash.escape": "^3.0.0", - "lodash.keys": "^3.0.0", - "lodash.restparam": "^3.0.0", - "lodash.templatesettings": "^3.0.0" - } - }, - "lodash.templatesettings": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", - "integrity": "sha512-TcrlEr31tDYnWkHFWDCV3dHYroKEXpJZ2YJYvJdhN+y4AkWMDZ5I4I8XDtUKqSAyG81N7w+I1mFEJtcED+tGqQ==", - "dev": true, - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.escape": "^3.0.0" - } - }, - "lodash.uniq": { + "node_modules/lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, - "log-symbols": { + "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, - "requires": { + "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "loglevel": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz", - "integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==", - "dev": true + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } }, - "lolex": { + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lolex": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/lolex/-/lolex-5.1.2.tgz", "integrity": "sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==", "dev": true, - "requires": { + "dependencies": { "@sinonjs/commons": "^1.7.0" } }, - "loose-envify": { + "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { + "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" } }, - "lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", - "dev": true + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } }, - "lowercase-keys": { + "node_modules/lowercase-keys": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "requires": { - "yallist": "^4.0.0" + "engines": { + "node": ">=0.10.0" } }, - "magic-string": { - "version": "0.30.4", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.4.tgz", - "integrity": "sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==", - "dev": true, - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.15" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } + "yallist": "^3.0.2" } }, - "make-iterator": { + "node_modules/magic-string": { + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-iterator": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "makeerror": { + "node_modules/make-iterator/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, - "requires": { + "dependencies": { "tmpl": "1.0.5" } }, - "map-age-cleaner": { + "node_modules/map-age-cleaner": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", "dev": true, - "requires": { + "dependencies": { "p-defer": "^1.0.0" + }, + "engines": { + "node": ">=6" } }, - "map-cache": { + "node_modules/map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "map-obj": { + "node_modules/map-obj": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "map-stream": { + "node_modules/map-stream": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", "integrity": "sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==", "dev": true }, - "map-visit": { + "node_modules/map-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", "dev": true, - "requires": { + "dependencies": { "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "markdown-to-jsx": { + "node_modules/markdown-it": { + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "dependencies": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/markdown-it/node_modules/entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/markdown-to-jsx": { "version": "6.11.4", "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz", "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", - "requires": { + "dependencies": { "prop-types": "^15.6.2", "unquote": "^1.1.0" + }, + "engines": { + "node": ">= 4" + }, + "peerDependencies": { + "react": ">= 0.14.0" } }, - "matchdep": { + "node_modules/matchdep": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", - "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", "dev": true, - "requires": { + "dependencies": { "findup-sync": "^2.0.0", "micromatch": "^3.0.4", "resolve": "^1.4.0", "stack-trace": "0.0.10" }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", - "dev": true, - "requires": { - "detect-file": "^1.0.0", - "is-glob": "^3.1.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - } - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } + "engines": { + "node": ">= 0.10.0" } }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "node_modules/matchdep/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "engines": { + "node": ">=0.10.0" } }, - "mdn-data": { + "node_modules/matchdep/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/braces/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/fill-range/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/matchdep/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/matchdep/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" }, - "media-typer": { + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" + }, + "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "mem": { + "node_modules/mem": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/mem/-/mem-8.1.1.tgz", "integrity": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==", "dev": true, - "requires": { + "dependencies": { "map-age-cleaner": "^0.1.3", "mimic-fn": "^3.1.0" }, - "dependencies": { - "mimic-fn": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", - "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", - "dev": true - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/mem?sponsor=1" } }, - "memfs": { + "node_modules/memfs": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.3.tgz", "integrity": "sha512-eivjfi7Ahr6eQTn44nvTnR60e4a1Fs1Via2kCR5lHo/kyNoiMWaXCNJ/GpSd0ilXas2JSOl9B5FTIhflXu0hlg==", "dev": true, - "requires": { + "dependencies": { "fs-monkey": "1.0.3" + }, + "engines": { + "node": ">= 4.0.0" } }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "meow": { + "node_modules/meow": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, - "requires": { + "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", "decamelize": "^1.2.0", @@ -19848,409 +27618,427 @@ "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" }, - "dependencies": { - "hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "requires": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - } - }, - "type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "merge-descriptors": { + "node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, - "merge-stream": { + "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, - "merge2": { + "node_modules/merge2": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.0.3.tgz", "integrity": "sha512-KgI4P7MSM31MNBftGJ07WBsLYLx7z9mQsL6+bcHk80AdmUA3cPzX69MK6dSgEgSF9TXLOl040pgo0XP/VTMENA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10" + } }, - "methods": { + "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "engines": { + "node": ">= 0.6" } }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", - "dev": true + "node_modules/mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } }, - "mime-db": { + "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "mime-types": { + "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, - "requires": { + "dependencies": { "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" } }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true + "node_modules/mimic-fn": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz", + "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "mimic-response": { + "node_modules/mimic-response": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "min-indent": { + "node_modules/min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "minimalistic-assert": { + "node_modules/minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { + "node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dev": true, + "dependencies": { "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "minimist-options": { + "node_modules/minimist-options": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, - "requires": { + "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", "kind-of": "^6.0.3" }, - "dependencies": { - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true - } + "engines": { + "node": ">= 6" } }, - "minipass": { + "node_modules/minimist-options/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/minipass": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, - "requires": { + "dependencies": { "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } + "node_modules/minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minizlib": { + "node_modules/minizlib": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, - "requires": { + "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" } }, - "mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "dev": true, - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "mixin-deep": { + "node_modules/mixin-deep": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, - "requires": { + "dependencies": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" } }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" + "node_modules/moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", + "engines": { + "node": "*" } }, - "moment": { - "version": "2.29.2", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.2.tgz", - "integrity": "sha512-UgzG4rvxYpN15jgCmVJwac49h9ly9NurikMWGPdVxm8GZD6XjkKPxDTjQQ43gtGgnV3X0cAyWDdP2Wexoquifg==" + "node_modules/monaco-editor": { + "version": "0.29.1", + "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.29.1.tgz", + "integrity": "sha512-rguaEG/zrPQSaKzQB7IfX/PpNa0qxF1FY8ZXRkN4WIl8qZdTQRSRJCtRto7IMcSgrU6H53RXI+fTcywOBC4aVw==" }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/msalBrowserLegacy": { + "name": "@azure/msal-browser", + "version": "2.22.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.22.0.tgz", + "integrity": "sha512-ZpnbnzjYGRGHjWDPOLjSp47CQvhK927+W9avtLoNNCMudqs2dBfwj76lnJwObDE7TAKmCUueTiieglBiPb1mgQ==", + "deprecated": "A newer major version of this library is available. Please upgrade to the latest available version.", + "dependencies": { + "@azure/msal-common": "^6.1.0" + }, + "engines": { + "node": ">=0.8.0" } }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "node_modules/msalBrowserLegacy/node_modules/@azure/msal-common": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-6.4.0.tgz", + "integrity": "sha512-WZdgq9f9O8cbxGzdRwLLMM5xjmLJ2mdtuzgXeiGxIRkVVlJ9nZ6sWnDFKa2TX8j72UXD1IfL0p/RYNoTXYoGfg==", + "engines": { + "node": ">=0.8.0" + } }, - "msal": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.13.tgz", - "integrity": "sha512-uFEa4KGlpGqNMwa7/1OQc6WQUF8iwHbaiHMVn0Cl66Ec7o30ZTtX9s9OWrf0wAxp8Mwg0JEE886z/PHpsiZUxQ==", - "requires": { + "node_modules/msalLegacy": { + "name": "msal", + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.12.tgz", + "integrity": "sha512-gjupwQ6nvNL6mZkl5NIXyUmZhTiEMRu5giNdgHMh8l5EPOnV2Xj6nukY1NIxFacSTkEYUSDB47Pej9GxDYf+1w==", + "deprecated": "This package is no longer supported. Please use @azure/msal-browser instead.", + "dependencies": { "tslib": "^1.9.3" + }, + "engines": { + "node": ">=0.8.0" } }, - "multicast-dns": { + "node_modules/msalLegacy/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/multicast-dns": { "version": "7.2.5", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, - "requires": { + "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" } }, - "multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", - "dev": true - }, - "multimatch": { + "node_modules/multimatch": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", "dev": true, - "requires": { + "dependencies": { "@types/minimatch": "^3.0.3", "array-differ": "^3.0.0", "array-union": "^2.1.0", "arrify": "^2.0.1", "minimatch": "^3.0.4" }, - "dependencies": { - "array-differ": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", - "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", - "dev": true - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "arrify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", - "dev": true - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "multipipe": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", - "integrity": "sha512-7ZxrUybYv9NonoXgwoOqtStIu18D1c3eFZj27hqgf5kBrBF8Q+tE8V0MW8dKM5QLkQPh1JhhbKgHLY9kifov4Q==", + "node_modules/multimatch/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, - "requires": { - "duplexer2": "0.0.2" + "engines": { + "node": ">=8" } }, - "mute-stdout": { + "node_modules/multimatch/node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/mute-stdout": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "mute-stream": { + "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "mz": { + "node_modules/mz": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", "dev": true, - "requires": { + "dependencies": { "any-promise": "^1.0.0", "object-assign": "^4.0.1", "thenify-all": "^1.0.0" } }, - "nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "node_modules/nan": { + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.20.0.tgz", + "integrity": "sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==", "dev": true, "optional": true }, - "nanocolors": { + "node_modules/nano-css": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/nano-css/-/nano-css-5.6.2.tgz", + "integrity": "sha512-+6bHaC8dSDGALM1HJjOHVXpuastdu2xFoZlC77Jh4cg+33Zcgm+Gxd+1xsnpZK14eyHObSp82+ll5y3SX75liw==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15", + "css-tree": "^1.1.2", + "csstype": "^3.1.2", + "fastest-stable-stringify": "^2.0.2", + "inline-style-prefixer": "^7.0.1", + "rtl-css-js": "^1.16.1", + "stacktrace-js": "^2.0.2", + "stylis": "^4.3.0" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/nanocolors": { "version": "0.2.13", "resolved": "https://registry.npmjs.org/nanocolors/-/nanocolors-0.2.13.tgz", "integrity": "sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==", "dev": true }, - "nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "dev": true + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } }, - "nanomatch": { + "node_modules/nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, - "requires": { + "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", "define-property": "^2.0.2", @@ -20262,208 +28050,277 @@ "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "natural-compare": { + "node_modules/nanomatch/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "negotiator": { + "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "neo-async": { + "node_modules/neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, - "nice-try": { + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "node_modules/nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, - "no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, - "requires": { - "lower-case": "^1.1.1" + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "node-emoji": { + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "dev": true + }, + "node_modules/node-emoji": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", "dev": true, - "requires": { - "lodash": "^4.17.21" - }, "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "lodash": "^4.17.21" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true } } }, - "node-fetch": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "requires": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "node-forge": { + "node_modules/node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 6.13.0" + } }, - "node-int64": { + "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dev": true, - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", - "dev": true - } - } - }, - "node-notifier": { + "node_modules/node-notifier": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-10.0.1.tgz", "integrity": "sha512-YX7TSyDukOZ0g+gmzjB6abKu+hTGvO8+8+gIFDsRCU2t8fLV/P2unmt+LGFaIa4y64aX98Qksa97rgz4vMNeLQ==", "dev": true, - "requires": { + "dependencies": { "growly": "^1.3.0", "is-wsl": "^2.2.0", "semver": "^7.3.5", "shellwords": "^0.1.1", "uuid": "^8.3.2", "which": "^2.0.2" - }, - "dependencies": { - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true - } } }, - "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "node_modules/node-notifier/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", "dev": true }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", "validate-npm-package-license": "^3.0.1" }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } + "engines": { + "node": ">=10" } }, - "normalize-path": { + "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "normalize-range": { + "node_modules/normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "normalize-url": { + "node_modules/normalize-url": { "version": "4.5.1", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "now-and-later": { + "node_modules/now-and-later": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", "dev": true, - "requires": { + "dependencies": { "once": "^1.3.2" + }, + "engines": { + "node": ">= 0.10" } }, - "npm-bundled": { + "node_modules/npm-bundled": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", "dev": true, - "requires": { + "dependencies": { "npm-normalize-package-bin": "^1.0.1" } }, - "npm-check": { + "node_modules/npm-check": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/npm-check/-/npm-check-6.0.1.tgz", "integrity": "sha512-tlEhXU3689VLUHYEZTS/BC61vfeN2xSSZwoWDT6WLuenZTpDmGmNT5mtl15erTR0/A15ldK06/NEKg9jYJ9OTQ==", "dev": true, - "requires": { + "dependencies": { "callsite-record": "^4.1.3", "chalk": "^4.1.0", "co": "^4.6.0", @@ -20492,522 +28349,671 @@ "update-notifier": "^5.1.0", "xtend": "^4.0.2" }, - "dependencies": { - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "requires": { - "global-prefix": "^3.0.0" - } - }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", - "dev": true, - "requires": { - "find-up": "^5.0.0" - } - }, - "throat": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", - "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "bin": { + "npm-check": "bin/cli.js" + }, + "engines": { + "node": ">=10.9.0" } }, - "npm-normalize-package-bin": { + "node_modules/npm-check/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-check/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/npm-check/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/npm-check/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/npm-check/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm-check/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm-check/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/pkg-dir": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "dev": true, + "dependencies": { + "find-up": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-check/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-check/node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==", + "dev": true + }, + "node_modules/npm-normalize-package-bin": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", "dev": true }, - "npm-package-arg": { + "node_modules/npm-package-arg": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.1.1.tgz", "integrity": "sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==", "dev": true, - "requires": { + "dependencies": { "hosted-git-info": "^2.7.1", "osenv": "^0.1.5", "semver": "^5.6.0", "validate-npm-package-name": "^3.0.0" - }, - "dependencies": { - "semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true - } } }, - "npm-packlist": { + "node_modules/npm-package-arg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/npm-package-arg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-packlist": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.1.5.tgz", "integrity": "sha512-KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ==", "dev": true, - "requires": { + "dependencies": { "glob": "^7.1.6", "ignore-walk": "^3.0.3", "npm-bundled": "^1.1.1", "npm-normalize-package-bin": "^1.0.1" - } - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dev": true, - "requires": { - "path-key": "^2.0.0" }, - "dependencies": { - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true - } + "bin": { + "npm-packlist": "bin/index.js" + }, + "engines": { + "node": ">=10" } }, - "nth-check": { + "node_modules/npm-packlist/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm-packlist/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, - "requires": { + "dependencies": { "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "num2fraction": { + "node_modules/num2fraction": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==", "dev": true }, - "number-is-nan": { + "node_modules/number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nwsapi": { + "version": "2.2.13", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz", + "integrity": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==", "dev": true }, - "nwsapi": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", - "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", - "dev": true - }, - "oauth-sign": { + "node_modules/oauth-sign": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true + "dev": true, + "engines": { + "node": "*" + } }, - "object-assign": { + "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } }, - "object-copy": { + "node_modules/object-copy": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", "dev": true, - "requires": { + "dependencies": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", "kind-of": "^3.0.3" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "object-inspect": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", - "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", - "dev": true - }, - "object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object-keys": { + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } }, - "object-visit": { + "node_modules/object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", "dev": true, - "requires": { + "dependencies": { "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.defaults": { + "node_modules/object.defaults": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", "dev": true, - "requires": { + "dependencies": { "array-each": "^1.0.1", "array-slice": "^1.0.0", "for-own": "^1.0.0", "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" } }, - "object.fromentries": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.map": { + "node_modules/object.hasown": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.4.tgz", + "integrity": "sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.map": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", "dev": true, - "requires": { + "dependencies": { "for-own": "^1.0.0", "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.pick": { + "node_modules/object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", "dev": true, - "requires": { + "dependencies": { "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.reduce": { + "node_modules/object.reduce": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", - "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", "dev": true, - "requires": { + "dependencies": { "for-own": "^1.0.0", "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "obuf": { + "node_modules/obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "dev": true }, - "office-ui-fabric-core": { - "version": "9.6.1-fluent2", - "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-9.6.1-fluent2.tgz", - "integrity": "sha512-gcBs5HHr7tjkvk/+Ls10ttb3jEllRn7SvJitX/kx/gQq8BiFMSMKr1w+oNqXlh4EgkBHWUlJVPrYUu1KW/jVaQ==" + "node_modules/office-ui-fabric-core": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.1.tgz", + "integrity": "sha512-jcfycbVOm2aUoI+AGtHW24HvM7nUVFr44hR5NIE56EobK67bVwbNAQL15CJj3vNz5PBrnitsV9ROOB+KOEWn8g==" }, - "office-ui-fabric-react": { - "version": "7.174.1", - "resolved": "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.174.1.tgz", - "integrity": "sha512-zRUpUqZtVncvb+Tt+5SVNEcI3MfpwTLU+v2u7ZdF9ukPbD+UBKJSkIbydyO0P2S5jVizgdqioSOarfUA70ICvw==", - "requires": { - "@fluentui/date-time-utilities": "^7.9.1", - "@fluentui/react-focus": "^7.17.6", - "@fluentui/react-window-provider": "^1.0.2", - "@microsoft/load-themed-styles": "^1.10.26", - "@uifabric/foundation": "^7.9.26", - "@uifabric/icons": "^7.5.23", - "@uifabric/merge-styles": "^7.19.2", - "@uifabric/react-hooks": "^7.14.0", - "@uifabric/set-version": "^7.0.24", - "@uifabric/styling": "^7.19.0", - "@uifabric/utilities": "^7.33.5", - "prop-types": "^15.7.2", - "tslib": "^1.10.0" - } - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, - "requires": { + "dependencies": { "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "on-headers": { + "node_modules/on-headers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "once": { + "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { "wrappy": "1" } }, - "onetime": { + "node_modules/onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "requires": { + "dependencies": { "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "open": { + "node_modules/onetime/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/open": { "version": "8.4.2", "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, - "requires": { + "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" - } - }, - "opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "dev": true, - "requires": { - "is-wsl": "^1.1.0" }, - "dependencies": { - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", - "dev": true - } + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, - "requires": { + "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" } }, - "ora": { + "node_modules/ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, - "requires": { + "dependencies": { "bl": "^4.1.0", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", @@ -21017,1361 +29023,1252 @@ "log-symbols": "^4.1.0", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "orchestrator": { + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/orchestrator": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", "integrity": "sha512-DrQ43ngaJ0e36j2CHyoDoIg1K4zbc78GnTQESebK9vu6hj4W5/pvfSFO/kgM620Yd0YnhseSNYsLK3/SszZ5NQ==", "dev": true, - "requires": { + "dependencies": { "end-of-stream": "~0.1.5", "sequencify": "~0.0.7", "stream-consume": "~0.1.0" - }, - "dependencies": { - "end-of-stream": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", - "integrity": "sha512-go5TQkd0YRXYhX+Lc3UrXkoKU5j+m72jEP5lHWr2Nh82L8wfZtH8toKgcg4T10o23ELIMGXQdwCbl+qAXIPDrw==", - "dev": true, - "requires": { - "once": "~1.3.0" - } - }, - "once": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", - "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==", - "dev": true, - "requires": { - "wrappy": "1" - } - } } }, - "ordered-read-streams": { + "node_modules/orchestrator/node_modules/end-of-stream": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", + "integrity": "sha512-go5TQkd0YRXYhX+Lc3UrXkoKU5j+m72jEP5lHWr2Nh82L8wfZtH8toKgcg4T10o23ELIMGXQdwCbl+qAXIPDrw==", + "dev": true, + "dependencies": { + "once": "~1.3.0" + } + }, + "node_modules/orchestrator/node_modules/once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/ordered-read-streams": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", "dev": true, - "requires": { + "dependencies": { "readable-stream": "^2.0.1" } }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", - "dev": true - }, - "os-homedir": { + "node_modules/os-homedir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", - "dev": true - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "dev": true, - "requires": { - "lcid": "^1.0.0" + "engines": { + "node": ">=0.10.0" } }, - "os-tmpdir": { + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dev": true, + "dependencies": { + "lcid": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "osenv": { + "node_modules/osenv": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "deprecated": "This package is no longer supported.", "dev": true, - "requires": { + "dependencies": { "os-homedir": "^1.0.0", "os-tmpdir": "^1.0.0" } }, - "p-cancelable": { + "node_modules/p-cancelable": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "p-defer": { + "node_modules/p-defer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "p-each-series": { + "node_modules/p-each-series": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true + "node_modules/p-finally": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "p-limit": { + "node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "requires": { + "dependencies": { "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-locate": { + "node_modules/p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "requires": { + "dependencies": { "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "p-map": { + "node_modules/p-map": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", "dev": true, - "requires": { + "dependencies": { "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-reflect": { + "node_modules/p-reflect": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/p-reflect/-/p-reflect-2.1.0.tgz", "integrity": "sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg==", - "dev": true - }, - "p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "dev": true, - "requires": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" + "engines": { + "node": ">=8" } }, - "p-settle": { + "node_modules/p-retry": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.0.tgz", + "integrity": "sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==", + "dev": true, + "dependencies": { + "@types/retry": "0.12.2", + "is-network-error": "^1.0.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-settle": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/p-settle/-/p-settle-4.1.1.tgz", "integrity": "sha512-6THGh13mt3gypcNMm0ADqVNCcYa3BK6DWsuJWFCuEKP1rpY+OKGp7gaZwVmLspmic01+fsg/fN57MfvDzZ/PuQ==", "dev": true, - "requires": { + "dependencies": { "p-limit": "^2.2.2", "p-reflect": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-try": { + "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "package-json": { + "node_modules/package-json": { "version": "6.5.0", "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", "dev": true, - "requires": { + "dependencies": { "got": "^9.6.0", "registry-auth-token": "^4.0.0", "registry-url": "^5.0.0", "semver": "^6.2.0" }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "paginator": { + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true + }, + "node_modules/package-json/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/paginator": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/paginator/-/paginator-1.0.0.tgz", - "integrity": "sha1-dWVwKvmrlhbcph/CLHDroqQ1cmU=" + "integrity": "sha512-j2Y5AtF/NrXOEU9VVOQBGHnj81NveRQ/cDzySywqsWrAj+cxivMpMCkYJOds3ulQiDU4rQBWc0WoyyXMXOmuMA==" }, - "pako": { + "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", "dev": true }, - "parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, - "requires": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "param-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", - "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", - "dev": true, - "requires": { - "no-case": "^2.2.0" - } - }, - "parchment": { + "node_modules/parchment": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" }, - "parent-module": { + "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "requires": { + "dependencies": { "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dev": true, - "requires": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "parse-filepath": { + "node_modules/parse-filepath": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", "dev": true, - "requires": { + "dependencies": { "is-absolute": "^1.0.0", "map-cache": "^0.2.0", "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" } }, - "parse-json": { + "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "requires": { + "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "parse-node-version": { + "node_modules/parse-node-version": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "parse-passwd": { + "node_modules/parse-passwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", - "dev": true + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "parse5": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", - "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==", - "dev": true + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } }, - "parseurl": { + "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "pascalcase": { + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", - "dev": true - }, - "path-dirname": { + "node_modules/path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", "dev": true }, - "path-exists": { + "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "path-is-absolute": { + "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } }, - "path-is-inside": { + "node_modules/path-is-inside": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", "dev": true }, - "path-key": { + "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", "dev": true, - "requires": { - "path-root-regex": "^0.1.0" + "engines": { + "node": ">=8" } }, - "path-root-regex": { + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "dependencies": { + "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-root-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true }, - "path-to-regexp": { + "node_modules/path-scurry/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "engines": { + "node": ">=8" } }, - "pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dev": true, - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "performance-now": { + "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "dev": true }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "node_modules/picocolors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", "dev": true }, - "picomatch": { + "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } }, - "pidof": { + "node_modules/pidof": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pidof/-/pidof-1.0.2.tgz", "integrity": "sha512-LLJhTVEUCZnotdAM5rd7KiTdLGgk6i763/hsd5pO+8yuF7mdgg0ob8w/98KrTAcPsj6YzGrkFLPVtBOr1uW2ag==", - "dev": true - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", "dev": true, - "requires": { - "pinkie": "^2.0.0" + "engines": { + "node": "*" } }, - "pirates": { + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 6" + } }, - "pkg-conf": { + "node_modules/pkg-conf": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-1.1.3.tgz", "integrity": "sha512-9hHgE5+Xai/ChrnahNP8Ke0VNF/s41IZIB/d24eMHEaRamdPg+wwlRm2lTb5wMvE8eTIKrYZsrxfuOwt3dpsIQ==", "dev": true, - "requires": { + "dependencies": { "find-up": "^1.0.0", "load-json-file": "^1.1.0", "object-assign": "^4.0.1", "symbol": "^0.2.1" }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - } + "engines": { + "node": ">=0.10.0" } }, - "pkg-dir": { + "node_modules/pkg-conf/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-conf/node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-conf/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-conf/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, - "requires": { + "dependencies": { "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "please-upgrade-node": { + "node_modules/please-upgrade-node": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", "dev": true, - "requires": { + "dependencies": { "semver-compare": "^1.0.0" } }, - "pn": { + "node_modules/plugin-error": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", + "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", + "dev": true, + "dependencies": { + "ansi-cyan": "^0.1.1", + "ansi-red": "^0.1.1", + "arr-diff": "^1.0.1", + "arr-union": "^2.0.1", + "extend-shallow": "^1.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pn": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", "dev": true }, - "portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "node_modules/pnpm-sync-lib": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pnpm-sync-lib/-/pnpm-sync-lib-0.2.9.tgz", + "integrity": "sha512-qd2/crPxmpEXAWHlotOQfxQZ3a1fZIG4u73CiSPwPYDtd7Ithx7O3gtqzQb/0LXDEvk1NpL7u4xf7yEiUCqg3Q==", "dev": true, - "requires": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" - }, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "requires": { - "minimist": "^1.2.6" - } - } + "@pnpm/dependency-path": "2.1.8", + "yaml": "2.4.1" } }, - "posix-character-classes": { + "node_modules/pnpm-sync-lib/node_modules/yaml": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz", + "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true - }, - "postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "engines": { + "node": ">=0.10.0" } }, - "postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" + "engines": { + "node": ">= 0.4" } }, - "postcss-colormin": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", - "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "node_modules/postcss": { + "version": "7.0.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.38.tgz", + "integrity": "sha512-wNrSHWjHDQJR/IZL5IKGxRtFgrYNaAA/UrkW2WqbtZO6uxSLMxMN+s2iqUMwnAWm3fMROlDYZB41dr0Mt7vBwQ==", "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "dev": true - }, - "postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "dev": true - }, - "postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "dev": true - }, - "postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", - "dev": true - }, - "postcss-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz", - "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", - "dev": true, - "requires": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0", - "semver": "^7.3.4" - }, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } + "nanocolors": "^0.2.2", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-loader": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-8.1.1.tgz", + "integrity": "sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==", + "dev": true, + "dependencies": { + "cosmiconfig": "^9.0.0", + "jiti": "^1.20.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } + "webpack": { + "optional": true } } }, - "postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "node_modules/postcss-loader/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/postcss-loader/node_modules/cosmiconfig": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" + "dependencies": { + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "postcss-merge-rules": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", - "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "node_modules/postcss-loader/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "node_modules/postcss-loader/node_modules/typescript": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", + "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", "dev": true, - "requires": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "optional": true, + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" } }, - "postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-modules": { + "node_modules/postcss-modules": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-1.5.0.tgz", "integrity": "sha512-KiAihzcV0TxTTNA5OXreyIXctuHOfR50WIhqBpc8pe0Q5dcs/Uap9EVlifOI9am7zGGdGOJQ6B1MPYKo2UxgOg==", "dev": true, - "requires": { + "dependencies": { "css-modules-loader-core": "^1.1.0", "generic-names": "^2.0.1", "lodash.camelcase": "^4.3.0", "postcss": "^7.0.1", "string-hash": "^1.1.1" - }, + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", - "dev": true - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dev": true, - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "postcss-modules-extract-imports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz", - "integrity": "sha512-zF9+UIEvtpeqMGxhpeT9XaIevQSrBBCz9fi7SwfkmjVacsSj8DY5eFVgn+wY8I9vvdDDwK5xC8Myq4UkoLFIkA==", - "dev": true, - "requires": { - "postcss": "^6.0.1" + "postcss": "^7.0.5" }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "engines": { + "node": ">= 6" } }, - "postcss-modules-local-by-default": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", - "integrity": "sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==", + "node_modules/postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", "dev": true, - "requires": { - "css-selector-tokenizer": "^0.7.0", - "postcss": "^6.0.1" + "dependencies": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "engines": { + "node": ">= 6" } }, - "postcss-modules-scope": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", - "integrity": "sha512-LTYwnA4C1He1BKZXIx1CYiHixdSe9LWYVKadq9lK5aCCMkoOkFyZ7aigt+srfjlRplJY3gIol6KUNefdMQJdlw==", + "node_modules/postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", "dev": true, - "requires": { - "css-selector-tokenizer": "^0.7.0", - "postcss": "^6.0.1" + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" } }, - "postcss-modules-values": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", - "integrity": "sha512-i7IFaR9hlQ6/0UgFuqM6YWaCfA1Ej8WMg8A5DggnH1UGKJvTV/ugqq/KaULixzzOi3T/tF6ClBXcHGCzdd5unA==", + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, - "requires": { - "icss-replace-symbols": "^1.1.0", - "postcss": "^6.0.1" - }, "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "dev": true - }, - "postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", - "dev": true, - "requires": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" - }, - "dependencies": { - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true - } - } - }, - "postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "dev": true, - "requires": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-reduce-initial": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", - "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" - } - }, - "postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dev": true, - "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" } }, - "postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - } - }, - "postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-value-parser": { + "node_modules/postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, - "preferred-pm": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.2.tgz", - "integrity": "sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==", + "node_modules/preferred-pm": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.4.tgz", + "integrity": "sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==", "dev": true, - "requires": { + "dependencies": { "find-up": "^5.0.0", "find-yarn-workspace-root2": "1.2.16", "path-exists": "^4.0.0", - "which-pm": "2.0.0" + "which-pm": "^2.2.0" }, - "dependencies": { - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - } + "engines": { + "node": ">=10" } }, - "prelude-ls": { + "node_modules/preferred-pm/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/preferred-pm/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/preferred-pm/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/preferred-pm/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8.0" + } }, - "prepend-http": { + "node_modules/prepend-http": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "pretty-format": { + "node_modules/pretty-format": { "version": "25.5.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz", "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==", "dev": true, - "requires": { + "dependencies": { "@jest/types": "^25.5.0", "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^16.12.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - } + "engines": { + "node": ">= 8.3" } }, - "pretty-hrtime": { + "node_modules/pretty-format/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, + "node_modules/pretty-hrtime": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", - "dev": true + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "private": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "dev": true - }, - "process": { + "node_modules/process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.6.0" + } }, - "process-nextick-args": { + "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "prompts": { + "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, - "requires": { + "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" } }, - "prop-types": { - "version": "15.8.0", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.0.tgz", - "integrity": "sha512-fDGekdaHh65eI3lMi5OnErU6a8Ighg2KjcjQxO7m8VHyWjcPyj5kiOgV1LQDOOOgVy3+5FgjXvdSSX7B8/5/4g==", - "requires": { + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, - "proxy-addr": { + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, - "requires": { + "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" } }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true - }, - "pseudolocale": { + "node_modules/pseudolocale": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/pseudolocale/-/pseudolocale-1.1.0.tgz", "integrity": "sha512-OZ8I/hwYEJ3beN3IEcNnt8EpcqblH0/x23hulKBXjs+WhTTEle+ijCHCkh2bd+cIIeCuCwSCbBe93IthGG6hLw==", "dev": true, - "requires": { + "dependencies": { "commander": "*" } }, - "psl": { + "node_modules/psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "dev": true }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "node_modules/pump": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", "dev": true, - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - }, "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "dev": true - } - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, - "pumpify": { + "node_modules/pumpify": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", "dev": true, - "requires": { + "dependencies": { "duplexify": "^3.6.0", "inherits": "^2.0.3", "pump": "^2.0.0" - }, - "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } } }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } }, - "pupa": { + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pupa": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", "dev": true, - "requires": { + "dependencies": { "escape-goat": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "dev": true + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", - "dev": true - }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "queue-microtask": { + "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "quick-lru": { + "node_modules/quick-lru": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "quill": { + "node_modules/quill": { "version": "1.3.7", "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz", "integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==", - "requires": { + "dependencies": { "clone": "^2.1.1", "deep-equal": "^1.0.1", "eventemitter3": "^2.0.3", @@ -22380,209 +30277,177 @@ "quill-delta": "^3.6.2" } }, - "quill-delta": { + "node_modules/quill-delta": { "version": "3.6.3", "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", - "requires": { + "dependencies": { "deep-equal": "^1.0.1", "extend": "^3.0.2", "fast-diff": "1.1.2" + }, + "engines": { + "node": ">=0.10" } }, - "ramda": { + "node_modules/ramda": { "version": "0.27.2", "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.2.tgz", "integrity": "sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==", "dev": true }, - "randombytes": { + "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, - "requires": { + "dependencies": { "safe-buffer": "^5.1.0" } }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { + "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true - }, - "raw-body": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", - "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", "dev": true, - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.3", - "iconv-lite": "0.4.23", - "unpipe": "1.0.0" - }, - "dependencies": { - "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - } + "engines": { + "node": ">= 0.6" } }, - "raw-loader": { + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-loader": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-0.5.1.tgz", - "integrity": "sha1-DD0L6u2KAclm2Xh793goElKpeao=" + "integrity": "sha512-sf7oGoLuaYAScB4VGr0tzetsYlS8EJH6qnTCfQ/WVEa89hALQ4RQfCKt5xCyPQKPDUbVUAIP1QsxAwfAjlDp7Q==" }, - "rc": { + "node_modules/rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, - "requires": { + "dependencies": { "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, - "dependencies": { - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true - } + "bin": { + "rc": "cli.js" } }, - "rc-config-loader": { + "node_modules/rc-config-loader": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.3.tgz", "integrity": "sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==", "dev": true, - "requires": { + "dependencies": { "debug": "^4.3.4", "js-yaml": "^4.1.0", "json5": "^2.2.2", "require-from-string": "^2.0.2" - }, + } + }, + "node_modules/rc-config-loader/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/rc-config-loader/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - } + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "react": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz", - "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==", - "requires": { + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "dependencies": { "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "react-accessible-accordion": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/react-accessible-accordion/-/react-accessible-accordion-3.3.5.tgz", - "integrity": "sha512-yCh3tx+jNuOPs+m58LOBFTGDEaGvM8UfuCNznr855FDAWzwV8V/ZH/TVBvgqH0npP58KrrVrHpj4jcy0EE5hEw==" + "node_modules/react-accessible-accordion": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/react-accessible-accordion/-/react-accessible-accordion-5.0.0.tgz", + "integrity": "sha512-MT2obYpTgLIIfPr9d7hEyvPB5rg8uJcHpgA83JSRlEUHvzH48+8HJPvzSs+nM+XprTugDgLfhozO5qyJpBvYRQ==", + "peerDependencies": { + "react": "^16.3.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.3.3 || ^17.0.0 || ^18.0.0" + } }, - "react-ace": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/react-ace/-/react-ace-5.8.0.tgz", - "integrity": "sha1-hy2e6LZkMA7Vq57axiNLvpCDaDY=", - "requires": { - "brace": "^0.11.0", + "node_modules/react-ace": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/react-ace/-/react-ace-10.1.0.tgz", + "integrity": "sha512-VkvUjZNhdYTuKOKQpMIZi7uzZZVgzCjM7cLYu6F64V0mejY8a2XTyPUIMszC6A4trbeMIHbK5fYFcT/wkP/8VA==", + "dependencies": { + "ace-builds": "^1.4.14", + "diff-match-patch": "^1.0.5", "lodash.get": "^4.4.2", - "lodash.isequal": "^4.1.1", - "prop-types": "^15.5.8" + "lodash.isequal": "^4.5.0", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0" } }, - "react-addons-shallow-compare": { - "version": "15.6.3", - "resolved": "https://registry.npmjs.org/react-addons-shallow-compare/-/react-addons-shallow-compare-15.6.3.tgz", - "integrity": "sha512-EDJbgKTtGRLhr3wiGDXK/+AEJ59yqGS+tKE6mue0aNXT6ZMR7VJbbzIiT6akotmHg1BLj46ElJSb+NBMp80XBg==", - "requires": { - "object-assign": "^4.1.0" - } - }, - "react-dom": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.1.tgz", - "integrity": "sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==", - "requires": { + "node_modules/react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.19.1" + "scheduler": "^0.20.1" + }, + "peerDependencies": { + "react": "17.0.1" } }, - "react-dom-factories": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz", - "integrity": "sha1-63cFxNs2+1AbOqOP91lhaqD/luA=" + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, - "react-fela": { - "version": "10.8.2", - "resolved": "https://registry.npmjs.org/react-fela/-/react-fela-10.8.2.tgz", - "integrity": "sha512-TDIuOzxwtPcMhxlR4be/s1Er5b7zS8D42QOzaZZGMJskfH1ULFSOpdlBsb32ivqacXatbGZzshHDXGV5vKNkhQ==", - "requires": { - "fela-bindings": "^10.8.2", - "fela-dom": "^10.8.2", - "prop-types": "^15.5.8" - } - }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "react-js-pagination": { + "node_modules/react-js-pagination": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/react-js-pagination/-/react-js-pagination-3.0.3.tgz", "integrity": "sha512-podyA6Rd0uxc8uQakXWXxnonoOPI6NnFOROXfc6qPKNYm44s+Bgpn0JkyflcfbHf/GFKahnL8JN8rxBHZiBskg==", - "requires": { + "dependencies": { "classnames": "^2.2.5", "fstream": "1.0.12", "paginator": "^1.0.0", @@ -22591,74 +30456,193 @@ "tar": "2.2.2" } }, - "react-quill": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/react-quill/-/react-quill-1.3.5.tgz", - "integrity": "sha512-/W/rNCW+6QpGz8yQ9tFK5Ka/h/No1RqrcOOvCIOR092OiKzRFlU2xbPEwiP3Wgy/Dx13pi1YhjReDMX/5uotJg==", - "requires": { - "@types/quill": "1.3.10", - "create-react-class": "^15.6.0", - "lodash": "^4.17.4", - "prop-types": "^15.5.10", - "quill": "^1.3.7", - "react-dom-factories": "^1.0.0" + "node_modules/react-js-pagination/node_modules/react": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "react-refresh": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", - "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", - "dev": true + "node_modules/react-js-pagination/node_modules/tar": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", + "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", + "deprecated": "This version of tar is no longer supported, and will not receive security updates. Please upgrade asap.", + "dependencies": { + "block-stream": "*", + "fstream": "^1.0.12", + "inherits": "2" + } }, - "react-refresh-typescript": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/react-refresh-typescript/-/react-refresh-typescript-2.0.6.tgz", - "integrity": "sha512-Aj7/SPmc9vFZTzizM6LVJf1UEQ76kVLb3Cd5J/bD3y25W9n+ZQjcSINoMJtOWXzCezm0apYKSE2jcl6NSa860g==", - "dev": true + "node_modules/react-mentions": { + "version": "4.4.10", + "resolved": "https://registry.npmjs.org/react-mentions/-/react-mentions-4.4.10.tgz", + "integrity": "sha512-JHiQlgF1oSZR7VYPjq32wy97z1w1oE4x10EuhKjPr4WUKhVzG1uFQhQjKqjQkbVqJrmahf+ldgBTv36NrkpKpA==", + "dependencies": { + "@babel/runtime": "7.4.5", + "invariant": "^2.2.4", + "prop-types": "^15.5.8", + "substyle": "^9.1.0" + }, + "peerDependencies": { + "react": ">=16.8.3", + "react-dom": ">=16.8.3" + } }, - "react-transition-group": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", - "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", - "requires": { + "node_modules/react-mentions/node_modules/@babel/runtime": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.4.5.tgz", + "integrity": "sha512-TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ==", + "dependencies": { + "regenerator-runtime": "^0.13.2" + } + }, + "node_modules/react-mentions/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/react-quill": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-quill/-/react-quill-2.0.0.tgz", + "integrity": "sha512-4qQtv1FtCfLgoD3PXAur5RyxuUbPXQGOHgTlFie3jtxp43mXDtzCKaOgQ3mLyZfi1PUlyjycfivKelFhy13QUg==", + "dependencies": { + "@types/quill": "^1.3.10", + "lodash": "^4.17.4", + "quill": "^1.3.7" + }, + "peerDependencies": { + "react": "^16 || ^17 || ^18", + "react-dom": "^16 || ^17 || ^18" + } + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { "@babel/runtime": "^7.5.5", "dom-helpers": "^5.0.1", "loose-envify": "^1.4.0", "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" } }, - "react-xml-parser": { + "node_modules/react-xml-parser": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/react-xml-parser/-/react-xml-parser-1.1.6.tgz", "integrity": "sha512-m/DU8CIXMJ3KvSAacgGhXYeTtfUKc8XCju/xAlncv3+uXTaOmuSpZI1z1ZTpV6PkDXre+1SJQRyRZY8N5MUp4g==" }, - "read": { + "node_modules/read": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", "dev": true, - "requires": { + "dependencies": { "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" } }, - "read-package-json": { + "node_modules/read-package-json": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-2.1.2.tgz", "integrity": "sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==", + "deprecated": "This package is no longer supported. Please use @npmcli/package-json instead.", "dev": true, - "requires": { + "dependencies": { "glob": "^7.1.1", "json-parse-even-better-errors": "^2.3.0", "normalize-package-data": "^2.0.0", "npm-normalize-package-bin": "^1.0.0" } }, - "read-package-tree": { + "node_modules/read-package-json/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/read-package-json/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-package-json/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/read-package-json/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/read-package-json/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/read-package-tree": { "version": "5.1.6", "resolved": "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz", "integrity": "sha512-FCX1aT3GWyY658wzDICef4p+n0dB+ENRct8E/Qyvppj6xVpOYerBHfUu7OP5Rt1/393Tdglguf5ju5DEX4wZNg==", + "deprecated": "The functionality that this package provided is now in @npmcli/arborist", "dev": true, - "requires": { + "dependencies": { "debuglog": "^1.0.1", "dezalgo": "^1.0.0", "once": "^1.3.0", @@ -22666,70 +30650,219 @@ "readdir-scoped-modules": "^1.0.0" } }, - "read-pkg": { + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-pkg-up/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/read-pkg-up/node_modules/read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "requires": { + "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" }, - "dependencies": { - "type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "node_modules/read-pkg-up/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, - "requires": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" + "engines": { + "node": ">=8" } }, - "read-yaml-file": { + "node_modules/read-pkg-up/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-pkg/node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/read-pkg/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/read-pkg/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-yaml-file": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-2.1.0.tgz", "integrity": "sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==", "dev": true, - "requires": { + "dependencies": { "js-yaml": "^4.0.0", "strip-bom": "^4.0.0" }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } + "engines": { + "node": ">=10.13" } }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "node_modules/read-yaml-file/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/read-yaml-file/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "requires": { + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", @@ -22739,295 +30872,271 @@ "util-deprecate": "~1.0.1" } }, - "readdir-scoped-modules": { + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/readdir-scoped-modules": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", + "deprecated": "This functionality has been moved to @npmcli/fs", "dev": true, - "requires": { + "dependencies": { "debuglog": "^1.0.1", "dezalgo": "^1.0.0", "graceful-fs": "^4.1.2", "once": "^1.3.0" } }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "node_modules/readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "realpath-native": { + "node_modules/realpath-native": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-2.0.0.tgz", "integrity": "sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q==", - "dev": true - }, - "recast": { - "version": "0.11.23", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz", - "integrity": "sha512-+nixG+3NugceyR8O1bLU45qs84JgI3+8EauyRZafLgC9XbdAOIVgwV1Pe2da0YzGo62KzWoZwUpVEQf6qNAXWA==", "dev": true, - "requires": { - "ast-types": "0.9.6", - "esprima": "~3.1.0", - "private": "~0.1.5", - "source-map": "~0.5.0" - }, - "dependencies": { - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha512-AWwVMNxwhN8+NIPQzAQZCm7RkLC4RbM3B1OobMuyp3i+w73X57KCKaVIxaRZb+DYCojq7rspo+fmuQfAboyhFg==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "rechoir": { + "node_modules/rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dev": true, - "requires": { + "dependencies": { "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" } }, - "redent": { + "node_modules/redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, - "requires": { + "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + "node_modules/reflect.getprototypeof": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "regex-not": { + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, - "requires": { + "dependencies": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "regexp.prototype.flags": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", - "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "regexpp": { + "node_modules/regexify-string": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/regexify-string/-/regexify-string-1.0.19.tgz", + "integrity": "sha512-EREOggl31J6v2Hk3ksPuOof0DMq5QhFfVQ7iDaGQ6BeA1QcrV4rhGvwCES5a72ITMmLBDAOb6cOWbn8/Ja82Ig==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } }, - "registry-auth-token": { + "node_modules/registry-auth-token": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", "dev": true, - "requires": { + "dependencies": { "rc": "1.2.8" + }, + "engines": { + "node": ">=6.0.0" } }, - "registry-url": { + "node_modules/registry-url": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", "dev": true, - "requires": { + "dependencies": { "rc": "^1.2.8" + }, + "engines": { + "node": ">=8" } }, - "relateurl": { + "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "remove-bom-buffer": { + "node_modules/remove-bom-buffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", "dev": true, - "requires": { + "dependencies": { "is-buffer": "^1.1.5", "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "remove-bom-stream": { + "node_modules/remove-bom-stream": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", "dev": true, - "requires": { + "dependencies": { "remove-bom-buffer": "^3.0.0", "safe-buffer": "^5.1.0", "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" } }, - "remove-trailing-separator": { + "node_modules/remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", "dev": true }, - "repeat-element": { + "node_modules/repeat-element": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "repeat-string": { + "node_modules/repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } }, - "replace-ext": { + "node_modules/replace-ext": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "replace-homedir": { + "node_modules/replace-homedir": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", - "integrity": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", "dev": true, - "requires": { + "dependencies": { "homedir-polyfill": "^1.0.1", "is-absolute": "^1.0.0", "remove-trailing-separator": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" } }, - "request": { + "node_modules/request": { "version": "2.88.2", "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", "dev": true, - "requires": { + "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", "caseless": "~0.12.0", @@ -23049,291 +31158,529 @@ "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" }, - "dependencies": { - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - } + "engines": { + "node": ">= 6" } }, - "request-promise-core": { + "node_modules/request-promise-core": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", "dev": true, - "requires": { + "dependencies": { "lodash": "^4.17.19" }, - "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - } + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" } }, - "request-promise-native": { + "node_modules/request-promise-native": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", "dev": true, - "requires": { + "dependencies": { "request-promise-core": "1.1.4", "stealthy-require": "^1.1.1", "tough-cookie": "^2.3.3" }, - "dependencies": { - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - } + "engines": { + "node": ">=0.12.0" + }, + "peerDependencies": { + "request": "^2.34" } }, - "require-directory": { + "node_modules/request-promise-native/node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "require-from-string": { + "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", "dev": true }, - "require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true - }, - "require-package-name": { + "node_modules/require-package-name": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==", "dev": true }, - "requirejs": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", - "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==" + "node_modules/requirejs": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.7.tgz", + "integrity": "sha512-DouTG8T1WanGok6Qjg2SXuCMzszOo0eHeH9hDZ5Y4x8Je+9JB38HdTLT4/VA8OaUhBa0JPVHJ0pyBkM1z+pDsw==", + "bin": { + "r_js": "bin/r.js", + "r.js": "bin/r.js" + }, + "engines": { + "node": ">=0.4.0" + } }, - "requires-port": { + "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, - "resolve": { + "node_modules/resolve": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", "dev": true, - "requires": { + "dependencies": { "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "resolve-cwd": { + "node_modules/resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, - "requires": { + "dependencies": { "resolve-from": "^5.0.0" }, - "dependencies": { - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "resolve-dir": { + "node_modules/resolve-dir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", "dev": true, - "requires": { + "dependencies": { "expand-tilde": "^2.0.0", "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true + "node_modules/resolve-dir/node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "resolve-options": { + "node_modules/resolve-dir/node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-options": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", "dev": true, - "requires": { + "dependencies": { "value-or-function": "^3.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "resolve-url": { + "node_modules/resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", "dev": true }, - "responselike": { + "node_modules/responselike": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", "dev": true, - "requires": { + "dependencies": { "lowercase-keys": "^1.0.0" } }, - "restore-cursor": { + "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, - "requires": { + "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" } }, - "ret": { + "node_modules/ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.12" + } }, - "retry": { + "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 4" + } }, - "reusify": { + "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rfc4648": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/rfc4648/-/rfc4648-1.5.2.tgz", - "integrity": "sha512-tLOizhR6YGovrEBLatX1sdcuhoSCXddw3mqNVAcKxGJ+J0hFeJ+SjeWCv5UPA/WU3YzWPPuCVYgXBKZUPGpKtg==", - "dev": true - }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "rsvp": { + "node_modules/rfc4648": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/rfc4648/-/rfc4648-1.5.3.tgz", + "integrity": "sha512-MjOWxM065+WswwnmNONOT+bD1nXzY9Km6u3kzvnx8F8/HXGZdz3T6e6vZJ8Q/RIMUSp/nxqjH3GwvJDy8ijeQQ==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/rsvp": { "version": "4.8.5", "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", - "dev": true + "dev": true, + "engines": { + "node": "6.* || >= 7.*" + } }, - "rtl-css-js": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/rtl-css-js/-/rtl-css-js-1.15.0.tgz", - "integrity": "sha512-99Cu4wNNIhrI10xxUaABHsdDqzalrSRTie4GeCmbGVuehm4oj+fIy8fTzB+16pmKe8Bv9rl+hxIBez6KxExTew==", - "requires": { + "node_modules/rtl-css-js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/rtl-css-js/-/rtl-css-js-1.16.1.tgz", + "integrity": "sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==", + "dependencies": { "@babel/runtime": "^7.1.2" } }, - "run-async": { + "node_modules/run-applescript": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.12.0" + } }, - "run-parallel": { + "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, - "requires": { + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { "queue-microtask": "^1.2.2" } }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", - "dev": true, - "requires": { - "aproba": "^1.1.1" - } - }, - "rxjs": { + "node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, - "requires": { + "dependencies": { "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" } }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, - "safe-json-parse": { + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-json-parse": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", "integrity": "sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==", "dev": true }, - "safe-regex": { + "node_modules/safe-regex": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", "dev": true, - "requires": { + "dependencies": { "ret": "~0.1.10" } }, - "safer-buffer": { + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true }, - "sane": { + "node_modules/sane": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added", "dev": true, - "requires": { + "dependencies": { "@cnakazawa/watch": "^1.0.3", "anymatch": "^2.0.0", "capture-exit": "^2.0.0", @@ -23344,406 +31691,630 @@ "minimist": "^1.1.1", "walker": "~1.0.5" }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" } }, - "sass": { + "node_modules/sane/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/sane/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/braces/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/sane/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sane/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sane/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/sane/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/sane/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/sane/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/sass": { "version": "1.44.0", "resolved": "https://registry.npmjs.org/sass/-/sass-1.44.0.tgz", "integrity": "sha512-0hLREbHFXGQqls/K8X+koeP+ogFRPF4ZqetVB19b7Cst9Er8cOR0rc6RU7MaI4W1JmUShd1BPgPoeqmmgMMYFw==", "dev": true, - "requires": { + "dependencies": { "chokidar": ">=3.0.0 <4.0.0", "immutable": "^4.0.0" }, - "dependencies": { - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - } - } - }, - "sass-loader": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-9.0.3.tgz", - "integrity": "sha512-fOwsP98ac1VMme+V3+o0HaaMHp8Q/C9P+MUazLFVi3Jl7ORGHQXL1XeRZt3zLSGZQQPC8xE42Y2WptItvGjDQg==", - "dev": true, - "requires": { - "klona": "^1.1.2", - "loader-utils": "^2.0.0", - "neo-async": "^2.6.2", - "schema-utils": "^2.7.0", - "semver": "^7.3.2" + "bin": { + "sass": "sass.js" }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/sass-loader": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.2.1.tgz", + "integrity": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==", + "dev": true, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true + "node-sass": { + "optional": true }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true + "sass": { + "optional": true }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true + "sass-embedded": { + "optional": true }, - "klona": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/klona/-/klona-1.1.2.tgz", - "integrity": "sha512-xf88rTeHiXk+XE2Vhi6yj8Wm3gMZrygGdKjJqN8HkV+PwF/t50/LdAKHoHpPcxFAlmQszTZ1CugrK25S7qDRLA==", - "dev": true - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } + "webpack": { + "optional": true } } }, - "sax": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", - "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==", + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", "dev": true }, - "saxes": { + "node_modules/saxes": { "version": "3.1.11", "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", "dev": true, - "requires": { + "dependencies": { "xmlchars": "^2.1.1" + }, + "engines": { + "node": ">=8" } }, - "scheduler": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", - "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", - "requires": { + "node_modules/scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1" } }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "select-hose": { + "node_modules/select": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", + "integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==" + }, + "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "dev": true }, - "selfsigned": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", - "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "dev": true, - "requires": { + "dependencies": { + "@types/node-forge": "^1.3.0", "node-forge": "^1" + }, + "engines": { + "node": ">=10" } }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, - "requires": { + "dependencies": { "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "semver-compare": { + "node_modules/semver-compare": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", "dev": true }, - "semver-diff": { + "node_modules/semver-diff": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", "dev": true, - "requires": { + "dependencies": { "semver": "^6.3.0" }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "semver-greatest-satisfied-range": { + "node_modules/semver-diff/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/semver-greatest-satisfied-range": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", - "integrity": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", "dev": true, - "requires": { + "dependencies": { "sver-compat": "^1.5.0" + }, + "engines": { + "node": ">= 0.10" } }, - "send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "requires": { + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", + "depd": "2.0.0", + "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "~1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", - "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.4.0" + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } + "engines": { + "node": ">= 0.8.0" } }, - "sequencify": { + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sequencify": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz", "integrity": "sha512-YL8BPm0tp6SlXef/VqYpA/ijmTsDP2ZEXzsnqjkaWS7NP7Bfvw18NboL0O8WCIjy67sOCG3MYSK1PB4GC9XdtQ==", - "dev": true - }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", "dev": true, - "requires": { + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { "randombytes": "^2.1.0" } }, - "serve-index": { + "node_modules/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, - "requires": { + "dependencies": { "accepts": "~1.3.4", "batch": "0.6.1", "debug": "2.6.9", @@ -23752,188 +32323,305 @@ "mime-types": "~2.1.17", "parseurl": "~1.3.2" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } + "ms": "2.0.0" } }, - "serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.2", - "send": "0.16.2" + "engines": { + "node": ">= 0.6" } }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha512-Li5AOqrZWCVA2n5kryzEmqai6bKSIvpz5oUJHPVj6+dsbD3X1ixtsY5tEnsaNpH3pFAHmG8eIHUrtEtohrg+UQ==", - "dev": true - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } + "engines": { + "node": ">= 0.6" } }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", "dev": true }, - "setprototypeof": { + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "dev": true }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "engines": { + "node": ">= 0.6" } }, - "shallow-clone": { + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha512-Li5AOqrZWCVA2n5kryzEmqai6bKSIvpz5oUJHPVj6+dsbD3X1ixtsY5tEnsaNpH3pFAHmG8eIHUrtEtohrg+UQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" } }, - "shallow-equal": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz", - "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" + "node_modules/shallow-clone/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "shebang-command": { + "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, - "requires": { + "dependencies": { "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "shebang-regex": { + "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "shell-exec": { + "node_modules/shell-exec": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/shell-exec/-/shell-exec-1.0.2.tgz", "integrity": "sha512-jyVd+kU2X+mWKMmGhx4fpWbPsjvD53k9ivqetutVW/BQ+WIZoDoP4d8vUMGezV6saZsiNoW2f9GIhg9Dondohg==", "dev": true }, - "shellwords": { + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/shellwords": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", "dev": true }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "signal-exit": { + "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "simple-swizzle": { + "node_modules/simple-swizzle": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "requires": { + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { "is-arrayish": "^0.3.1" } }, - "sisteransi": { + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, - "slash": { + "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", "dev": true, - "requires": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" + "engines": { + "node": ">=8" } }, - "snapdragon": { + "node_modules/snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, - "requires": { + "dependencies": { "base": "^0.11.1", "debug": "^2.2.0", "define-property": "^0.2.5", @@ -23943,280 +32631,238 @@ "source-map-resolve": "^0.5.0", "use": "^3.1.0" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "snapdragon-node": { + "node_modules/snapdragon-node": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, - "requires": { + "dependencies": { "define-property": "^1.0.0", "isobject": "^3.0.0", "snapdragon-util": "^3.0.1" }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "engines": { + "node": ">=0.10.0" } }, - "snapdragon-util": { + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/snapdragon-util": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, - "requires": { + "dependencies": { "kind-of": "^3.2.0" }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "engines": { + "node": ">=0.10.0" } }, - "sockjs": { + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, - "requires": { + "dependencies": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", "websocket-driver": "^0.7.4" - }, - "dependencies": { - "faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true - } } }, - "sockjs-client": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", - "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", + "node_modules/sockjs/node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, - "requires": { - "debug": "^3.2.7", - "eventsource": "^2.0.2", - "faye-websocket": "^0.11.4", - "inherits": "^2.0.4", - "url-parse": "^1.5.10" - }, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - } + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" } }, - "sort-keys": { + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/sort-css-media-queries": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-1.5.4.tgz", + "integrity": "sha512-YP5W/h4Sid/YP7Lp87ejJ5jP13/Mtqt2vx33XyhO+IAugKlufRPbOrPlIiEUuxmpNBSBd3EeeQpFhdu3RfI2Ag==", + "engines": { + "node": ">= 6.3.0" + } + }, + "node_modules/sort-keys": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", "dev": true, - "requires": { - "is-plain-obj": "^2.0.0" - } - }, - "source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true - }, - "source-map-loader": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-1.1.3.tgz", - "integrity": "sha512-6YHeF+XzDOrT/ycFJNI53cgEsp/tHTMl37hi7uVyqFAlTXW109JazaQCkbc+jjoL2637qkH1amLi+JzrIpt5lA==", - "dev": true, - "requires": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.2", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0", - "source-map": "^0.6.1", - "whatwg-mimetype": "^2.3.0" - }, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "is-plain-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "source-map-resolve": { + "node_modules/sort-keys/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.2.tgz", + "integrity": "sha512-oYwAqCuL0OZhBoSgmdrLa7mv9MjommVMiQIWgcztf+eS4+8BfcUee6nenFnDhKOhzAVnk5gpZdfnz1iiBv+5sg==", + "dev": true, + "dependencies": { + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.72.1" + } + }, + "node_modules/source-map-loader/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", "dev": true, - "requires": { + "dependencies": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", "resolve-url": "^0.2.1", @@ -24224,1430 +32870,621 @@ "urix": "^0.1.0" } }, - "source-map-support": { + "node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, - "requires": { + "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } } }, - "source-map-url": { + "node_modules/source-map-url": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", "dev": true }, - "sparkles": { + "node_modules/sparkles": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", - "dev": true - }, - "spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, - "requires": { + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "dev": true }, - "spdx-expression-parse": { + "node_modules/spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "requires": { + "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, - "spdx-license-ids": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", - "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "node_modules/spdx-license-ids": { + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", + "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", "dev": true }, - "spdy": { + "node_modules/spdy": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, - "requires": { + "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" } }, - "spdy-transport": { + "node_modules/spdy-transport": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, - "requires": { + "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", "hpack.js": "^2.1.6", "obuf": "^1.1.2", "readable-stream": "^3.0.6", "wbuf": "^1.7.3" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, - "spfx-css-modules-typescript-loader": { + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/spfx-css-modules-typescript-loader": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/spfx-css-modules-typescript-loader/-/spfx-css-modules-typescript-loader-4.0.6.tgz", "integrity": "sha512-N/wzebd4ZepUdIMDkJZgd9v4rXTtI9wQ4qfaFjnCapLoifnVdlUal+IosSW/t7LdB4vlRcBkaLsawLciKG8K8w==", "dev": true }, - "spfx-fast-serve-helpers": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/spfx-fast-serve-helpers/-/spfx-fast-serve-helpers-1.18.1.tgz", - "integrity": "sha512-v3RdzL3H/Xt6ZE0rfvQZaGGzfvdMmiRcY3U3pnW7skQJ2rXT47sfOTrVs7iIOuDzhN3TX3UBhLRVPGmxq8v7pg==", + "node_modules/spfx-fast-serve-helpers": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/spfx-fast-serve-helpers/-/spfx-fast-serve-helpers-1.20.2.tgz", + "integrity": "sha512-SwQsdjxnvoGuz9uJNi0iAEMYShjtHzLQHV5GyXxJCJ/htJ6z2zohR/3OcDBKkTwmQkMCIc6W1MYU5Snt1lQ0EA==", "dev": true, - "requires": { - "@microsoft/loader-load-themed-styles": "2.0.45", - "@microsoft/spfx-heft-plugins": "1.18.0", - "@pmmmwh/react-refresh-webpack-plugin": "0.5.7", - "@types/copy-webpack-plugin": "6.4.3", - "@types/cross-spawn": "6.0.3", - "@types/loader-utils": "2.0.2", - "@types/webpack-dev-server": "3.11.4", - "@types/yargs": "6.6.0", - "autoprefixer": "9.8.8", - "clean-css-loader": "3.0.0", - "colors": "1.4.0", - "copy-webpack-plugin": "6.4.0", - "cross-spawn": "7.0.3", - "css-loader": "5.2.4", - "del": "6.0.0", - "eslint-webpack-plugin": "2.5.4", - "file-loader": "6.2.0", - "fork-ts-checker-webpack-plugin": "6.4.0", - "get-port": "5.1.1", - "globby": "11.0.3", - "kill-port": "1.6.1", - "loader-utils": "2.0.0", - "node-fetch": "2.6.1", - "postcss": "7.0.38", - "postcss-loader": "4.2.0", - "react-refresh": "0.14.0", - "react-refresh-typescript": "2.0.6", - "sass": "1.44.0", - "sass-loader": "9.0.3", - "spfx-css-modules-typescript-loader": "4.0.6", - "style-loader": "1.1.3", - "ts-loader": "8.1.0", - "tsconfig": "7.0.0", - "tsconfig-paths-webpack-plugin": "3.5.2", - "webpack": "4.47.0", - "webpack-cli": "4.10.0", - "webpack-dev-server": "3.11.3", - "webpack-merge": "5.7.3", - "yargs": "4.6.0" - }, "dependencies": { - "@microsoft/loader-load-themed-styles": { - "version": "2.0.45", - "resolved": "https://registry.npmjs.org/@microsoft/loader-load-themed-styles/-/loader-load-themed-styles-2.0.45.tgz", - "integrity": "sha512-04foUzzYBbKpBKj16N9pjyKJzt6jthyd2gMzg1fQJPfrIblsJanumlhiUitpZjzyhs/53qYzEsTo0PZCKRHUpQ==", - "dev": true, - "requires": { - "loader-utils": "1.4.2" - }, - "dependencies": { - "loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - } - } - }, - "@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/yargs": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-6.6.0.tgz", - "integrity": "sha512-021+XKlD4/hDZkkdgGhgtDGKlcTIXrII1lrCLp/ZNPoU0AHN9HmTNe+i1eKRxcZisFObX3ItTncemegEACgnsw==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "requires": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - } - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "dev": true, - "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true - }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "requires": { - "safe-buffer": "5.2.1" - } - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true - }, - "copy-webpack-plugin": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.4.0.tgz", - "integrity": "sha512-p4eIA0ZWk4UI+xewyxOBTDCSDfjK6nCkr3zhDenoi7SFd+NgDNH/D14IZeFaCEFcK/psNDcAUMOB+sAxZ3SsAA==", - "dev": true, - "requires": { - "cacache": "^15.0.5", - "fast-glob": "^3.2.4", - "find-cache-dir": "^3.3.1", - "glob-parent": "^5.1.1", - "globby": "^11.0.1", - "loader-utils": "^2.0.0", - "normalize-path": "^3.0.0", - "p-limit": "^3.0.2", - "schema-utils": "^3.0.0", - "serialize-javascript": "^5.0.1", - "webpack-sources": "^1.4.3" - } - }, - "css-loader": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.4.tgz", - "integrity": "sha512-OFYGyINCKkdQsTrSYxzGSFnGS4gNjcXkKkQgWxK138jgnPt+lepxdjSZNc8sHAl5vP3DhsJUxufWIjOwI8PMMw==", - "dev": true, - "requires": { - "camelcase": "^6.2.0", - "icss-utils": "^5.1.0", - "loader-utils": "^2.0.0", - "postcss": "^8.2.10", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^3.0.0", - "semver": "^7.3.5" - }, - "dependencies": { - "postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - } - } - }, - "del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", - "dev": true, - "requires": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - } - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dev": true, - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } - } - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "globby": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", - "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - } - }, - "html-entities": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", - "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", - "dev": true - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", - "dev": true, - "requires": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "dev": true, - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - }, - "dependencies": { - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true - }, - "is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "dev": true, - "requires": { - "is-path-inside": "^2.1.0" - }, - "dependencies": { - "is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "dev": true, - "requires": { - "path-is-inside": "^1.0.2" - } - } - } - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "dependencies": { - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - } - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", - "dev": true - }, - "node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", - "dev": true - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - }, - "dependencies": { - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - } - } - }, - "p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", - "dev": true, - "requires": { - "retry": "^0.12.0" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "postcss": { - "version": "7.0.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.38.tgz", - "integrity": "sha512-wNrSHWjHDQJR/IZL5IKGxRtFgrYNaAA/UrkW2WqbtZO6uxSLMxMN+s2iqUMwnAWm3fMROlDYZB41dr0Mt7vBwQ==", - "dev": true, - "requires": { - "nanocolors": "^0.2.2", - "source-map": "^0.6.1" - } - }, - "postcss-loader": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.2.0.tgz", - "integrity": "sha512-mqgScxHqbiz1yxbnNcPdKYo/6aVt+XExURmEbQlviFVWogDbM4AJ0A/B+ZBpYsJrTRxKw7HyRazg9x0Q9SWwLA==", - "dev": true, - "requires": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0", - "semver": "^7.3.4" - } - }, - "postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "dev": true - }, - "postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - } - }, - "postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.4" - } - }, - "postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0" - } - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", - "dev": true - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "selfsigned": { - "version": "1.10.14", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", - "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", - "dev": true, - "requires": { - "node-forge": "^0.10.0" - } - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serialize-javascript": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", - "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", - "dev": true, - "requires": { - "randombytes": "^2.1.0" - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "tar": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - } - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "webpack-dev-middleware": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", - "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", - "dev": true, - "requires": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", - "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" - }, - "dependencies": { - "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true - }, - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "requires": { - "minimist": "^1.2.6" - } - } - } - }, - "webpack-dev-server": { - "version": "3.11.3", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", - "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", - "dev": true, - "requires": { - "ansi-html-community": "0.0.8", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", - "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.3.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.8", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.26", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.8", - "semver": "^6.3.0", - "serve-index": "^1.9.1", - "sockjs": "^0.3.21", - "sockjs-client": "^1.5.0", - "spdy": "^4.0.2", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "^13.3.2" - }, - "dependencies": { - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", - "dev": true, - "requires": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" - } - }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true - } - } - }, - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true - }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - }, - "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "dev": true, - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - } - } - }, - "webpack-merge": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz", - "integrity": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==", - "dev": true, - "requires": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - } - }, - "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "dev": true, - "requires": { - "async-limiter": "~1.0.0" - } - }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - } - } + "@microsoft/loader-load-themed-styles": "2.1.37", + "@microsoft/spfx-heft-plugins": "1.20.2", + "@pmmmwh/react-refresh-webpack-plugin": "0.5.15", + "@types/copy-webpack-plugin": "8.0.1", + "@types/cross-spawn": "6.0.6", + "@types/webpack-dev-server": "4.7.1", + "@types/yargs": "17.0.32", + "autoprefixer": "9.8.8", + "colors": "1.4.0", + "commander": "12.1.0", + "copy-webpack-plugin": "12.0.2", + "cross-spawn": "7.0.3", + "css-loader": "7.1.2", + "del": "6.0.0", + "eslint-webpack-plugin": "4.2.0", + "file-loader": "6.2.0", + "fork-ts-checker-webpack-plugin": "9.0.2", + "get-port": "5.1.1", + "globby": "11.1.0", + "json5": "2.2.3", + "kill-port": "2.0.1", + "node-fetch": "2.6.1", + "postcss": "8.4.38", + "postcss-loader": "8.1.1", + "react-refresh": "0.14.2", + "react-refresh-typescript": "2.0.9", + "sass": "1.77.6", + "sass-loader": "14.2.1", + "spfx-css-modules-typescript-loader": "4.0.6", + "style-loader": "4.0.0", + "ts-loader": "9.5.1", + "tsconfig-paths-webpack-plugin": "4.1.0", + "webpack": "5.88.2", + "webpack-cli": "5.1.4", + "webpack-dev-server": "5.0.4", + "webpack-merge": "5.10.0", + "yargs": "17.7.2" + }, + "bin": { + "fast-serve": "lib/serve.js" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/@microsoft/load-themed-styles": { + "version": "2.0.145", + "resolved": "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-2.0.145.tgz", + "integrity": "sha512-QiZlC6HsGzgmyHIQ50gw7sewTmGVyTygEBNjquxAWBxtTa0b70nyoRotiSQ5tNBZmAuS5LwWFQd3TLcf5VbzJg==", + "dev": true, + "peer": true + }, + "node_modules/spfx-fast-serve-helpers/node_modules/@microsoft/loader-load-themed-styles": { + "version": "2.1.37", + "resolved": "https://registry.npmjs.org/@microsoft/loader-load-themed-styles/-/loader-load-themed-styles-2.1.37.tgz", + "integrity": "sha512-I8JxXrHLr7D+zxSeHhlfqcjcNKrbc7luxcdlbdUyn39TaJK5OsYMu92NqfsV8L90YscZJhMbtJM6L82SP7+7Qg==", + "dev": true, + "dependencies": { + "loader-utils": "1.4.2" + }, + "peerDependencies": { + "@microsoft/load-themed-styles": "^2.0.113", + "@types/webpack": "^4" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true } } }, - "split-string": { + "node_modules/spfx-fast-serve-helpers/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "dev": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/css-loader": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz", + "integrity": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.27.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/del": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", + "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "dev": true, + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/loader-utils/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", + "dev": true, + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/postcss": { + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/postcss-modules-local-by-default": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/postcss-modules-scope": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/react-refresh-typescript": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/react-refresh-typescript/-/react-refresh-typescript-2.0.9.tgz", + "integrity": "sha512-chAnOO4vpxm/3WkgOVmti+eN8yUtkJzeGkOigV6UA9eDFz12W34e/SsYe2H5+RwYJ3+sfSZkVbiXcG1chEBxlg==", + "dev": true, + "peerDependencies": { + "react-refresh": "0.10.x || 0.11.x || 0.12.x || 0.13.x || 0.14.x", + "typescript": "^4.8 || ^5.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/sass": { + "version": "1.77.6", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.6.tgz", + "integrity": "sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/typescript": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", + "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", + "dev": true, + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/spfx-fast-serve-helpers/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/spfx-uifabric-themes": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/spfx-uifabric-themes/-/spfx-uifabric-themes-0.9.0.tgz", + "integrity": "sha512-6cTVlyfANxHmDxQGigUNHLGpWaelUOqsZeWVryLQVEJSEwTTXmHcQwb3SOnLEBXzjKDancdgoLTluZQBArFnZg==", + "deprecated": "spfx-uifabric-themes got replaced by hTWOo - https://my.n8d.at/hTWOo and check the updated documentation for this package: https://lab.n8d.studio/spfx-uifabric-themes/" + }, + "node_modules/split-string": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, - "requires": { + "dependencies": { "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "sprintf-js": { + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, - "sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "node_modules/sshpk": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", "dev": true, - "requires": { + "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", "bcrypt-pbkdf": "^1.0.0", @@ -25657,467 +33494,552 @@ "jsbn": "~0.1.0", "safer-buffer": "^2.0.2", "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" } }, - "ssri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", - "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "node_modules/ssr-window": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/ssr-window/-/ssr-window-4.0.2.tgz", + "integrity": "sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ==" + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", "dev": true, - "requires": { - "figgy-pudding": "^3.5.1" + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" } }, - "stable": { + "node_modules/stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", "dev": true }, - "stack-trace": { + "node_modules/stack-generator": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz", + "integrity": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/stack-trace": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", - "dev": true + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "dev": true, + "engines": { + "node": "*" + } }, - "stack-utils": { + "node_modules/stack-utils": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", "dev": true, - "requires": { + "dependencies": { "escape-string-regexp": "^2.0.0" }, - "dependencies": { - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "stackframe": { + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", - "dev": true + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" }, - "static-extend": { + "node_modules/stacktrace-gps": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz", + "integrity": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==", + "dependencies": { + "source-map": "0.5.6", + "stackframe": "^1.3.4" + } + }, + "node_modules/stacktrace-gps/node_modules/source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stacktrace-js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz", + "integrity": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==", + "dependencies": { + "error-stack-parser": "^2.0.6", + "stack-generator": "^2.0.5", + "stacktrace-gps": "^3.0.4" + } + }, + "node_modules/state-local": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz", + "integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==" + }, + "node_modules/static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "dev": true, - "requires": { + "dependencies": { "define-property": "^0.2.5", "object-copy": "^0.1.0" }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } + "engines": { + "node": ">=0.10.0" } }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", - "dev": true + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "stealthy-require": { + "node_modules/stealthy-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "stoppable": { + "node_modules/stoppable": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz", "integrity": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==", - "dev": true - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", "dev": true, - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" + "engines": { + "node": ">=4", + "npm": ">=6" } }, - "stream-consume": { + "node_modules/stream-consume": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz", "integrity": "sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg==", "dev": true }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-exhaust": { + "node_modules/stream-exhaust": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", "dev": true }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dev": true, - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "node_modules/stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", "dev": true }, - "strict-uri-encode": { + "node_modules/strict-uri-encode": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "string-argv": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", - "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", - "dev": true + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "engines": { + "node": ">=0.6.19" + } }, - "string-hash": { + "node_modules/string-hash": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", "dev": true }, - "string-length": { + "node_modules/string-length": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz", "integrity": "sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==", "dev": true, - "requires": { + "dependencies": { "astral-regex": "^1.0.0", "strip-ansi": "^5.2.0" }, - "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "engines": { + "node": ">=8" } }, - "string-template": { + "node_modules/string-length/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/string-length/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/string-template": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", "integrity": "sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==", "dev": true }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "string.prototype.matchall": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", - "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", - "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.3.1", - "side-channel": "^1.0.4" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "node_modules/string.prototype.matchall": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", + "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "regexp.prototype.flags": "^1.5.2", + "set-function-name": "^2.0.2", + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, - "requires": { - "safe-buffer": "~5.1.0" + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "strip-ansi": { + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "requires": { + "dependencies": { "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "strip-bom": { + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "strip-eof": { + "node_modules/strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "strip-final-newline": { + "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "strip-indent": { + "node_modules/strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, - "requires": { + "dependencies": { "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" } }, - "strip-json-comments": { + "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "style-loader": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.1.3.tgz", - "integrity": "sha512-rlkH7X/22yuwFYK357fMN/BxYOorfnfq0eD7+vqlemSK4wEcejFF1dg4zxP0euBW8NrYx2WZzZ8PPFevr7D+Kw==", "dev": true, - "requires": { - "loader-utils": "^1.2.3", - "schema-utils": "^2.6.4" + "engines": { + "node": ">=8" }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "stylehacks": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + }, + "node_modules/style-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-4.0.0.tgz", + "integrity": "sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==", "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.27.0" } }, - "stylis": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", - "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" + "node_modules/stylis": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.4.tgz", + "integrity": "sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==" }, - "stylis-plugin-rtl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/stylis-plugin-rtl/-/stylis-plugin-rtl-1.1.0.tgz", - "integrity": "sha512-FPoSxP+gbBLJRUXDRDFNBhqy/eToquDLn7ZrjIVBRfXaZ9bunwNnDtDm2qW1EoU0c93krm1Dy+8iVmJpjRGsKw==", - "requires": { - "cssjanus": "^1.3.0" + "node_modules/substyle": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/substyle/-/substyle-9.4.1.tgz", + "integrity": "sha512-VOngeq/W1/UkxiGzeqVvDbGDPM8XgUyJVWjrqeh+GgKqspEPiLYndK+XRcsKUHM5Muz/++1ctJ1QCF/OqRiKWA==", + "dependencies": { + "@babel/runtime": "^7.3.4", + "invariant": "^2.2.4" + }, + "peerDependencies": { + "react": ">=16.8.3" } }, - "sudo": { + "node_modules/sudo": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sudo/-/sudo-1.0.3.tgz", "integrity": "sha512-3xMsaPg+8Xm+4LQm0b2V+G3lz3YxtDBzlqiU8CXw2AOIIDSvC1kBxIxBjnoCTq8dTTXAy23m58g6mdClUocpmQ==", "dev": true, - "requires": { + "dependencies": { "inpath": "~1.0.2", "pidof": "~1.0.2", "read": "~1.0.3" + }, + "engines": { + "node": ">=0.8" } }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "requires": { - "has-flag": "^3.0.0" + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "supports-hyperlinks": { + "node_modules/supports-hyperlinks": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, - "requires": { + "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">=8" } }, - "supports-preserve-symlinks-flag": { + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "sver-compat": { + "node_modules/sver-compat": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", - "integrity": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", "dev": true, - "requires": { + "dependencies": { "es6-iterator": "^2.0.1", "es6-symbol": "^3.1.1" } }, - "svgo": { + "node_modules/svgo": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", "dev": true, - "requires": { + "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^4.1.3", @@ -26126,747 +34048,1019 @@ "picocolors": "^1.0.0", "stable": "^0.1.8" }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true - } + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" } }, - "symbol": { + "node_modules/svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/swiper": { + "version": "8.4.7", + "resolved": "https://registry.npmjs.org/swiper/-/swiper-8.4.7.tgz", + "integrity": "sha512-VwO/KU3i9IV2Sf+W2NqyzwWob4yX9Qdedq6vBtS0rFqJ6Fa5iLUJwxQkuD4I38w0WDJwmFl8ojkdcRFPHWD+2g==", + "funding": [ + { + "type": "patreon", + "url": "https://www.patreon.com/swiperjs" + }, + { + "type": "open_collective", + "url": "http://opencollective.com/swiper" + } + ], + "hasInstallScript": true, + "dependencies": { + "dom7": "^4.0.4", + "ssr-window": "^4.0.2" + }, + "engines": { + "node": ">= 4.7.0" + } + }, + "node_modules/symbol": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/symbol/-/symbol-0.2.3.tgz", "integrity": "sha512-IUW+ek7apEaW5bFhS6WpYoNtVpNTlNoqB/PH7YiMWQTxSPeXCzG4PILVakwXivJt3ZXWeO1fIJnUd/L9A/VeGA==", "dev": true }, - "symbol-tree": { + "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, - "table": { - "version": "5.4.6", - "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", - "dev": true, - "requires": { - "ajv": "^6.10.2", - "lodash": "^4.17.14", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" - }, + "node_modules/tabbable": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", + "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==" + }, + "node_modules/tabster": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/tabster/-/tabster-8.2.0.tgz", + "integrity": "sha512-Gvplk/Yl/12aVFA6FPOqGcq31Qv8hbPfYO0N+6IxrRgRT6eSLsipT6gkZBYjyOwGsp6BD5XlZAuJgupfG/GHoA==", "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - } + "keyborg": "2.6.0", + "tslib": "^2.3.1" } }, - "tapable": { + "node_modules/tapable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true - }, - "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", - "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" + "dev": true, + "engines": { + "node": ">=6" } }, - "terminal-link": { + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/terminal-link": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "dev": true, - "requires": { + "dependencies": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "ternary-stream": { + "node_modules/ternary-stream": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-2.1.1.tgz", "integrity": "sha512-j6ei9hxSoyGlqTmoMjOm+QNvUKDOIY6bNl4Uh1lhBvl6yjPW2iLqxDUYyfDPZknQ4KdRziFl+ec99iT4l7g0cw==", "dev": true, - "requires": { + "dependencies": { "duplexify": "^3.5.0", "fork-stream": "^0.0.4", "merge-stream": "^1.0.0", "through2": "^2.0.1" }, - "dependencies": { - "merge-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", - "integrity": "sha512-e6RM36aegd4f+r8BZCcYXlO2P3H6xbUM6ktL2Xmf45GAOit9bI4z6/3VU7JwllVO1L7u0UDSg/EhzQ5lmMLolA==", - "dev": true, - "requires": { - "readable-stream": "^2.0.1" - } - } + "engines": { + "node": ">= 0.10.0" } }, - "terser": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", - "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "node_modules/ternary-stream/node_modules/merge-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", + "integrity": "sha512-e6RM36aegd4f+r8BZCcYXlO2P3H6xbUM6ktL2Xmf45GAOit9bI4z6/3VU7JwllVO1L7u0UDSg/EhzQ5lmMLolA==", "dev": true, - "requires": { + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/terser": { + "version": "5.34.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.34.1.tgz", + "integrity": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" + "source-map-support": "~0.5.20" }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, - "terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", "dev": true, - "requires": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" - }, "dependencies": { - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", - "dev": true + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true } } }, - "test-exclude": { + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, - "requires": { + "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" } }, - "text-table": { + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "thenify": { + "node_modules/thenify": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", "dev": true, - "requires": { + "dependencies": { "any-promise": "^1.0.0" } }, - "thenify-all": { + "node_modules/thenify-all": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", "dev": true, - "requires": { + "dependencies": { "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" } }, - "throat": { + "node_modules/thingies": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz", + "integrity": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==", + "dev": true, + "engines": { + "node": ">=10.18" + }, + "peerDependencies": { + "tslib": "^2" + } + }, + "node_modules/throat": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", "dev": true }, - "through": { + "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "through2": { + "node_modules/through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, - "requires": { + "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" } }, - "through2-filter": { + "node_modules/through2-filter": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", "dev": true, - "requires": { + "dependencies": { "through2": "~2.0.0", "xtend": "~4.0.0" } }, - "thunky": { + "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, - "time-stamp": { + "node_modules/time-stamp": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", - "dev": true - }, - "timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", "dev": true, - "requires": { - "setimmediate": "^1.0.4" + "engines": { + "node": ">=0.10.0" } }, - "timsort": { + "node_modules/timsort": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==", "dev": true }, - "tiny-lr": { + "node_modules/tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + }, + "node_modules/tiny-lr": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz", "integrity": "sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA==", "dev": true, - "requires": { + "dependencies": { "body": "^5.1.0", "debug": "^3.1.0", "faye-websocket": "~0.10.0", "livereload-js": "^2.3.0", "object-assign": "^4.1.0", "qs": "^6.4.0" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } } }, - "tmp": { + "node_modules/tiny-lr/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, - "requires": { + "dependencies": { "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" } }, - "tmpl": { + "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, - "to-absolute-glob": { + "node_modules/to-absolute-glob": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", "dev": true, - "requires": { + "dependencies": { "is-absolute": "^1.0.0", "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==", - "dev": true - }, - "to-fast-properties": { + "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "engines": { + "node": ">=4" } }, - "to-readable-stream": { + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-readable-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "to-regex": { + "node_modules/to-regex": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, - "requires": { + "dependencies": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", "regex-not": "^1.0.2", "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "to-regex-range": { + "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "requires": { + "dependencies": { "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "to-through": { + "node_modules/to-regex/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/to-through": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", "dev": true, - "requires": { + "dependencies": { "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" } }, - "toidentifier": { + "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.6" + } }, - "tough-cookie": { + "node_modules/tough-cookie": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", "dev": true, - "requires": { + "dependencies": { "ip-regex": "^2.1.0", "psl": "^1.1.28", "punycode": "^2.1.1" + }, + "engines": { + "node": ">=6" } }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + "node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } }, - "trim-newlines": { + "node_modules/tree-dump": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.2.tgz", + "integrity": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/trim-newlines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "true-case-path": { + "node_modules/true-case-path": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==", "dev": true }, - "ts-loader": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.1.0.tgz", - "integrity": "sha512-YiQipGGAFj2zBfqLhp28yUvPP9jUGqHxRzrGYuc82Z2wM27YIHbElXiaZDc93c3x0mz4zvBmS6q/DgExpdj37A==", + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", "dev": true, - "requires": { + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/ts-loader": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.1.tgz", + "integrity": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==", + "dev": true, + "dependencies": { "chalk": "^4.1.0", - "enhanced-resolve": "^4.0.0", - "loader-utils": "^2.0.0", + "enhanced-resolve": "^5.0.0", "micromatch": "^4.0.0", - "semver": "^7.3.4" + "semver": "^7.3.4", + "source-map": "^0.7.4" }, - "dependencies": { - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - } + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" } }, - "tsconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/tsconfig/-/tsconfig-7.0.0.tgz", - "integrity": "sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw==", + "node_modules/ts-loader/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": { - "@types/strip-bom": "^3.0.0", - "@types/strip-json-comments": "0.0.30", - "strip-bom": "^3.0.0", - "strip-json-comments": "^2.0.0" - }, "dependencies": { - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "node_modules/ts-loader/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", + "engines": { + "node": ">= 8" + } + }, + "node_modules/ts-loader/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "dependencies": { + "json5": "^2.2.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" }, - "dependencies": { - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - } + "engines": { + "node": ">=6" } }, - "tsconfig-paths-webpack-plugin": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-3.5.2.tgz", - "integrity": "sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==", + "node_modules/tsconfig-paths-webpack-plugin": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.1.0.tgz", + "integrity": "sha512-xWFISjviPydmtmgeUAuXp4N1fky+VCtfhOkDUFIv5ea7p4wuTomI4QTrXvFBX2S4jZsmyTSrStQl+E+4w+RzxA==", "dev": true, - "requires": { + "dependencies": { "chalk": "^4.1.0", "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^3.9.0" + "tsconfig-paths": "^4.1.2" }, - "dependencies": { - "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true - } + "engines": { + "node": ">=10.13.0" } }, - "tslib": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", - "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" - }, - "tslint": { - "version": "5.20.1", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.20.1.tgz", - "integrity": "sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg==", + "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^4.0.1", - "glob": "^7.1.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.8.0", - "tsutils": "^2.29.0" - }, "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, - "tsutils": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", - "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - } - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "tslint-microsoft-contrib": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tslint-microsoft-contrib/-/tslint-microsoft-contrib-6.2.0.tgz", - "integrity": "sha512-6tfi/2tHqV/3CL77pULBcK+foty11Rr0idRDxKnteTaKm6gWF9qmaCNU17HVssOuwlYNyOmd9Jsmjd+1t3a3qw==", + "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "requires": { - "tsutils": "^2.27.2 <2.29.0" - }, "dependencies": { - "tsutils": { - "version": "2.28.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.28.0.tgz", - "integrity": "sha512-bh5nAtW0tuhvOJnx1GLRn5ScraRLICGyJV5wJhtRWOLsxW70Kk5tZtpK3O/hW6LDnqKS9mlUMPZj9fEMJ0gxqA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "tsutils": { + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + }, + "node_modules/tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, - "requires": { + "dependencies": { "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==", + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, - "tunnel": { + "node_modules/tunnel": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + } }, - "tunnel-agent": { + "node_modules/tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, - "requires": { + "dependencies": { "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" } }, - "tweetnacl": { + "node_modules/tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "dev": true }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + "node_modules/type": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz", + "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==", + "dev": true }, - "type-check": { + "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "requires": { + "dependencies": { "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "type-detect": { + "node_modules/type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true + "dev": true, + "engines": { + "node": ">=4" + } }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "type-is": { + "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, - "requires": { + "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, - "typedarray": { + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", "dev": true }, - "typedarray-to-buffer": { + "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, - "requires": { + "dependencies": { "is-typedarray": "^1.0.0" } }, - "typescript": { - "version": "3.9.10", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz", - "integrity": "sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==", - "dev": true - }, - "uglify-js": { - "version": "3.4.10", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", - "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "node_modules/typescript": { + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, - "requires": { - "commander": "~2.19.0", - "source-map": "~0.6.1" + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, - "dependencies": { - "commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "engines": { + "node": ">=4.2.0" } }, - "unbox-primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", - "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "unc-path-regex": { + "node_modules/unc-path-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", - "dev": true + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "undertaker": { + "node_modules/undertaker": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", "dev": true, - "requires": { + "dependencies": { "arr-flatten": "^1.0.1", "arr-map": "^2.0.0", "bach": "^1.0.0", @@ -26878,149 +35072,208 @@ "object.reduce": "^1.0.0", "undertaker-registry": "^1.0.0" }, - "dependencies": { - "fast-levenshtein": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", - "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=", - "dev": true - } + "engines": { + "node": ">= 0.10" } }, - "undertaker-registry": { + "node_modules/undertaker-registry": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", - "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=", + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/undertaker/node_modules/fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", "dev": true }, - "union-value": { + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/union-value": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, - "requires": { + "dependencies": { "arr-union": "^3.1.0", "get-value": "^2.0.6", "is-extendable": "^0.1.1", "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "node_modules/union-value/node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", "dev": true, - "requires": { - "unique-slug": "^2.0.0" + "engines": { + "node": ">=0.10.0" } }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "dev": true, - "requires": { - "imurmurhash": "^0.1.4" + "engines": { + "node": ">=0.10.0" } }, - "unique-stream": { + "node_modules/unique-stream": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", "dev": true, - "requires": { + "dependencies": { "json-stable-stringify-without-jsonify": "^1.0.1", "through2-filter": "^3.0.0" } }, - "unique-string": { + "node_modules/unique-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", "dev": true, - "requires": { + "dependencies": { "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "universalify": { + "node_modules/universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true + "engines": { + "node": ">= 4.0.0" + } }, - "unpipe": { + "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "unquote": { + "node_modules/unquote": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" }, - "unset-value": { + "node_modules/unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", "dev": true, - "requires": { + "dependencies": { "has-value": "^0.3.1", "isobject": "^3.0.0" }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "upath": { + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true - }, - "update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "engines": { + "node": ">=4", + "yarn": "*" } }, - "update-notifier": { + "node_modules/update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/update-notifier": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", "dev": true, - "requires": { + "dependencies": { "boxen": "^5.0.0", "chalk": "^4.1.0", "configstore": "^5.0.1", @@ -27036,224 +35289,257 @@ "semver-diff": "^3.1.1", "xdg-basedir": "^4.0.0" }, - "dependencies": { - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", - "dev": true - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" } }, - "upper-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", - "dev": true + "node_modules/update-notifier/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } }, - "uri-js": { + "node_modules/update-notifier/node_modules/import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/update-notifier/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { + "dependencies": { "punycode": "^2.1.0" } }, - "urix": { + "node_modules/urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", "dev": true }, - "url": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", - "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", - "dev": true, - "requires": { - "punycode": "^1.4.1", - "qs": "^6.11.2" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", - "dev": true - }, - "qs": { - "version": "6.11.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", - "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - } - } - }, - "url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "url-parse-lax": { + "node_modules/url-parse-lax": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", "dev": true, - "requires": { + "dependencies": { "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "use": { + "node_modules/use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", "dev": true, - "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "util-deprecate": { + "node_modules/use-disposable": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/use-disposable/-/use-disposable-1.0.2.tgz", + "integrity": "sha512-UMaXVlV77dWOu4GqAFNjRzHzowYKUKbJBQfCexvahrYeIz4OkUYUjna4Tjjdf92NH8Nm8J7wEfFRgTIwYjO5jg==", + "peerDependencies": { + "@types/react": ">=16.8.0 <19.0.0", + "@types/react-dom": ">=16.8.0 <19.0.0", + "react": ">=16.8.0 <19.0.0", + "react-dom": ">=16.8.0 <19.0.0" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", + "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "utils-merge": { + "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.4.0" + } }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, - "v8-to-istanbul": { + "node_modules/v8-to-istanbul": { "version": "4.1.4", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz", "integrity": "sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==", "dev": true, - "requires": { + "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", "source-map": "^0.7.3" }, - "dependencies": { - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true - } + "engines": { + "node": "8.x.x || >=10.10.0" } }, - "v8flags": { + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/v8flags": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", "dev": true, - "requires": { + "dependencies": { "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" } }, - "validate-npm-package-license": { + "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "requires": { + "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, - "validate-npm-package-name": { + "node_modules/validate-npm-package-name": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", "integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==", "dev": true, - "requires": { + "dependencies": { "builtins": "^1.0.3" } }, - "validator": { + "node_modules/validator": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/validator/-/validator-8.2.0.tgz", - "integrity": "sha512-Yw5wW34fSv5spzTXNkokD6S6/Oq92d8q/t14TqsS3fAiA1RYnxSFSIZ+CY3n6PGGRCq5HhJTSepQvFUS2QUDxA==" + "integrity": "sha512-Yw5wW34fSv5spzTXNkokD6S6/Oq92d8q/t14TqsS3fAiA1RYnxSFSIZ+CY3n6PGGRCq5HhJTSepQvFUS2QUDxA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "value-or-function": { + "node_modules/value-or-function": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=", - "dev": true + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "dev": true, + "engines": { + "node": ">= 0.10" + } }, - "vary": { + "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "verror": { + "node_modules/verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "dev": true, - "requires": { + "engines": [ + "node >=0.6.0" + ], + "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" } }, - "vinyl": { + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true + }, + "node_modules/vinyl": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", "dev": true, - "requires": { + "dependencies": { "clone": "^2.1.1", "clone-buffer": "^1.0.0", "clone-stats": "^1.0.0", "cloneable-readable": "^1.0.0", "remove-trailing-separator": "^1.0.1", "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "vinyl-fs": { + "node_modules/vinyl-fs": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", "dev": true, - "requires": { + "dependencies": { "fs-mkdirp-stream": "^1.0.0", "glob-stream": "^6.1.0", "graceful-fs": "^4.0.0", @@ -27271,14 +35557,17 @@ "value-or-function": "^3.0.0", "vinyl": "^2.0.0", "vinyl-sourcemap": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" } }, - "vinyl-sourcemap": { + "node_modules/vinyl-sourcemap": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", "dev": true, - "requires": { + "dependencies": { "append-buffer": "^1.0.2", "convert-source-map": "^1.5.0", "graceful-fs": "^4.1.6", @@ -27287,1211 +35576,1152 @@ "remove-bom-buffer": "^3.0.0", "vinyl": "^2.0.0" }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } + "engines": { + "node": ">= 0.10" } }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "dev": true + "node_modules/vinyl-sourcemap/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } }, - "w3c-hr-time": { + "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", "dev": true, - "requires": { + "dependencies": { "browser-process-hrtime": "^1.0.0" } }, - "w3c-xmlserializer": { + "node_modules/w3c-xmlserializer": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", "dev": true, - "requires": { + "dependencies": { "domexception": "^1.0.1", "webidl-conversions": "^4.0.2", "xml-name-validator": "^3.0.0" - }, - "dependencies": { - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - } } }, - "walker": { + "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, - "requires": { + "dependencies": { "makeerror": "1.0.12" } }, - "watchpack": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", - "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "node_modules/watchpack": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "dev": true, - "requires": { - "chokidar": "^3.4.1", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0", - "watchpack-chokidar2": "^2.0.1" - }, "dependencies": { - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "optional": true - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "optional": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "optional": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "optional": true, - "requires": { - "picomatch": "^2.2.1" - } - } + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "watchpack-chokidar2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", - "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", - "dev": true, - "optional": true, - "requires": { - "chokidar": "^2.1.8" - } - }, - "wbuf": { + "node_modules/wbuf": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dev": true, - "requires": { + "dependencies": { "minimalistic-assert": "^1.0.0" } }, - "wcwidth": { + "node_modules/wc-react": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/wc-react/-/wc-react-0.5.1.tgz", + "integrity": "sha512-AI5mFXbyUhAhzjBr12xpPAUDthE+qOWTGuRgOpj7a9qjO7+7q/A/IAS23lz5vmltFaKY+MWIPYopJfAoP5/E+Q==" + }, + "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "dev": true, - "requires": { + "dependencies": { "defaults": "^1.0.3" } }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" + "node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true }, - "webpack": { - "version": "4.47.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.47.0.tgz", - "integrity": "sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==", + "node_modules/webpack": { + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/wasm-edit": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "acorn": "^6.4.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.5.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.3", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.7.4", - "webpack-sources": "^1.4.1" - }, "dependencies": { - "acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", - "dev": true - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true } } }, - "webpack-cli": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz", - "integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==", + "node_modules/webpack-cli": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", "dev": true, - "requires": { + "dependencies": { "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^1.2.0", - "@webpack-cli/info": "^1.5.0", - "@webpack-cli/serve": "^1.7.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", "colorette": "^2.0.14", - "commander": "^7.0.0", + "commander": "^10.0.1", "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", "fastest-levenshtein": "^1.0.12", "import-local": "^3.0.2", - "interpret": "^2.2.0", - "rechoir": "^0.7.0", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", "webpack-merge": "^5.7.3" }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true }, - "interpret": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", - "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", - "dev": true + "webpack-bundle-analyzer": { + "optional": true }, - "rechoir": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", - "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", - "dev": true, - "requires": { - "resolve": "^1.9.0" - } + "webpack-dev-server": { + "optional": true } } }, - "webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "node_modules/webpack-cli/node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", "dev": true, - "requires": { + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-cli/node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack-cli/node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.2.tgz", + "integrity": "sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==", + "dev": true, + "dependencies": { "colorette": "^2.0.10", - "memfs": "^3.4.3", + "memfs": "^4.6.0", "mime-types": "^2.1.31", + "on-finished": "^2.4.1", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - } + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true } } }, - "webpack-dev-server": { - "version": "4.9.3", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.3.tgz", - "integrity": "sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==", + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, - "requires": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-middleware/node_modules/memfs": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.12.0.tgz", + "integrity": "sha512-74wDsex5tQDSClVkeK1vtxqYCAgCoXxx+K4NSHzgU/muYVYByFqa+0RnrPO9NM6naWm1+G9JmZ0p6QHhXmeYfA==", + "dev": true, + "dependencies": { + "@jsonjoy.com/json-pack": "^1.0.3", + "@jsonjoy.com/util": "^1.3.0", + "tree-dump": "^1.0.1", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">= 4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + } + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.0.4.tgz", + "integrity": "sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.13", + "@types/connect-history-api-fallback": "^1.5.4", + "@types/express": "^4.17.21", + "@types/serve-index": "^1.9.4", + "@types/serve-static": "^1.15.5", + "@types/sockjs": "^0.3.36", + "@types/ws": "^8.5.10", "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", + "bonjour-service": "^1.2.1", + "chokidar": "^3.6.0", "colorette": "^2.0.10", "compression": "^1.7.4", "connect-history-api-fallback": "^2.0.0", "default-gateway": "^6.0.3", "express": "^4.17.3", "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", + "html-entities": "^2.4.0", "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.0.1", + "ipaddr.js": "^2.1.0", + "launch-editor": "^2.6.1", + "open": "^10.0.3", + "p-retry": "^6.2.0", + "rimraf": "^5.0.5", + "schema-utils": "^4.2.0", + "selfsigned": "^2.4.1", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", - "ws": "^8.4.2" + "webpack-dev-middleware": "^7.1.0", + "ws": "^8.16.0" }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - } - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "requires": { - "safe-buffer": "5.2.1" - } - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true - }, - "express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dev": true, - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - } - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ipaddr.js": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", - "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", - "dev": true - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - } - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true - }, - "ws": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", - "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", - "dev": true + "webpack-cli": { + "optional": true } } }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - }, "dependencies": { - "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", - "dev": true + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true } } }, - "webpack-merge": { + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/webpack-dev-server/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/ipaddr.js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-dev-server/node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "dev": true, + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-server/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/webpack-dev-server/node_modules/open": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", + "dev": true, + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", + "dev": true, + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-merge": { "version": "5.8.0", "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", "dev": true, - "requires": { + "dependencies": { "clone-deep": "^4.0.1", "wildcard": "^2.0.0" - } - }, - "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dev": true, - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "engines": { + "node": ">=10.0.0" } }, - "websocket-driver": { + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, - "requires": { + "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" } }, - "websocket-extensions": { + "node_modules/websocket-extensions": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.8.0" + } }, - "whatwg-encoding": { + "node_modules/whatwg-encoding": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "dev": true, - "requires": { - "iconv-lite": "0.4.24" - }, "dependencies": { - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - } + "iconv-lite": "0.4.24" } }, - "whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + "node_modules/whatwg-fetch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", + "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" }, - "whatwg-mimetype": { + "node_modules/whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", "dev": true }, - "whatwg-url": { - "version": "4.7.1", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-4.7.1.tgz", - "integrity": "sha1-303C4/JaY7H6WzLtbWwTlXfWkN4=", - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" } }, - "which": { + "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "requires": { + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "which-boxed-primitive": { + "node_modules/which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, - "requires": { + "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "which-module": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "node_modules/which-builtin-type": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", + "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", + "dev": true, + "dependencies": { + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true }, - "which-pm": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-2.0.0.tgz", - "integrity": "sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==", + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "dev": true, - "requires": { - "load-yaml-file": "^0.2.0", - "path-exists": "^4.0.0" + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "widest-line": { + "node_modules/which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", + "dev": true + }, + "node_modules/which-pm": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-2.2.0.tgz", + "integrity": "sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==", + "dev": true, + "dependencies": { + "load-yaml-file": "^0.2.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8.15" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/widest-line": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", "dev": true, - "requires": { + "dependencies": { "string-width": "^4.0.0" }, - "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } + "engines": { + "node": ">=8" } }, - "wildcard": { + "node_modules/wildcard": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "dev": true }, - "window-size": { + "node_modules/window-size": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", "integrity": "sha512-UD7d8HFA2+PZsbKyaOCEy8gMh1oDtHgJh1LfgjQ4zVXmYjAT/kvz3PueITKuqDiIXQe7yzpPnxX3lNc+AhQMyw==", - "dev": true - }, - "word-wrap": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.4.tgz", - "integrity": "sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==", - "dev": true - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true - }, - "worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", "dev": true, - "requires": { - "errno": "~0.1.7" + "bin": { + "window-size": "cli.js" + }, + "engines": { + "node": ">= 0.10.0" } }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, - "requires": { + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "wrappy": { + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, - "write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", - "dev": true, - "requires": { - "mkdirp": "^0.5.1" - } - }, - "write-file-atomic": { + "node_modules/write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, - "requires": { + "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, - "write-yaml-file": { + "node_modules/write-yaml-file": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/write-yaml-file/-/write-yaml-file-4.2.0.tgz", "integrity": "sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q==", "dev": true, - "requires": { + "dependencies": { "js-yaml": "^4.0.0", "write-file-atomic": "^3.0.3" }, + "engines": { + "node": ">=10.13" + } + }, + "node_modules/write-yaml-file/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/write-yaml-file/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } + "utf-8-validate": { + "optional": true } } }, - "ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "dev": true - }, - "xdg-basedir": { + "node_modules/xdg-basedir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=8" + } }, - "xml": { + "node_modules/xml": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", "dev": true }, - "xml-name-validator": { + "node_modules/xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "dev": true }, - "xml2js": { + "node_modules/xml2js": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz", "integrity": "sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==", "dev": true, - "requires": { + "dependencies": { "sax": ">=0.6.0", "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" } }, - "xmlbuilder": { + "node_modules/xmlbuilder": { "version": "11.0.1", "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", - "dev": true + "dev": true, + "engines": { + "node": ">=4.0" + } }, - "xmlchars": { + "node_modules/xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, - "xmldoc": { + "node_modules/xmldoc": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.4.tgz", "integrity": "sha512-rQshsBGR5s7pUNENTEncpI2LTCuzicri0DyE4SCV5XmS0q81JS8j1iPijP0Q5c4WLGbKh3W92hlOwY6N9ssW1w==", "dev": true, - "requires": { + "dependencies": { "sax": "^1.2.4" } }, - "xtend": { + "node_modules/xpath": { + "version": "0.0.34", + "resolved": "https://registry.npmjs.org/xpath/-/xpath-0.0.34.tgz", + "integrity": "sha512-FxF6+rkr1rNSQrhUNYrAFJpRXNzlDoMxeXN5qI84939ylEv3qqPFKa85Oxr6tDaJKqwW6KKyo2v26TSv3k6LeA==", + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", "dev": true }, - "y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yaml": { + "node_modules/yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true + "dev": true, + "engines": { + "node": ">= 6" + } }, - "yargs": { + "node_modules/yargs": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-4.6.0.tgz", "integrity": "sha512-KmjJbWBkYiSRUChcOSa4rtBxDXf0j4ISz+tpeNa4LKIBllgKnkemJ3x4yo4Yydp3wPU4/xJTaKTLLZ8V7zhI7A==", "dev": true, - "requires": { + "dependencies": { "camelcase": "^2.0.1", "cliui": "^3.2.0", "decamelize": "^1.1.1", @@ -28504,168 +36734,260 @@ "window-size": "^0.2.0", "y18n": "^3.2.1", "yargs-parser": "^2.4.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true - }, - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", - "dev": true, - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", - "dev": true, - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - } - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - } - }, - "y18n": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", - "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", - "dev": true - }, - "yargs-parser": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", - "integrity": "sha512-9pIKIJhnI5tonzG6OnCFlz/yln8xHYcGl+pn3xR0Vzff0vzN1PbNRaelgfgRUwZ3s4i3jvxT9WhmUGL4whnasA==", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "lodash.assign": "^4.0.6" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", - "dev": true - } - } - } } }, - "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "engines": { + "node": ">=10" } }, - "yocto-queue": { + "node_modules/yargs/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/yargs/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz", + "integrity": "sha512-9pIKIJhnI5tonzG6OnCFlz/yln8xHYcGl+pn3xR0Vzff0vzN1PbNRaelgfgRUwZ3s4i3jvxT9WhmUGL4whnasA==", + "dev": true, + "dependencies": { + "camelcase": "^3.0.0", + "lodash.assign": "^4.0.6" + } + }, + "node_modules/yargs/node_modules/yargs-parser/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "z-schema": { + "node_modules/z-schema": { "version": "3.18.4", "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-3.18.4.tgz", "integrity": "sha512-DUOKC/IhbkdLKKiV89gw9DUauTV8U/8yJl1sjf6MtDmzevLKOF2duNJ495S3MFVjqZarr+qNGCPbkg4mu4PpLw==", - "requires": { - "commander": "^2.7.1", + "dev": true, + "dependencies": { "lodash.get": "^4.0.0", "lodash.isequal": "^4.0.0", "validator": "^8.0.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "optionalDependencies": { + "commander": "^2.7.1" } + }, + "node_modules/z-schema/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "optional": true } } } diff --git a/samples/react-list-search/package.json b/samples/react-list-search/package.json index 9f592b34e..cafc02187 100644 --- a/samples/react-list-search/package.json +++ b/samples/react-list-search/package.json @@ -3,7 +3,9 @@ "version": "1.0.0", "private": true, "main": "lib/index.js", - "engines": "undefined", + "engines": { + "node": ">=16.13.0 <17.0.0 || >=18.17.1 <19.0.0" + }, "scripts": { "build": "gulp bundle", "clean": "gulp clean", @@ -12,34 +14,43 @@ "allpackage": "gulp clean && gulp build --ship && gulp bundle --ship && gulp package-solution --ship", "publish-please": "publish-please", "prepublishOnly": "publish-please guard", - "serve": "gulp bundle --custom-serve --max_old_space_size=4096 && fast-serve" + "serve": "fast-serve" }, "dependencies": { - "@microsoft/sp-core-library": "1.13.1", - "@microsoft/sp-lodash-subset": "1.13.1", - "@microsoft/sp-office-ui-fabric-core": "1.13.1", - "@microsoft/sp-property-pane": "1.13.1", - "@microsoft/sp-webpart-base": "1.13.1", - "@pnp/graph": "2.4.0", - "@pnp/sp": "2.0.8", - "@pnp/spfx-controls-react": "2.4.0", - "@pnp/spfx-property-controls": "3.3.0", - "office-ui-fabric-react": "7.174.1", - "react": "16.13.1", - "react-dom": "16.13.1", + "@fluentui/react": "8.106.4", + "@fluentui/react-components": "9.54.17", + "@microsoft/sp-adaptive-card-extension-base": "1.20.0", + "@microsoft/sp-core-library": "1.20.0", + "@microsoft/sp-lodash-subset": "1.20.0", + "@microsoft/sp-office-ui-fabric-core": "1.20.0", + "@microsoft/sp-property-pane": "1.20.0", + "@microsoft/sp-webpart-base": "1.20.0", + "@pnp/graph": "4.5.0", + "@pnp/sp": "4.5.0", + "@pnp/spfx-controls-react": "3.19.0", + "@pnp/spfx-property-controls": "3.18.0", + "react": "17.0.1", + "react-dom": "17.0.1", "react-js-pagination": "3.0.3", - "react-xml-parser": "1.1.6" + "react-xml-parser": "1.1.6", + "tslib": "2.3.1" }, "devDependencies": { - "@microsoft/rush-stack-compiler-3.9": "0.4.47", - "@microsoft/sp-build-web": "1.18.0", - "@microsoft/sp-module-interfaces": "1.13.1", - "@microsoft/sp-tslint-rules": "1.13.1", - "@types/react": "16.9.51", - "@types/react-dom": "16.9.8", - "@types/webpack-env": "1.13.1", - "ajv": "~6.12.3", + "@microsoft/eslint-config-spfx": "1.20.2", + "@microsoft/eslint-plugin-spfx": "1.20.2", + "@microsoft/rush-stack-compiler-4.7": "0.1.0", + "@microsoft/sp-build-web": "1.20.2", + "@microsoft/sp-module-interfaces": "1.20.2", + "@rushstack/eslint-config": "4.0.1", + "@types/react": "17.0.45", + "@types/react-dom": "17.0.17", + "@types/react-js-pagination": "^3.0.7", + "@types/webpack-env": "1.15.2", + "ajv": "6.12.5", + "eslint": "8.57.0", + "eslint-plugin-react-hooks": "4.3.0", "gulp": "4.0.2", - "spfx-fast-serve-helpers": "~1.18.1" + "spfx-fast-serve-helpers": "~1.20.0", + "typescript": "4.7.4" } -} +} \ No newline at end of file diff --git a/samples/react-list-search/release/component-dependency-audit/react-list-search.json b/samples/react-list-search/release/component-dependency-audit/react-list-search.json index f38405f95..71ad41220 100644 --- a/samples/react-list-search/release/component-dependency-audit/react-list-search.json +++ b/samples/react-list-search/release/component-dependency-audit/react-list-search.json @@ -3,63 +3,57 @@ "list-search-web-part": { "dependencies": [ { - "componentId": "f9e737b7-f0df-4597-ba8c-3060f82380db", - "componentName": "@microsoft/sp-property-pane", - "componentVersion": "1.13.1", + "componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d", + "componentName": "react", + "componentVersion": "17.0.1", "isDirectDependency": true }, { - "componentId": "1c6c9123-7aac-41f3-a376-3caea41ed83f", - "componentName": "@microsoft/sp-loader", - "componentVersion": "1.13.1", - "isDirectDependency": false - }, - { - "componentId": "8217e442-8ed3-41fd-957d-b112e841286a", - "componentName": "@ms/sp-telemetry", - "componentVersion": "0.19.42", - "isDirectDependency": false - }, - { - "componentId": "e40f8203-b39d-425a-a957-714852e33b79", - "componentName": "@microsoft/sp-dynamic-data", - "componentVersion": "1.13.1", - "isDirectDependency": false - }, - { - "componentId": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a", - "componentName": "@microsoft/sp-lodash-subset", - "componentVersion": "1.13.1", - "isDirectDependency": false + "componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a", + "componentName": "react-dom", + "componentVersion": "17.0.1", + "isDirectDependency": true }, { "componentId": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b", "componentName": "@microsoft/sp-core-library", - "componentVersion": "1.13.1", - "isDirectDependency": false + "componentVersion": "1.20.0", + "isDirectDependency": true }, { "componentId": "01c4df03-e775-48cb-aa14-171ee5199a15", "componentName": "tslib", - "componentVersion": "1.10.0", + "componentVersion": "2.3.1", "isDirectDependency": false }, { "componentId": "2e09fb9b-13bb-48f2-859f-97d6fff71176", "componentName": "@ms/odsp-core-bundle", - "componentVersion": "1.1.192", + "componentVersion": "1.4.195", "isDirectDependency": false }, + { + "componentId": "f9e737b7-f0df-4597-ba8c-3060f82380db", + "componentName": "@microsoft/sp-property-pane", + "componentVersion": "1.20.0", + "isDirectDependency": true + }, { "componentId": "78359e4b-07c2-43c6-8d0b-d060b4d577e8", "componentName": "@microsoft/sp-diagnostics", - "componentVersion": "1.13.1", + "componentVersion": "1.20.0", "isDirectDependency": false }, { - "componentId": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8", - "componentName": "@microsoft/sp-page-context", - "componentVersion": "1.13.1", + "componentId": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a", + "componentName": "@microsoft/sp-lodash-subset", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "3173fefe-9995-49d1-a75d-a5caeaaba212", + "componentName": "@ms/sp-pages-content-panel-context", + "componentVersion": "0.1.0", "isDirectDependency": false }, { @@ -69,97 +63,188 @@ "isDirectDependency": false }, { - "componentId": "c07208f0-ea3b-4c1a-9965-ac1b825211a6", - "componentName": "@microsoft/sp-http", - "componentVersion": "1.13.1", + "componentId": "63d75709-2785-4c91-97ad-489b171397d4", + "componentName": "@ms/sp-fluentui-migration-reactdom-render-bundle", + "componentVersion": "0.1.0", "isDirectDependency": false }, { - "componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d", - "componentName": "react", - "componentVersion": "16.13.1", + "componentId": "cc2cc925-b5be-41bb-880a-f0f8030c6aff", + "componentName": "@ms/odsp-utilities-bundle", + "componentVersion": "5.6.195", "isDirectDependency": false }, { - "componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a", - "componentName": "react-dom", - "componentVersion": "16.13.1", + "componentId": "8494e7d7-6b99-47b2-a741-59873e42f16f", + "componentName": "@ms/sp-component-utilities", + "componentVersion": "12.52.18", "isDirectDependency": false }, { - "componentId": "467dc675-7cc5-4709-8aac-78e3b71bd2f6", - "componentName": "@microsoft/sp-component-base", - "componentVersion": "1.13.1", - "isDirectDependency": true + "componentId": "8217e442-8ed3-41fd-957d-b112e841286a", + "componentName": "@ms/sp-telemetry", + "componentVersion": "0.32.116", + "isDirectDependency": false + }, + { + "componentId": "0ec74f52-38bc-4a51-ab82-7c91a2b399a2", + "componentName": "@ms/sp-fluentui-v9-utilities-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "72ec0651-8a26-441c-87f2-77ec66884ca3", + "componentName": "@ms/sp-fluentui-v9-react-button-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "396bbc17-3d18-4f43-8299-d99720d88e22", + "componentName": "@ms/office-ui-fabric-react-bundle", + "componentVersion": "1.19.6", + "isDirectDependency": false + }, + { + "componentId": "fab65e60-a04f-4772-874c-10691e4afa4b", + "componentName": "@ms/sp-fluentui-migration-tooltip-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "0ad7e31a-8df9-4659-add8-a32c8e40040d", + "componentName": "@ms/sp-fluentui-migration-button-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "bf211556-3cf0-412c-9618-a4f0e7069ebf", + "componentName": "@ms/sp-heading-level", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "ffe5c101-373a-4bd2-bebb-13082852bab0", + "componentName": "@ms/sp-fluentui-migration-label-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "1c6c9123-7aac-41f3-a376-3caea41ed83f", + "componentName": "@microsoft/sp-loader", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "8496636c-2300-4915-abef-20de64c98d8b", + "componentName": "@microsoft/sp-http-base", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8", + "componentName": "@microsoft/sp-page-context", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "e40f8203-b39d-425a-a957-714852e33b79", + "componentName": "@microsoft/sp-dynamic-data", + "componentVersion": "1.20.0", + "isDirectDependency": false }, { "componentId": "974a7777-0990-4136-8fa6-95d80114c2e0", "componentName": "@microsoft/sp-webpart-base", - "componentVersion": "1.13.1", + "componentVersion": "1.20.0", "isDirectDependency": true + }, + { + "componentId": "467dc675-7cc5-4709-8aac-78e3b71bd2f6", + "componentName": "@microsoft/sp-component-base", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "c07208f0-ea3b-4c1a-9965-ac1b825211a6", + "componentName": "@microsoft/sp-http", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "aec2bbfd-a968-4d5b-a279-12e570f378e6", + "componentName": "@microsoft/sp-http-msgraph", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "6d3c733c-8cb7-4871-bb22-b5b37c1d518d", + "componentName": "@ms/sp-safehtml", + "componentVersion": "0.4.0", + "isDirectDependency": false + }, + { + "componentId": "42647dee-1f75-4b9f-b521-5c844a6c35cc", + "componentName": "@ms/sp-edit-customer-promise", + "componentVersion": "0.1.0", + "isDirectDependency": false } - ] + ], + "asyncChunks": {} }, "list-search-consumer-web-part-web-part": { "dependencies": [ { - "componentId": "f9e737b7-f0df-4597-ba8c-3060f82380db", - "componentName": "@microsoft/sp-property-pane", - "componentVersion": "1.13.1", + "componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d", + "componentName": "react", + "componentVersion": "17.0.1", "isDirectDependency": true }, { - "componentId": "1c6c9123-7aac-41f3-a376-3caea41ed83f", - "componentName": "@microsoft/sp-loader", - "componentVersion": "1.13.1", - "isDirectDependency": false + "componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a", + "componentName": "react-dom", + "componentVersion": "17.0.1", + "isDirectDependency": true }, { - "componentId": "8217e442-8ed3-41fd-957d-b112e841286a", - "componentName": "@ms/sp-telemetry", - "componentVersion": "0.19.42", - "isDirectDependency": false + "componentId": "f9e737b7-f0df-4597-ba8c-3060f82380db", + "componentName": "@microsoft/sp-property-pane", + "componentVersion": "1.20.0", + "isDirectDependency": true }, { - "componentId": "e40f8203-b39d-425a-a957-714852e33b79", - "componentName": "@microsoft/sp-dynamic-data", - "componentVersion": "1.13.1", - "isDirectDependency": false - }, - { - "componentId": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a", - "componentName": "@microsoft/sp-lodash-subset", - "componentVersion": "1.13.1", + "componentId": "78359e4b-07c2-43c6-8d0b-d060b4d577e8", + "componentName": "@microsoft/sp-diagnostics", + "componentVersion": "1.20.0", "isDirectDependency": false }, { "componentId": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b", "componentName": "@microsoft/sp-core-library", - "componentVersion": "1.13.1", + "componentVersion": "1.20.0", "isDirectDependency": false }, { "componentId": "01c4df03-e775-48cb-aa14-171ee5199a15", "componentName": "tslib", - "componentVersion": "1.10.0", + "componentVersion": "2.3.1", "isDirectDependency": false }, { "componentId": "2e09fb9b-13bb-48f2-859f-97d6fff71176", "componentName": "@ms/odsp-core-bundle", - "componentVersion": "1.1.192", + "componentVersion": "1.4.195", "isDirectDependency": false }, { - "componentId": "78359e4b-07c2-43c6-8d0b-d060b4d577e8", - "componentName": "@microsoft/sp-diagnostics", - "componentVersion": "1.13.1", + "componentId": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a", + "componentName": "@microsoft/sp-lodash-subset", + "componentVersion": "1.20.0", "isDirectDependency": false }, { - "componentId": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8", - "componentName": "@microsoft/sp-page-context", - "componentVersion": "1.13.1", + "componentId": "3173fefe-9995-49d1-a75d-a5caeaaba212", + "componentName": "@ms/sp-pages-content-panel-context", + "componentVersion": "0.1.0", "isDirectDependency": false }, { @@ -169,36 +254,133 @@ "isDirectDependency": false }, { - "componentId": "c07208f0-ea3b-4c1a-9965-ac1b825211a6", - "componentName": "@microsoft/sp-http", - "componentVersion": "1.13.1", + "componentId": "63d75709-2785-4c91-97ad-489b171397d4", + "componentName": "@ms/sp-fluentui-migration-reactdom-render-bundle", + "componentVersion": "0.1.0", "isDirectDependency": false }, { - "componentId": "0d910c1c-13b9-4e1c-9aa4-b008c5e42d7d", - "componentName": "react", - "componentVersion": "16.13.1", + "componentId": "cc2cc925-b5be-41bb-880a-f0f8030c6aff", + "componentName": "@ms/odsp-utilities-bundle", + "componentVersion": "5.6.195", "isDirectDependency": false }, { - "componentId": "aa0a46ec-1505-43cd-a44a-93f3a5aa460a", - "componentName": "react-dom", - "componentVersion": "16.13.1", + "componentId": "8494e7d7-6b99-47b2-a741-59873e42f16f", + "componentName": "@ms/sp-component-utilities", + "componentVersion": "12.52.18", + "isDirectDependency": false + }, + { + "componentId": "8217e442-8ed3-41fd-957d-b112e841286a", + "componentName": "@ms/sp-telemetry", + "componentVersion": "0.32.116", + "isDirectDependency": false + }, + { + "componentId": "0ec74f52-38bc-4a51-ab82-7c91a2b399a2", + "componentName": "@ms/sp-fluentui-v9-utilities-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "72ec0651-8a26-441c-87f2-77ec66884ca3", + "componentName": "@ms/sp-fluentui-v9-react-button-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "396bbc17-3d18-4f43-8299-d99720d88e22", + "componentName": "@ms/office-ui-fabric-react-bundle", + "componentVersion": "1.19.6", + "isDirectDependency": false + }, + { + "componentId": "fab65e60-a04f-4772-874c-10691e4afa4b", + "componentName": "@ms/sp-fluentui-migration-tooltip-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "0ad7e31a-8df9-4659-add8-a32c8e40040d", + "componentName": "@ms/sp-fluentui-migration-button-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "bf211556-3cf0-412c-9618-a4f0e7069ebf", + "componentName": "@ms/sp-heading-level", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "ffe5c101-373a-4bd2-bebb-13082852bab0", + "componentName": "@ms/sp-fluentui-migration-label-bundle", + "componentVersion": "0.1.0", + "isDirectDependency": false + }, + { + "componentId": "1c6c9123-7aac-41f3-a376-3caea41ed83f", + "componentName": "@microsoft/sp-loader", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "8496636c-2300-4915-abef-20de64c98d8b", + "componentName": "@microsoft/sp-http-base", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8", + "componentName": "@microsoft/sp-page-context", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "e40f8203-b39d-425a-a957-714852e33b79", + "componentName": "@microsoft/sp-dynamic-data", + "componentVersion": "1.20.0", "isDirectDependency": false }, { "componentId": "974a7777-0990-4136-8fa6-95d80114c2e0", "componentName": "@microsoft/sp-webpart-base", - "componentVersion": "1.13.1", + "componentVersion": "1.20.0", "isDirectDependency": true }, { "componentId": "467dc675-7cc5-4709-8aac-78e3b71bd2f6", "componentName": "@microsoft/sp-component-base", - "componentVersion": "1.13.1", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "c07208f0-ea3b-4c1a-9965-ac1b825211a6", + "componentName": "@microsoft/sp-http", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "aec2bbfd-a968-4d5b-a279-12e570f378e6", + "componentName": "@microsoft/sp-http-msgraph", + "componentVersion": "1.20.0", + "isDirectDependency": false + }, + { + "componentId": "6d3c733c-8cb7-4871-bb22-b5b37c1d518d", + "componentName": "@ms/sp-safehtml", + "componentVersion": "0.4.0", + "isDirectDependency": false + }, + { + "componentId": "42647dee-1f75-4b9f-b521-5c844a6c35cc", + "componentName": "@ms/sp-edit-customer-promise", + "componentVersion": "0.1.0", "isDirectDependency": false } - ] + ], + "asyncChunks": {} } } } diff --git a/samples/react-list-search/release/webpack-stats/react-list-search.stats.json b/samples/react-list-search/release/webpack-stats/react-list-search.stats.json deleted file mode 100644 index 9887e4895..000000000 --- a/samples/react-list-search/release/webpack-stats/react-list-search.stats.json +++ /dev/null @@ -1,467237 +0,0 @@ -{ - "errors": [], - "warnings": [], - "version": "4.44.2", - "hash": "d189950852d44ad38936", - "time": 26426, - "builtAt": 1657543345878, - "publicPath": "", - "outputPath": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/dist", - "assetsByChunkName": { - "list-search-consumer-web-part-web-part": "list-search-consumer-web-part-web-part_6853162e497aa9ba739b.js", - "list-search-web-part": "list-search-web-part_bac753674edea9d24093.js" - }, - "assets": [ - { - "name": "292daaa0-2474-445b-98f8-afa6ad4a9c92.manifest.json", - "size": 7522, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "306e0650-db3c-443a-a698-12be6e6de1ad.manifest.json", - "size": 1829, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_bg-bg_4ae3e13099c6f343a95b18145ac38c01.js", - "size": 19416, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_ca-es_df880a822a29aa6763a5376e3f999c11.js", - "size": 19416, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_da-dk_b6cb12204315ffe9ec16a7cb61147f7f.js", - "size": 18746, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_de-de_1b10e74c3734c3bbfdd2b2baaef3ff21.js", - "size": 19478, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_el-gr_fed18d86607116ae4e5ef8030eeb4601.js", - "size": 19800, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_en-us_39a6ff1609eca78af6bf490890200fa7.js", - "size": 17790, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_es-es_bd93421761ebded4e12ecb1c0e3f8496.js", - "size": 19422, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_et-ee_183d7bedeae7fe03586a26fc26d1ca73.js", - "size": 18758, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_eu-es_511321cb9b07e1ffa35c0ea620681a6b.js", - "size": 16109, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_fi-fi_63c09a981f096d9ffeefe7cf3c412343.js", - "size": 19020, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_fr-ca_a547fd66dcf9033e3c579cfb9abdc150.js", - "size": 19936, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_fr-fr_014dc2ebd1e7e8df54a002aeee14e347.js", - "size": 19784, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_it-it_c27b17c137ea4aeae5d1baad1cf069eb.js", - "size": 19731, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_ja-jp_59bd518f5725ec0783f4b18ee3364a8c.js", - "size": 16311, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_lt-lt_e97b9630d284e854e460f123c135944a.js", - "size": 19099, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_lv-lv_b0374da8446210878e30d27f42e7d2a2.js", - "size": 19149, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_nb-no_22c043e9e56a33df99c4479e3c8d597f.js", - "size": 18677, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_nl-nl_dc3409997a410faef291dbb98cc84026.js", - "size": 19277, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_pl-pl_326bb40b9143e11b2608d108afe26a5f.js", - "size": 19161, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_pt-pt_142907b408e3920cd3ae65be5a73bbbf.js", - "size": 19271, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_ro-ro_bade2de411b9b883a6dde68f1c97014c.js", - "size": 19289, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_ru-ru_4e7ab14f856d57b9914bd44f9d16a947.js", - "size": 18891, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_sk-sk_2355e1eb0bd62514d195da2859164a24.js", - "size": 19136, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_sr-latn-rs_841cd07c26bbe796c3dfa9461a6cfda6.js", - "size": 18943, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_sv-se_6c805964a12a2d98d110cc4c91d2a666.js", - "size": 18605, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_tr-tr_952cf3f3f2d44c9a31a51717ade18601.js", - "size": 18761, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_vi-vn_f528ed9d9dee63d9df93f899bc1877ab.js", - "size": 18792, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_zh-cn_2700e28d74e90270fa34146862c9869c.js", - "size": 15190, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ControlStrings_zh-tw_dbe5a6f2ffd3bd6c0c15d98e808b0a5f.js", - "size": 15169, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ListSearchConsumerWebPartWebPartStrings_en-us_b41dd8b4c7f5f69692bd8f24e2b83745.js", - "size": 173, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "ListSearchWebPartStrings_en-us_24df99349f7d4dcd7de8c383d4dcd595.js", - "size": 6381, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_bg-bg_0f530fd9341d511d823f544336e05451.js", - "size": 12147, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_ca-es_d0bea49bdde90c515176e5ca95aa4505.js", - "size": 12346, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_da-dk_09260ca2ba6359b55c5cc2de35476162.js", - "size": 11829, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_de-de_26e838864f35345662f9cb69d075fc59.js", - "size": 12446, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_el-gr_8a3df889e1de9d5be1de15247b784967.js", - "size": 12592, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_en-us_8d31c2c7b3eabe41420cdd4d07649433.js", - "size": 11699, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_es-es_bf3fed45d9ab4bfcbc1a8f1154ed3efd.js", - "size": 12269, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_et-ee_0185ff30ae87ce90e4e92ca552c72113.js", - "size": 11784, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_fi-fi_e66a7d8987f635dff1180d38d4f4be02.js", - "size": 11958, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_fr-fr_10fb9a63e4d55688a6a32651ecd0d7c2.js", - "size": 12522, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_it-it_579aa7ec6184af74b68c440d900fcb7c.js", - "size": 12352, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_ja-jp_6faa5fb558332503e84dbc4ba1ec61ec.js", - "size": 9927, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_lt-lt_c33bb88fb983aad30cc086b3a21bc9c0.js", - "size": 12231, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_lv-lv_b8a04cf55550c75c8330aee5c48ef7ec.js", - "size": 12026, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_nb-no_c8c149a62776c9fd5fbde81d4afe2f88.js", - "size": 11768, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_nl-nl_bb4b9bbcf3528f84f65c176d10697197.js", - "size": 12218, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_no_ffa809fb347866c01f72c107382c6e6e.js", - "size": 3542, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_pl-pl_b29005ae2cc04860a049f69dfb1b386c.js", - "size": 12128, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_pt-pt_7fc41a3593a2c19de649ddfd9131fbf9.js", - "size": 12175, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_ro-ro_ea10add64697b82579199bba6fb33c1b.js", - "size": 12253, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_ru-ru_374991af888dea8806509ee0d8dd0593.js", - "size": 12124, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_sk-sk_469150295d10e7f0030756f1a4f98d92.js", - "size": 12115, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_sr-latn-rs_e4e114a085eae9b87ea6f63a577ed836.js", - "size": 11883, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_sv-se_8a45b8df6db70f6d875ae3cbcb0bfcb2.js", - "size": 11859, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_tr-tr_d5426979b2be36a1121cf27a106d30e0.js", - "size": 11900, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_vi-vn_f80d9ea3b90ca91c58c3c42b89f8bf41.js", - "size": 11925, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_zh-cn_0e28954ea11f5378ff43ace8394b8355.js", - "size": 9247, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "PropertyControlStrings_zh-tw_b8ea9e303468568f4c4f40e6502e5b93.js", - "size": 9425, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - }, - { - "name": "list-search-consumer-web-part-web-part_6853162e497aa9ba739b.js", - "size": 9213, - "chunks": [ - 0 - ], - "chunkNames": [ - "list-search-consumer-web-part-web-part" - ], - "info": { - "immutable": true - }, - "emitted": true - }, - { - "name": "list-search-web-part_bac753674edea9d24093.js", - "size": 1061366, - "chunks": [ - 1 - ], - "chunkNames": [ - "list-search-web-part" - ], - "info": { - "immutable": true - }, - "emitted": true, - "isOverSizeLimit": true - }, - { - "name": "list-search-web-part_bac753674edea9d24093.js.LICENSE.txt", - "size": 1769, - "chunks": [], - "chunkNames": [], - "info": {}, - "emitted": true - } - ], - "filteredAssets": 0, - "entrypoints": { - "list-search-web-part": { - "chunks": [ - 1 - ], - "assets": [ - "list-search-web-part_bac753674edea9d24093.js" - ], - "children": {}, - "childAssets": {}, - "isOverSizeLimit": true - }, - "list-search-consumer-web-part-web-part": { - "chunks": [ - 0 - ], - "assets": [ - "list-search-consumer-web-part-web-part_6853162e497aa9ba739b.js" - ], - "children": {}, - "childAssets": {} - } - }, - "namedChunkGroups": { - "list-search-web-part": { - "chunks": [ - 1 - ], - "assets": [ - "list-search-web-part_bac753674edea9d24093.js" - ], - "children": {}, - "childAssets": {}, - "isOverSizeLimit": true - }, - "list-search-consumer-web-part-web-part": { - "chunks": [ - 0 - ], - "assets": [ - "list-search-consumer-web-part-web-part_6853162e497aa9ba739b.js" - ], - "children": {}, - "childAssets": {} - } - }, - "chunks": [ - { - "id": 0, - "rendered": true, - "initial": true, - "entry": true, - "size": 21849, - "names": [ - "list-search-consumer-web-part-web-part" - ], - "files": [ - "list-search-consumer-web-part-web-part_6853162e497aa9ba739b.js" - ], - "hash": "4200191b80cabdb50957", - "siblings": [], - "parents": [], - "children": [], - "childrenByOrder": {}, - "modules": [ - { - "id": "26ea", - "identifier": "external \"@microsoft/sp-property-pane\"", - "name": "external \"@microsoft/sp-property-pane\"", - "index": 4, - "index2": 3, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "14:0-68" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "25:20-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "2:0-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "5:20-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "13:0-165" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "467:81-101" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "472:83-104" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "475:79-97" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "479:84-104" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "490:137-158" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "493:165-192" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "496:16-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "516:86-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "522:87-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "526:77-98" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "544:72-92" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "556:63-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "561:76-96" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "591:85-105" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "690:137-158" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "768:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "773:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "778:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "919:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "929:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "934:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "946:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "968:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "977:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "982:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "994:32-50" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "3:0-124" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "45:32-59" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "48:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "51:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "54:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "59:47-69" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "14:0-68" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "18:20-41" - } - ], - "usedExports": [ - "DynamicDataSharedDepth", - "PropertyPaneDropdown", - "PropertyPaneDynamicField", - "PropertyPaneDynamicFieldSet", - "PropertyPaneFieldType", - "PropertyPaneTextField", - "PropertyPaneToggle" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "3hNq", - "identifier": "external \"ListSearchConsumerWebPartWebPartStrings\"", - "name": "external \"ListSearchConsumerWebPartWebPartStrings\"", - "index": 919, - "index2": 918, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "ListSearchConsumerWebPartWebPartStrings", - "loc": "5:0-67" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchConsumerWebPartWebPartStrings", - "loc": "39:37-68" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchConsumerWebPartWebPartStrings", - "loc": "43:39-61" - } - ], - "usedExports": [ - "BasicGroupName", - "PropertyPaneDescription" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "JPst", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/runtime/api.js", - "name": "./node_modules/css-loader/dist/runtime/api.js", - "index": 22, - "index2": 13, - "size": 2677, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerId": "Lja1", - "issuerName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js" - }, - { - "id": "J5N+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.css" - }, - { - "id": "Lja1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8//X", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "Itfc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "type": "cjs require", - "userRequest": "../../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-86" - }, - { - "moduleId": "Lja1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "type": "cjs require", - "userRequest": "../../../node_modules/css-loader/dist/runtime/api.js", - "loc": "1:27-90" - }, - { - "moduleId": "MKqn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "T0RK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "type": "cjs require", - "userRequest": "../../../../node_modules/css-loader/dist/runtime/api.js", - "loc": "1:27-93" - }, - { - "moduleId": "a3+T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "gtmu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "nsUS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "sa5x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \"{\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = modules[_i]; // skip already imported module\n // this implementation is not 100% perfect for weird media query combinations\n // when a module is imported multiple times with different media queries.\n // I hope this will never occur (Hey this way we have smaller bundles)\n\n if (item[0] == null || !alreadyImportedModules[item[0]]) {\n if (mediaQuery && !item[2]) {\n item[2] = mediaQuery;\n } else if (mediaQuery) {\n item[2] = \"(\".concat(item[2], \") and (\").concat(mediaQuery, \")\");\n }\n\n list.push(item);\n }\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot).concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}" - }, - { - "id": "Snj6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "index": 922, - "index2": 920, - "size": 600, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "cjs require", - "userRequest": "./ListSearchConsumerWebPart.module.css", - "loc": "2:0-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "var content = require(\"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/postcss-loader/src/index.js??postcss!./ListSearchConsumerWebPart.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "T0RK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "index": 923, - "index2": 919, - "size": 1669, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "issuerId": "Snj6", - "issuerName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js" - }, - { - "id": "Snj6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Snj6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "type": "cjs require", - "userRequest": "!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/postcss-loader/src/index.js??postcss!./ListSearchConsumerWebPart.module.css", - "loc": "1:14-175" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "exports = module.exports = require(\"../../../../node_modules/css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".listSearchConsumerWebPart_5b75b837{margin:5px;background-color:\\\"[theme:themePrimary, default: #0078d4]\\\";color:\\\"[theme:white, default: #ffffff]\\\";box-sizing:border-box;padding:0 8px;box-shadow:0 2px 4px 0 rgba(0,0,0,.2),0 25px 50px 0 rgba(0,0,0,.1)}.listSearchConsumerWebPart_5b75b837:after,.listSearchConsumerWebPart_5b75b837:before{display:table;content:\\\"\\\";line-height:0}.listSearchConsumerWebPart_5b75b837:after{clear:both}.listSearchConsumerWebPart_5b75b837 .row_5b75b837{margin:0 -8px;box-sizing:border-box}.listSearchConsumerWebPart_5b75b837 .row_5b75b837:after,.listSearchConsumerWebPart_5b75b837 .row_5b75b837:before{display:table;content:\\\"\\\";line-height:0}.listSearchConsumerWebPart_5b75b837 .row_5b75b837:after{clear:both}.listSearchConsumerWebPart_5b75b837 .column_5b75b837{position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearchConsumerWebPart_5b75b837 .column_5b75b837{float:left}[dir=rtl] .listSearchConsumerWebPart_5b75b837 .column_5b75b837{float:right}.listSearchConsumerWebPart_5b75b837 .column_5b75b837 .ms-Grid_5b75b837{padding:0}@media (min-width:640px){.listSearchConsumerWebPart_5b75b837 .column_5b75b837{width:100%}}.listSearchConsumerWebPart_5b75b837 .title_5b75b837{font-size:21px;font-weight:100}.listSearchConsumerWebPart_5b75b837 .description_5b75b837,.listSearchConsumerWebPart_5b75b837 .subTitle_5b75b837{font-size:17px;font-weight:300}.listSearchConsumerWebPart_5b75b837 .value_5b75b837{font-size:14px;font-weight:400}\", \"\"]);\n" - }, - { - "id": "br4S", - "identifier": "external \"@microsoft/sp-webpart-base\"", - "name": "external \"@microsoft/sp-webpart-base\"", - "index": 5, - "index2": 4, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "3:0-67" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "7:20-41" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "14:0-67" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "21:20-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "14:0-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "31:47-68" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "4:0-68" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "7:55-76" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "14:0-67" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "20:20-41" - } - ], - "usedExports": [ - "BaseClientSideWebPart", - "PropertyPaneFieldType" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "cDcd", - "identifier": "external \"react\"", - "name": "external \"react\"", - "index": 1, - "index2": 0, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+D8x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "module": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "+D8x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "module": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:13-27" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:26-41" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:22-37" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:20-39" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:16-35" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:2-17" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:12-31" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:8-27" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:12-31" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "85:26-45" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:16-35" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:28-47" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "157:2-17" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:26-41" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:31-46" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:27-42" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "305:16-35" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "306:12-31" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "307:16-35" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "308:34-53" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "309:16-35" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "310:20-39" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "395:2-17" - }, - { - "moduleId": "/sqS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "/sqS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:25-42" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:28-43" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:23-38" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:33-48" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "239:16-35" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "240:22-41" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "241:12-31" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "242:40-59" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "243:16-35" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "244:20-39" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "245:43-62" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "246:35-54" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:24-43" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "248:55-74" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "249:24-43" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "250:24-43" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "251:30-49" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "252:12-31" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "390:2-17" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:23-42" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:23-42" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:23-42" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:39-58" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:33-52" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "80:16-35" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:100-119" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "82:52-71" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:12-31" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:2-17" - }, - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "react", - "loc": "8:37-53" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:23-42" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:23-42" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:23-42" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:23-42" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:23-42" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:21-36" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:35-50" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:16-35" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "204:48-67" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "205:12-31" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "291:2-17" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:15-34" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:2-17" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:22-37" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:20-39" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:20-39" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:2-17" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:19-33" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:15-34" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:41-46" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:12-32" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:23-42" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "79:15-34" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:48-67" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:59-78" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:16-35" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:12-31" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:2-17" - }, - { - "moduleId": "57t7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "57t7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "2:31-50" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:27-42" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:19-38" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:20-39" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "64:20-39" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "85:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:12-31" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:51-70" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "156:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "162:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "176:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "286:2-17" - }, - { - "moduleId": "5fkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "module": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "5fkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "module": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:39-53" - }, - { - "moduleId": "5fkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "module": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:2-17" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:22-41" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "243:16-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "246:12-31" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:16-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:199-218" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:550-569" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "248:16-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "249:20-39" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "250:24-43" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "255:28-47" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "256:24-43" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "261:28-47" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "262:44-63" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "263:28-47" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "264:12-31" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "265:16-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "266:20-39" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "267:24-43" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "268:47-66" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "269:82-101" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "270:20-39" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "272:32-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "273:63-82" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "278:32-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "281:36-55" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "285:40-59" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "304:36-55" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "308:40-59" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "547:2-17" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:4-19" - }, - { - "moduleId": "6SDC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConst.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "6SDC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConst.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:14-26" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:16-35" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:12-31" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:43-62" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:2-17" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "196:2-17" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:15-34" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:2-17" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:23-38" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "283:16-35" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "284:74-93" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "285:29-48" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "286:26-45" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "287:12-31" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "287:132-151" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "288:16-35" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "297:16-35" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "298:20-39" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "299:20-39" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "300:74-93" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "301:29-48" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "302:26-45" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "348:2-17" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "16:0-31" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:32-51" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:134-153" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:6-21" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:11-27" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:59-78" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "37:0-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "38:0-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:13-27" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:13-27" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:13-27" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:24-41" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:24-41" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "61:0-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:4-19" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:4-19" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:15-34" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:35-49" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:11-30" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:4-19" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "90:15-34" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "90:35-49" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "92:11-30" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "481:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "483:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "485:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "487:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "489:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "491:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "506:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "549:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "550:69-88" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "551:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "552:78-97" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "553:57-76" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "554:12-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "555:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "556:20-39" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "557:24-43" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "558:43-62" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "558:359-378" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "559:20-39" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "560:20-39" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "560:107-126" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "561:24-43" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "564:12-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "566:41-60" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "567:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "567:70-89" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "573:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "576:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:27-42" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:33-48" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:32-47" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:20-39" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "89:12-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "90:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:12-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "137:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "167:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "170:12-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "181:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "188:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "189:12-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "190:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "191:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "194:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:20-39" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "235:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "241:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "250:19-38" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "253:19-38" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "258:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "263:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "268:25-40" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "276:20-39" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "279:20-39" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "290:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "305:2-17" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:11-30" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:2-17" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:29-41" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:20-32" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:22-37" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "441:16-35" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "1044:2-17" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:29-44" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:24-43" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:23-42" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "197:16-35" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:12-31" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:16-35" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:76-95" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:33-52" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "206:20-39" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "207:24-43" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "208:28-47" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "209:76-95" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "210:45-64" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "212:33-52" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "213:20-39" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:24-43" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "215:28-47" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "322:15-34" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "326:15-34" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "357:16-35" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "367:16-35" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "416:2-17" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "4:0-31" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-22" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:20-39" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:16-35" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:16-35" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:21-40" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:27-46" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:2-17" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:16-35" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:159-178" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:2-17" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-27" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:12-31" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:32-46" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:67-86" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:27-46" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "12:0-31" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:22-41" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "5:27-46" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:44-60" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:60-76" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:11-30" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:75-94" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:4-19" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:27-42" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:82-101" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:99-118" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:54-73" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "94:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "98:60-79" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "103:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "104:16-35" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "110:24-43" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "113:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:24-43" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "118:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "152:16-35" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "172:2-17" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:16-35" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:12-31" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:28-47" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "237:27-46" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "574:2-17" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:29-48" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:24-43" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:24-43" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:30-49" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:24-43" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:40-59" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:16-35" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:12-31" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:16-35" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:2-17" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:12-31" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:8-27" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:12-31" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:8-27" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:12-31" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:8-27" - }, - { - "moduleId": "HBL8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Page.js", - "module": "./node_modules/react-js-pagination/dist/Page.js", - "moduleName": "./node_modules/react-js-pagination/dist/Page.js", - "type": "cjs require", - "userRequest": "react", - "loc": "8:37-53" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:29-44" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:16-35" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:2-17" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:22-37" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:16-35" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:2-17" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:12-31" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:8-27" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:12-31" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:8-27" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "125:16-35" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:12-31" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:2-17" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:12-31" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:2-17" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:35-50" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "144:20-39" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "164:16-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "165:12-31" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "166:66-85" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "166:423-442" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "167:16-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "168:20-39" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "169:24-43" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "174:28-47" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "175:24-43" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "180:28-47" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "181:12-31" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "182:16-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "184:28-47" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "194:32-51" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "215:2-17" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:12-31" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:2-17" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "KB00", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "KB00", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:13-27" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "4:13-27" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:19-31" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:22-34" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:4-19" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:4-19" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:23-42" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:19-38" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "12:0-31" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:22-41" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "25:0-31" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:24-43" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:16-35" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:12-31" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:40-59" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:16-35" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:2-17" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "4:0-31" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:8-22" - }, - { - "moduleId": "MZ0x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "MZ0x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:35-54" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:36-51" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:37-52" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:33-48" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:40-59" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "218:16-35" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "219:12-31" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "220:25-44" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:67-86" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:25-44" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "228:62-81" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:26-45" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:102-121" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "302:16-35" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "302:251-270" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "303:12-31" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "306:2-17" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:30-45" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:16-35" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "297:2-17" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "211:29-48" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:22-37" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:34-49" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "228:33-48" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "253:16-35" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "254:12-31" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "255:60-79" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "256:20-39" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "257:16-35" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "318:2-17" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:20-39" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:16-35" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:20-39" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:20-39" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:2-17" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:30-45" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:37-52" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:33-52" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "124:33-52" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:33-52" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:2-17" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:11-30" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:16-35" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:12-31" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:15-29" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:27-46" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:2-17" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:15-34" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:30-45" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:19-38" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:20-39" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:16-35" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:23-42" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:16-35" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "79:2-17" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:16-35" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:2-17" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "16:0-31" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:31-50" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:125-144" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:6-21" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:11-27" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:60-79" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:2-17" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "21:0-31" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:16-35" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "215:12-31" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "216:16-35" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "217:49-68" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "218:61-80" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:38-57" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:20-39" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "223:20-39" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "224:144-163" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:52-71" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "226:77-96" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "227:12-31" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "228:79-98" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:82-101" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:16-35" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:2-17" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:21-36" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:22-37" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:26-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:34-49" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "498:16-35" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "499:12-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "501:16-35" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "502:20-39" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "503:45-64" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "504:47-66" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "514:62-81" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "515:12-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "681:20-39" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "743:2-17" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "776:16-35" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "777:12-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "779:16-35" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "780:20-39" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "782:12-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "783:16-35" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:22-37" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:32-47" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:32-47" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:34-49" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "339:16-35" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "340:12-31" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "341:12-31" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "342:16-35" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "343:12-31" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "344:16-35" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "387:2-17" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:30-45" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:30-45" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "87:16-35" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:12-31" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:2-17" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:19-38" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:2-17" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:22-37" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:22-37" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "50:0-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:30-45" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "106:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "107:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "109:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "110:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "113:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "114:49-68" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "128:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "132:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "133:2-17" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "140:2-17" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "150:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "151:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "152:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "153:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:20-39" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:24-43" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "158:47-66" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "159:42-61" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:2-17" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:24-43" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "163:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "164:20-39" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "165:24-43" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "166:28-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "167:28-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "168:28-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "169:28-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "170:50-69" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "171:20-39" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "172:24-43" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "176:36-55" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "177:32-51" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "287:2-17" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "3:0-31" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:22-41" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:49-68" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:2-17" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:29-44" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:32-47" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "213:23-42" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:12-31" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "218:31-50" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "219:31-50" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "220:16-35" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "451:2-17" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:15-34" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "3:0-31" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:32-47" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:29-44" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:23-42" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:12-31" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "134:49-68" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "319:2-17" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "3:0-31" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:28-43" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:40-55" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:45-60" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:36-51" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:35-50" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:38-53" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "226:16-35" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "227:12-31" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "228:34-53" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:16-35" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:16-35" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "231:20-39" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "232:24-43" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:102-121" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "234:28-47" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "236:55-74" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "237:56-75" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "239:32-51" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "240:36-55" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "241:40-59" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "425:2-17" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "25:0-31" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:16-35" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:12-31" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:12-31" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:46-65" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:12-31" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:48-67" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:16-35" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:2-17" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:28-43" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:16-35" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:48-67" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:2-17" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:15-34" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:2-17" - }, - { - "moduleId": "UA/s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "UA/s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:15-27" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:16-35" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:28-47" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:24-43" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:26-45" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:2-17" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:24-43" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:30-49" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:16-35" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:12-31" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:16-35" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:16-35" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:85-104" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:108-127" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:12-31" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:16-35" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:8-22" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:2-17" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:29-44" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:30-45" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:16-35" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:12-31" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "128:16-35" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:12-31" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:33-52" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:16-35" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "176:2-17" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:18-34" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:21-33" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:25-41" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:4-19" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:13-27" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:15-34" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:31-41" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:25-40" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:29-44" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:30-49" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:31-50" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:16-35" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:36-50" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:12-31" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:19-38" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:2-17" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:16-35" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:34-53" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:2-17" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:2-17" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:22-37" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:29-44" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:28-43" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "177:16-35" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "178:12-31" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "180:12-31" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "273:2-17" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:27-42" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "210:16-35" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "287:2-17" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "106:16-35" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "107:12-31" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:2-17" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:28-47" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:35-54" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:31-50" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:14-29" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:31-46" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:34-49" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:21-36" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:22-37" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "197:16-35" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:12-31" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "199:16-35" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:20-39" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:47-66" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "212:16-35" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "216:16-35" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "236:2-17" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "4:0-31" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:24-38" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:19-37" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:113-132" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:20-39" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:32-51" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:20-39" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:21-40" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:19-38" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:2-17" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:23-38" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:44-58" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:19-38" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "216:23-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "218:16-35" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "219:12-31" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "220:16-35" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "223:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "224:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "227:28-47" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "291:2-17" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:39-54" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:23-42" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:43-57" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:20-39" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:16-35" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:12-31" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:2-17" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:8-27" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:8-27" - }, - { - "moduleId": "fGTi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useId.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "fGTi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useId.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:14-26" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "50:0-31" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:16-35" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:12-31" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:12-31" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:2-17" - }, - { - "moduleId": "gTQK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js bc4d268370d78d06620ded50fe0ebdb7", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "gTQK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js bc4d268370d78d06620ded50fe0ebdb7", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:2-17" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:27-42" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:29-44" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "192:16-35" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "193:12-31" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "194:16-35" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "195:20-39" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "196:24-43" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "197:51-70" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:74-93" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "199:53-72" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:46-65" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "204:12-31" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "239:2-17" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:16-35" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:12-31" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:21-40" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:30-49" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:16-35" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:20-39" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:2-17" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:24-39" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:16-35" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:12-31" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:16-35" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:12-31" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:16-35" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:20-39" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:16-35" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:2-17" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:16-35" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:2-17" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:2-17" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:22-37" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:26-41" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:33-48" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "64:30-45" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "66:33-48" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:20-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "134:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "316:20-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "320:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "332:24-43" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "334:69-88" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "342:20-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "373:51-70" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "377:256-275" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "377:446-465" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "383:20-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "411:19-38" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "830:45-64" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "833:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "840:12-31" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "1230:19-38" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "1236:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "1665:2-17" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:20-39" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "66:37-56" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "107:48-67" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-42" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:14-20" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:4-13" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:19-31" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:4-25" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:4-25" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:13-27" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:19-31" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:15-34" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:2-17" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "2:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "6:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "10:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "10:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:26-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:28-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:21-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:24-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:25-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:30-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:49-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "15:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:30-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:30-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:26-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:31-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:38-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:30-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:15-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:27-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:27-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:90-109" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:68-87" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "25:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "25:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:30-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:21-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:55-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:13-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:30-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:100-119" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:28-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:28-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:4-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:32-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:85-104" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:108-127" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:39-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:30-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:49-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:31-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:31-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:187-206" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:29-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:29-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:8-22" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:68-87" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:14-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:87-106" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:42-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:93-112" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:167-186" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:209-228" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:39-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:25-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:63-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:39-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:34-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:43-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:30-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "64:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "64:32-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:38-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:32-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:71-90" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:134-153" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:273-292" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:29-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "85:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "90:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "91:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "91:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "94:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "96:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "97:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "97:26-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "98:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "98:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "98:148-167" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "99:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "99:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "100:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "100:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "102:56-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "103:62-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "104:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "106:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "106:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "107:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:41-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "109:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "110:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "110:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "111:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "112:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "113:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "115:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "115:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "115:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:29-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:102-121" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "118:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "118:41-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "119:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "119:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "119:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "120:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "120:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "120:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "120:43-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:417-436" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "122:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "124:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "124:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "125:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "125:21-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "128:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "128:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:36-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "132:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "133:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "134:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "135:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "135:42-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "136:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "139:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "141:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "141:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "141:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "143:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "143:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "143:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "144:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "144:20-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "145:20-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "147:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "147:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:42-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:67-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "150:74-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "151:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "152:45-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "153:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:15-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:15-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "156:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "156:366-385" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "159:42-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "161:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "170:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "173:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "174:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "177:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "178:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "178:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "179:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "181:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "187:26-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "187:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "187:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:19-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "199:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:23-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:34-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "204:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "205:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "208:41-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "213:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:26-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "224:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "224:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:26-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:52-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:169-188" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:256-275" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "226:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "227:62-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "231:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:88-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "234:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "235:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "236:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "236:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "237:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "238:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "239:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "242:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "245:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "251:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "252:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "257:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "266:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "266:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "277:27-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "282:23-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "283:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "284:52-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "284:169-188" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "284:248-267" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "285:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "286:62-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "293:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "294:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "294:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "294:667-686" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "295:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "295:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "296:26-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "296:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "297:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "309:27-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "310:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "316:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "320:4-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "320:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "321:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "322:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "323:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "329:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "333:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "353:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "353:157-176" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "360:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "360:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "361:24-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "362:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "363:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "364:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "364:27-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "365:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "367:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "391:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "407:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "407:213-232" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "408:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "418:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "431:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "432:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "433:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "434:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "442:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "442:47-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "444:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "444:51-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "445:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "447:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "447:136-155" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "448:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "452:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "452:47-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "453:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "454:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "454:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "454:51-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "455:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "455:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "455:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "456:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "456:89-108" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "459:45-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "462:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "467:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "470:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "475:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "482:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "485:117-136" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "485:351-370" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "486:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "488:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "488:40-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "488:107-126" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "489:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "490:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "490:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "490:36-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "499:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "499:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "506:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "507:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "515:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "523:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "528:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "533:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "543:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "554:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "562:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "567:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "568:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "573:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "579:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "580:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "581:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "582:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "582:21-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "590:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "591:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "592:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "592:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "596:37-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "602:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "603:37-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "606:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "611:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "611:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "613:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "616:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "618:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "621:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "626:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "627:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "627:37-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "630:37-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "632:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "637:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "638:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "640:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "642:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "643:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "645:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "650:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "656:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "659:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "664:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "666:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "669:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "671:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "676:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "681:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "683:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "686:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "687:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "688:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "693:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "698:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "701:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "713:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "716:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "723:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "726:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "731:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "818:69-88" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "818:89-103" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "823:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "858:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "911:77-96" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "912:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "913:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "914:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "915:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "916:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "918:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "919:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "921:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "921:44-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "922:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "923:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "925:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "926:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "927:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "928:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "929:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "930:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "931:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "933:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "934:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "935:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "940:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "941:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "942:48-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "943:52-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:56-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:140-159" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:248-267" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:357-376" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:459-478" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:27-42" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:30-45" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:24-43" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:19-38" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "89:16-35" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "180:2-17" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:15-34" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:2-17" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:22-37" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:34-49" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:37-52" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:34-49" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:29-44" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:19-38" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:16-35" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "204:34-53" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "205:16-35" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "206:37-56" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "207:16-35" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "208:12-31" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "209:51-70" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "210:16-35" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "301:2-17" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:33-48" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:16-35" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:257-276" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:12-31" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "140:2-17" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:63-79" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:22-37" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:16-35" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "95:24-43" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "96:25-44" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "97:16-35" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "332:2-17" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:16-35" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:12-31" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:16-35" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:2-17" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "50:0-31" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "134:16-35" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "135:12-31" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "143:2-17" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "3:48-63" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "5:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "6:12-31" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:20-39" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:24-43" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:20-39" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:24-43" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:20-39" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:24-43" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:20-39" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:24-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:11-30" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:8-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:21-36" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:24-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:11-30" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:38-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:31-46" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:38-53" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:38-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:8-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:38-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:15-34" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:27-46" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:27-46" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:27-46" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:15-34" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:2-17" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:24-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:187-206" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:24-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:209-228" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:36-55" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "89:38-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "92:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "92:36-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:19-38" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "100:2-17" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:148-167" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "145:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "146:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "146:19-38" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "146:39-53" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "150:15-34" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "176:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "177:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "454:59-78" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "455:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "469:8-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "471:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "475:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "475:36-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "477:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "529:64-83" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "530:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "534:30-49" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "541:19-38" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "556:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "558:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "559:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "560:29-48" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "564:45-64" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "608:2-17" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "671:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "672:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "673:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "685:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "690:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "715:8-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "716:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "723:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "730:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "737:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "883:2-17" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:12-31" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:12-31" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:2-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:8-27" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:8-27" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "57:0-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "146:16-35" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "147:32-51" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "150:16-35" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "152:16-35" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:24-43" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:35-54" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "158:24-43" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:16-35" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "161:20-39" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "165:20-39" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "166:31-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "168:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "171:2-17" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "12:0-31" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:22-41" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:27-42" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:20-39" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:20-39" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:43-62" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:20-39" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:44-63" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:43-62" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "109:16-35" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "138:16-35" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:16-35" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:201-215" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "162:8-22" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "162:27-41" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:23-37" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "238:2-17" - }, - { - "moduleId": "sNMJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:16-35" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:26-45" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:2-17" - }, - { - "moduleId": "sip3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sip3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:19-33" - }, - { - "moduleId": "sip3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:6-21" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:20-39" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:177-196" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:245-264" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:16-35" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:2-21" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:23-42" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:12-31" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:24-43" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:28-47" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:58-77" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:2-17" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:12-31" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:8-27" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:20-39" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "250:16-35" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "263:2-17" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:27-42" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "192:16-35" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "195:53-72" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "195:130-149" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "220:2-17" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:22-37" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:27-42" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:26-41" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:39-53" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:39-53" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:30-49" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:231-250" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "91:24-43" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:39-53" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "161:47-66" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "167:346-365" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "179:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "494:28-47" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "643:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "645:12-31" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "645:132-151" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "646:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "650:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "652:32-51" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "765:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "766:12-31" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "771:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "778:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "873:2-17" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:15-34" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:2-17" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:21-38" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:23-42" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:15-34" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:2-17" - }, - { - "moduleId": "v8ot", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "v8ot", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:14-26" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:29-44" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:29-44" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:20-39" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:16-35" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:62-81" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:24-43" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:19-38" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:19-38" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "119:16-35" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:2-17" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:16-35" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:2-17" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-27" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "26:0-31" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:20-39" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:16-35" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:16-35" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:12-31" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:2-17" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:48-67" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:85-104" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:48-67" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:85-104" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:48-67" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "79:85-104" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "12:0-31" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:22-41" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:28-47" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:42-61" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:2-17" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:33-48" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:29-44" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:16-35" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:51-70" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "196:35-54" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:51-70" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "199:16-35" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "206:35-54" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "208:51-70" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "209:16-35" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:15-34" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "391:2-17" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:28-43" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:16-35" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:12-31" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:16-35" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:2-17" - }, - { - "moduleId": "xjL4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "xjL4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:22-34" - }, - { - "moduleId": "xjL4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:4-19" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-27" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:28-47" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:52-71" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:27-46" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:16-35" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "87:12-31" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "112:16-35" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:2-17" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:4-19" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:16-35" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:25-44" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:16-35" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:12-31" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:15-34" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:2-17" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:26-41" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:20-39" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:16-35" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:16-35" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:20-39" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:24-43" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:28-47" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:20-39" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "135:2-17" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:28-43" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:28-47" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:29-48" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:27-46" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:29-48" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:69-88" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "79:44-63" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "80:42-61" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:27-46" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "85:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "87:12-31" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "95:2-17" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "faye", - "identifier": "external \"react-dom\"", - "name": "external \"react-dom\"", - "index": 2, - "index2": 1, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "2:0-38" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "33:8-23" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "13:0-38" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "77:8-23" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "13:0-38" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "30:8-23" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "39:8-39" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "3:0-38" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "62:12-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "3:0-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "3:0-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "11:0-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "49:30-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "61:12-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "235:8-23" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "2:0-38" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "14:8-23" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "17:8-39" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "13:0-38" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "27:8-23" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "33:8-39" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "13:0-38" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "29:8-23" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "35:8-39" - } - ], - "usedExports": [ - "createPortal", - "findDOMNode", - "render", - "unmountComponentAtNode" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "oKet", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "index": 918, - "index2": 923, - "size": 4861, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": null, - "module": null, - "moduleName": null, - "type": "single entry", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "loc": "list-search-consumer-web-part-web-part" - } - ], - "usedExports": true, - "providedExports": [ - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-property-pane\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-webpart-base\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"ListSearchConsumerWebPartWebPartStrings\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"react-dom\" (<- Module is not an ECMAScript module)" - ], - "depth": 0, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "index": 918, - "index2": 923, - "size": 2891, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": null, - "module": null, - "moduleName": null, - "type": "single entry", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "loc": "list-search-consumer-web-part-web-part" - } - ], - "usedExports": true, - "providedExports": [ - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is an entry point" - ], - "depth": 0, - "source": "import * as React from 'react';\nimport * as ReactDom from 'react-dom';\nimport { DynamicDataSharedDepth, PropertyPaneDynamicFieldSet, PropertyPaneDynamicField } from '@microsoft/sp-property-pane';\nimport { BaseClientSideWebPart, } from '@microsoft/sp-webpart-base';\nimport * as strings from 'ListSearchConsumerWebPartWebPartStrings';\nimport ListSearchConsumer from './components/ListSearchConsumerWebPart';\nexport default class ListSearchConsumerWebPart extends BaseClientSideWebPart {\n render() {\n const element = React.createElement(ListSearchConsumer, {\n webUrl: this.properties.webUrl.tryGetValue(),\n listId: this.properties.listId.tryGetValue(),\n itemId: this.properties.itemId.tryGetValue(),\n });\n ReactDom.render(element, this.domElement);\n }\n onDispose() {\n ReactDom.unmountComponentAtNode(this.domElement);\n }\n get propertiesMetadata() {\n return {\n // Specify the web part properties data type to allow the address\n // information to be serialized by the SharePoint Framework.\n 'webUrl': {\n dynamicPropertyType: 'string'\n },\n 'listId': {\n dynamicPropertyType: 'string'\n },\n 'itemId': {\n dynamicPropertyType: 'number'\n }\n };\n }\n getPropertyPaneConfiguration() {\n return {\n pages: [\n {\n header: {\n description: strings.PropertyPaneDescription\n },\n groups: [\n {\n groupName: strings.BasicGroupName,\n groupFields: [\n PropertyPaneDynamicFieldSet({\n label: 'Select web Url',\n fields: [\n PropertyPaneDynamicField('webUrl', {\n label: 'Web Url'\n }),\n PropertyPaneDynamicField('listId', {\n label: 'List Id'\n }),\n PropertyPaneDynamicField('itemId', {\n label: 'Item Id'\n })\n ],\n sharedConfiguration: {\n depth: DynamicDataSharedDepth.Property\n }\n })\n ]\n }\n ]\n }\n ]\n };\n }\n}\n//# sourceMappingURL=ListSearchConsumerWebPartWebPart.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "index": 920, - "index2": 922, - "size": 1451, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/ListSearchConsumerWebPart", - "loc": "6:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "type": "harmony import specifier", - "userRequest": "./components/ListSearchConsumerWebPart", - "loc": "9:44-62" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 1, - "source": "import * as React from 'react';\nimport styles from './ListSearchConsumerWebPart.module.scss';\nexport default class ListSearchConsumer extends React.Component {\n render() {\n return (React.createElement(\"div\", { className: styles.listSearchConsumerWebPart },\n React.createElement(\"div\", { className: styles.row },\n React.createElement(\"div\", { className: styles.column },\n React.createElement(\"span\", { className: styles.title }, \"List search consumer webpart\")),\n React.createElement(\"div\", { className: styles.column },\n React.createElement(\"div\", { className: styles.description },\n \"WebUrl:\",\n React.createElement(\"p\", { className: styles.value }, this.props.webUrl))),\n React.createElement(\"div\", { className: styles.column },\n React.createElement(\"div\", { className: styles.description },\n \"ListId:\",\n React.createElement(\"p\", { className: styles.value }, this.props.listId))),\n React.createElement(\"div\", { className: styles.column },\n React.createElement(\"div\", { className: styles.description },\n \"ItemId:\",\n React.createElement(\"p\", { className: styles.value }, this.props.itemId))))));\n }\n}\n//# sourceMappingURL=ListSearchConsumerWebPart.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "index": 921, - "index2": 921, - "size": 494, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "2:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "5:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "6:52-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "7:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "8:61-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "9:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "10:60-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "12:62-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "13:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "14:60-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "16:62-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "17:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "18:60-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "type": "harmony import specifier", - "userRequest": "./ListSearchConsumerWebPart.module.scss", - "loc": "20:62-68" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 2, - "source": "/* tslint:disable */\nrequire(\"./ListSearchConsumerWebPart.module.css\");\nconst styles = {\n listSearchConsumerWebPart: 'listSearchConsumerWebPart_5b75b837',\n row: 'row_5b75b837',\n column: 'column_5b75b837',\n 'ms-Grid': 'ms-Grid_5b75b837',\n title: 'title_5b75b837',\n subTitle: 'subTitle_5b75b837',\n description: 'description_5b75b837',\n value: 'value_5b75b837'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=ListSearchConsumerWebPart.module.scss.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "ruv1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "name": "./node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "index": 23, - "index2": 16, - "size": 11360, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "issuerId": "SC5K", - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js" - }, - { - "id": "SC5K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "J5N+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "module": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "Mmr5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "SC5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "Snj6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "VSd+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "Xpmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "m08b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "sxkt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "yyay", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "\"use strict\";\n// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.splitStyles = exports.detokenize = exports.clearStyles = exports.loadTheme = exports.flush = exports.configureRunMode = exports.configureLoadStyles = exports.loadStyles = void 0;\n// Store the theming state in __themeState__ global scope for reuse in the case of duplicate\n// load-themed-styles hosted on the page.\nvar _root = typeof window === 'undefined' ? global : window; // eslint-disable-line @typescript-eslint/no-explicit-any\n// Nonce string to inject into script tag if one provided. This is used in CSP (Content Security Policy).\nvar _styleNonce = _root && _root.CSPSettings && _root.CSPSettings.nonce;\nvar _themeState = initializeThemeState();\n/**\n * Matches theming tokens. For example, \"[theme: themeSlotName, default: #FFF]\" (including the quotes).\n */\nvar _themeTokenRegex = /[\\'\\\"]\\[theme:\\s*(\\w+)\\s*(?:\\,\\s*default:\\s*([\\\\\"\\']?[\\.\\,\\(\\)\\#\\-\\s\\w]*[\\.\\,\\(\\)\\#\\-\\w][\\\"\\']?))?\\s*\\][\\'\\\"]/g;\nvar now = function () {\n return typeof performance !== 'undefined' && !!performance.now ? performance.now() : Date.now();\n};\nfunction measure(func) {\n var start = now();\n func();\n var end = now();\n _themeState.perf.duration += end - start;\n}\n/**\n * initialize global state object\n */\nfunction initializeThemeState() {\n var state = _root.__themeState__ || {\n theme: undefined,\n lastStyleElement: undefined,\n registeredStyles: []\n };\n if (!state.runState) {\n state = __assign(__assign({}, state), { perf: {\n count: 0,\n duration: 0\n }, runState: {\n flushTimer: 0,\n mode: 0 /* sync */,\n buffer: []\n } });\n }\n if (!state.registeredThemableStyles) {\n state = __assign(__assign({}, state), { registeredThemableStyles: [] });\n }\n _root.__themeState__ = state;\n return state;\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load\n * event is fired.\n * @param {string | ThemableArray} styles Themable style text to register.\n * @param {boolean} loadAsync When true, always load styles in async mode, irrespective of current sync mode.\n */\nfunction loadStyles(styles, loadAsync) {\n if (loadAsync === void 0) { loadAsync = false; }\n measure(function () {\n var styleParts = Array.isArray(styles) ? styles : splitStyles(styles);\n var _a = _themeState.runState, mode = _a.mode, buffer = _a.buffer, flushTimer = _a.flushTimer;\n if (loadAsync || mode === 1 /* async */) {\n buffer.push(styleParts);\n if (!flushTimer) {\n _themeState.runState.flushTimer = asyncLoadStyles();\n }\n }\n else {\n applyThemableStyles(styleParts);\n }\n });\n}\nexports.loadStyles = loadStyles;\n/**\n * Allows for customizable loadStyles logic. e.g. for server side rendering application\n * @param {(processedStyles: string, rawStyles?: string | ThemableArray) => void}\n * a loadStyles callback that gets called when styles are loaded or reloaded\n */\nfunction configureLoadStyles(loadStylesFn) {\n _themeState.loadStyles = loadStylesFn;\n}\nexports.configureLoadStyles = configureLoadStyles;\n/**\n * Configure run mode of load-themable-styles\n * @param mode load-themable-styles run mode, async or sync\n */\nfunction configureRunMode(mode) {\n _themeState.runState.mode = mode;\n}\nexports.configureRunMode = configureRunMode;\n/**\n * external code can call flush to synchronously force processing of currently buffered styles\n */\nfunction flush() {\n measure(function () {\n var styleArrays = _themeState.runState.buffer.slice();\n _themeState.runState.buffer = [];\n var mergedStyleArray = [].concat.apply([], styleArrays);\n if (mergedStyleArray.length > 0) {\n applyThemableStyles(mergedStyleArray);\n }\n });\n}\nexports.flush = flush;\n/**\n * register async loadStyles\n */\nfunction asyncLoadStyles() {\n return setTimeout(function () {\n _themeState.runState.flushTimer = 0;\n flush();\n }, 0);\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load event\n * is fired.\n * @param {string} styleText Style to register.\n * @param {IStyleRecord} styleRecord Existing style record to re-apply.\n */\nfunction applyThemableStyles(stylesArray, styleRecord) {\n if (_themeState.loadStyles) {\n _themeState.loadStyles(resolveThemableArray(stylesArray).styleString, stylesArray);\n }\n else {\n registerStyles(stylesArray);\n }\n}\n/**\n * Registers a set theme tokens to find and replace. If styles were already registered, they will be\n * replaced.\n * @param {theme} theme JSON object of theme tokens to values.\n */\nfunction loadTheme(theme) {\n _themeState.theme = theme;\n // reload styles.\n reloadStyles();\n}\nexports.loadTheme = loadTheme;\n/**\n * Clear already registered style elements and style records in theme_State object\n * @param option - specify which group of registered styles should be cleared.\n * Default to be both themable and non-themable styles will be cleared\n */\nfunction clearStyles(option) {\n if (option === void 0) { option = 3 /* all */; }\n if (option === 3 /* all */ || option === 2 /* onlyNonThemable */) {\n clearStylesInternal(_themeState.registeredStyles);\n _themeState.registeredStyles = [];\n }\n if (option === 3 /* all */ || option === 1 /* onlyThemable */) {\n clearStylesInternal(_themeState.registeredThemableStyles);\n _themeState.registeredThemableStyles = [];\n }\n}\nexports.clearStyles = clearStyles;\nfunction clearStylesInternal(records) {\n records.forEach(function (styleRecord) {\n var styleElement = styleRecord && styleRecord.styleElement;\n if (styleElement && styleElement.parentElement) {\n styleElement.parentElement.removeChild(styleElement);\n }\n });\n}\n/**\n * Reloads styles.\n */\nfunction reloadStyles() {\n if (_themeState.theme) {\n var themableStyles = [];\n for (var _i = 0, _a = _themeState.registeredThemableStyles; _i < _a.length; _i++) {\n var styleRecord = _a[_i];\n themableStyles.push(styleRecord.themableStyle);\n }\n if (themableStyles.length > 0) {\n clearStyles(1 /* onlyThemable */);\n applyThemableStyles([].concat.apply([], themableStyles));\n }\n }\n}\n/**\n * Find theme tokens and replaces them with provided theme values.\n * @param {string} styles Tokenized styles to fix.\n */\nfunction detokenize(styles) {\n if (styles) {\n styles = resolveThemableArray(splitStyles(styles)).styleString;\n }\n return styles;\n}\nexports.detokenize = detokenize;\n/**\n * Resolves ThemingInstruction objects in an array and joins the result into a string.\n * @param {ThemableArray} splitStyleArray ThemableArray to resolve and join.\n */\nfunction resolveThemableArray(splitStyleArray) {\n var theme = _themeState.theme;\n var themable = false;\n // Resolve the array of theming instructions to an array of strings.\n // Then join the array to produce the final CSS string.\n var resolvedArray = (splitStyleArray || []).map(function (currentValue) {\n var themeSlot = currentValue.theme;\n if (themeSlot) {\n themable = true;\n // A theming annotation. Resolve it.\n var themedValue = theme ? theme[themeSlot] : undefined;\n var defaultValue = currentValue.defaultValue || 'inherit';\n // Warn to console if we hit an unthemed value even when themes are provided, but only if \"DEBUG\" is true.\n // Allow the themedValue to be undefined to explicitly request the default value.\n if (theme &&\n !themedValue &&\n console &&\n !(themeSlot in theme) &&\n typeof DEBUG !== 'undefined' &&\n DEBUG) {\n console.warn(\"Theming value not provided for \\\"\" + themeSlot + \"\\\". Falling back to \\\"\" + defaultValue + \"\\\".\");\n }\n return themedValue || defaultValue;\n }\n else {\n // A non-themable string. Preserve it.\n return currentValue.rawString;\n }\n });\n return {\n styleString: resolvedArray.join(''),\n themable: themable\n };\n}\n/**\n * Split tokenized CSS into an array of strings and theme specification objects\n * @param {string} styles Tokenized styles to split.\n */\nfunction splitStyles(styles) {\n var result = [];\n if (styles) {\n var pos = 0; // Current position in styles.\n var tokenMatch = void 0;\n while ((tokenMatch = _themeTokenRegex.exec(styles))) {\n var matchIndex = tokenMatch.index;\n if (matchIndex > pos) {\n result.push({\n rawString: styles.substring(pos, matchIndex)\n });\n }\n result.push({\n theme: tokenMatch[1],\n defaultValue: tokenMatch[2] // May be undefined\n });\n // index of the first character after the current match\n pos = _themeTokenRegex.lastIndex;\n }\n // Push the rest of the string after the last match.\n result.push({\n rawString: styles.substring(pos)\n });\n }\n return result;\n}\nexports.splitStyles = splitStyles;\n/**\n * Registers a set of style text. If it is registered too early, we will register it when the\n * window.load event is fired.\n * @param {ThemableArray} styleArray Array of IThemingInstruction objects to register.\n * @param {IStyleRecord} styleRecord May specify a style Element to update.\n */\nfunction registerStyles(styleArray) {\n if (typeof document === 'undefined') {\n return;\n }\n var head = document.getElementsByTagName('head')[0];\n var styleElement = document.createElement('style');\n var _a = resolveThemableArray(styleArray), styleString = _a.styleString, themable = _a.themable;\n styleElement.setAttribute('data-load-themed-styles', 'true');\n if (_styleNonce) {\n styleElement.setAttribute('nonce', _styleNonce);\n }\n styleElement.appendChild(document.createTextNode(styleString));\n _themeState.perf.count++;\n head.appendChild(styleElement);\n var ev = document.createEvent('HTMLEvents');\n ev.initEvent('styleinsert', true /* bubbleEvent */, false /* cancelable */);\n ev.args = {\n newStyle: styleElement\n };\n document.dispatchEvent(ev);\n var record = {\n styleElement: styleElement,\n themableStyle: styleArray\n };\n if (themable) {\n _themeState.registeredThemableStyles.push(record);\n }\n else {\n _themeState.registeredStyles.push(record);\n }\n}\n//# sourceMappingURL=index.js.map" - }, - { - "id": "yLpj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/webpack/buildin/global.js", - "name": "(webpack)/buildin/global.js", - "index": 24, - "index2": 15, - "size": 472, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/safe-global.js", - "issuerId": "08ZC", - "issuerName": "./node_modules/@pnp/common/safe-global.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - }, - { - "id": "08ZC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/safe-global.js", - "name": "./node_modules/@pnp/common/safe-global.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "08ZC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/safe-global.js", - "module": "./node_modules/@pnp/common/safe-global.js", - "moduleName": "./node_modules/@pnp/common/safe-global.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-44" - }, - { - "moduleId": "5AgF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "module": "./node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "moduleName": "./node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-47" - }, - { - "moduleId": "Iceg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-53" - }, - { - "moduleId": "WFqU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_freeGlobal.js", - "module": "./node_modules/lodash/_freeGlobal.js", - "moduleName": "./node_modules/lodash/_freeGlobal.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-41" - }, - { - "moduleId": "ruv1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "module": "./node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "moduleName": "./node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-56" - }, - { - "moduleId": "sK+M", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-56" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n" - } - ], - "filteredModules": 0, - "origins": [ - { - "module": "", - "moduleIdentifier": "", - "moduleName": "", - "loc": "list-search-consumer-web-part-web-part", - "request": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "reasons": [] - } - ] - }, - { - "id": 1, - "rendered": true, - "initial": true, - "entry": true, - "size": 3033322, - "names": [ - "list-search-web-part" - ], - "files": [ - "list-search-web-part_bac753674edea9d24093.js" - ], - "hash": "ee558aeea5ebb2cd8a2a", - "siblings": [], - "parents": [], - "children": [], - "childrenByOrder": {}, - "modules": [ - { - "id": "+6XX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheHas.js", - "name": "./node_modules/lodash/_listCacheHas.js", - "index": 453, - "index2": 444, - "size": 403, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "issuerId": "Xi7e", - "issuerName": "./node_modules/lodash/_ListCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Xi7e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "module": "./node_modules/lodash/_ListCache.js", - "moduleName": "./node_modules/lodash/_ListCache.js", - "type": "cjs require", - "userRequest": "./_listCacheHas", - "loc": "4:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var assocIndexOf = require('./_assocIndexOf');\n\n/**\n * Checks if a list cache value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf ListCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction listCacheHas(key) {\n return assocIndexOf(this.__data__, key) > -1;\n}\n\nmodule.exports = listCacheHas;\n" - }, - { - "id": "+K+b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneArrayBuffer.js", - "name": "./node_modules/lodash/_cloneArrayBuffer.js", - "index": 541, - "index2": 534, - "size": 449, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "issuerId": "wrZu", - "issuerName": "./node_modules/lodash/_initCloneByTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "XYm9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneDataView.js", - "module": "./node_modules/lodash/_cloneDataView.js", - "moduleName": "./node_modules/lodash/_cloneDataView.js", - "type": "cjs require", - "userRequest": "./_cloneArrayBuffer", - "loc": "1:23-53" - }, - { - "moduleId": "wrZu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "module": "./node_modules/lodash/_initCloneByTag.js", - "moduleName": "./node_modules/lodash/_initCloneByTag.js", - "type": "cjs require", - "userRequest": "./_cloneArrayBuffer", - "loc": "1:23-53" - }, - { - "moduleId": "yP5f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneTypedArray.js", - "module": "./node_modules/lodash/_cloneTypedArray.js", - "moduleName": "./node_modules/lodash/_cloneTypedArray.js", - "type": "cjs require", - "userRequest": "./_cloneArrayBuffer", - "loc": "1:23-53" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var Uint8Array = require('./_Uint8Array');\n\n/**\n * Creates a clone of `arrayBuffer`.\n *\n * @private\n * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n * @returns {ArrayBuffer} Returns the cloned array buffer.\n */\nfunction cloneArrayBuffer(arrayBuffer) {\n var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n return result;\n}\n\nmodule.exports = cloneArrayBuffer;\n" - }, - { - "id": "+iFO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "name": "./node_modules/lodash/_initCloneObject.js", - "index": 547, - "index2": 541, - "size": 486, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_initCloneObject", - "loc": "15:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseCreate = require('./_baseCreate'),\n getPrototype = require('./_getPrototype'),\n isPrototype = require('./_isPrototype');\n\n/**\n * Initializes an object clone.\n *\n * @private\n * @param {Object} object The object to clone.\n * @returns {Object} Returns the initialized clone.\n */\nfunction initCloneObject(object) {\n return (typeof object.constructor == 'function' && !isPrototype(object))\n ? baseCreate(getPrototype(object))\n : {};\n}\n\nmodule.exports = initCloneObject;\n" - }, - { - "id": "//8a", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "index": 111, - "index2": 99, - "size": 2407, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "8:39-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "34:108-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "36:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "93:39-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "122:43-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "465:43-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "578:54-62" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./FontIcon", - "loc": "7:0-44" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./FontIcon", - "loc": "37:26-40" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FontIcon", - "loc": "4:0-27" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FontIcon", - "loc": "4:0-27" - } - ], - "usedExports": [ - "FontIcon", - "getIconContent" - ], - "providedExports": [ - "getIconContent", - "FontIcon", - "getFontIcon" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { classNames, MS_ICON } from './Icon.styles';\nimport { css, getNativeProps, htmlElementProperties, memoizeFunction } from '../../Utilities';\nimport { getIcon } from '../../Styling';\nexport var getIconContent = memoizeFunction(function (iconName) {\n var _a = getIcon(iconName) || {\n subset: {},\n code: undefined,\n }, code = _a.code, subset = _a.subset;\n if (!code) {\n return null;\n }\n return {\n children: code,\n iconClassName: subset.className,\n fontFamily: subset.fontFace && subset.fontFace.fontFamily,\n };\n}, undefined, true /*ignoreNullOrUndefinedResult */);\n/**\n * Fast icon component which only supports font glyphs (not images) and can't be targeted by customizations.\n * To style the icon, use `className` or reference `ms-Icon` in CSS.\n * {@docCategory Icon}\n */\nexport var FontIcon = function (props) {\n var iconName = props.iconName, className = props.className, _a = props.style, style = _a === void 0 ? {} : _a;\n var iconContent = getIconContent(iconName) || {};\n var iconClassName = iconContent.iconClassName, children = iconContent.children, fontFamily = iconContent.fontFamily;\n var nativeProps = getNativeProps(props, htmlElementProperties);\n var containerProps = props['aria-label']\n ? {}\n : {\n role: 'presentation',\n 'aria-hidden': true,\n };\n return (React.createElement(\"i\", __assign({ \"data-icon-name\": iconName }, containerProps, nativeProps, { className: css(MS_ICON, classNames.root, iconClassName, !iconName && classNames.placeholder, className), \n // Apply the font family this way to ensure it doesn't get overridden by Fabric Core ms-Icon styles\n // https://github.com/microsoft/fluentui/issues/10449\n style: __assign({ fontFamily: fontFamily }, style) }), children));\n};\n/**\n * Memoized helper for rendering a FontIcon.\n * @param iconName - The name of the icon to use from the icon font.\n * @param className - Class name for styling the icon.\n * @param ariaLabel - Label for the icon for the benefit of screen readers.\n * {@docCategory Icon}\n */\nexport var getFontIcon = memoizeFunction(function (iconName, className, ariaLabel) {\n return FontIcon({ iconName: iconName, className: className, 'aria-label': ariaLabel });\n});\n//# sourceMappingURL=FontIcon.js.map" - }, - { - "id": "/9aa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSymbol.js", - "name": "./node_modules/lodash/isSymbol.js", - "index": 556, - "index2": 547, - "size": 682, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toKey.js", - "issuerId": "9Nap", - "issuerName": "./node_modules/lodash/_toKey.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - }, - { - "id": "9Nap", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toKey.js", - "name": "./node_modules/lodash/_toKey.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "9Nap", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toKey.js", - "module": "./node_modules/lodash/_toKey.js", - "moduleName": "./node_modules/lodash/_toKey.js", - "type": "cjs require", - "userRequest": "./isSymbol", - "loc": "1:15-36" - }, - { - "moduleId": "9ggG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isKey.js", - "module": "./node_modules/lodash/_isKey.js", - "moduleName": "./node_modules/lodash/_isKey.js", - "type": "cjs require", - "userRequest": "./isSymbol", - "loc": "2:15-36" - }, - { - "moduleId": "zoYe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseToString.js", - "module": "./node_modules/lodash/_baseToString.js", - "moduleName": "./node_modules/lodash/_baseToString.js", - "type": "cjs require", - "userRequest": "./isSymbol", - "loc": "4:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var baseGetTag = require('./_baseGetTag'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar symbolTag = '[object Symbol]';\n\n/**\n * Checks if `value` is classified as a `Symbol` primitive or object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n * @example\n *\n * _.isSymbol(Symbol.iterator);\n * // => true\n *\n * _.isSymbol('abc');\n * // => false\n */\nfunction isSymbol(value) {\n return typeof value == 'symbol' ||\n (isObjectLike(value) && baseGetTag(value) == symbolTag);\n}\n\nmodule.exports = isSymbol;\n" - }, - { - "id": "/A2d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/telemetry-js/dist/index.js", - "name": "./node_modules/@pnp/telemetry-js/dist/index.js", - "index": 14, - "index2": 10, - "size": 5072, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/telemetry-js", - "loc": "12:0-45" - }, - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/telemetry-js", - "loc": "18:20-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/telemetry-js", - "loc": "12:0-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/telemetry-js", - "loc": "25:20-32" - } - ], - "usedExports": [ - "default" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nrequire(\"whatwg-fetch\");\nvar PNP_TELEMETRY_URL = \"https://pnptelemetryproxy.azurewebsites.net/track\";\n/**\n * PnP Telemetry class\n *\n * This can be used to track PnP client-side events\n */\nvar PnPTelemetry = /** @class */ (function () {\n function PnPTelemetry() {\n this.events = [];\n this.timeout = null;\n this.tracking = true;\n }\n /**\n * Initialize the telemetry class and return the instance\n */\n PnPTelemetry.getInstance = function () {\n if (typeof window.pnpTelemetry === \"undefined\") {\n window.pnpTelemetry = new PnPTelemetry();\n }\n return window.pnpTelemetry;\n };\n /**\n * Opt out of tracking\n */\n PnPTelemetry.prototype.optOut = function () {\n this.tracking = false;\n };\n /**\n * Track the event information\n *\n * @param name\n * @param props\n */\n PnPTelemetry.prototype.trackEvent = function (name, properties) {\n if (this.tracking) {\n this.events.push({ name: name, properties: properties });\n this.debounceTracking();\n }\n };\n /**\n * Delay event tracking\n */\n PnPTelemetry.prototype.debounceTracking = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n // Check if timeout was defined\n if (this.timeout) {\n clearTimeout(this.timeout);\n }\n // Set a new timeout\n this.timeout = setTimeout(function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, fetch(PNP_TELEMETRY_URL, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json'\n },\n body: JSON.stringify(this.events)\n })];\n case 1:\n _a.sent();\n // Reset the events\n this.events = [];\n return [2 /*return*/];\n }\n });\n }); }, 1000);\n return [2 /*return*/];\n });\n });\n };\n return PnPTelemetry;\n}());\nexports.default = PnPTelemetry;\n" - }, - { - "id": "/DGj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/IPropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/IPropertyFieldMultiSelect.js", - "index": 907, - "index2": 904, - "size": 53, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerId": "p38f", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldMultiSelect", - "loc": "1:0-44" - }, - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldMultiSelect", - "loc": "1:0-44" - } - ], - "usedExports": [ - "PropertyFieldMultiSelect" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldMultiSelect.js.map" - }, - { - "id": "/TvW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/IPropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/IPropertyPaneWebPartInformation.js", - "index": 914, - "index2": 911, - "size": 59, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerId": "QxFg", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyPaneWebPartInformation", - "loc": "1:0-50" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyPaneWebPartInformation", - "loc": "1:0-50" - } - ], - "usedExports": [ - "PropertyPaneWebPartInformation" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyPaneWebPartInformation.js.map" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "index": 17, - "index2": 274, - "size": 165, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "issuerId": "TUT9", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "./collectionDataViewer", - "loc": "30:0-62" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "./collectionDataViewer", - "loc": "75:36-56" - } - ], - "usedExports": [ - "CollectionDataViewer" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 4, - "source": "export * from './CollectionDataViewer';\nexport * from './ICollectionDataViewerProps';\nexport * from './ICollectionDataViewerState';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "01ST", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "index": 50, - "index2": 44, - "size": 2932, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeStyleSets", - "loc": "2:0-64" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mergeStyleSets", - "loc": "2:0-64" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mergeStyleSets", - "loc": "2:0-64" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "68:34-46" - } - ], - "usedExports": [ - "mergeCssSets", - "mergeStyleSets" - ], - "providedExports": [ - "mergeStyleSets", - "mergeCssSets" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { concatStyleSets } from './concatStyleSets';\nimport { extractStyleParts } from './extractStyleParts';\nimport { getStyleOptions } from './StyleOptionsState';\nimport { applyRegistration, styleToRegistration } from './styleToClassName';\n/**\n * Takes in one or more style set objects, each consisting of a set of areas,\n * each which will produce a class name. Using this is analogous to calling\n * `mergeStyles` for each property in the object, but ensures we maintain the\n * set ordering when multiple style sets are merged.\n *\n * @param styleSets - One or more style sets to be merged.\n */\nexport function mergeStyleSets() {\n var styleSets = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styleSets[_i] = arguments[_i];\n }\n return mergeCssSets(styleSets, getStyleOptions());\n}\n/**\n * Takes in one or more style set objects, each1consisting of a set of areas,\n * each which will produce a class name. Using this is analogous to calling\n * `mergeCss` for each property in the object, but ensures the\n * set ordering when multiple style sets are merged.\n *\n * @param styleSets - One or more style sets to be merged.\n * @param options - (optional) Options to use when creating rules.\n */\nexport function mergeCssSets(styleSets, options) {\n var _a, _b;\n var classNameSet = { subComponentStyles: {} };\n var styleSet = styleSets[0];\n if (!styleSet && styleSets.length <= 1) {\n return { subComponentStyles: {} };\n }\n var concatenatedStyleSet = concatStyleSets.apply(void 0, styleSets);\n var registrations = [];\n for (var styleSetArea in concatenatedStyleSet) {\n if (concatenatedStyleSet.hasOwnProperty(styleSetArea)) {\n if (styleSetArea === 'subComponentStyles') {\n classNameSet.subComponentStyles = concatenatedStyleSet.subComponentStyles || {};\n continue;\n }\n var styles = concatenatedStyleSet[styleSetArea];\n var _c = extractStyleParts(styles), classes = _c.classes, objects = _c.objects;\n if ((_a = objects) === null || _a === void 0 ? void 0 : _a.length) {\n var registration = styleToRegistration(options || {}, { displayName: styleSetArea }, objects);\n if (registration) {\n registrations.push(registration);\n classNameSet[styleSetArea] = classes.concat([registration.className]).join(' ');\n }\n }\n else {\n classNameSet[styleSetArea] = classes.join(' ');\n }\n }\n }\n for (var _i = 0, registrations_1 = registrations; _i < registrations_1.length; _i++) {\n var registration = registrations_1[_i];\n if (registration) {\n applyRegistration(registration, (_b = options) === null || _b === void 0 ? void 0 : _b.specificityMultiplier);\n }\n }\n return classNameSet;\n}\n//# sourceMappingURL=mergeStyleSets.js.map" - }, - { - "id": "03A+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "name": "./node_modules/lodash/isArguments.js", - "index": 499, - "index2": 491, - "size": 1026, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "issuerId": "b80T", - "issuerName": "./node_modules/lodash/_arrayLikeKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "BiGR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isFlattenable.js", - "module": "./node_modules/lodash/_isFlattenable.js", - "moduleName": "./node_modules/lodash/_isFlattenable.js", - "type": "cjs require", - "userRequest": "./isArguments", - "loc": "2:18-42" - }, - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./isArguments", - "loc": "2:18-42" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var baseIsArguments = require('./_baseIsArguments'),\n isObjectLike = require('./isObjectLike');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Built-in value references. */\nvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n/**\n * Checks if `value` is likely an `arguments` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n * else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\nvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n !propertyIsEnumerable.call(value, 'callee');\n};\n\nmodule.exports = isArguments;\n" - }, - { - "id": "08ZC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/safe-global.js", - "name": "./node_modules/@pnp/common/safe-global.js", - "index": 703, - "index2": 695, - "size": 148, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "./safe-global.js", - "loc": "3:0-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "./safe-global.js", - "loc": "7:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony export imported specifier", - "userRequest": "./safe-global.js", - "loc": "7:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "./safe-global.js", - "loc": "35:15-25" - } - ], - "usedExports": [ - "safeGlobal" - ], - "providedExports": [ - "safeGlobal" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module uses injected variables (global)" - ], - "depth": 4, - "source": "// export either window or global\r\nexport var safeGlobal = typeof global === \"undefined\" ? window : global;\r\n//# sourceMappingURL=safe-global.js.map" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js", - "index": 459, - "index2": 481, - "size": 853, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackSet", - "loc": "6:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var ListCache = require('./_ListCache'),\n Map = require('./_Map'),\n MapCache = require('./_MapCache');\n\n/** Used as the size to enable large array optimizations. */\nvar LARGE_ARRAY_SIZE = 200;\n\n/**\n * Sets the stack `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Stack\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the stack cache instance.\n */\nfunction stackSet(key, value) {\n var data = this.__data__;\n if (data instanceof ListCache) {\n var pairs = data.__data__;\n if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\n pairs.push([key, value]);\n this.size = ++data.size;\n return this;\n }\n data = this.__data__ = new MapCache(pairs);\n }\n data.set(key, value);\n this.size = data.size;\n return this;\n}\n\nmodule.exports = stackSet;\n" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js", - "index": 350, - "index2": 354, - "size": 12613, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-js-pagination", - "loc": "17:0-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-js-pagination", - "loc": "944:76-86" - } - ], - "usedExports": [ - "default" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 2, - "source": "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports[\"default\"] = void 0;\n\nvar _react = _interopRequireWildcard(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _paginator = _interopRequireDefault(require(\"paginator\"));\n\nvar _Page = _interopRequireDefault(require(\"./Page\"));\n\nvar _classnames = _interopRequireDefault(require(\"classnames\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _getRequireWildcardCache() { if (typeof WeakMap !== \"function\") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== \"object\" && typeof obj !== \"function\") { return { \"default\": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj[\"default\"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar Pagination =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inherits(Pagination, _React$Component);\n\n function Pagination() {\n _classCallCheck(this, Pagination);\n\n return _possibleConstructorReturn(this, _getPrototypeOf(Pagination).apply(this, arguments));\n }\n\n _createClass(Pagination, [{\n key: \"isFirstPageVisible\",\n value: function isFirstPageVisible(has_previous_page) {\n var _this$props = this.props,\n hideDisabled = _this$props.hideDisabled,\n hideNavigation = _this$props.hideNavigation,\n hideFirstLastPages = _this$props.hideFirstLastPages;\n if (hideFirstLastPages || hideDisabled && !has_previous_page) return false;\n return true;\n }\n }, {\n key: \"isPrevPageVisible\",\n value: function isPrevPageVisible(has_previous_page) {\n var _this$props2 = this.props,\n hideDisabled = _this$props2.hideDisabled,\n hideNavigation = _this$props2.hideNavigation;\n if (hideNavigation || hideDisabled && !has_previous_page) return false;\n return true;\n }\n }, {\n key: \"isNextPageVisible\",\n value: function isNextPageVisible(has_next_page) {\n var _this$props3 = this.props,\n hideDisabled = _this$props3.hideDisabled,\n hideNavigation = _this$props3.hideNavigation;\n if (hideNavigation || hideDisabled && !has_next_page) return false;\n return true;\n }\n }, {\n key: \"isLastPageVisible\",\n value: function isLastPageVisible(has_next_page) {\n var _this$props4 = this.props,\n hideDisabled = _this$props4.hideDisabled,\n hideNavigation = _this$props4.hideNavigation,\n hideFirstLastPages = _this$props4.hideFirstLastPages;\n if (hideFirstLastPages || hideDisabled && !has_next_page) return false;\n return true;\n }\n }, {\n key: \"buildPages\",\n value: function buildPages() {\n var pages = [];\n var _this$props5 = this.props,\n itemsCountPerPage = _this$props5.itemsCountPerPage,\n pageRangeDisplayed = _this$props5.pageRangeDisplayed,\n activePage = _this$props5.activePage,\n prevPageText = _this$props5.prevPageText,\n nextPageText = _this$props5.nextPageText,\n firstPageText = _this$props5.firstPageText,\n lastPageText = _this$props5.lastPageText,\n totalItemsCount = _this$props5.totalItemsCount,\n onChange = _this$props5.onChange,\n activeClass = _this$props5.activeClass,\n itemClass = _this$props5.itemClass,\n itemClassFirst = _this$props5.itemClassFirst,\n itemClassPrev = _this$props5.itemClassPrev,\n itemClassNext = _this$props5.itemClassNext,\n itemClassLast = _this$props5.itemClassLast,\n activeLinkClass = _this$props5.activeLinkClass,\n disabledClass = _this$props5.disabledClass,\n hideDisabled = _this$props5.hideDisabled,\n hideNavigation = _this$props5.hideNavigation,\n linkClass = _this$props5.linkClass,\n linkClassFirst = _this$props5.linkClassFirst,\n linkClassPrev = _this$props5.linkClassPrev,\n linkClassNext = _this$props5.linkClassNext,\n linkClassLast = _this$props5.linkClassLast,\n hideFirstLastPages = _this$props5.hideFirstLastPages,\n getPageUrl = _this$props5.getPageUrl;\n var paginationInfo = new _paginator[\"default\"](itemsCountPerPage, pageRangeDisplayed).build(totalItemsCount, activePage);\n\n for (var i = paginationInfo.first_page; i <= paginationInfo.last_page; i++) {\n pages.push(_react[\"default\"].createElement(_Page[\"default\"], {\n isActive: i === activePage,\n key: i,\n href: getPageUrl(i),\n pageNumber: i,\n pageText: i + \"\",\n onClick: onChange,\n itemClass: itemClass,\n linkClass: linkClass,\n activeClass: activeClass,\n activeLinkClass: activeLinkClass,\n ariaLabel: \"Go to page number \".concat(i)\n }));\n }\n\n this.isPrevPageVisible(paginationInfo.has_previous_page) && pages.unshift(_react[\"default\"].createElement(_Page[\"default\"], {\n key: \"prev\" + paginationInfo.previous_page,\n href: getPageUrl(paginationInfo.previous_page),\n pageNumber: paginationInfo.previous_page,\n onClick: onChange,\n pageText: prevPageText,\n isDisabled: !paginationInfo.has_previous_page,\n itemClass: (0, _classnames[\"default\"])(itemClass, itemClassPrev),\n linkClass: (0, _classnames[\"default\"])(linkClass, linkClassPrev),\n disabledClass: disabledClass,\n ariaLabel: \"Go to previous page\"\n }));\n this.isFirstPageVisible(paginationInfo.has_previous_page) && pages.unshift(_react[\"default\"].createElement(_Page[\"default\"], {\n key: \"first\",\n href: getPageUrl(1),\n pageNumber: 1,\n onClick: onChange,\n pageText: firstPageText,\n isDisabled: !paginationInfo.has_previous_page,\n itemClass: (0, _classnames[\"default\"])(itemClass, itemClassFirst),\n linkClass: (0, _classnames[\"default\"])(linkClass, linkClassFirst),\n disabledClass: disabledClass,\n ariaLabel: \"Go to first page\"\n }));\n this.isNextPageVisible(paginationInfo.has_next_page) && pages.push(_react[\"default\"].createElement(_Page[\"default\"], {\n key: \"next\" + paginationInfo.next_page,\n href: getPageUrl(paginationInfo.next_page),\n pageNumber: paginationInfo.next_page,\n onClick: onChange,\n pageText: nextPageText,\n isDisabled: !paginationInfo.has_next_page,\n itemClass: (0, _classnames[\"default\"])(itemClass, itemClassNext),\n linkClass: (0, _classnames[\"default\"])(linkClass, linkClassNext),\n disabledClass: disabledClass,\n ariaLabel: \"Go to next page\"\n }));\n this.isLastPageVisible(paginationInfo.has_next_page) && pages.push(_react[\"default\"].createElement(_Page[\"default\"], {\n key: \"last\",\n href: getPageUrl(paginationInfo.total_pages),\n pageNumber: paginationInfo.total_pages,\n onClick: onChange,\n pageText: lastPageText,\n isDisabled: paginationInfo.current_page === paginationInfo.total_pages,\n itemClass: (0, _classnames[\"default\"])(itemClass, itemClassLast),\n linkClass: (0, _classnames[\"default\"])(linkClass, linkClassLast),\n disabledClass: disabledClass,\n ariaLabel: \"Go to last page\"\n }));\n return pages;\n }\n }, {\n key: \"render\",\n value: function render() {\n var pages = this.buildPages();\n return _react[\"default\"].createElement(\"ul\", {\n className: this.props.innerClass\n }, pages);\n }\n }]);\n\n return Pagination;\n}(_react[\"default\"].Component);\n\nexports[\"default\"] = Pagination;\n\n_defineProperty(Pagination, \"propTypes\", {\n totalItemsCount: _propTypes[\"default\"].number.isRequired,\n onChange: _propTypes[\"default\"].func.isRequired,\n activePage: _propTypes[\"default\"].number,\n itemsCountPerPage: _propTypes[\"default\"].number,\n pageRangeDisplayed: _propTypes[\"default\"].number,\n prevPageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n nextPageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n lastPageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n firstPageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n disabledClass: _propTypes[\"default\"].string,\n hideDisabled: _propTypes[\"default\"].bool,\n hideNavigation: _propTypes[\"default\"].bool,\n innerClass: _propTypes[\"default\"].string,\n itemClass: _propTypes[\"default\"].string,\n itemClassFirst: _propTypes[\"default\"].string,\n itemClassPrev: _propTypes[\"default\"].string,\n itemClassNext: _propTypes[\"default\"].string,\n itemClassLast: _propTypes[\"default\"].string,\n linkClass: _propTypes[\"default\"].string,\n activeClass: _propTypes[\"default\"].string,\n activeLinkClass: _propTypes[\"default\"].string,\n linkClassFirst: _propTypes[\"default\"].string,\n linkClassPrev: _propTypes[\"default\"].string,\n linkClassNext: _propTypes[\"default\"].string,\n linkClassLast: _propTypes[\"default\"].string,\n hideFirstLastPages: _propTypes[\"default\"].bool,\n getPageUrl: _propTypes[\"default\"].func\n});\n\n_defineProperty(Pagination, \"defaultProps\", {\n itemsCountPerPage: 10,\n pageRangeDisplayed: 5,\n activePage: 1,\n prevPageText: \"⟨\",\n firstPageText: \"«\",\n nextPageText: \"⟩\",\n lastPageText: \"»\",\n innerClass: \"pagination\",\n itemClass: undefined,\n linkClass: undefined,\n activeLinkClass: undefined,\n hideFirstLastPages: false,\n getPageUrl: function getPageUrl(i) {\n return \"#\";\n }\n});" - }, - { - "id": "0xmZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "index": 135, - "index2": 124, - "size": 1134, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "32:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "52:54-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "56:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:21-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "93:20-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "95:39-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "146:13-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "187:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "225:72-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "229:35-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "237:49-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./dom/elementContains", - "loc": "238:32-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "244:13-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "273:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "472:16-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "534:41-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "599:13-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "935:40-55" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:17-32" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:38-53" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "144:69-84" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "150:49-64" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "320:13-28" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "322:64-79" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "43:17-32" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:46-61" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./elementContains", - "loc": "1:0-34" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./elementContains", - "loc": "1:0-34" - }, - { - "moduleId": "xu/W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-58" - } - ], - "usedExports": [ - "elementContains" - ], - "providedExports": [ - "elementContains" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getParent } from './getParent';\n/**\n * Determines whether or not a parent element contains a given child element.\n * If `allowVirtualParents` is true, this method may return `true` if the child\n * has the parent in its virtual element hierarchy.\n *\n * @public\n */\nexport function elementContains(parent, child, allowVirtualParents) {\n if (allowVirtualParents === void 0) { allowVirtualParents = true; }\n var isContained = false;\n if (parent && child) {\n if (allowVirtualParents) {\n if (parent === child) {\n isContained = true;\n }\n else {\n isContained = false;\n while (child) {\n var nextParent = getParent(child);\n if (nextParent === parent) {\n isContained = true;\n break;\n }\n child = nextParent;\n }\n }\n }\n else if (parent.contains) {\n isContained = parent.contains(child);\n }\n }\n return isContained;\n}\n//# sourceMappingURL=elementContains.js.map" - }, - { - "id": "0ycA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/stubArray.js", - "name": "./node_modules/lodash/stubArray.js", - "index": 526, - "index2": 517, - "size": 390, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "issuerId": "oCl/", - "issuerName": "./node_modules/lodash/_getSymbolsIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MvSz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "module": "./node_modules/lodash/_getSymbols.js", - "moduleName": "./node_modules/lodash/_getSymbols.js", - "type": "cjs require", - "userRequest": "./stubArray", - "loc": "2:16-38" - }, - { - "moduleId": "oCl/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "module": "./node_modules/lodash/_getSymbolsIn.js", - "moduleName": "./node_modules/lodash/_getSymbolsIn.js", - "type": "cjs require", - "userRequest": "./stubArray", - "loc": "4:16-38" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * This method returns a new empty array.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {Array} Returns the new empty array.\n * @example\n *\n * var arrays = _.times(2, _.stubArray);\n *\n * console.log(arrays);\n * // => [[], []]\n *\n * console.log(arrays[0] === arrays[1]);\n * // => false\n */\nfunction stubArray() {\n return [];\n}\n\nmodule.exports = stubArray;\n" - }, - { - "id": "1+5i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSet.js", - "name": "./node_modules/lodash/isSet.js", - "index": 551, - "index2": 545, - "size": 613, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./isSet", - "loc": "20:12-30" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseIsSet = require('./_baseIsSet'),\n baseUnary = require('./_baseUnary'),\n nodeUtil = require('./_nodeUtil');\n\n/* Node.js helper references. */\nvar nodeIsSet = nodeUtil && nodeUtil.isSet;\n\n/**\n * Checks if `value` is classified as a `Set` object.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a set, else `false`.\n * @example\n *\n * _.isSet(new Set);\n * // => true\n *\n * _.isSet(new WeakSet);\n * // => false\n */\nvar isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;\n\nmodule.exports = isSet;\n" - }, - { - "id": "16Al", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/factoryWithThrowingShims.js", - "name": "./node_modules/prop-types/factoryWithThrowingShims.js", - "index": 352, - "index2": 349, - "size": 1639, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "issuerId": "17x9", - "issuerName": "./node_modules/prop-types/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - }, - { - "id": "17x9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "name": "./node_modules/prop-types/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "17x9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "module": "./node_modules/prop-types/index.js", - "moduleName": "./node_modules/prop-types/index.js", - "type": "cjs require", - "userRequest": "./factoryWithThrowingShims", - "loc": "18:19-56" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n" - }, - { - "id": "17x9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "name": "./node_modules/prop-types/index.js", - "index": 351, - "index2": 350, - "size": 710, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "issuerId": "0fKb", - "issuerName": "./node_modules/react-js-pagination/dist/Pagination.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "prop-types", - "loc": "10:40-61" - }, - { - "moduleId": "HBL8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Page.js", - "module": "./node_modules/react-js-pagination/dist/Page.js", - "moduleName": "./node_modules/react-js-pagination/dist/Page.js", - "type": "cjs require", - "userRequest": "prop-types", - "loc": "10:40-61" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n" - }, - { - "id": "2+xV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "index": 113, - "index2": 98, - "size": 1127, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "3:0-52" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "36:124-131" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "36:133-143" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "36:178-188" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "3:0-42" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "9:35-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "5:0-52" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "20:98-105" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "20:107-117" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "20:124-134" - } - ], - "usedExports": [ - "MS_ICON", - "classNames", - "getStyles" - ], - "providedExports": [ - "classNames", - "MS_ICON", - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { mergeStyleSets } from '../../Styling';\n/** Class names used in themeable and non-themeable Icon components */\nexport var classNames = mergeStyleSets({\n root: {\n display: 'inline-block',\n },\n placeholder: [\n 'ms-Icon-placeHolder',\n {\n width: '1em',\n },\n ],\n image: [\n 'ms-Icon-imageContainer',\n {\n overflow: 'hidden',\n },\n ],\n});\n/** Class name used only in non-themeable Icon components */\nexport var MS_ICON = 'ms-Icon';\nexport var getStyles = function (props) {\n var className = props.className, iconClassName = props.iconClassName, isPlaceholder = props.isPlaceholder, isImage = props.isImage, styles = props.styles;\n return {\n root: [\n isPlaceholder && classNames.placeholder,\n classNames.root,\n isImage && classNames.image,\n iconClassName,\n className,\n styles && styles.root,\n // eslint-disable-next-line deprecation/deprecation\n styles && styles.imageContainer,\n ],\n };\n};\n//# sourceMappingURL=Icon.styles.js.map" - }, - { - "id": "26ea", - "identifier": "external \"@microsoft/sp-property-pane\"", - "name": "external \"@microsoft/sp-property-pane\"", - "index": 4, - "index2": 3, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "14:0-68" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "25:20-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "2:0-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "5:20-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "13:0-165" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "467:81-101" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "472:83-104" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "475:79-97" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "479:84-104" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "490:137-158" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "493:165-192" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "496:16-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "516:86-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "522:87-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "526:77-98" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "544:72-92" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "556:63-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "561:76-96" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "591:85-105" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "690:137-158" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "768:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "773:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "778:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "919:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "929:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "934:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "946:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "968:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "977:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "982:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "994:32-50" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "3:0-124" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "45:32-59" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "48:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "51:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "54:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "59:47-69" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "14:0-68" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "18:20-41" - } - ], - "usedExports": [ - "DynamicDataSharedDepth", - "PropertyPaneDropdown", - "PropertyPaneDynamicField", - "PropertyPaneDynamicFieldSet", - "PropertyPaneFieldType", - "PropertyPaneTextField", - "PropertyPaneToggle" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "2ME3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/IPropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/IPropertyFieldCollectionData.js", - "index": 9, - "index2": 6, - "size": 56, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldCollectionData", - "loc": "2:0-47" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldCollectionData", - "loc": "2:0-47" - } - ], - "usedExports": [ - "PropertyFieldCollectionData", - "PropertyFieldCollectionDataHost" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldCollectionData.js.map" - }, - { - "id": "2WvF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "index": 207, - "index2": 237, - "size": 3011, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "55:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "63:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "68:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "131:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "433:36-46" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "47:63-73" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "298:40-50" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "299:40-50" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "92:75-85" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "28:28-38" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "8:0-53" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./IconButton/IconButton", - "loc": "32:43-53" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "28:44-54" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "41:105-115" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "42:128-138" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "19:28-38" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "24:36-46" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "28:36-46" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "134:36-46" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "83:47-57" - } - ], - "usedExports": [ - "IconButton" - ], - "providedExports": [ - "IconButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/BaseComponent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/customizable.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "index": 207, - "index2": 237, - "size": 1021, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "55:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "63:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "68:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "131:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "433:36-46" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "47:63-73" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "298:40-50" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "299:40-50" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "92:75-85" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "28:28-38" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "8:0-53" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./IconButton/IconButton", - "loc": "32:43-53" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "28:44-54" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "41:105-115" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "42:128-138" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "19:28-38" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "24:36-46" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "28:36-46" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "134:36-46" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "83:47-57" - } - ], - "usedExports": [ - "IconButton" - ], - "providedExports": [ - "IconButton" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './IconButton.styles';\n/**\n * {@docCategory Button}\n */\nvar IconButton = /** @class */ (function (_super) {\n __extends(IconButton, _super);\n function IconButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n IconButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: \"ms-Button--icon\", styles: getStyles(theme, styles), onRenderText: nullRender, onRenderDescription: nullRender })));\n };\n IconButton = __decorate([\n customizable('IconButton', ['theme', 'styles'], true)\n ], IconButton);\n return IconButton;\n}(React.Component));\nexport { IconButton };\n//# sourceMappingURL=IconButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "index": 248, - "index2": 236, - "size": 1945, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton.styles", - "loc": "5:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "userRequest": "./IconButton.styles", - "loc": "16:120-129" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { concatStyleSets, HighContrastSelector } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var _a;\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var palette = theme.palette, semanticColors = theme.semanticColors;\n var iconButtonStyles = {\n root: {\n padding: '0 4px',\n width: '32px',\n height: '32px',\n backgroundColor: 'transparent',\n border: 'none',\n color: semanticColors.link,\n },\n rootHovered: {\n color: palette.themeDarkAlt,\n backgroundColor: palette.neutralLighter,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _a),\n },\n rootHasMenu: {\n width: 'auto',\n },\n rootPressed: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootExpanded: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootChecked: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootCheckedHovered: {\n color: palette.themeDark,\n backgroundColor: palette.neutralQuaternaryAlt,\n },\n rootDisabled: {\n color: palette.neutralTertiaryAlt,\n },\n };\n return concatStyleSets(baseButtonStyles, iconButtonStyles, splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=IconButton.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "2gN3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_coreJsData.js", - "name": "./node_modules/lodash/_coreJsData.js", - "index": 472, - "index2": 459, - "size": 157, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isMasked.js", - "issuerId": "E2jh", - "issuerName": "./node_modules/lodash/_isMasked.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js" - }, - { - "id": "NKxu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "name": "./node_modules/lodash/_baseIsNative.js" - }, - { - "id": "E2jh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isMasked.js", - "name": "./node_modules/lodash/_isMasked.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "E2jh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isMasked.js", - "module": "./node_modules/lodash/_isMasked.js", - "moduleName": "./node_modules/lodash/_isMasked.js", - "type": "cjs require", - "userRequest": "./_coreJsData", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "var root = require('./_root');\n\n/** Used to detect overreaching core-js shims. */\nvar coreJsData = root['__core-js_shared__'];\n\nmodule.exports = coreJsData;\n" - }, - { - "id": "3Fdi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toSource.js", - "name": "./node_modules/lodash/_toSource.js", - "index": 473, - "index2": 461, - "size": 556, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "issuerId": "QqLw", - "issuerName": "./node_modules/lodash/_getTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NKxu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "module": "./node_modules/lodash/_baseIsNative.js", - "moduleName": "./node_modules/lodash/_baseIsNative.js", - "type": "cjs require", - "userRequest": "./_toSource", - "loc": "4:15-37" - }, - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_toSource", - "loc": "7:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/** Used for built-in method references. */\nvar funcProto = Function.prototype;\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/**\n * Converts `func` to its source code.\n *\n * @private\n * @param {Function} func The function to convert.\n * @returns {string} Returns the source code.\n */\nfunction toSource(func) {\n if (func != null) {\n try {\n return funcToString.call(func);\n } catch (e) {}\n try {\n return (func + '');\n } catch (e) {}\n }\n return '';\n}\n\nmodule.exports = toSource;\n" - }, - { - "id": "3mns", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "index": 267, - "index2": 261, - "size": 9124, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "18:32-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "556:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "566:61-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "567:90-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "656:49-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "683:55-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "687:52-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "698:49-53" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "110:44-48" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link", - "loc": "1:0-23" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Link", - "loc": "1:0-23" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "29:36-40" - } - ], - "usedExports": [ - "Link" - ], - "providedExports": [ - "Link" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "index": 268, - "index2": 259, - "size": 4244, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sidz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/Link.js" - }, - { - "id": "ZZzf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link.base", - "loc": "2:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony import specifier", - "userRequest": "./Link.base", - "loc": "4:25-33" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link.base", - "loc": "2:0-28" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Link.base", - "loc": "2:0-28" - } - ], - "usedExports": [ - "LinkBase" - ], - "providedExports": [ - "LinkBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef } from '../../Utilities';\nimport { KeytipData } from '../../KeytipData';\nvar getClassNames = classNamesFunction();\nvar LinkBase = /** @class */ (function (_super) {\n __extends(LinkBase, _super);\n function LinkBase(props) {\n var _this = _super.call(this, props) || this;\n _this._link = React.createRef();\n _this._renderContent = function (keytipAttributes) {\n if (keytipAttributes === void 0) { keytipAttributes = {}; }\n var _a = _this.props, disabled = _a.disabled, children = _a.children, className = _a.className, href = _a.href, underline = _a.underline, theme = _a.theme, styles = _a.styles;\n var classNames = getClassNames(styles, {\n className: className,\n isButton: !href,\n isDisabled: disabled,\n isUnderlined: underline,\n theme: theme,\n });\n var RootType = _this._getRootType(_this.props);\n return (React.createElement(RootType, __assign({}, keytipAttributes, _this._adjustPropsForRootType(RootType, _this.props), { className: classNames.root, onClick: _this._onClick, ref: _this._link, \"aria-disabled\": disabled }), children));\n };\n _this._onClick = function (ev) {\n var _a = _this.props, onClick = _a.onClick, disabled = _a.disabled;\n if (disabled) {\n ev.preventDefault();\n }\n else if (onClick) {\n onClick(ev);\n }\n };\n initializeComponentRef(_this);\n return _this;\n }\n LinkBase.prototype.render = function () {\n var _this = this;\n var _a = this.props, disabled = _a.disabled, keytipProps = _a.keytipProps;\n if (keytipProps) {\n return (React.createElement(KeytipData, { keytipProps: keytipProps, ariaDescribedBy: this.props['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return _this._renderContent(keytipAttributes); }));\n }\n return this._renderContent();\n };\n LinkBase.prototype.focus = function () {\n var current = this._link.current;\n if (current && current.focus) {\n current.focus();\n }\n };\n LinkBase.prototype._adjustPropsForRootType = function (RootType, props) {\n // Deconstruct the props so we remove props like `as`, `theme` and `styles`\n // as those will always be removed. We also take some props that are optional\n // based on the RootType.\n var children = props.children, as = props.as, disabled = props.disabled, target = props.target, href = props.href, theme = props.theme, getStyles = props.getStyles, styles = props.styles, componentRef = props.componentRef, keytipProps = props.keytipProps, underline = props.underline, restProps = __rest(props, [\"children\", \"as\", \"disabled\", \"target\", \"href\", \"theme\", \"getStyles\", \"styles\", \"componentRef\", \"keytipProps\", \"underline\"]);\n // RootType will be a string if we're dealing with an html component\n if (typeof RootType === 'string') {\n // Remove the disabled prop for anchor elements\n if (RootType === 'a') {\n return __assign({ target: target, href: disabled ? undefined : href }, restProps);\n }\n // Add the type='button' prop for button elements\n if (RootType === 'button') {\n return __assign({ type: 'button', disabled: disabled }, restProps);\n }\n // Remove the target and href props for all other non anchor elements\n return __assign(__assign({}, restProps), { disabled: disabled });\n }\n // Retain all props except 'as' for ReactComponents\n return __assign({ target: target, href: href, disabled: disabled }, restProps);\n };\n LinkBase.prototype._getRootType = function (props) {\n if (props.as) {\n return props.as;\n }\n if (props.href) {\n return 'a';\n }\n return 'button';\n };\n return LinkBase;\n}(React.Component));\nexport { LinkBase };\n//# sourceMappingURL=Link.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "index": 267, - "index2": 261, - "size": 239, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "issuerId": "ZZzf", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sidz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/Link.js" - }, - { - "id": "ZZzf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "18:32-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "556:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "566:61-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "567:90-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "656:49-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "683:55-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "687:52-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "698:49-53" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "110:44-48" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link", - "loc": "1:0-23" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Link", - "loc": "1:0-23" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "29:36-40" - } - ], - "usedExports": [ - "Link" - ], - "providedExports": [ - "Link" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { LinkBase } from './Link.base';\nimport { getStyles } from './Link.styles';\nexport var Link = styled(LinkBase, getStyles, undefined, {\n scope: 'Link',\n});\n//# sourceMappingURL=Link.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "index": 269, - "index2": 260, - "size": 4606, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sidz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/Link.js" - }, - { - "id": "ZZzf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link.styles", - "loc": "3:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony import specifier", - "userRequest": "./Link.styles", - "loc": "4:35-44" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames, HighContrastSelector } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Link',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f;\n var className = props.className, isButton = props.isButton, isDisabled = props.isDisabled, isUnderlined = props.isUnderlined, theme = props.theme;\n var semanticColors = theme.semanticColors;\n // Tokens\n var linkColor = semanticColors.link;\n var linkInteractedColor = semanticColors.linkHovered;\n var linkDisabledColor = semanticColors.disabledText;\n var focusBorderColor = semanticColors.focusBorder;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n color: linkColor,\n outline: 'none',\n fontSize: 'inherit',\n fontWeight: 'inherit',\n textDecoration: isUnderlined ? 'underline' : 'none',\n selectors: (_a = {\n '.ms-Fabric--isFocusVisible &:focus': {\n // Can't use getFocusStyle because it doesn't support wrapping links\n // https://github.com/microsoft/fluentui/issues/4883#issuecomment-406743543\n // Using box-shadow and outline allows the focus rect to wrap links that span multiple lines\n // and helps the focus rect avoid getting clipped.\n boxShadow: \"0 0 0 1px \" + focusBorderColor + \" inset\",\n outline: \"1px auto \" + focusBorderColor,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n outline: '1px solid WindowText',\n },\n _b),\n }\n },\n _a[HighContrastSelector] = {\n // For IE high contrast mode\n borderBottom: 'none',\n },\n _a),\n },\n isButton && {\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n cursor: 'pointer',\n display: 'inline',\n margin: 0,\n overflow: 'inherit',\n padding: 0,\n textAlign: 'left',\n textOverflow: 'inherit',\n userSelect: 'text',\n borderBottom: '1px solid transparent',\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'LinkText',\n forcedColorAdjust: 'none',\n },\n _c),\n },\n !isButton && {\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n // This is mainly for MessageBar, which sets MsHighContrastAdjust: none by default\n MsHighContrastAdjust: 'auto',\n forcedColorAdjust: 'auto',\n },\n _d),\n },\n isDisabled && [\n 'is-disabled',\n {\n color: linkDisabledColor,\n cursor: 'default',\n },\n {\n selectors: {\n '&:link, &:visited': {\n pointerEvents: 'none',\n },\n },\n },\n ],\n !isDisabled && {\n selectors: {\n '&:active, &:hover, &:active:hover': {\n color: linkInteractedColor,\n textDecoration: 'underline',\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n color: 'LinkText',\n },\n _e),\n },\n '&:focus': {\n color: linkColor,\n selectors: (_f = {},\n _f[HighContrastSelector] = {\n color: 'LinkText',\n },\n _f),\n },\n },\n },\n classNames.root,\n className,\n ],\n };\n};\n//# sourceMappingURL=Link.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "3uSm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "index": 38, - "index2": 24, - "size": 1029, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "issuerId": "elao", - "issuerName": "./node_modules/@uifabric/utilities/lib/Async.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "elao", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "name": "./node_modules/@uifabric/utilities/lib/Async.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "13:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:26-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "26:17-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:40-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "46:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "58:29-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "71:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "88:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "318:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "359:34-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "379:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "383:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "389:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "394:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "398:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "403:33-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "439:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "801:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "842:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "846:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "854:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "859:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "863:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "868:33-42" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "9:0-32" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getWindow", - "loc": "9:0-32" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "238:24-33" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "3:0-44" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "160:13-22" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./dom", - "loc": "79:22-31" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "4:14-23" - }, - { - "moduleId": "DU53", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/osDetector.js", - "module": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "DU53", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/osDetector.js", - "module": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "9:18-27" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "52:32-41" - }, - { - "moduleId": "LQdl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "LQdl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "18:23-32" - }, - { - "moduleId": "LQdl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "18:43-52" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "256:37-46" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "260:37-46" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "268:37-46" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "273:37-46" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "278:33-42" - }, - { - "moduleId": "VCDA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "module": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "VCDA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "module": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "70:14-23" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "4:0-44" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "267:18-27" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "120:18-27" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "149:18-27" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "374:18-27" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "399:18-27" - }, - { - "moduleId": "mWkG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getId.js", - "module": "./node_modules/@uifabric/utilities/lib/getId.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "mWkG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getId.js", - "module": "./node_modules/@uifabric/utilities/lib/getId.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "7:14-23" - }, - { - "moduleId": "qXI7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "qXI7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "9:18-27" - }, - { - "moduleId": "qXI7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "25:14-23" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "9:18-27" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "24:18-27" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "22:25-34" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "2:0-44" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "40:18-27" - } - ], - "usedExports": [ - "getWindow" - ], - "providedExports": [ - "getWindow" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { _isSSR } from './setSSR';\nvar _window = undefined;\n// Note: Accessing \"window\" in IE11 is somewhat expensive, and calling \"typeof window\"\n// hits a memory leak, whereas aliasing it and calling \"typeof _window\" does not.\n// Caching the window value at the file scope lets us minimize the impact.\ntry {\n _window = window;\n}\ncatch (e) {\n /* no-op */\n}\n/**\n * Helper to get the window object. The helper will make sure to use a cached variable\n * of \"window\", to avoid overhead and memory leaks in IE11. Note that in popup scenarios the\n * window object won't match the \"global\" window object, and for these scenarios, you should\n * pass in an element hosted within the popup.\n *\n * @public\n */\nexport function getWindow(rootElement) {\n if (_isSSR || typeof _window === 'undefined') {\n return undefined;\n }\n else {\n var el = rootElement;\n return el && el.ownerDocument && el.ownerDocument.defaultView ? el.ownerDocument.defaultView : _window;\n }\n}\n//# sourceMappingURL=getWindow.js.map" - }, - { - "id": "44Ds", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/memoize.js", - "name": "./node_modules/lodash/memoize.js", - "index": 559, - "index2": 549, - "size": 2224, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_memoizeCapped.js", - "issuerId": "I01J", - "issuerName": "./node_modules/lodash/_memoizeCapped.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - }, - { - "id": "GNiM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "name": "./node_modules/lodash/_stringToPath.js" - }, - { - "id": "I01J", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_memoizeCapped.js", - "name": "./node_modules/lodash/_memoizeCapped.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "I01J", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_memoizeCapped.js", - "module": "./node_modules/lodash/_memoizeCapped.js", - "moduleName": "./node_modules/lodash/_memoizeCapped.js", - "type": "cjs require", - "userRequest": "./memoize", - "loc": "1:14-34" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var MapCache = require('./_MapCache');\n\n/** Error message constants. */\nvar FUNC_ERROR_TEXT = 'Expected a function';\n\n/**\n * Creates a function that memoizes the result of `func`. If `resolver` is\n * provided, it determines the cache key for storing the result based on the\n * arguments provided to the memoized function. By default, the first argument\n * provided to the memoized function is used as the map cache key. The `func`\n * is invoked with the `this` binding of the memoized function.\n *\n * **Note:** The cache is exposed as the `cache` property on the memoized\n * function. Its creation may be customized by replacing the `_.memoize.Cache`\n * constructor with one whose instances implement the\n * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\n * method interface of `clear`, `delete`, `get`, `has`, and `set`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to have its output memoized.\n * @param {Function} [resolver] The function to resolve the cache key.\n * @returns {Function} Returns the new memoized function.\n * @example\n *\n * var object = { 'a': 1, 'b': 2 };\n * var other = { 'c': 3, 'd': 4 };\n *\n * var values = _.memoize(_.values);\n * values(object);\n * // => [1, 2]\n *\n * values(other);\n * // => [3, 4]\n *\n * object.a = 2;\n * values(object);\n * // => [1, 2]\n *\n * // Modify the result cache.\n * values.cache.set(object, ['a', 'b']);\n * values(object);\n * // => ['a', 'b']\n *\n * // Replace `_.memoize.Cache`.\n * _.memoize.Cache = WeakMap;\n */\nfunction memoize(func, resolver) {\n if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var memoized = function() {\n var args = arguments,\n key = resolver ? resolver.apply(this, args) : args[0],\n cache = memoized.cache;\n\n if (cache.has(key)) {\n return cache.get(key);\n }\n var result = func.apply(this, args);\n memoized.cache = cache.set(key, result) || cache;\n return result;\n };\n memoized.cache = new (memoize.Cache || MapCache);\n return memoized;\n}\n\n// Expose `MapCache`.\nmemoize.Cache = MapCache;\n\nmodule.exports = memoize;\n" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js", - "index": 567, - "index2": 562, - "size": 475, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_customOmitClone", - "loc": "6:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var isPlainObject = require('./isPlainObject');\n\n/**\n * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain\n * objects.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {string} key The key of the property to inspect.\n * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.\n */\nfunction customOmitClone(value) {\n return isPlainObject(value) ? undefined : value;\n}\n\nmodule.exports = customOmitClone;\n" - }, - { - "id": "4PRO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "index": 47, - "index2": 33, - "size": 625, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "issuerId": "8lCt", - "issuerName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "8lCt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@uifabric/utilities/lib/scroll.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:22-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:22-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "62:31-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "103:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "194:42-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "207:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "269:15-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "377:33-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "520:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "840:33-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1036:15-26" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "5:0-34" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getDocument", - "loc": "5:0-34" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "1:0-48" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "87:14-25" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "101:18-29" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "138:14-25" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "27:33-44" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "2:0-48" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "23:18-29" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "36:14-25" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "546:15-26" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "549:15-26" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "47:39-50" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "75:46-57" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "254:33-44" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "307:25-36" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "5:0-48" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "236:19-30" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "6:0-48" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "14:25-36" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "1:0-48" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "15:18-29" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "34:14-25" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:23-34" - } - ], - "usedExports": [ - "getDocument" - ], - "providedExports": [ - "getDocument" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { _isSSR } from './setSSR';\n/**\n * Helper to get the document object. Note that in popup window cases, document\n * might be the wrong document, which is why we look at ownerDocument for the\n * truth. Also note that the SSR flag is used to test ssr scenarios even if\n * document is defined (from JSDOM for example.)\n *\n * @public\n */\nexport function getDocument(rootElement) {\n if (_isSSR || typeof document === 'undefined') {\n return undefined;\n }\n else {\n var el = rootElement;\n return el && el.ownerDocument ? el.ownerDocument : document;\n }\n}\n//# sourceMappingURL=getDocument.js.map" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "index": 846, - "index2": 885, - "size": 102, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldSitePicker", - "loc": "19:0-99" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldSitePicker", - "loc": "705:32-55" - } - ], - "usedExports": [ - "PropertyFieldSitePicker" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 1, - "source": "export * from './propertyFields/sitePicker/index';\n//# sourceMappingURL=PropertyFieldSitePicker.js.map" - }, - { - "id": "4iH1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "index": 246, - "index2": 230, - "size": 1023, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:8-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "169:8-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "173:12-33" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "6:0-69" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "172:8-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "232:8-29" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "5:0-45" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "5:0-45" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "687:8-29" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "66:8-29" - } - ], - "usedExports": [ - "warnMutuallyExclusive" - ], - "providedExports": [ - "warnMutuallyExclusive" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { warn } from './warn';\n/**\n * Warns when two props which are mutually exclusive are both being used.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param exclusiveMap - A map where the key is a parameter, and the value is the other parameter.\n */\nexport function warnMutuallyExclusive(componentName, props, exclusiveMap) {\n if (process.env.NODE_ENV !== 'production') {\n for (var propName in exclusiveMap) {\n if (props && props[propName] !== undefined) {\n var propInExclusiveMapValue = exclusiveMap[propName];\n if (propInExclusiveMapValue && props[propInExclusiveMapValue] !== undefined) {\n warn(componentName + \" property '\" + propName + \"' is mutually exclusive with '\" + exclusiveMap[propName] + \"'. \" +\n \"Use one or the other.\");\n }\n }\n }\n }\n}\n//# sourceMappingURL=warnMutuallyExclusive.js.map" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js", - "index": 477, - "index2": 472, - "size": 747, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "issuerId": "fGT3", - "issuerName": "./node_modules/lodash/_mapCacheClear.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fGT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "module": "./node_modules/lodash/_mapCacheClear.js", - "moduleName": "./node_modules/lodash/_mapCacheClear.js", - "type": "cjs require", - "userRequest": "./_Hash", - "loc": "1:11-29" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 10, - "source": "var hashClear = require('./_hashClear'),\n hashDelete = require('./_hashDelete'),\n hashGet = require('./_hashGet'),\n hashHas = require('./_hashHas'),\n hashSet = require('./_hashSet');\n\n/**\n * Creates a hash object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Hash(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n// Add methods to `Hash`.\nHash.prototype.clear = hashClear;\nHash.prototype['delete'] = hashDelete;\nHash.prototype.get = hashGet;\nHash.prototype.has = hashHas;\nHash.prototype.set = hashSet;\n\nmodule.exports = Hash;\n" - }, - { - "id": "4qJ4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/KeyCodes.js", - "name": "./node_modules/@uifabric/utilities/lib/KeyCodes.js", - "index": 49, - "index2": 35, - "size": 1838, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "23:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "24:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "31:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "32:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:91-99" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:93-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "35:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "37:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "42:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "48:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "76:50-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "88:30-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "90:67-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "103:67-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "109:82-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "112:71-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "112:108-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "122:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "124:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "132:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "138:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "144:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "150:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "157:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "160:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "160:85-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "161:33-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "163:30-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "187:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "192:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "200:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "204:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "204:60-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "208:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "212:62-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "212:79-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "216:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "222:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "223:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "224:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "229:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "230:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "231:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "233:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "233:60-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "234:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "234:46-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "235:51-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "258:33-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "260:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "272:33-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "273:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "278:43-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "278:74-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "280:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "283:41-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "283:49-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "284:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "285:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "289:46-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "297:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "302:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "307:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "310:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "315:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "330:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "342:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "347:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "351:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "352:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "370:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "370:70-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "372:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "372:86-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "378:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "399:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "411:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "412:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "413:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "414:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "416:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "421:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "424:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "485:51-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "596:32-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "743:28-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "840:28-36" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:21-29" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "122:21-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:39-47" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "124:21-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "129:39-47" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "130:21-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "135:21-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "138:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "76:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "82:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "94:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "106:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "113:21-29" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:29-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:60-68" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:33-41" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "188:48-56" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "188:79-87" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "193:29-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "198:29-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "203:29-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "427:44-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "430:75-83" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "433:66-74" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "436:81-89" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:32-40" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:63-71" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:96-104" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "189:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "193:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "197:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:56-64" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:87-95" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:57-65" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "104:29-37" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "148:29-37" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "205:60-68" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "205:91-99" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "1:0-38" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "52:20-28" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "53:18-26" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "55:25-33" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "56:18-26" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:19-27" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "475:30-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "478:30-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "481:30-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "484:30-38" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:29-37" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:60-68" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:21-29" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:29-37" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "76:29-37" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "85:29-37" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "115:55-63" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "115:86-94" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "32:28-36" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "65:33-41" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:25-33" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "62:25-33" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "63:25-33" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "294:35-43" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "294:50-58" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "13:29-37" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "68:32-40" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "71:37-45" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "150:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "157:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "158:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "171:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "177:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "195:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "223:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "341:25-33" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "342:25-33" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "346:29-37" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "37:41-49" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:29-37" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "153:32-40" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "153:66-74" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "157:38-46" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "158:38-46" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "162:48-56" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "8:0-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeyCodes", - "loc": "8:0-27" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "50:29-37" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "72:25-33" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "72:60-68" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "115:29-37" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "122:21-29" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:21-29" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "128:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "452:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "481:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "493:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "506:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "526:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "542:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "543:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "553:37-45" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "560:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "573:39-47" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "611:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1517:28-36" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1554:29-37" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1555:29-37" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "205:25-33" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "114:29-37" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "115:29-37" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "116:29-37" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "117:29-37" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "69:58-66" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "74:107-115" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "216:20-28" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "11:29-37" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "140:24-32" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "159:29-37" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "178:29-37" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "178:59-67" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "2:0-38" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "4:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "5:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "6:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "7:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "8:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "9:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "10:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "11:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "12:7-15" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:32-40" - } - ], - "usedExports": [ - "KeyCodes" - ], - "providedExports": [ - "KeyCodes" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Simulated enum for keycodes. These will get inlined by uglify when used much like an enum\n *\n * @public\n * {@docCategory KeyCodes}\n */\nexport var KeyCodes = {\n backspace: 8,\n tab: 9,\n enter: 13,\n shift: 16,\n ctrl: 17,\n alt: 18,\n pauseBreak: 19,\n capslock: 20,\n escape: 27,\n space: 32,\n pageUp: 33,\n pageDown: 34,\n end: 35,\n home: 36,\n left: 37,\n up: 38,\n right: 39,\n down: 40,\n insert: 45,\n del: 46,\n zero: 48,\n one: 49,\n two: 50,\n three: 51,\n four: 52,\n five: 53,\n six: 54,\n seven: 55,\n eight: 56,\n nine: 57,\n a: 65,\n b: 66,\n c: 67,\n d: 68,\n e: 69,\n f: 70,\n g: 71,\n h: 72,\n i: 73,\n j: 74,\n k: 75,\n l: 76,\n m: 77,\n n: 78,\n o: 79,\n p: 80,\n q: 81,\n r: 82,\n s: 83,\n t: 84,\n u: 85,\n v: 86,\n w: 87,\n x: 88,\n y: 89,\n z: 90,\n leftWindow: 91,\n rightWindow: 92,\n select: 93,\n /* eslint-disable @typescript-eslint/naming-convention */\n zero_numpad: 96,\n one_numpad: 97,\n two_numpad: 98,\n three_numpad: 99,\n four_numpad: 100,\n five_numpad: 101,\n six_numpad: 102,\n seven_numpad: 103,\n eight_numpad: 104,\n nine_numpad: 105,\n /* eslint-enable @typescript-eslint/naming-convention */\n multiply: 106,\n add: 107,\n subtract: 109,\n decimalPoint: 110,\n divide: 111,\n f1: 112,\n f2: 113,\n f3: 114,\n f4: 115,\n f5: 116,\n f6: 117,\n f7: 118,\n f8: 119,\n f9: 120,\n f10: 121,\n f11: 122,\n f12: 123,\n numlock: 144,\n scrollLock: 145,\n semicolon: 186,\n equalSign: 187,\n comma: 188,\n dash: 189,\n period: 190,\n forwardSlash: 191,\n graveAccent: 192,\n openBracket: 219,\n backSlash: 220,\n closeBracket: 221,\n singleQuote: 222,\n};\n//# sourceMappingURL=KeyCodes.js.map" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js", - "index": 554, - "index2": 554, - "size": 569, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_castPath", - "loc": "4:15-37" - }, - { - "moduleId": "S7Xf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "module": "./node_modules/lodash/_baseUnset.js", - "moduleName": "./node_modules/lodash/_baseUnset.js", - "type": "cjs require", - "userRequest": "./_castPath", - "loc": "1:15-37" - }, - { - "moduleId": "ZWtO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGet.js", - "module": "./node_modules/lodash/_baseGet.js", - "moduleName": "./node_modules/lodash/_baseGet.js", - "type": "cjs require", - "userRequest": "./_castPath", - "loc": "1:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var isArray = require('./isArray'),\n isKey = require('./_isKey'),\n stringToPath = require('./_stringToPath'),\n toString = require('./toString');\n\n/**\n * Casts `value` to a path array if it's not one.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {Object} [object] The object to query keys on.\n * @returns {Array} Returns the cast property path array.\n */\nfunction castPath(value, object) {\n if (isArray(value)) {\n return value;\n }\n return isKey(value, object) ? [value] : stringToPath(toString(value));\n}\n\nmodule.exports = castPath;\n" - }, - { - "id": "57t7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "index": 35, - "index2": 22, - "size": 249, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./CustomizerContext", - "loc": "3:0-56" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "10:42-59" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "./CustomizerContext", - "loc": "4:0-56" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "36:36-53" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "41:39-56" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "./CustomizerContext", - "loc": "5:0-56" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "28:48-65" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/CustomizerContext", - "loc": "21:0-51" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/CustomizerContext", - "loc": "21:0-51" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "31:80-97" - } - ], - "usedExports": [ - "CustomizerContext" - ], - "providedExports": [ - "CustomizerContext" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as React from 'react';\nexport var CustomizerContext = React.createContext({\n customizations: {\n inCustomizerContext: false,\n settings: {},\n scopedSettings: {},\n },\n});\n//# sourceMappingURL=CustomizerContext.js.map" - }, - { - "id": "5AgF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "name": "./node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "index": 79, - "index2": 62, - "size": 10876, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "issuerId": "Khh+", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - }, - { - "id": "MgI6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js" - }, - { - "id": "Khh+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1Z81", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "1Z81", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "E/aL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "E/aL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "Khh+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "Khh+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "TCe0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "TCe0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "iC7h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "iC7h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "ldgY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "ldgY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "nCPe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "nCPe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "rqo+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "rqo+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-77" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "69:4-19" - }, - { - "moduleId": "x/L3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "x/L3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "yCvn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "yCvn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - } - ], - "usedExports": [ - "loadTheme" - ], - "providedExports": [ - "loadStyles", - "configureLoadStyles", - "configureRunMode", - "flush", - "loadTheme", - "clearStyles", - "detokenize", - "splitStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module uses injected variables (global)" - ], - "depth": 6, - "source": "// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n// Store the theming state in __themeState__ global scope for reuse in the case of duplicate\n// load-themed-styles hosted on the page.\nvar _root = typeof window === 'undefined' ? global : window; // eslint-disable-line @typescript-eslint/no-explicit-any\n// Nonce string to inject into script tag if one provided. This is used in CSP (Content Security Policy).\nvar _styleNonce = _root && _root.CSPSettings && _root.CSPSettings.nonce;\nvar _themeState = initializeThemeState();\n/**\n * Matches theming tokens. For example, \"[theme: themeSlotName, default: #FFF]\" (including the quotes).\n */\nvar _themeTokenRegex = /[\\'\\\"]\\[theme:\\s*(\\w+)\\s*(?:\\,\\s*default:\\s*([\\\\\"\\']?[\\.\\,\\(\\)\\#\\-\\s\\w]*[\\.\\,\\(\\)\\#\\-\\w][\\\"\\']?))?\\s*\\][\\'\\\"]/g;\nvar now = function () {\n return typeof performance !== 'undefined' && !!performance.now ? performance.now() : Date.now();\n};\nfunction measure(func) {\n var start = now();\n func();\n var end = now();\n _themeState.perf.duration += end - start;\n}\n/**\n * initialize global state object\n */\nfunction initializeThemeState() {\n var state = _root.__themeState__ || {\n theme: undefined,\n lastStyleElement: undefined,\n registeredStyles: []\n };\n if (!state.runState) {\n state = __assign(__assign({}, state), { perf: {\n count: 0,\n duration: 0\n }, runState: {\n flushTimer: 0,\n mode: 0 /* sync */,\n buffer: []\n } });\n }\n if (!state.registeredThemableStyles) {\n state = __assign(__assign({}, state), { registeredThemableStyles: [] });\n }\n _root.__themeState__ = state;\n return state;\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load\n * event is fired.\n * @param {string | ThemableArray} styles Themable style text to register.\n * @param {boolean} loadAsync When true, always load styles in async mode, irrespective of current sync mode.\n */\nexport function loadStyles(styles, loadAsync) {\n if (loadAsync === void 0) { loadAsync = false; }\n measure(function () {\n var styleParts = Array.isArray(styles) ? styles : splitStyles(styles);\n var _a = _themeState.runState, mode = _a.mode, buffer = _a.buffer, flushTimer = _a.flushTimer;\n if (loadAsync || mode === 1 /* async */) {\n buffer.push(styleParts);\n if (!flushTimer) {\n _themeState.runState.flushTimer = asyncLoadStyles();\n }\n }\n else {\n applyThemableStyles(styleParts);\n }\n });\n}\n/**\n * Allows for customizable loadStyles logic. e.g. for server side rendering application\n * @param {(processedStyles: string, rawStyles?: string | ThemableArray) => void}\n * a loadStyles callback that gets called when styles are loaded or reloaded\n */\nexport function configureLoadStyles(loadStylesFn) {\n _themeState.loadStyles = loadStylesFn;\n}\n/**\n * Configure run mode of load-themable-styles\n * @param mode load-themable-styles run mode, async or sync\n */\nexport function configureRunMode(mode) {\n _themeState.runState.mode = mode;\n}\n/**\n * external code can call flush to synchronously force processing of currently buffered styles\n */\nexport function flush() {\n measure(function () {\n var styleArrays = _themeState.runState.buffer.slice();\n _themeState.runState.buffer = [];\n var mergedStyleArray = [].concat.apply([], styleArrays);\n if (mergedStyleArray.length > 0) {\n applyThemableStyles(mergedStyleArray);\n }\n });\n}\n/**\n * register async loadStyles\n */\nfunction asyncLoadStyles() {\n return setTimeout(function () {\n _themeState.runState.flushTimer = 0;\n flush();\n }, 0);\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load event\n * is fired.\n * @param {string} styleText Style to register.\n * @param {IStyleRecord} styleRecord Existing style record to re-apply.\n */\nfunction applyThemableStyles(stylesArray, styleRecord) {\n if (_themeState.loadStyles) {\n _themeState.loadStyles(resolveThemableArray(stylesArray).styleString, stylesArray);\n }\n else {\n registerStyles(stylesArray);\n }\n}\n/**\n * Registers a set theme tokens to find and replace. If styles were already registered, they will be\n * replaced.\n * @param {theme} theme JSON object of theme tokens to values.\n */\nexport function loadTheme(theme) {\n _themeState.theme = theme;\n // reload styles.\n reloadStyles();\n}\n/**\n * Clear already registered style elements and style records in theme_State object\n * @param option - specify which group of registered styles should be cleared.\n * Default to be both themable and non-themable styles will be cleared\n */\nexport function clearStyles(option) {\n if (option === void 0) { option = 3 /* all */; }\n if (option === 3 /* all */ || option === 2 /* onlyNonThemable */) {\n clearStylesInternal(_themeState.registeredStyles);\n _themeState.registeredStyles = [];\n }\n if (option === 3 /* all */ || option === 1 /* onlyThemable */) {\n clearStylesInternal(_themeState.registeredThemableStyles);\n _themeState.registeredThemableStyles = [];\n }\n}\nfunction clearStylesInternal(records) {\n records.forEach(function (styleRecord) {\n var styleElement = styleRecord && styleRecord.styleElement;\n if (styleElement && styleElement.parentElement) {\n styleElement.parentElement.removeChild(styleElement);\n }\n });\n}\n/**\n * Reloads styles.\n */\nfunction reloadStyles() {\n if (_themeState.theme) {\n var themableStyles = [];\n for (var _i = 0, _a = _themeState.registeredThemableStyles; _i < _a.length; _i++) {\n var styleRecord = _a[_i];\n themableStyles.push(styleRecord.themableStyle);\n }\n if (themableStyles.length > 0) {\n clearStyles(1 /* onlyThemable */);\n applyThemableStyles([].concat.apply([], themableStyles));\n }\n }\n}\n/**\n * Find theme tokens and replaces them with provided theme values.\n * @param {string} styles Tokenized styles to fix.\n */\nexport function detokenize(styles) {\n if (styles) {\n styles = resolveThemableArray(splitStyles(styles)).styleString;\n }\n return styles;\n}\n/**\n * Resolves ThemingInstruction objects in an array and joins the result into a string.\n * @param {ThemableArray} splitStyleArray ThemableArray to resolve and join.\n */\nfunction resolveThemableArray(splitStyleArray) {\n var theme = _themeState.theme;\n var themable = false;\n // Resolve the array of theming instructions to an array of strings.\n // Then join the array to produce the final CSS string.\n var resolvedArray = (splitStyleArray || []).map(function (currentValue) {\n var themeSlot = currentValue.theme;\n if (themeSlot) {\n themable = true;\n // A theming annotation. Resolve it.\n var themedValue = theme ? theme[themeSlot] : undefined;\n var defaultValue = currentValue.defaultValue || 'inherit';\n // Warn to console if we hit an unthemed value even when themes are provided, but only if \"DEBUG\" is true.\n // Allow the themedValue to be undefined to explicitly request the default value.\n if (theme &&\n !themedValue &&\n console &&\n !(themeSlot in theme) &&\n typeof DEBUG !== 'undefined' &&\n DEBUG) {\n console.warn(\"Theming value not provided for \\\"\".concat(themeSlot, \"\\\". Falling back to \\\"\").concat(defaultValue, \"\\\".\"));\n }\n return themedValue || defaultValue;\n }\n else {\n // A non-themable string. Preserve it.\n return currentValue.rawString;\n }\n });\n return {\n styleString: resolvedArray.join(''),\n themable: themable\n };\n}\n/**\n * Split tokenized CSS into an array of strings and theme specification objects\n * @param {string} styles Tokenized styles to split.\n */\nexport function splitStyles(styles) {\n var result = [];\n if (styles) {\n var pos = 0; // Current position in styles.\n var tokenMatch = void 0;\n while ((tokenMatch = _themeTokenRegex.exec(styles))) {\n var matchIndex = tokenMatch.index;\n if (matchIndex > pos) {\n result.push({\n rawString: styles.substring(pos, matchIndex)\n });\n }\n result.push({\n theme: tokenMatch[1],\n defaultValue: tokenMatch[2] // May be undefined\n });\n // index of the first character after the current match\n pos = _themeTokenRegex.lastIndex;\n }\n // Push the rest of the string after the last match.\n result.push({\n rawString: styles.substring(pos)\n });\n }\n return result;\n}\n/**\n * Registers a set of style text. If it is registered too early, we will register it when the\n * window.load event is fired.\n * @param {ThemableArray} styleArray Array of IThemingInstruction objects to register.\n * @param {IStyleRecord} styleRecord May specify a style Element to update.\n */\nfunction registerStyles(styleArray) {\n if (typeof document === 'undefined') {\n return;\n }\n var head = document.getElementsByTagName('head')[0];\n var styleElement = document.createElement('style');\n var _a = resolveThemableArray(styleArray), styleString = _a.styleString, themable = _a.themable;\n styleElement.setAttribute('data-load-themed-styles', 'true');\n if (_styleNonce) {\n styleElement.setAttribute('nonce', _styleNonce);\n }\n styleElement.appendChild(document.createTextNode(styleString));\n _themeState.perf.count++;\n head.appendChild(styleElement);\n var ev = document.createEvent('HTMLEvents');\n ev.initEvent('styleinsert', true /* bubbleEvent */, false /* cancelable */);\n ev.args = {\n newStyle: styleElement\n };\n document.dispatchEvent(ev);\n var record = {\n styleElement: styleElement,\n themableStyle: styleArray\n };\n if (themable) {\n _themeState.registeredThemableStyles.push(record);\n }\n else {\n _themeState.registeredStyles.push(record);\n }\n}\n//# sourceMappingURL=index.js.map" - }, - { - "id": "5Tg0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneBuffer.js", - "name": "./node_modules/lodash/_cloneBuffer.js", - "index": 521, - "index2": 514, - "size": 1056, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_cloneBuffer", - "loc": "6:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var root = require('./_root');\n\n/** Detect free variable `exports`. */\nvar freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Built-in value references. */\nvar Buffer = moduleExports ? root.Buffer : undefined,\n allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;\n\n/**\n * Creates a clone of `buffer`.\n *\n * @private\n * @param {Buffer} buffer The buffer to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Buffer} Returns the cloned buffer.\n */\nfunction cloneBuffer(buffer, isDeep) {\n if (isDeep) {\n return buffer.slice();\n }\n var length = buffer.length,\n result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n buffer.copy(result);\n return result;\n}\n\nmodule.exports = cloneBuffer;\n" - }, - { - "id": "5fkN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "name": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "index": 117, - "index2": 105, - "size": 1385, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:36-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "62:36-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "99:36-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "213:40-53" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DelayedRender", - "loc": "4:0-32" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DelayedRender", - "loc": "4:0-32" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:32-45" - } - ], - "usedExports": [ - "DelayedRender" - ], - "providedExports": [ - "DelayedRender" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\n/**\n * Utility component for delaying the render of a child component after a given delay. This component\n * requires a single child component; don't pass in many components. Wrap multiple components in a DIV\n * if necessary.\n *\n * @public\n * {@docCategory DelayedRender}\n */\nvar DelayedRender = /** @class */ (function (_super) {\n __extends(DelayedRender, _super);\n function DelayedRender(props) {\n var _this = _super.call(this, props) || this;\n _this.state = {\n isRendered: false,\n };\n return _this;\n }\n DelayedRender.prototype.componentDidMount = function () {\n var _this = this;\n var delay = this.props.delay;\n this._timeoutId = window.setTimeout(function () {\n _this.setState({\n isRendered: true,\n });\n }, delay);\n };\n DelayedRender.prototype.componentWillUnmount = function () {\n if (this._timeoutId) {\n clearTimeout(this._timeoutId);\n }\n };\n DelayedRender.prototype.render = function () {\n return this.state.isRendered ? React.Children.only(this.props.children) : null;\n };\n DelayedRender.defaultProps = {\n delay: 0,\n };\n return DelayedRender;\n}(React.Component));\nexport { DelayedRender };\n//# sourceMappingURL=DelayedRender.js.map" - }, - { - "id": "6/e9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "index": 915, - "index2": 913, - "size": 1784, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerId": "QxFg", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyPaneWebPartInformation", - "loc": "2:0-49" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyPaneWebPartInformation", - "loc": "2:0-49" - } - ], - "usedExports": [ - "PropertyPaneWebPartInformation" - ], - "providedExports": [ - "PropertyPaneWebPartInformation" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import * as React from 'react';\nimport * as ReactDom from 'react-dom';\nimport { PropertyPaneFieldType } from '@microsoft/sp-webpart-base';\nimport PropertyPaneWebPartInformationHost from './PropertyPaneWebPartInformationHost';\nvar PropertyPaneWebPartInformationBuilder = /** @class */ (function () {\n function PropertyPaneWebPartInformationBuilder(_properties) {\n this.type = PropertyPaneFieldType.Custom;\n this.properties = {\n key: _properties.key,\n moreInfoLink: _properties.moreInfoLink,\n moreInfoLinkTarget: _properties.moreInfoLinkTarget !== undefined ? _properties.moreInfoLinkTarget : \"_blank\",\n videoProperties: _properties.videoProperties,\n description: _properties.description,\n onRender: this.onRender.bind(this)\n };\n }\n PropertyPaneWebPartInformationBuilder.prototype.render = function () {\n if (!this.elem) {\n return;\n }\n this.onRender(this.elem);\n };\n PropertyPaneWebPartInformationBuilder.prototype.onRender = function (elem, ctx, changeCallback) {\n if (!this.elem) {\n this.elem = elem;\n }\n var element = React.createElement(PropertyPaneWebPartInformationHost, {\n moreInfoLink: this.properties.moreInfoLink,\n moreInfoLinkTarget: this.properties.moreInfoLinkTarget,\n description: this.properties.description,\n videoProperties: this.properties.videoProperties\n });\n ReactDom.render(element, elem);\n };\n return PropertyPaneWebPartInformationBuilder;\n}());\nexport function PropertyPaneWebPartInformation(properties) {\n return new PropertyPaneWebPartInformationBuilder(properties);\n}\n//# sourceMappingURL=PropertyPaneWebPartInformation.js.map" - }, - { - "id": "69gx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "index": 293, - "index2": 288, - "size": 1084, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./collections", - "loc": "1:0-30" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./collections", - "loc": "1:0-30" - }, - { - "moduleId": "IMkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "type": "harmony side effect evaluation", - "userRequest": "./collections", - "loc": "1:0-55" - }, - { - "moduleId": "IMkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "type": "harmony import specifier", - "userRequest": "./collections", - "loc": "33:18-27" - }, - { - "moduleId": "IMkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "type": "harmony import specifier", - "userRequest": "./collections", - "loc": "33:37-48" - } - ], - "usedExports": [ - "mergeMaps", - "objectToMap" - ], - "providedExports": [ - "objectToMap", - "mergeMaps" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { isFunc } from \"./util\";\r\n/**\r\n * Used to calculate the object properties, with polyfill if needed\r\n */\r\nvar objectEntries = isFunc(Object.entries) ? Object.entries : function (o) { return Object.keys(o).map(function (k) { return [k, o[k]]; }); };\r\n/**\r\n * Converts the supplied object to a map\r\n *\r\n * @param o The object to map\r\n */\r\nexport function objectToMap(o) {\r\n if (o !== undefined && o !== null) {\r\n return new Map(objectEntries(o));\r\n }\r\n return new Map();\r\n}\r\n/**\r\n * Merges to Map instances together, overwriting values in target with matching keys, last in wins\r\n *\r\n * @param target map into which the other maps are merged\r\n * @param maps One or more maps to merge into the target\r\n */\r\nexport function mergeMaps(target) {\r\n var maps = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n maps[_i - 1] = arguments[_i];\r\n }\r\n for (var i = 0; i < maps.length; i++) {\r\n maps[i].forEach(function (v, k) {\r\n target.set(k, v);\r\n });\r\n }\r\n return target;\r\n}\r\n//# sourceMappingURL=collections.js.map" - }, - { - "id": "6ClI", - "identifier": "external \"ListSearchWebPartStrings\"", - "name": "external \"ListSearchWebPartStrings\"", - "index": 288, - "index2": 286, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "ListSearchWebPartStrings", - "loc": "12:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "ListSearchWebPartStrings", - "loc": "17:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "468:19-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "473:19-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "476:19-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "480:19-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "491:19-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "494:19-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "497:27-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "503:19-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "517:19-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "523:19-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "527:19-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "528:25-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "532:19-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "545:19-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "553:19-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "557:19-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "562:19-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "567:26-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "571:26-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "575:26-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "579:26-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "583:26-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "587:26-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "592:19-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "597:26-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "601:26-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "607:19-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "608:25-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "609:28-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "615:27-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "622:27-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "631:27-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "642:27-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "648:27-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "661:19-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "662:25-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "663:28-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "668:27-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "675:27-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "684:27-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "691:19-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "697:37-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "702:39-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "706:43-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "716:43-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "717:49-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "718:52-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "724:51-92" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "734:51-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "745:51-90" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "750:51-91" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "751:57-103" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "756:51-84" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "765:39-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "769:43-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "774:43-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "779:43-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "787:43-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "788:49-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "789:52-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "794:51-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "800:51-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "805:51-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "810:51-87" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "818:51-87" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "826:51-91" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "834:51-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "843:39-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "848:43-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "849:49-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "850:52-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "855:51-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "862:51-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "871:51-88" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "882:51-90" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "889:49-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "893:51-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "911:37-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "916:39-69" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "916:189-220" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "920:43-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "925:43-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "926:49-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "930:43-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "935:43-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "943:39-69" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "947:43-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "960:37-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "965:39-72" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "969:43-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "978:43-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "983:43-78" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "991:39-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "995:43-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "1006:37-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "1010:39-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "1064:31-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "1068:27-57" - } - ], - "usedExports": [ - "AboutPropertiesGroupName", - "CollectionDataFieldHeader", - "CollectionDataFieldTitle", - "CollectionDataFieldsButton", - "CollectionDataFieldsHeader", - "CollectionDataFieldsList", - "CollectionDataFieldsListField", - "CollectionDataFieldsProperties", - "CollectionDataFieldsRenderType", - "CollectionDataFieldsSearchable", - "CollectionDataFieldsSelectBtn", - "CollectionDataFieldsSiteCollection", - "CollectionDataFieldsTargetField", - "CollectionDataFieldsToRetreive", - "CollectionDataListCamlQueryPlaceHolder", - "CollectionDataListCamlQueryTitle", - "CollectionDataListTitle", - "CollectionDataListViewNameTitle", - "CollectionDataSiteCollectionTitle", - "CompleteModalButton", - "CompleteModalFieldSelector", - "CompleteModalFieldsList", - "CompleteModalFieldsListField", - "CompleteModalFieldsSiteCollection", - "CompleteModalFieldsTargetField", - "CompleteModalHeaderSelector", - "DisplayFieldsPropertiesGroup", - "FieldPropertiesGroup", - "FilterPropertiesClearAllBtn", - "FilterPropertiesClearAllBtnColor", - "FilterPropertiesClearAllBtnText", - "FilterPropertiesGeneralFilter", - "FilterPropertiesGeneralFilterPlaceHolder", - "FilterPropertiesGroup", - "FilterPropertiesGroupName", - "FilterPropertiesIndividualFilter", - "FilterPropertiesIndividualFilterPostion", - "GeneralFieldsPropertiesShowFileIcon", - "GeneralFieldsPropertiesShowListName", - "GeneralFieldsPropertiesShowSiteInformation", - "GeneralFieldsPropertiesSiteProperty", - "GeneralFilterConnection", - "GeneralFilterInitialQueryEnabled", - "GeneralFilterInitialQueryOption", - "GeneralFilterInitialQueryTextValue", - "GeneralPropertiesGroup", - "GeneralPropertiesGroupByField", - "GeneralPropertiesItemCountPlaceholder", - "GeneralPropertiesItemCountText", - "GeneralPropertiesItemPerPage", - "GeneralPropertiesRowLimitDescription", - "GeneralPropertiesRowLimitLabel", - "GeneralPropertiesShowItemCount", - "GeneralPropertiesShowPagination", - "GroupByEmptyValue", - "GroupFieldOptionsToSelect", - "InformationPropertiesGroupName", - "InitialSearchText", - "LblCacheType", - "LblErrorDiferentRender", - "LblErrorSameColumn", - "ListSelector", - "ListSelectorLabel", - "ListSelectorPanelHeader", - "MinutesToCacheData", - "ModerAudienceEnabledTitle", - "OnClickCompleteModalText", - "OnClickDynamicText", - "OnClickEvent", - "OnClickNumberOfClickOptionsToSelect", - "OnClickOptionsToSelect", - "OnClickPropertiesGroup", - "OnClickRedirectText", - "OnClickSimpleModalText", - "OnDocumentIframePreviewText", - "OnDocumentNewTabPreviewText", - "OnclickRedirectIdText", - "OneClickTriggerText", - "PropertyPaneDescription", - "SitesSelector", - "SourceSelectorGroup", - "StoragePropertiesGroupName", - "TwoClickTriggerText", - "UseLocalStorage", - "WebPartTitlePlaceHolder", - "detailListFieldsColumnMaxWidth", - "detailListFieldsColumnMinWidth", - "detailListFieldsColumnTitle", - "detailListFieldsIsFileIconColumn", - "detailListFieldsIsListColumn", - "detailListFieldsIsSiteColumn", - "redirectDataButton", - "redirectDataFieldSelector", - "redirectDataFieldsList", - "redirectDataFieldsSiteCollection", - "redirectDataHeaderSelector", - "redirectDataUrl" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "6SDC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConst.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "index": 230, - "index2": 210, - "size": 1344, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/react-hooks", - "loc": "13:24-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/react-hooks", - "loc": "190:26-34" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "4:0-27" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useConst", - "loc": "4:0-27" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "7:22-30" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "17:11-19" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "7:21-29" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "19:11-19" - }, - { - "moduleId": "KB00", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "KB00", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "8:22-30" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "5:23-31" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "17:33-41" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "3:0-38" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "8:16-24" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "15:18-26" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "19:19-27" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "23:17-25" - }, - { - "moduleId": "sNMJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "5:0-38" - } - ], - "usedExports": [ - "useConst" - ], - "providedExports": [ - "useConst" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as React from 'react';\n/**\n * Hook to initialize and return a constant value. Unlike `React.useMemo`, this is guaranteed to\n * always return the same value (and if the initializer is a function, only call it once).\n * This is similar to setting a private member in a class constructor.\n *\n * If the value should ever change based on dependencies, use `React.useMemo` instead.\n *\n * @param initialValue - Initial value, or function to get the initial value. Similar to `useState`,\n * only the value/function passed in the first time this is called is respected.\n * @returns The value. The identity of this value will always be the same.\n */\nexport function useConst(initialValue) {\n // Use useRef to store the value because it's the least expensive built-in hook that works here\n // (we could also use `const [value] = React.useState(initialValue)` but that's more expensive\n // internally due to reducer handling which we don't need)\n var ref = React.useRef();\n if (ref.current === undefined) {\n // Box the value in an object so we can tell if it's initialized even if the initializer\n // returns/is undefined\n ref.current = {\n value: typeof initialValue === 'function' ? initialValue() : initialValue,\n };\n }\n return ref.current.value;\n}\n//# sourceMappingURL=useConst.js.map" - }, - { - "id": "6sVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isPrototype.js", - "name": "./node_modules/lodash/_isPrototype.js", - "index": 513, - "index2": 503, - "size": 480, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "issuerId": "QcOe", - "issuerName": "./node_modules/lodash/_baseKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "QcOe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "name": "./node_modules/lodash/_baseKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+iFO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "module": "./node_modules/lodash/_initCloneObject.js", - "moduleName": "./node_modules/lodash/_initCloneObject.js", - "type": "cjs require", - "userRequest": "./_isPrototype", - "loc": "3:18-43" - }, - { - "moduleId": "A90E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "module": "./node_modules/lodash/_baseKeys.js", - "moduleName": "./node_modules/lodash/_baseKeys.js", - "type": "cjs require", - "userRequest": "./_isPrototype", - "loc": "1:18-43" - }, - { - "moduleId": "QcOe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "module": "./node_modules/lodash/_baseKeysIn.js", - "moduleName": "./node_modules/lodash/_baseKeysIn.js", - "type": "cjs require", - "userRequest": "./_isPrototype", - "loc": "2:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Checks if `value` is likely a prototype object.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n */\nfunction isPrototype(value) {\n var Ctor = value && value.constructor,\n proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n return value === proto;\n}\n\nmodule.exports = isPrototype;\n" - }, - { - "id": "742z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/spfxcontextinterface.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/spfxcontextinterface.js", - "index": 299, - "index2": 293, - "size": 48, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./spfxcontextinterface", - "loc": "4:0-39" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./spfxcontextinterface", - "loc": "4:0-39" - } - ], - "usedExports": [ - "PnPClientStorage", - "assign", - "combine", - "dateAdd", - "getCtxCallback", - "getGUID", - "hOP", - "isArray", - "isFunc", - "isUrlAbsolute", - "jsS", - "objectDefinedNotNull", - "safeGlobal", - "stringIsNullOrEmpty" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "//# sourceMappingURL=spfxcontextinterface.js.map" - }, - { - "id": "77Zs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackClear.js", - "name": "./node_modules/lodash/_stackClear.js", - "index": 455, - "index2": 447, - "size": 254, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackClear", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var ListCache = require('./_ListCache');\n\n/**\n * Removes all key-value entries from the stack.\n *\n * @private\n * @name clear\n * @memberOf Stack\n */\nfunction stackClear() {\n this.__data__ = new ListCache;\n this.size = 0;\n}\n\nmodule.exports = stackClear;\n" - }, - { - "id": "7Awa", - "identifier": "external \"@microsoft/sp-component-base\"", - "name": "external \"@microsoft/sp-component-base\"", - "index": 904, - "index2": 903, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-component-base", - "loc": "24:0-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-component-base", - "loc": "54:68-81" - } - ], - "usedExports": [ - "ThemeProvider" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "7GkX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "name": "./node_modules/lodash/keys.js", - "index": 496, - "index2": 508, - "size": 884, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./keys", - "loc": "21:11-28" - }, - { - "moduleId": "WwFo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssign.js", - "module": "./node_modules/lodash/_baseAssign.js", - "moduleName": "./node_modules/lodash/_baseAssign.js", - "type": "cjs require", - "userRequest": "./keys", - "loc": "2:11-28" - }, - { - "moduleId": "qZTm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeys.js", - "module": "./node_modules/lodash/_getAllKeys.js", - "moduleName": "./node_modules/lodash/_getAllKeys.js", - "type": "cjs require", - "userRequest": "./keys", - "loc": "3:11-28" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var arrayLikeKeys = require('./_arrayLikeKeys'),\n baseKeys = require('./_baseKeys'),\n isArrayLike = require('./isArrayLike');\n\n/**\n * Creates an array of the own enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects. See the\n * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * for more details.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keys(new Foo);\n * // => ['a', 'b'] (iteration order is not guaranteed)\n *\n * _.keys('hi');\n * // => ['0', '1']\n */\nfunction keys(object) {\n return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\n}\n\nmodule.exports = keys;\n" - }, - { - "id": "7IcM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ICollectionDataItemState.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ICollectionDataItemState.js", - "index": 271, - "index2": 264, - "size": 52, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerId": "kQRI", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionDataItemState", - "loc": "3:0-43" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionDataItemState", - "loc": "3:0-43" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "//# sourceMappingURL=ICollectionDataItemState.js.map" - }, - { - "id": "7Ix3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nativeKeysIn.js", - "name": "./node_modules/lodash/_nativeKeysIn.js", - "index": 520, - "index2": 510, - "size": 490, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "issuerId": "QcOe", - "issuerName": "./node_modules/lodash/_baseKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "QcOe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "name": "./node_modules/lodash/_baseKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QcOe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "module": "./node_modules/lodash/_baseKeysIn.js", - "moduleName": "./node_modules/lodash/_baseKeysIn.js", - "type": "cjs require", - "userRequest": "./_nativeKeysIn", - "loc": "3:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * This function is like\n * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * except that it includes inherited enumerable properties.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction nativeKeysIn(object) {\n var result = [];\n if (object != null) {\n for (var key in Object(object)) {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = nativeKeysIn;\n" - }, - { - "id": "7Uas", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "name": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "index": 245, - "index2": 231, - "size": 9613, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:153-163" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:160-170" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:188-198" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:193-203" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:212-222" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "335:69-79" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:173-183" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:132-142" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseComponent", - "loc": "3:0-32" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./BaseComponent", - "loc": "3:0-32" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "14:113-123" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:275-285" - } - ], - "usedExports": [ - "nullRender" - ], - "providedExports": [ - "BaseComponent", - "nullRender" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async } from './Async';\nimport { EventGroup } from './EventGroup';\nimport { warnConditionallyRequiredProps } from './warn/warnConditionallyRequiredProps';\nimport { warnMutuallyExclusive } from './warn/warnMutuallyExclusive';\nimport { warnDeprecations } from './warn/warnDeprecations';\n/**\n * BaseComponent class, which provides basic helpers for all components.\n *\n * @public\n * {@docCategory BaseComponent}\n *\n * @deprecated Do not use. We are moving away from class component.\n */\nvar BaseComponent = /** @class */ (function (_super) {\n __extends(BaseComponent, _super);\n /**\n * BaseComponent constructor\n * @param props - The props for the component.\n * @param context - The context for the component.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n function BaseComponent(props, context) {\n var _this = _super.call(this, props, context) || this;\n // eslint-disable-next-line deprecation/deprecation\n _makeAllSafe(_this, BaseComponent.prototype, [\n 'componentDidMount',\n 'shouldComponentUpdate',\n 'getSnapshotBeforeUpdate',\n 'render',\n 'componentDidUpdate',\n 'componentWillUnmount',\n ]);\n return _this;\n }\n /**\n * When the component receives props, make sure the componentRef is updated.\n */\n BaseComponent.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._updateComponentRef(prevProps, this.props);\n };\n /**\n * When the component has mounted, update the componentRef.\n */\n BaseComponent.prototype.componentDidMount = function () {\n this._setComponentRef(this.props.componentRef, this);\n };\n /**\n * If we have disposables, dispose them automatically on unmount.\n */\n BaseComponent.prototype.componentWillUnmount = function () {\n this._setComponentRef(this.props.componentRef, null);\n if (this.__disposables) {\n for (var i = 0, len = this._disposables.length; i < len; i++) {\n var disposable = this.__disposables[i];\n if (disposable.dispose) {\n disposable.dispose();\n }\n }\n this.__disposables = null;\n }\n };\n Object.defineProperty(BaseComponent.prototype, \"className\", {\n /**\n * Gets the object's class name.\n */\n get: function () {\n if (!this.__className) {\n var funcNameRegex = /function (.{1,})\\(/;\n var results = funcNameRegex.exec(this.constructor.toString());\n this.__className = results && results.length > 1 ? results[1] : '';\n }\n return this.__className;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_disposables\", {\n /**\n * Allows subclasses to push things to this._disposables to be auto disposed.\n */\n get: function () {\n if (!this.__disposables) {\n this.__disposables = [];\n }\n return this.__disposables;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_async\", {\n /**\n * Gets the async instance associated with the component, created on demand. The async instance gives\n * subclasses a way to execute setTimeout/setInterval async calls safely, where the callbacks\n * will be cleared/ignored automatically after unmounting. The helpers within the async object also\n * preserve the this pointer so that you don't need to \"bind\" the callbacks.\n */\n get: function () {\n if (!this.__async) {\n this.__async = new Async(this);\n this._disposables.push(this.__async);\n }\n return this.__async;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_events\", {\n /**\n * Gets the event group instance assocaited with the component, created on demand. The event instance\n * provides on/off methods for listening to DOM (or regular javascript object) events. The event callbacks\n * will be automatically disconnected after unmounting. The helpers within the events object also\n * preserve the this reference so that you don't need to \"bind\" the callbacks.\n */\n get: function () {\n if (!this.__events) {\n this.__events = new EventGroup(this);\n this._disposables.push(this.__events);\n }\n return this.__events;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Helper to return a memoized ref resolver function.\n * @param refName - Name of the member to assign the ref to.\n * @returns A function instance keyed from the given refname.\n * @deprecated Use `createRef` from React.createRef.\n */\n BaseComponent.prototype._resolveRef = function (refName) {\n var _this = this;\n if (!this.__resolves) {\n this.__resolves = {};\n }\n if (!this.__resolves[refName]) {\n this.__resolves[refName] = function (ref) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (_this[refName] = ref);\n };\n }\n return this.__resolves[refName];\n };\n /**\n * Updates the componentRef (by calling it with \"this\" when necessary.)\n */\n BaseComponent.prototype._updateComponentRef = function (currentProps, newProps) {\n if (newProps === void 0) { newProps = {}; }\n // currentProps *should* always be defined, but verify that just in case a subclass is manually\n // calling a lifecycle method with no parameters (which has happened) or other odd usage.\n if (currentProps && newProps && currentProps.componentRef !== newProps.componentRef) {\n this._setComponentRef(currentProps.componentRef, null);\n this._setComponentRef(newProps.componentRef, this);\n }\n };\n /**\n * Warns when a deprecated props are being used.\n *\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\n * either null or a replacement prop name.\n */\n BaseComponent.prototype._warnDeprecations = function (deprecationMap) {\n warnDeprecations(this.className, this.props, deprecationMap);\n };\n /**\n * Warns when props which are mutually exclusive with each other are both used.\n *\n * @param mutuallyExclusiveMap - The map of mutually exclusive props.\n */\n BaseComponent.prototype._warnMutuallyExclusive = function (mutuallyExclusiveMap) {\n warnMutuallyExclusive(this.className, this.props, mutuallyExclusiveMap);\n };\n /**\n * Warns when props are required if a condition is met.\n *\n * @param requiredProps - The name of the props that are required when the condition is met.\n * @param conditionalPropName - The name of the prop that the condition is based on.\n * @param condition - Whether the condition is met.\n */\n BaseComponent.prototype._warnConditionallyRequiredProps = function (requiredProps, conditionalPropName, condition) {\n warnConditionallyRequiredProps(this.className, this.props, requiredProps, conditionalPropName, condition);\n };\n BaseComponent.prototype._setComponentRef = function (ref, value) {\n if (!this._skipComponentRefResolution && ref) {\n if (typeof ref === 'function') {\n ref(value);\n }\n if (typeof ref === 'object') {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n ref.current = value;\n }\n }\n };\n return BaseComponent;\n}(React.Component));\nexport { BaseComponent };\n/**\n * Helper to override a given method with a wrapper method that can try/catch the original, but also\n * ensures that the BaseComponent's methods are called before the subclass's. This ensures that\n * componentWillUnmount in the base is called and that things in the _disposables array are disposed.\n */\n// eslint-disable-next-line deprecation/deprecation\nfunction _makeAllSafe(obj, prototype, methodNames) {\n for (var i = 0, len = methodNames.length; i < len; i++) {\n _makeSafe(obj, prototype, methodNames[i]);\n }\n}\n// eslint-disable-next-line deprecation/deprecation\nfunction _makeSafe(obj, prototype, methodName) {\n /* eslint-disable @typescript-eslint/no-explicit-any */\n var classMethod = obj[methodName];\n var prototypeMethod = prototype[methodName];\n if (classMethod || prototypeMethod) {\n obj[methodName] = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n /* eslint-enable @typescript-eslint/no-explicit-any */\n var retVal;\n if (prototypeMethod) {\n retVal = prototypeMethod.apply(this, args);\n }\n if (classMethod !== prototypeMethod) {\n retVal = classMethod.apply(this, args);\n }\n return retVal;\n };\n }\n}\n/**\n * Simple constant function for returning null, used to render empty templates in JSX.\n *\n * @public\n */\nexport function nullRender() {\n return null;\n}\n//# sourceMappingURL=BaseComponent.js.map" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "index": 292, - "index2": 295, - "size": 245, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-98" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "3:0-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "3:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "3:0-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "3:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "3:33-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "4:0-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:4-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:46-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:48-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "5:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "5:50-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "5:80-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "7:14-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "9:8-11" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "9:11-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "10:62-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "11:12-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "11:25-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "14:16-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "14:17-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "19:42-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "20:12-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "20:31-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "20:36-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "20:38-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "21:12-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:25-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:33-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "23:24-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "23:24-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "23:31-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "24:20-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "24:24-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "24:27-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "25:24-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "25:42-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "25:50-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "26:16-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "26:37-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:17-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:23-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:25-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:29-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "28:42-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "28:50-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "30:17-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "30:31-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "32:16-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "32:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "33:28-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "34:22-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "36:25-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "37:13-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "37:31-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "39:11-18" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "39:42-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "40:23-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "41:22-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "41:31-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "41:48-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "43:8-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "47:12-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "47:22-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "48:16-19" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "48:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "52:18-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "53:42-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "55:17-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "56:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "58:8-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "59:18-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "61:28-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "69:23-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "69:49-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "79:23-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "81:31-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "89:46-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "99:16-22" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "102:12-18" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "103:8-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "108:57-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "109:35-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "109:47-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "112:8-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "114:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "115:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "118:34-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "118:77-84" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "120:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "121:13-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "122:28-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "123:36-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "123:63-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "125:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "125:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "126:28-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "128:53-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "130:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "134:28-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "135:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "137:32-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "146:39-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "148:24-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "149:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "149:51-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "152:26-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "159:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "160:27-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "160:37-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "162:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "165:12-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "165:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "167:49-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "169:36-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "172:58-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "174:12-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "185:19-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "185:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "188:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "190:51-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "213:39-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "218:56-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "221:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "221:31-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "229:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "231:46-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "237:28-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "242:18-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "242:22-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "245:47-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "253:68-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "261:32-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "266:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "266:64-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "268:42-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "274:41-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "287:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "300:49-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "308:28-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "308:57-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "318:54-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "323:12-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "323:48-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "326:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "327:12-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "328:26-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "328:68-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "330:43-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "348:57-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "364:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "365:51-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "394:28-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "406:52-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "410:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "432:34-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "432:52-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "449:35-41" - } - ], - "usedExports": [ - "FetchClient", - "PnPClientStorage", - "RuntimeConfig", - "assign", - "combine", - "dateAdd", - "getCtxCallback", - "getGUID", - "hOP", - "isArray", - "isFunc", - "isUrlAbsolute", - "jsS", - "mergeHeaders", - "mergeOptions", - "objectDefinedNotNull", - "safeGlobal", - "stringIsNullOrEmpty" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 4, - "source": "export * from \"./collections\";\r\nexport * from \"./libconfig\";\r\nexport * from \"./net\";\r\nexport * from \"./spfxcontextinterface\";\r\nexport * from \"./storage\";\r\nexport * from \"./util\";\r\nexport * from \"./safe-global\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": "8//X", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "index": 21, - "index2": 14, - "size": 2460, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "issuerId": "sxkt", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "o9eJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js" - }, - { - "id": "sxkt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "sxkt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldCollectionDataHost.module.css", - "loc": "1:14-161" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "exports = module.exports = require(\"../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".collectionData_106fc03d{background-color:#edebe9;padding:10px}.noCollectionData_106fc03d{text-align:center}.panelActions_106fc03d{margin-top:15px;text-align:right}.panelActions_106fc03d button{margin-right:15px}.panelActions_106fc03d button:last-child{margin-right:0}.required_106fc03d{color:#d83b01;font-size:8px;vertical-align:super}.addBtn_106fc03d{color:#0078d4}.inputField_106fc03d{color:inherit}.numberField_106fc03d{box-sizing:border-box;box-shadow:none;margin:0;padding:0;border:1px solid #a19f9d;background:#fff;height:32px;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:stretch;align-items:stretch;position:relative}.numberField_106fc03d:hover{border-color:#201f1e}.numberField_106fc03d input{box-sizing:border-box;box-shadow:none;margin:0;font-size:14px;border-radius:0;border:none;background:0 0;color:#323130;padding:0 12px;width:100%;text-overflow:ellipsis;outline:0}.numberField_106fc03d.invalidField_106fc03d{border-color:#a80000}.iconField_106fc03d{position:relative}.iconField_106fc03d i{font-size:20px;position:absolute;top:0;right:10px;vertical-align:top}.colorField_106fc03d{position:relative}.colorField_106fc03d .colorIndicator_106fc03d{width:30px;height:30px;border:1px solid #a6a6a6}.collectionDataField_106fc03d>span{display:none}.collectionDataField_106fc03d div[class^=invalid_]{border-color:#a80000!important}.table_106fc03d{display:table;width:100%;border-collapse:collapse}.tableRow_106fc03d{display:table-row;line-height:30px}.tableRow_106fc03d:hover{background-color:#f3f2f1;cursor:pointer;outline:1px solid transparent}.tableRow_106fc03d.tableFooter_106fc03d{background-color:#edebe9;border-top:1px solid #a19f9d}.tableCell_106fc03d{display:table-cell;padding:0 10px;vertical-align:middle}.tableCell_106fc03d>div,.tableCell_106fc03d>div.ms-TextField{margin-bottom:8px;margin-top:8px}.errorCallout_106fc03d{padding:0 15px;min-width:200px}.errorCalloutLink_106fc03d:not([disabled]){color:#a80000}.errorMsgs_106fc03d{font-size:14px;font-weight:400}.errorMsgs_106fc03d p{font-size:17px;font-weight:300}.errorMsgs_106fc03d ul{padding-left:15px}.errorMsgs_106fc03d li{color:#a80000}.tableHead_106fc03d{font-weight:300;font-size:12px;color:#605e5c}.tableHead_106fc03d .tableCell_106fc03d{font-weight:400;text-align:left;border-bottom:1px solid #a19f9d}\", \"\"]);\n" - }, - { - "id": "88Gu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_shortOut.js", - "name": "./node_modules/lodash/_shortOut.js", - "index": 579, - "index2": 571, - "size": 941, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "issuerId": "wclG", - "issuerName": "./node_modules/lodash/_setToString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "wclG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "name": "./node_modules/lodash/_setToString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "wclG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "module": "./node_modules/lodash/_setToString.js", - "moduleName": "./node_modules/lodash/_setToString.js", - "type": "cjs require", - "userRequest": "./_shortOut", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/** Used to detect hot functions by number of calls within a span of milliseconds. */\nvar HOT_COUNT = 800,\n HOT_SPAN = 16;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeNow = Date.now;\n\n/**\n * Creates a function that'll short out and invoke `identity` instead\n * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n * milliseconds.\n *\n * @private\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new shortable function.\n */\nfunction shortOut(func) {\n var count = 0,\n lastCalled = 0;\n\n return function() {\n var stamp = nativeNow(),\n remaining = HOT_SPAN - (stamp - lastCalled);\n\n lastCalled = stamp;\n if (remaining > 0) {\n if (++count >= HOT_COUNT) {\n return arguments[0];\n }\n } else {\n count = 0;\n }\n return func.apply(undefined, arguments);\n };\n}\n\nmodule.exports = shortOut;\n" - }, - { - "id": "8G5b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/array.js", - "name": "./node_modules/@uifabric/utilities/lib/array.js", - "index": 210, - "index2": 194, - "size": 3870, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "27:11-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "639:33-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "825:15-24" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "46:19-23" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:37-41" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "405:35-44" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "515:29-33" - }, - { - "moduleId": "8gx0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "42:13-17" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "136:52-63" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "562:12-23" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./array", - "loc": "12:0-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./array", - "loc": "12:0-24" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1362:24-33" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:15-19" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "192:15-19" - }, - { - "moduleId": "rZia", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/createMergedRef.js", - "module": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "type": "harmony side effect evaluation", - "userRequest": "./array", - "loc": "1:0-38" - }, - { - "moduleId": "rZia", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/createMergedRef.js", - "module": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "type": "harmony import specifier", - "userRequest": "./array", - "loc": "30:32-43" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "29:26-34" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "272:24-33" - } - ], - "usedExports": [ - "addElementAtIndex", - "arraysEqual", - "findIndex" - ], - "providedExports": [ - "findIndex", - "find", - "createArray", - "toMatrix", - "removeIndex", - "replaceElement", - "addElementAtIndex", - "flatten", - "arraysEqual" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Helper to find the index of an item within an array, using a callback to\n * determine the match.\n *\n * @public\n * @param array - Array to search.\n * @param cb - Callback which returns true on matches.\n * @param fromIndex - Optional index to start from (defaults to 0)\n */\nexport function findIndex(array, cb, fromIndex) {\n if (fromIndex === void 0) { fromIndex = 0; }\n var index = -1;\n for (var i = fromIndex; array && i < array.length; i++) {\n if (cb(array[i], i)) {\n index = i;\n break;\n }\n }\n return index;\n}\n/**\n * Helper to find the first item within an array that satisfies the callback.\n * @param array - Array to search\n * @param cb - Callback which returns true on matches\n */\nexport function find(array, cb) {\n var index = findIndex(array, cb);\n if (index < 0) {\n return undefined;\n }\n return array[index];\n}\n/**\n * Creates an array of a given size and helper method to populate.\n *\n * @public\n * @param size - Size of array.\n * @param getItem - Callback to populate given cell index.\n */\nexport function createArray(size, getItem) {\n var array = [];\n for (var i = 0; i < size; i++) {\n array.push(getItem(i));\n }\n return array;\n}\n/**\n * Convert the given array to a matrix with columnCount number\n * of columns.\n *\n * @public\n * @param items - The array to convert\n * @param columnCount - The number of columns for the resulting matrix\n * @returns A matrix of items\n */\nexport function toMatrix(items, columnCount) {\n return items.reduce(function (rows, currentValue, index) {\n if (index % columnCount === 0) {\n rows.push([currentValue]);\n }\n else {\n rows[rows.length - 1].push(currentValue);\n }\n return rows;\n }, []);\n}\n/**\n * Given an array, it returns a new array that does not contain the item at the given index.\n * @param array - The array to operate on\n * @param index - The index of the element to remove\n */\nexport function removeIndex(array, index) {\n return array.filter(function (_, i) { return index !== i; });\n}\n/**\n * Given an array, this function returns a new array where the element at a given index has been replaced.\n * @param array - The array to operate on\n * @param newElement - The element that will be placed in the new array\n * @param index - The index of the element that should be replaced\n */\nexport function replaceElement(array, newElement, index) {\n var copy = array.slice();\n copy[index] = newElement;\n return copy;\n}\n/**\n * Given an array, this function returns a new array where an element has been inserted at the given index.\n * @param array - The array to operate on\n * @param index - The index where an element should be inserted\n * @param itemToAdd - The element to insert\n */\nexport function addElementAtIndex(array, index, itemToAdd) {\n var copy = array.slice();\n copy.splice(index, 0, itemToAdd);\n return copy;\n}\n/**\n * Given an array where each element is of type T or T[], flatten it into an array of T\n * @param array - The array where each element can optionally also be an array\n */\nexport function flatten(array) {\n var result = [];\n array.forEach(function (item) { return (result = result.concat(item)); });\n return result;\n}\n/**\n * Returns a boolean indicating if the two given arrays are equal in length and values.\n *\n * @param array1 - First array to compare\n * @param array2 - Second array to compare\n * @returns True if the arrays are the same length and have the same values in the same positions, false otherwise.\n */\nexport function arraysEqual(array1, array2) {\n if (array1.length !== array2.length) {\n return false;\n }\n for (var i = 0; i < array1.length; i++) {\n if (array1[i] !== array2[i]) {\n return false;\n }\n }\n return true;\n}\n//# sourceMappingURL=array.js.map" - }, - { - "id": "8lCt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@uifabric/utilities/lib/scroll.js", - "index": 147, - "index2": 133, - "size": 5649, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:39-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:39-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:36-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:20-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:20-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "43:20-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "46:20-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "263:30-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "443:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "526:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "537:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "584:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "835:31-51" - }, - { - "moduleId": "O2QR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./scroll", - "loc": "2:0-48" - }, - { - "moduleId": "O2QR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony import specifier", - "userRequest": "./scroll", - "loc": "19:33-53" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./scroll", - "loc": "53:0-25" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./scroll", - "loc": "53:0-25" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "69:33-53" - } - ], - "usedExports": [ - "allowOverscrollOnElement", - "allowScrollOnElement", - "disableBodyScroll", - "enableBodyScroll", - "findScrollableParent", - "getScrollbarWidth" - ], - "providedExports": [ - "DATA_IS_SCROLLABLE_ATTRIBUTE", - "allowScrollOnElement", - "allowOverscrollOnElement", - "disableBodyScroll", - "enableBodyScroll", - "getScrollbarWidth", - "findScrollableParent" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getDocument } from './dom/getDocument';\nimport { mergeStyles } from '@uifabric/merge-styles';\nimport { getWindow } from './dom/getWindow';\nvar _scrollbarWidth;\nvar _bodyScrollDisabledCount = 0;\nvar DisabledScrollClassName = mergeStyles({\n overflow: 'hidden !important',\n});\n/**\n * Placing this attribute on scrollable divs optimizes detection to know\n * if the div is scrollable or not (given we can avoid expensive operations\n * like getComputedStyle.)\n *\n * @public\n */\nexport var DATA_IS_SCROLLABLE_ATTRIBUTE = 'data-is-scrollable';\n/**\n * Allows the user to scroll within a element,\n * while preventing the user from scrolling the body\n */\nexport var allowScrollOnElement = function (element, events) {\n if (!element) {\n return;\n }\n var _previousClientY = 0;\n var _element = null;\n // remember the clientY for future calls of _preventOverscrolling\n var _saveClientY = function (event) {\n if (event.targetTouches.length === 1) {\n _previousClientY = event.targetTouches[0].clientY;\n }\n };\n // prevent the body from scrolling when the user attempts\n // to scroll past the top or bottom of the element\n var _preventOverscrolling = function (event) {\n // only respond to a single-finger touch\n if (event.targetTouches.length !== 1) {\n return;\n }\n // prevent the body touchmove handler from firing\n // so that scrolling is allowed within the element\n event.stopPropagation();\n if (!_element) {\n return;\n }\n var clientY = event.targetTouches[0].clientY - _previousClientY;\n var scrollableParent = findScrollableParent(event.target);\n if (scrollableParent) {\n _element = scrollableParent;\n }\n // if the element is scrolled to the top,\n // prevent the user from scrolling up\n if (_element.scrollTop === 0 && clientY > 0) {\n event.preventDefault();\n }\n // if the element is scrolled to the bottom,\n // prevent the user from scrolling down\n if (_element.scrollHeight - Math.ceil(_element.scrollTop) <= _element.clientHeight && clientY < 0) {\n event.preventDefault();\n }\n };\n events.on(element, 'touchstart', _saveClientY, { passive: false });\n events.on(element, 'touchmove', _preventOverscrolling, { passive: false });\n _element = element;\n};\n/**\n * Same as allowScrollOnElement but does not prevent overscrolling.\n */\nexport var allowOverscrollOnElement = function (element, events) {\n if (!element) {\n return;\n }\n var _allowElementScroll = function (event) {\n event.stopPropagation();\n };\n events.on(element, 'touchmove', _allowElementScroll, { passive: false });\n};\nvar _disableIosBodyScroll = function (event) {\n event.preventDefault();\n};\n/**\n * Disables the body scrolling.\n *\n * @public\n */\nexport function disableBodyScroll() {\n var doc = getDocument();\n if (doc && doc.body && !_bodyScrollDisabledCount) {\n doc.body.classList.add(DisabledScrollClassName);\n doc.body.addEventListener('touchmove', _disableIosBodyScroll, { passive: false, capture: false });\n }\n _bodyScrollDisabledCount++;\n}\n/**\n * Enables the body scrolling.\n *\n * @public\n */\nexport function enableBodyScroll() {\n if (_bodyScrollDisabledCount > 0) {\n var doc = getDocument();\n if (doc && doc.body && _bodyScrollDisabledCount === 1) {\n doc.body.classList.remove(DisabledScrollClassName);\n doc.body.removeEventListener('touchmove', _disableIosBodyScroll);\n }\n _bodyScrollDisabledCount--;\n }\n}\n/**\n * Calculates the width of a scrollbar for the browser/os.\n *\n * @public\n */\nexport function getScrollbarWidth() {\n if (_scrollbarWidth === undefined) {\n var scrollDiv = document.createElement('div');\n scrollDiv.style.setProperty('width', '100px');\n scrollDiv.style.setProperty('height', '100px');\n scrollDiv.style.setProperty('overflow', 'scroll');\n scrollDiv.style.setProperty('position', 'absolute');\n scrollDiv.style.setProperty('top', '-9999px');\n document.body.appendChild(scrollDiv);\n // Get the scrollbar width\n _scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;\n // Delete the DIV\n document.body.removeChild(scrollDiv);\n }\n return _scrollbarWidth;\n}\n/**\n * Traverses up the DOM for the element with the data-is-scrollable=true attribute, or returns\n * document.body.\n *\n * @public\n */\nexport function findScrollableParent(startingElement) {\n var el = startingElement;\n var doc = getDocument(startingElement);\n // First do a quick scan for the scrollable attribute.\n while (el && el !== doc.body) {\n if (el.getAttribute(DATA_IS_SCROLLABLE_ATTRIBUTE) === 'true') {\n return el;\n }\n el = el.parentElement;\n }\n // If we haven't found it, the use the slower method: compute styles to evaluate if overflow is set.\n el = startingElement;\n while (el && el !== doc.body) {\n if (el.getAttribute(DATA_IS_SCROLLABLE_ATTRIBUTE) !== 'false') {\n var computedStyles = getComputedStyle(el);\n var overflowY = computedStyles ? computedStyles.getPropertyValue('overflow-y') : '';\n if (overflowY && (overflowY === 'scroll' || overflowY === 'auto')) {\n return el;\n }\n }\n el = el.parentElement;\n }\n // Fall back to window scroll.\n if (!el || el === doc.body) {\n el = getWindow(startingElement);\n }\n return el;\n}\n//# sourceMappingURL=scroll.js.map" - }, - { - "id": "8sxt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "index": 26, - "index2": 262, - "size": 39065, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionDataItem", - "loc": "1:0-37" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionDataItem", - "loc": "1:0-37" - } - ], - "usedExports": [ - "CollectionDataItem" - ], - "providedExports": [ - "CollectionDataItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Link/Link.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-core-library\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-lodash-subset\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"PropertyControlStrings\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 7, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "index": 26, - "index2": 262, - "size": 29175, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerId": "kQRI", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionDataItem", - "loc": "1:0-37" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionDataItem", - "loc": "1:0-37" - } - ], - "usedExports": [ - "CollectionDataItem" - ], - "providedExports": [ - "CollectionDataItem" - ], - "optimizationBailout": [], - "depth": 7, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { TextField } from 'office-ui-fabric-react/lib/components/TextField';\nimport { Icon } from 'office-ui-fabric-react/lib/components/Icon';\nimport { Link } from 'office-ui-fabric-react/lib/components/Link';\nimport * as strings from 'PropertyControlStrings';\nimport { CustomCollectionFieldType } from '..';\nimport { Dropdown } from 'office-ui-fabric-react/lib/components/Dropdown';\nimport { Callout, DirectionalHint } from 'office-ui-fabric-react/lib/components/Callout';\nimport { CollectionIconField } from '../collectionIconField';\nimport { clone, findIndex, sortBy } from '@microsoft/sp-lodash-subset';\nimport { CollectionNumberField } from '../collectionNumberField';\nimport { CollectionColorField } from '../collectionColorField';\nimport { Guid } from '@microsoft/sp-core-library';\nimport { CollectionDropdownField } from '../collectionDropdownField/CollectionDropdownField';\nimport { CollectionCheckboxField } from '../collectionCheckboxField/CollectionCheckboxField';\nvar CollectionDataItem = /** @class */ (function (_super) {\n __extends(CollectionDataItem, _super);\n function CollectionDataItem(props) {\n var _this = _super.call(this, props) || this;\n _this.emptyItem = null;\n _this.validation = {};\n /**\n * Update the item value on the field change\n */\n _this.onValueChanged = function (fieldId, value) {\n return new Promise(function (resolve) { return _this.setState(function (prevState) {\n var crntItem = prevState.crntItem;\n // Update the changed field\n crntItem[fieldId] = value;\n // Store this in the current state\n return { crntItem: crntItem };\n }, function () { return resolve(); }); });\n };\n /**\n * Add the current row to the collection\n */\n _this.addRow = function () { return __awaiter(_this, void 0, void 0, function () {\n var crntItem, emptyItem;\n return __generator(this, function (_a) {\n if (this.props.fAddItem) {\n crntItem = this.state.crntItem;\n // Check if all the fields are correctly provided\n if (this.checkRowIsValidForSave(crntItem)) {\n this.props.fAddItem(crntItem);\n emptyItem = this.generateEmptyItem();\n this.setState({\n crntItem: __assign({}, emptyItem)\n });\n }\n }\n return [2 /*return*/];\n });\n }); };\n /**\n * Add the current row to the collection\n */\n _this.updateItem = function () { return __awaiter(_this, void 0, void 0, function () {\n var crntItem, isValid;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n crntItem = this.state.crntItem;\n return [4 /*yield*/, this.checkRowIsValidForSave(crntItem)];\n case 1:\n isValid = _a.sent();\n if (this.props.fUpdateItem) {\n // Check if all the fields are correctly provided\n if (isValid) {\n this.props.fUpdateItem(this.props.index, crntItem);\n }\n }\n // Set the validation for the item\n if (this.props.fValidation) {\n this.props.fValidation(this.props.index, isValid);\n }\n return [2 /*return*/];\n }\n });\n }); };\n /**\n * Delete the item from the collection\n */\n _this.deleteRow = function () {\n if (_this.props.fDeleteItem) {\n _this.props.fDeleteItem(_this.props.index);\n }\n };\n /**\n * Allow custom field validation\n *\n * @param field\n * @param value\n */\n _this.fieldValidation = function (field, value) { return __awaiter(_this, void 0, void 0, function () {\n var validation;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n validation = \"\";\n if (!field.onGetErrorMessage) return [3 /*break*/, 2];\n // Set initial field validation\n this.validation[field.id] = false;\n return [4 /*yield*/, field.onGetErrorMessage(value, this.props.index, this.state.crntItem)];\n case 1:\n // Do the validation\n validation = _a.sent();\n _a.label = 2;\n case 2: return [2 /*return*/, this.storeFieldValidation(field.id, validation, true)];\n }\n });\n }); };\n /**\n * Custom field validation\n */\n _this.onCustomFieldValidation = function (fieldId, errorMsg) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n console.log(fieldId, errorMsg);\n if (!fieldId) return [3 /*break*/, 2];\n return [4 /*yield*/, this.storeFieldValidation(fieldId, errorMsg, true)];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2: return [2 /*return*/];\n }\n });\n }); };\n /**\n * URL field validation\n *\n * @param field\n * @param value\n * @param item\n */\n _this.urlFieldValidation = function (field, value, item) { return __awaiter(_this, void 0, void 0, function () {\n var isValid, validation, regEx;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n isValid = true;\n validation = \"\";\n if (!field.onGetErrorMessage) return [3 /*break*/, 2];\n return [4 /*yield*/, field.onGetErrorMessage(value, this.props.index, item)];\n case 1:\n // Using the custom validation\n validation = _a.sent();\n isValid = validation === \"\";\n return [3 /*break*/, 3];\n case 2:\n regEx = /(http|https)?:\\/\\/(www\\.)?[-a-zA-Z0-9@:%._\\+~#=]{2,256}\\.[a-z]{2,6}\\b([-a-zA-Z0-9@:%_\\+.~#?&\\/\\/=]*)/;\n isValid = (value === null || value.length === 0 || regEx.test(value));\n validation = isValid ? \"\" : strings.InvalidUrlError;\n _a.label = 3;\n case 3: return [2 /*return*/, this.storeFieldValidation(field.id, validation, true)];\n }\n });\n }); };\n /**\n * Toggle the error callout\n */\n _this.toggleErrorCallout = function () {\n _this.setState(function (prevState) { return ({\n showCallout: !prevState.showCallout\n }); });\n };\n _this.hideErrorCallout = function () {\n _this.setState({\n showCallout: false\n });\n };\n // Create an empty item with all properties\n var emptyItem = _this.generateEmptyItem();\n _this.state = {\n crntItem: clone(_this.props.item) || __assign({}, emptyItem),\n errorMsgs: [],\n showCallout: false,\n disableAdd: false\n };\n return _this;\n }\n /**\n * componentDidUpdate lifecycle hook\n * @param prevProps\n * @param prevState\n */\n CollectionDataItem.prototype.componentDidUpdate = function (prevProps) {\n if (this.props.item !== prevProps.item) {\n this.setState({\n crntItem: clone(this.props.item)\n });\n }\n };\n /**\n * Perform all required field checks at once\n */\n CollectionDataItem.prototype.doAllFieldChecks = function () {\n return __awaiter(this, void 0, void 0, function () {\n var crntItem, disableAdd;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n crntItem = this.state.crntItem;\n disableAdd = null;\n if (!this.props.fAddInCreation) return [3 /*break*/, 2];\n return [4 /*yield*/, this.checkRowIsValidForSave(crntItem)];\n case 1:\n if (_a.sent()) {\n disableAdd = true;\n this.props.fAddInCreation(crntItem, true);\n }\n else {\n disableAdd = false;\n this.props.fAddInCreation(crntItem, false);\n }\n _a.label = 2;\n case 2:\n this.setState({ disableAdd: disableAdd });\n if (!this.props.fUpdateItem) return [3 /*break*/, 4];\n return [4 /*yield*/, this.updateItem()];\n case 3:\n _a.sent();\n _a.label = 4;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Check if all values of the required fields are provided\n */\n CollectionDataItem.prototype.checkAllRequiredFieldsValid = function (item) {\n // Get all the required fields\n var requiredFields = this.props.fields.filter(function (f) { return f.required; });\n // Check all the required field values\n for (var _i = 0, requiredFields_1 = requiredFields; _i < requiredFields_1.length; _i++) {\n var field = requiredFields_1[_i];\n if (typeof item[field.id] === \"undefined\" || item[field.id] === null || item[field.id] === \"\") {\n return false;\n }\n }\n return true;\n };\n /**\n * Check if any of the fields contain a value\n * @param item\n */\n CollectionDataItem.prototype.checkAnyFieldContainsValue = function (item) {\n var fields = this.props.fields;\n for (var _i = 0, fields_1 = fields; _i < fields_1.length; _i++) {\n var field = fields_1[_i];\n if (typeof item[field.id] !== \"undefined\" && item[field.id] !== null && item[field.id] !== \"\") {\n return true;\n }\n }\n return false;\n };\n /**\n * Check onGetCustomErrorMessage\n * @param item\n */\n CollectionDataItem.prototype.checkAnyFieldCustomErrorMessage = function (item) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, fields, index, validations;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = this.props, fields = _a.fields, index = _a.index;\n return [4 /*yield*/, Promise.all(fields.filter(function (f) { return f.onGetErrorMessage; }).map(function (f) { return __awaiter(_this, void 0, void 0, function () {\n var validation;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, f.onGetErrorMessage(item[f.id], index, item)];\n case 1:\n validation = _a.sent();\n return [2 /*return*/, this.storeFieldValidation(f.id, validation)];\n }\n });\n }); }))];\n case 1:\n validations = _b.sent();\n return [2 /*return*/, validations.filter(function (v) { return v && v.length > 0; }).length == 0];\n }\n });\n });\n };\n /**\n * Check if row is ready for save\n */\n CollectionDataItem.prototype.checkRowIsValidForSave = function (item) {\n return __awaiter(this, void 0, void 0, function () {\n var _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = this.checkAllRequiredFieldsValid(item) &&\n this.checkAnyFieldContainsValue(item);\n if (!_a) return [3 /*break*/, 2];\n return [4 /*yield*/, this.checkAnyFieldCustomErrorMessage(item)];\n case 1:\n _a = (_b.sent());\n _b.label = 2;\n case 2: return [2 /*return*/, _a &&\n this.checkAllFieldsAreValid()];\n }\n });\n });\n };\n /**\n * Checks if all fields are valid\n */\n CollectionDataItem.prototype.checkAllFieldsAreValid = function () {\n if (this.validation) {\n var keys = Object.keys(this.validation);\n for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {\n var key = keys_1[_i];\n if (!this.validation[key]) {\n return false;\n }\n }\n }\n return true;\n };\n /**\n * Updates callout and validation state\n */\n CollectionDataItem.prototype.storeFieldValidation = function (fieldId, validation, doAllFieldChecks) {\n if (doAllFieldChecks === void 0) { doAllFieldChecks = false; }\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n // Store the field validation\n this.validation[fieldId] = validation === \"\";\n // Add message for the error callout\n this.errorCalloutHandler(fieldId, validation);\n if (!doAllFieldChecks) return [3 /*break*/, 2];\n return [4 /*yield*/, this.doAllFieldChecks()];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2: return [2 /*return*/, validation];\n }\n });\n });\n };\n /**\n * Error callout message handler\n *\n * @param field\n * @param message\n */\n CollectionDataItem.prototype.errorCalloutHandler = function (fieldId, message) {\n var _this = this;\n this.setState(function (prevState) {\n var crntItem = prevState.crntItem, errorMsgs = prevState.errorMsgs;\n // Get the current field\n var fieldIdx = findIndex(_this.props.fields, function (f) { return f.id === fieldId; });\n if (fieldIdx === -1) {\n return;\n }\n var field = _this.props.fields[fieldIdx];\n // Check if there already is a message for the field\n var fieldMsgIdx = findIndex(errorMsgs, function (msg) { return msg.field === field.title; });\n // Add message\n var fieldMsg;\n if (fieldMsgIdx === -1) {\n fieldMsg = {\n field: field.title,\n message: message\n };\n }\n else {\n // Update message\n fieldMsg = errorMsgs[fieldMsgIdx];\n if (fieldMsg) {\n fieldMsg.message = message;\n }\n }\n // Check if field required message needs to be shown\n if (field.required) {\n if (typeof crntItem[field.id] === \"undefined\" || crntItem[field.id] === null || crntItem[field.id] === \"\") {\n fieldMsg.isRequired = true;\n }\n else {\n fieldMsg.isRequired = false;\n }\n }\n // If required and message are false, it doesn't need to be added\n if (!fieldMsg.message && !fieldMsg.isRequired) {\n // Remove the item\n if (fieldMsgIdx !== -1) {\n errorMsgs.splice(fieldMsgIdx, 1);\n }\n }\n else {\n if (fieldMsgIdx === -1) {\n errorMsgs.push(fieldMsg);\n }\n }\n // Sort based on the index\n errorMsgs = sortBy(errorMsgs, [\"field\"]);\n return {\n errorMsgs: errorMsgs\n };\n });\n };\n /**\n * Render the field\n *\n * @param field\n * @param item\n */\n CollectionDataItem.prototype.renderField = function (field, item) {\n var _this = this;\n var disableFieldOnEdit = field.disableEdit && !!this.props.fUpdateItem;\n switch (field.type) {\n case CustomCollectionFieldType.boolean:\n return React.createElement(CollectionCheckboxField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.dropdown:\n return React.createElement(CollectionDropdownField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.number:\n return React.createElement(CollectionNumberField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.fabricIcon:\n return React.createElement(CollectionIconField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.color:\n return React.createElement(CollectionColorField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.url:\n return React.createElement(TextField, { placeholder: field.placeholder || field.title, value: item[field.id] ? item[field.id] : \"\", required: field.required, disabled: disableFieldOnEdit, className: styles.collectionDataField, onChange: function (e, value) { return _this.onValueChanged(field.id, value); }, deferredValidationTime: field.deferredValidationTime || field.deferredValidationTime >= 0 ? field.deferredValidationTime : 200, onGetErrorMessage: function (value) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n return [2 /*return*/, this.urlFieldValidation(field, value, item)];\n }); }); }, inputClassName: \"PropertyFieldCollectionData__panel__url-field\" });\n case CustomCollectionFieldType.custom:\n if (field.onCustomRender) {\n return field.onCustomRender(field, item[field.id], function (fieldId, value) {\n _this.onValueChanged(fieldId, value);\n if (field.onGetErrorMessage) {\n _this.fieldValidation(field, value);\n }\n }, item, item.uniqueId, this.onCustomFieldValidation);\n }\n return null;\n case CustomCollectionFieldType.string:\n default:\n return React.createElement(TextField, { placeholder: field.placeholder || field.title, className: styles.collectionDataField, value: item[field.id] ? item[field.id] : \"\", required: field.required, disabled: disableFieldOnEdit, onChange: function (e, value) { return _this.onValueChanged(field.id, value); }, deferredValidationTime: field.deferredValidationTime || field.deferredValidationTime >= 0 ? field.deferredValidationTime : 200, onGetErrorMessage: function (value) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.fieldValidation(field, value)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }, inputClassName: \"PropertyFieldCollectionData__panel__string-field\" });\n }\n };\n /**\n * Retrieve all dropdown options\n */\n CollectionDataItem.prototype.getSortingOptions = function () {\n var opts = [];\n var totalItems = this.props.totalItems;\n for (var i = 1; i <= totalItems; i++) {\n opts.push({\n text: i.toString(),\n key: i\n });\n }\n return opts;\n };\n /**\n * Creates an empty item with a unique id\n */\n CollectionDataItem.prototype.generateEmptyItem = function () {\n // Create an empty item with all properties\n var emptyItem = {};\n emptyItem.uniqueId = Guid.newGuid().toString();\n for (var _i = 0, _a = this.props.fields; _i < _a.length; _i++) {\n var field = _a[_i];\n // Assign default value or null to the emptyItem\n emptyItem[field.id] = field.defaultValue || null;\n }\n return emptyItem;\n };\n /**\n * Default React render\n */\n CollectionDataItem.prototype.render = function () {\n var _this = this;\n var _a = this.state, crntItem = _a.crntItem, disableAdd = _a.disableAdd;\n var opts = this.getSortingOptions();\n return (React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__table-row \" + styles.tableRow + \" \" + (this.props.index === null ? styles.tableFooter : \"\") },\n (this.props.sortingEnabled && this.props.totalItems) && (React.createElement(\"span\", { className: \"PropertyFieldCollectionData__panel__sorting-field \" + styles.tableCell },\n React.createElement(Dropdown, { options: opts, selectedKey: this.props.index + 1, onChanged: function (opt) { return _this.props.fOnSorting(_this.props.index, opt.key); } }))),\n (this.props.sortingEnabled && this.props.totalItems === null) && (React.createElement(\"span\", { className: \"\" + styles.tableCell })),\n this.props.fields.map(function (f) { return (React.createElement(\"span\", { key: \"dataitem-\" + f.id, className: styles.tableCell + \" \" + styles.inputField }, _this.renderField(f, crntItem))); }),\n React.createElement(\"span\", { className: styles.tableCell },\n React.createElement(\"span\", { ref: function (ref) { return _this.calloutCellRef = ref; } },\n React.createElement(Link, { title: strings.CollectionDataItemShowErrorsLabel, className: styles.errorCalloutLink, disabled: !this.state.errorMsgs || this.state.errorMsgs.length === 0, onClick: this.toggleErrorCallout },\n React.createElement(Icon, { iconName: \"Error\" }))),\n this.state.showCallout && (React.createElement(Callout, { className: styles.errorCallout, target: this.calloutCellRef, isBeakVisible: true, directionalHint: DirectionalHint.bottomLeftEdge, directionalHintForRTL: DirectionalHint.rightBottomEdge, onDismiss: this.hideErrorCallout }, (this.state.errorMsgs && this.state.errorMsgs.length > 0) && (React.createElement(\"div\", { className: styles.errorMsgs },\n React.createElement(\"p\", null, \"Field issues:\"),\n React.createElement(\"ul\", null, this.state.errorMsgs.map(function (msg, idx) { return (React.createElement(\"li\", { key: msg.field + \"-\" + idx },\n React.createElement(\"b\", null, msg.field),\n \": \",\n msg.message ? msg.message : msg.isRequired ? strings.CollectionDataItemFieldRequiredLabel : null)); }))))))),\n React.createElement(\"span\", { className: styles.tableCell }, \n /* Check add or delete action */\n this.props.index !== null ? (React.createElement(Link, { title: strings.CollectionDeleteRowButtonLabel, disabled: !this.props.fDeleteItem || this.props.disableItemDeletion, onClick: this.deleteRow },\n React.createElement(Icon, { iconName: \"Clear\" }))) : (React.createElement(Link, { title: strings.CollectionAddRowButtonLabel, className: \"\" + (disableAdd ? \"\" : styles.addBtn), disabled: disableAdd, onClick: function () { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.addRow()];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); } },\n React.createElement(Icon, { iconName: \"Add\" }))))));\n };\n return CollectionDataItem;\n}(React.Component));\nexport { CollectionDataItem };\n//# sourceMappingURL=CollectionDataItem.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "index": 194, - "index2": 257, - "size": 5088, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../collectionDropdownField/CollectionDropdownField", - "loc": "75:0-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "userRequest": "../collectionDropdownField/CollectionDropdownField", - "loc": "483:43-66" - } - ], - "usedExports": [ - "CollectionDropdownField" - ], - "providedExports": [ - "CollectionDropdownField" - ], - "optimizationBailout": [], - "depth": 8, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport { Dropdown } from 'office-ui-fabric-react/lib/Dropdown';\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nexport var CollectionDropdownField = function (_a) {\n var field = _a.field, item = _a.item, disableEdit = _a.disableEdit, fOnValueChange = _a.fOnValueChange, fValidation = _a.fValidation;\n var _b = React.useState(), options = _b[0], setOptions = _b[1];\n var _c = React.useState(), errorMessage = _c[0], setErrorMessage = _c[1];\n var onValueChange = React.useCallback(function (value) { return __awaiter(void 0, void 0, void 0, function () {\n var error;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!field) {\n return [2 /*return*/];\n }\n if (!fOnValueChange) return [3 /*break*/, 2];\n return [4 /*yield*/, fOnValueChange(field.id, value)];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n if (!fValidation) return [3 /*break*/, 4];\n return [4 /*yield*/, fValidation(field, value)];\n case 3:\n error = _a.sent();\n setErrorMessage(error);\n _a.label = 4;\n case 4: return [2 /*return*/];\n }\n });\n }); }, [field, fOnValueChange, fValidation]);\n React.useEffect(function () {\n if (!field || !field.options) {\n return;\n }\n var newOptions = [];\n if (typeof (field.options) === 'function') {\n if (!item) {\n return;\n }\n newOptions = field.options(field.id, item);\n }\n else {\n newOptions = field.options.slice();\n }\n setOptions(newOptions);\n }, [field, item, field.options]);\n React.useEffect(function () {\n if (item && field) {\n onValueChange(item[field.id]);\n }\n }, []);\n if (!field || !item) {\n return React.createElement(React.Fragment, null);\n }\n return React.createElement(Dropdown, { placeHolder: field.placeholder || field.title, options: options, selectedKey: item[field.id], required: field.required, disabled: disableEdit, onChange: function (e, i) { onValueChange(i.key); }, onRenderOption: field.onRenderOption, className: \"PropertyFieldCollectionData__panel__dropdown-field \" + (errorMessage ? styles.invalidField : '') });\n};\n//# sourceMappingURL=CollectionDropdownField.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "index": 266, - "index2": 258, - "size": 4722, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../collectionCheckboxField/CollectionCheckboxField", - "loc": "76:0-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "userRequest": "../collectionCheckboxField/CollectionCheckboxField", - "loc": "481:43-66" - } - ], - "usedExports": [ - "CollectionCheckboxField" - ], - "providedExports": [ - "CollectionCheckboxField" - ], - "optimizationBailout": [], - "depth": 8, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { Checkbox } from 'office-ui-fabric-react/lib/components/Checkbox';\nexport var CollectionCheckboxField = function (_a) {\n var field = _a.field, item = _a.item, disableEdit = _a.disableEdit, fOnValueChange = _a.fOnValueChange, fValidation = _a.fValidation;\n var _b = React.useState(), errorMessage = _b[0], setErrorMessage = _b[1];\n var onValueChange = React.useCallback(function (value) { return __awaiter(void 0, void 0, void 0, function () {\n var error;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!field) {\n return [2 /*return*/];\n }\n if (!fOnValueChange) return [3 /*break*/, 2];\n return [4 /*yield*/, fOnValueChange(field.id, value)];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n if (!fValidation) return [3 /*break*/, 4];\n return [4 /*yield*/, fValidation(field, value)];\n case 3:\n error = _a.sent();\n setErrorMessage(error);\n _a.label = 4;\n case 4: return [2 /*return*/];\n }\n });\n }); }, [field, fOnValueChange, fValidation]);\n React.useEffect(function () {\n if (item && field) {\n onValueChange(item[field.id]);\n }\n }, []);\n if (!field || !item) {\n return React.createElement(React.Fragment, null);\n }\n return React.createElement(Checkbox, { checked: item[field.id] ? item[field.id] : false, onChange: function (e, v) { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, onValueChange(v)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }, disabled: disableEdit, className: \"PropertyFieldCollectionData__panel__boolean-field \" + (errorMessage ? styles.invalidField : '') });\n};\n//# sourceMappingURL=CollectionCheckboxField.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "95qC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/util.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/util.js", - "index": 294, - "index2": 287, - "size": 7096, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "69gx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "type": "harmony side effect evaluation", - "userRequest": "./util", - "loc": "1:0-32" - }, - { - "moduleId": "69gx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "5:20-26" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./util", - "loc": "6:0-23" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./util", - "loc": "6:0-23" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "./util", - "loc": "2:0-76" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "38:13-33" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "157:21-28" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "159:15-18" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "171:23-37" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony side effect evaluation", - "userRequest": "./util", - "loc": "2:0-54" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "5:8-28" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "13:8-28" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "14:22-28" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "15:17-23" - } - ], - "usedExports": [ - "assign", - "combine", - "dateAdd", - "getCtxCallback", - "getGUID", - "hOP", - "isArray", - "isFunc", - "isUrlAbsolute", - "jsS", - "objectDefinedNotNull", - "stringIsNullOrEmpty" - ], - "providedExports": [ - "getCtxCallback", - "dateAdd", - "combine", - "getRandomString", - "getGUID", - "isFunc", - "objectDefinedNotNull", - "isArray", - "assign", - "isUrlAbsolute", - "stringIsNullOrEmpty", - "sanitizeGuid", - "jsS", - "hOP", - "getHashCode" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\r\n * Gets a callback function which will maintain context across async calls.\r\n * Allows for the calling pattern getCtxCallback(thisobj, method, methodarg1, methodarg2, ...)\r\n *\r\n * @param context The object that will be the 'this' value in the callback\r\n * @param method The method to which we will apply the context and parameters\r\n * @param params Optional, additional arguments to supply to the wrapped method when it is invoked\r\n */\r\nexport function getCtxCallback(context, method) {\r\n var params = [];\r\n for (var _i = 2; _i < arguments.length; _i++) {\r\n params[_i - 2] = arguments[_i];\r\n }\r\n return function () {\r\n method.apply(context, params);\r\n };\r\n}\r\n/**\r\n * Adds a value to a date\r\n *\r\n * @param date The date to which we will add units, done in local time\r\n * @param interval The name of the interval to add, one of: ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second']\r\n * @param units The amount to add to date of the given interval\r\n *\r\n * http://stackoverflow.com/questions/1197928/how-to-add-30-minutes-to-a-javascript-date-object\r\n */\r\nexport function dateAdd(date, interval, units) {\r\n var ret = new Date(date.toString()); // don't change original date\r\n switch (interval.toLowerCase()) {\r\n case \"year\":\r\n ret.setFullYear(ret.getFullYear() + units);\r\n break;\r\n case \"quarter\":\r\n ret.setMonth(ret.getMonth() + 3 * units);\r\n break;\r\n case \"month\":\r\n ret.setMonth(ret.getMonth() + units);\r\n break;\r\n case \"week\":\r\n ret.setDate(ret.getDate() + 7 * units);\r\n break;\r\n case \"day\":\r\n ret.setDate(ret.getDate() + units);\r\n break;\r\n case \"hour\":\r\n ret.setTime(ret.getTime() + units * 3600000);\r\n break;\r\n case \"minute\":\r\n ret.setTime(ret.getTime() + units * 60000);\r\n break;\r\n case \"second\":\r\n ret.setTime(ret.getTime() + units * 1000);\r\n break;\r\n default:\r\n ret = undefined;\r\n break;\r\n }\r\n return ret;\r\n}\r\n/**\r\n * Combines an arbitrary set of paths ensuring and normalizes the slashes\r\n *\r\n * @param paths 0 to n path parts to combine\r\n */\r\nexport function combine() {\r\n var paths = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n paths[_i] = arguments[_i];\r\n }\r\n return paths\r\n .filter(function (path) { return !stringIsNullOrEmpty(path); })\r\n .map(function (path) { return path.replace(/^[\\\\|\\/]/, \"\").replace(/[\\\\|\\/]$/, \"\"); })\r\n .join(\"/\")\r\n .replace(/\\\\/g, \"/\");\r\n}\r\n/**\r\n * Gets a random string of chars length\r\n *\r\n * https://stackoverflow.com/questions/1349404/generate-random-string-characters-in-javascript\r\n *\r\n * @param chars The length of the random string to generate\r\n */\r\nexport function getRandomString(chars) {\r\n var text = new Array(chars);\r\n for (var i = 0; i < chars; i++) {\r\n text[i] = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\".charAt(Math.floor(Math.random() * 62));\r\n }\r\n return text.join(\"\");\r\n}\r\n/**\r\n * Gets a random GUID value\r\n *\r\n * http://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript\r\n */\r\n/* tslint:disable no-bitwise */\r\nexport function getGUID() {\r\n var d = Date.now();\r\n return \"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g, function (c) {\r\n var r = (d + Math.random() * 16) % 16 | 0;\r\n d = Math.floor(d / 16);\r\n return (c === \"x\" ? r : (r & 0x3 | 0x8)).toString(16);\r\n });\r\n}\r\n/* tslint:enable */\r\n/**\r\n * Determines if a given value is a function\r\n *\r\n * @param cf The thing to test for functionness\r\n */\r\nexport function isFunc(f) {\r\n return typeof f === \"function\";\r\n}\r\n/**\r\n * Determines if an object is both defined and not null\r\n * @param obj Object to test\r\n */\r\nexport function objectDefinedNotNull(obj) {\r\n return typeof obj !== \"undefined\" && obj !== null;\r\n}\r\n/**\r\n * @returns whether the provided parameter is a JavaScript Array or not.\r\n*/\r\nexport function isArray(array) {\r\n return Array.isArray ? Array.isArray(array) : array && typeof array.length === \"number\" && array.constructor === Array;\r\n}\r\n/**\r\n * Provides functionality to extend the given object by doing a shallow copy\r\n *\r\n * @param target The object to which properties will be copied\r\n * @param source The source object from which properties will be copied\r\n * @param noOverwrite If true existing properties on the target are not overwritten from the source\r\n * @param filter If provided allows additional filtering on what properties are copied (propName: string) => boolean\r\n *\r\n */\r\nexport function assign(target, source, noOverwrite, filter) {\r\n if (noOverwrite === void 0) { noOverwrite = false; }\r\n if (filter === void 0) { filter = function () { return true; }; }\r\n if (!objectDefinedNotNull(source)) {\r\n return target;\r\n }\r\n // ensure we don't overwrite things we don't want overwritten\r\n var check = noOverwrite ? function (o, i) { return !(i in o); } : function () { return true; };\r\n // final filter we will use\r\n var f = function (v) { return check(target, v) && filter(v); };\r\n return Object.getOwnPropertyNames(source)\r\n .filter(f)\r\n .reduce(function (t, v) {\r\n t[v] = source[v];\r\n return t;\r\n }, target);\r\n}\r\n/**\r\n * Determines if a given url is absolute\r\n *\r\n * @param url The url to check to see if it is absolute\r\n */\r\nexport function isUrlAbsolute(url) {\r\n return /^https?:\\/\\/|^\\/\\//i.test(url);\r\n}\r\n/**\r\n * Determines if a string is null or empty or undefined\r\n *\r\n * @param s The string to test\r\n */\r\nexport function stringIsNullOrEmpty(s) {\r\n return s === undefined || s === null || s.length < 1;\r\n}\r\n/**\r\n * Ensures guid values are represented consistently as \"ea123463-137d-4ae3-89b8-cf3fc578ca05\"\r\n *\r\n * @param guid The candidate guid\r\n */\r\nexport function sanitizeGuid(guid) {\r\n if (stringIsNullOrEmpty(guid)) {\r\n return guid;\r\n }\r\n var matches = /([0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12})/i.exec(guid);\r\n return matches === null ? guid : matches[1];\r\n}\r\n/**\r\n * Shorthand for JSON.stringify\r\n *\r\n * @param o Any type of object\r\n */\r\nexport function jsS(o) {\r\n return JSON.stringify(o);\r\n}\r\n/**\r\n * Shorthand for Object.hasOwnProperty\r\n *\r\n * @param o Object to check for\r\n * @param p Name of the property\r\n */\r\nexport function hOP(o, p) {\r\n return Object.hasOwnProperty.call(o, p);\r\n}\r\n/**\r\n * Generates a ~unique hash code\r\n *\r\n * From: https://stackoverflow.com/questions/6122571/simple-non-secure-hash-function-for-javascript\r\n */\r\n// tslint:disable:no-bitwise\r\nexport function getHashCode(s) {\r\n var hash = 0;\r\n if (s.length === 0) {\r\n return hash;\r\n }\r\n for (var i = 0; i < s.length; i++) {\r\n var chr = s.charCodeAt(i);\r\n hash = ((hash << 5) - hash) + chr;\r\n hash |= 0; // Convert to 32bit integer\r\n }\r\n return hash;\r\n}\r\n// tslint:enable:no-bitwise\r\n//# sourceMappingURL=util.js.map" - }, - { - "id": "9Nap", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toKey.js", - "name": "./node_modules/lodash/_toKey.js", - "index": 565, - "index2": 556, - "size": 523, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "issuerId": "S7Xf", - "issuerName": "./node_modules/lodash/_baseUnset.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S7Xf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "module": "./node_modules/lodash/_baseUnset.js", - "moduleName": "./node_modules/lodash/_baseUnset.js", - "type": "cjs require", - "userRequest": "./_toKey", - "loc": "4:12-31" - }, - { - "moduleId": "ZWtO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGet.js", - "module": "./node_modules/lodash/_baseGet.js", - "moduleName": "./node_modules/lodash/_baseGet.js", - "type": "cjs require", - "userRequest": "./_toKey", - "loc": "2:12-31" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var isSymbol = require('./isSymbol');\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/**\n * Converts `value` to a string key if it's not a string or symbol.\n *\n * @private\n * @param {*} value The value to inspect.\n * @returns {string|symbol} Returns the key.\n */\nfunction toKey(value) {\n if (typeof value == 'string' || isSymbol(value)) {\n return value;\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\nmodule.exports = toKey;\n" - }, - { - "id": "9ggG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isKey.js", - "name": "./node_modules/lodash/_isKey.js", - "index": 555, - "index2": 548, - "size": 880, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "issuerId": "4uTw", - "issuerName": "./node_modules/lodash/_castPath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4uTw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "module": "./node_modules/lodash/_castPath.js", - "moduleName": "./node_modules/lodash/_castPath.js", - "type": "cjs require", - "userRequest": "./_isKey", - "loc": "2:12-31" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var isArray = require('./isArray'),\n isSymbol = require('./isSymbol');\n\n/** Used to match property names within property paths. */\nvar reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,\n reIsPlainProp = /^\\w*$/;\n\n/**\n * Checks if `value` is a property name and not a property path.\n *\n * @private\n * @param {*} value The value to check.\n * @param {Object} [object] The object to query keys on.\n * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n */\nfunction isKey(value, object) {\n if (isArray(value)) {\n return false;\n }\n var type = typeof value;\n if (type == 'number' || type == 'symbol' || type == 'boolean' ||\n value == null || isSymbol(value)) {\n return true;\n }\n return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||\n (object != null && value in Object(object));\n}\n\nmodule.exports = isKey;\n" - }, - { - "id": "9h5o", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "name": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "index": 43, - "index2": 45, - "size": 6177, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "11:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "11:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "12:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:20-38" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:20-38" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:20-38" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:20-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:20-38" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:28-46" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "12:20-38" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:20-38" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "12:20-38" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./classNamesFunction", - "loc": "15:0-37" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./classNamesFunction", - "loc": "15:0-37" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "65:28-46" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "58:28-46" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:20-38" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:20-38" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:20-38" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - } - ], - "usedExports": [ - "classNamesFunction" - ], - "providedExports": [ - "classNamesFunction" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { mergeCssSets, Stylesheet, } from '@uifabric/merge-styles';\nimport { getRTL } from './rtl';\nimport { getWindow } from './dom';\nvar MAX_CACHE_COUNT = 50;\nvar DEFAULT_SPECIFICITY_MULTIPLIER = 5;\nvar _memoizedClassNames = 0;\nvar stylesheet = Stylesheet.getInstance();\nif (stylesheet && stylesheet.onReset) {\n stylesheet.onReset(function () { return _memoizedClassNames++; });\n}\n// Note that because of the caching nature within the classNames memoization,\n// I've disabled this rule to simply be able to work with any types.\n/* eslint-disable @typescript-eslint/no-explicit-any */\n// This represents a prop we attach to each Map to indicate the cached return value\n// associated with the graph node.\nvar retVal = '__retval__';\n/**\n * Creates a getClassNames function which calls getStyles given the props, and injects them\n * into mergeStyleSets.\n *\n * Note that the props you pass in on every render should be in the same order and\n * immutable (numbers, strings, and booleans). This will allow the results to be memoized. Violating\n * these will cause extra recalcs to occur.\n */\nexport function classNamesFunction(options) {\n // We build a trie where each node is a Map. The map entry key represents an argument\n // value, and the entry value is another node (Map). Each node has a `__retval__`\n // property which is used to hold the cached response.\n if (options === void 0) { options = {}; }\n // To derive the response, we can simply ensure the arguments are added or already\n // exist in the trie. At the last node, if there is a `__retval__` we return that. Otherwise\n // we call the `getStyles` api to evaluate, cache on the property, and return that.\n var map = new Map();\n var styleCalcCount = 0;\n var getClassNamesCount = 0;\n var currentMemoizedClassNames = _memoizedClassNames;\n var getClassNames = function (styleFunctionOrObject, styleProps) {\n if (styleProps === void 0) { styleProps = {}; }\n var _a, _b;\n // If useStaticStyles is true, styleFunctionOrObject returns slot to classname mappings.\n // If there is also no style overrides, we can skip merge styles completely and\n // simply return the result from the style funcion.\n if (options.useStaticStyles &&\n typeof styleFunctionOrObject === 'function' &&\n styleFunctionOrObject.__noStyleOverride__) {\n return styleFunctionOrObject(styleProps);\n }\n getClassNamesCount++;\n var current = map;\n var theme = styleProps.theme;\n var rtl = theme && theme.rtl !== undefined ? theme.rtl : getRTL();\n var disableCaching = options.disableCaching;\n // On reset of our stylesheet, reset memoized cache.\n if (currentMemoizedClassNames !== _memoizedClassNames) {\n currentMemoizedClassNames = _memoizedClassNames;\n map = new Map();\n styleCalcCount = 0;\n }\n if (!options.disableCaching) {\n current = _traverseMap(map, styleFunctionOrObject);\n current = _traverseMap(current, styleProps);\n }\n if (disableCaching || !current[retVal]) {\n if (styleFunctionOrObject === undefined) {\n current[retVal] = {};\n }\n else {\n current[retVal] = mergeCssSets([\n (typeof styleFunctionOrObject === 'function'\n ? styleFunctionOrObject(styleProps)\n : styleFunctionOrObject),\n ], { rtl: !!rtl, specificityMultiplier: options.useStaticStyles ? DEFAULT_SPECIFICITY_MULTIPLIER : undefined });\n }\n if (!disableCaching) {\n styleCalcCount++;\n }\n }\n if (styleCalcCount > (options.cacheSize || MAX_CACHE_COUNT)) {\n var win = getWindow();\n if ((_b = (_a = win) === null || _a === void 0 ? void 0 : _a.FabricConfig) === null || _b === void 0 ? void 0 : _b.enableClassNameCacheFullWarning) {\n // eslint-disable-next-line no-console\n console.warn(\"Styles are being recalculated too frequently. Cache miss rate is \" + styleCalcCount + \"/\" + getClassNamesCount + \".\");\n // eslint-disable-next-line no-console\n console.trace();\n }\n map.clear();\n styleCalcCount = 0;\n // Mutate the options passed in, that's all we can do.\n options.disableCaching = true;\n }\n // Note: the retVal is an attached property on the Map; not a key in the Map. We use this attached property to\n // cache the return value for this branch of the graph.\n return current[retVal];\n };\n return getClassNames;\n}\nfunction _traverseEdge(current, value) {\n value = _normalizeValue(value);\n if (!current.has(value)) {\n current.set(value, new Map());\n }\n return current.get(value);\n}\nfunction _traverseMap(current, inputs) {\n if (typeof inputs === 'function') {\n var cachedInputsFromStyled = inputs.__cachedInputs__;\n if (cachedInputsFromStyled) {\n // The styled helper will generate the styles function and will attach the cached\n // inputs (consisting of the default styles, customzied styles, and user provided styles.)\n // These should be used as cache keys for deriving the memoized value.\n for (var _i = 0, _a = inputs.__cachedInputs__; _i < _a.length; _i++) {\n var input = _a[_i];\n current = _traverseEdge(current, input);\n }\n }\n else {\n current = _traverseEdge(current, inputs);\n }\n }\n else if (typeof inputs === 'object') {\n for (var propName in inputs) {\n if (inputs.hasOwnProperty(propName)) {\n current = _traverseEdge(current, inputs[propName]);\n }\n }\n }\n return current;\n}\nfunction _normalizeValue(value) {\n switch (value) {\n case undefined:\n return '__undefined__';\n case null:\n return '__null__';\n default:\n return value;\n }\n}\n//# sourceMappingURL=classNamesFunction.js.map" - }, - { - "id": "A90E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "name": "./node_modules/lodash/_baseKeys.js", - "index": 512, - "index2": 506, - "size": 776, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "issuerId": "7GkX", - "issuerName": "./node_modules/lodash/keys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "7GkX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "name": "./node_modules/lodash/keys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7GkX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "module": "./node_modules/lodash/keys.js", - "moduleName": "./node_modules/lodash/keys.js", - "type": "cjs require", - "userRequest": "./_baseKeys", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var isPrototype = require('./_isPrototype'),\n nativeKeys = require('./_nativeKeys');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeys(object) {\n if (!isPrototype(object)) {\n return nativeKeys(object);\n }\n var result = [];\n for (var key in Object(object)) {\n if (hasOwnProperty.call(object, key) && key != 'constructor') {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = baseKeys;\n" - }, - { - "id": "AP2z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getRawTag.js", - "name": "./node_modules/lodash/_getRawTag.js", - "index": 468, - "index2": 454, - "size": 1139, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "issuerId": "NykK", - "issuerName": "./node_modules/lodash/_baseGetTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NykK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "module": "./node_modules/lodash/_baseGetTag.js", - "moduleName": "./node_modules/lodash/_baseGetTag.js", - "type": "cjs require", - "userRequest": "./_getRawTag", - "loc": "2:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var Symbol = require('./_Symbol');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/** Built-in value references. */\nvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n/**\n * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the raw `toStringTag`.\n */\nfunction getRawTag(value) {\n var isOwn = hasOwnProperty.call(value, symToStringTag),\n tag = value[symToStringTag];\n\n try {\n value[symToStringTag] = undefined;\n var unmasked = true;\n } catch (e) {}\n\n var result = nativeObjectToString.call(value);\n if (unmasked) {\n if (isOwn) {\n value[symToStringTag] = tag;\n } else {\n delete value[symToStringTag];\n }\n }\n return result;\n}\n\nmodule.exports = getRawTag;\n" - }, - { - "id": "Ata1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "index": 250, - "index2": 235, - "size": 7235, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "5:0-86" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "11:28-48" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "4:0-86" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "8:28-48" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "5:0-86" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "10:32-52" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "4:0-86" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "10:28-48" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, concatStyleSets, getFocusStyle, getHighContrastNoAdjustStyle, } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;\n var effects = theme.effects, palette = theme.palette, semanticColors = theme.semanticColors;\n var buttonHighContrastFocus = {\n left: -2,\n top: -2,\n bottom: -2,\n right: -2,\n border: 'none',\n };\n var splitButtonDividerBaseStyles = {\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8,\n };\n var splitButtonStyles = {\n splitButtonContainer: [\n getFocusStyle(theme, { highContrastStyle: buttonHighContrastFocus, inset: 2 }),\n {\n display: 'inline-flex',\n selectors: {\n '.ms-Button--default': {\n borderTopRightRadius: '0',\n borderBottomRightRadius: '0',\n borderRight: 'none',\n },\n '.ms-Button--primary': {\n borderTopRightRadius: '0',\n borderBottomRightRadius: '0',\n border: 'none',\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'WindowText', backgroundColor: 'Window', border: '1px solid WindowText', borderRightWidth: '0' }, getHighContrastNoAdjustStyle()),\n _a),\n },\n '.ms-Button--primary + .ms-Button': {\n border: 'none',\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n border: '1px solid WindowText',\n borderLeftWidth: '0',\n },\n _b),\n },\n },\n },\n ],\n splitButtonContainerHovered: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'Highlight',\n },\n _c),\n },\n '.ms-Button.is-disabled': {\n color: semanticColors.buttonTextDisabled,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _d),\n },\n },\n },\n splitButtonContainerChecked: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_e = {},\n _e[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _e),\n },\n },\n },\n splitButtonContainerCheckedHovered: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_f = {},\n _f[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _f),\n },\n },\n },\n splitButtonContainerFocused: {\n outline: 'none!important',\n },\n splitButtonMenuButton: (_g = {\n padding: 6,\n height: 'auto',\n boxSizing: 'border-box',\n borderRadius: 0,\n borderTopRightRadius: effects.roundedCorner2,\n borderBottomRightRadius: effects.roundedCorner2,\n border: \"1px solid \" + palette.neutralSecondaryAlt,\n borderLeft: 'none',\n outline: 'transparent',\n userSelect: 'none',\n display: 'inline-block',\n textDecoration: 'none',\n textAlign: 'center',\n cursor: 'pointer',\n verticalAlign: 'top',\n width: 32,\n marginLeft: -1,\n marginTop: 0,\n marginRight: 0,\n marginBottom: 0\n },\n _g[HighContrastSelector] = {\n '.ms-Button-menuIcon': {\n color: 'WindowText',\n },\n },\n _g),\n splitButtonDivider: __assign(__assign({}, splitButtonDividerBaseStyles), { selectors: (_h = {},\n _h[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n },\n _h) }),\n splitButtonDividerDisabled: __assign(__assign({}, splitButtonDividerBaseStyles), { selectors: (_j = {},\n _j[HighContrastSelector] = {\n backgroundColor: 'GrayText',\n },\n _j) }),\n splitButtonMenuButtonDisabled: {\n pointerEvents: 'none',\n border: 'none',\n selectors: (_k = {\n ':hover': {\n cursor: 'default',\n },\n '.ms-Button--primary': {\n selectors: (_l = {},\n _l[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _l),\n },\n '.ms-Button-menuIcon': {\n selectors: (_m = {},\n _m[HighContrastSelector] = {\n color: 'GrayText',\n },\n _m),\n }\n },\n _k[HighContrastSelector] = {\n color: 'GrayText',\n border: '1px solid GrayText',\n backgroundColor: 'Window',\n },\n _k),\n },\n splitButtonFlexContainer: {\n display: 'flex',\n height: '100%',\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'center',\n },\n splitButtonContainerDisabled: {\n outline: 'none',\n border: 'none',\n selectors: (_o = {},\n _o[HighContrastSelector] = __assign({ color: 'GrayText', borderColor: 'GrayText', backgroundColor: 'Window' }, getHighContrastNoAdjustStyle()),\n _o),\n },\n splitButtonMenuFocused: __assign({}, getFocusStyle(theme, { highContrastStyle: buttonHighContrastFocus, inset: 2 })),\n };\n return concatStyleSets(splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=SplitButton.styles.js.map" - }, - { - "id": "B/Op", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js", - "index": 133, - "index2": 120, - "size": 627, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerId": "mI+f", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "yI02", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/Coachmark.js" - }, - { - "id": "bATe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js" - }, - { - "id": "y19T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js" - }, - { - "id": "Sbs+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js" - }, - { - "id": "wuZE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning.js" - }, - { - "id": "mI+f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "11:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "12:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "13:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "14:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "143:54-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "146:56-69" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "284:30-38" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "300:30-38" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "339:23-31" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "./positioning.types", - "loc": "5:0-53" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "16:58-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "16:77-90" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "17:56-69" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "18:59-72" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "18:78-91" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "19:58-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "20:61-74" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "20:83-96" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "21:59-72" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "22:62-75" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "22:84-97" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "23:61-74" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "24:58-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "24:78-91" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "25:57-70" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "26:61-74" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "26:81-94" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "27:59-72" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "27:80-93" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "28:58-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "29:62-75" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "29:83-96" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "53:25-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "56:25-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "59:25-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "62:25-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "67:16-29" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "70:9-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "149:8-21" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "150:8-21" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "151:8-21" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "152:8-21" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "292:17-30" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "292:47-60" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "294:26-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "295:26-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "300:26-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "301:26-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "328:28-41" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "334:16-29" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "412:16-29" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "413:16-29" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "476:32-45" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "476:67-80" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "497:19-32" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "500:24-37" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "17:7-20" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "18:7-20" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "19:7-20" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "20:7-20" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "68:21-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "69:21-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "77:48-61" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "87:49-62" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "97:21-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "98:21-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "106:48-61" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "116:49-62" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "193:23-36" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "5:52-60" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "39:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "41:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "43:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "45:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "54:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "55:13-21" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./positioning.types", - "loc": "2:0-36" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning.types", - "loc": "2:0-36" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "16:162-175" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "19:26-39" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "19:61-74" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "32:17-30" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "39:17-30" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "45:17-30" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "51:17-30" - } - ], - "usedExports": [ - "RectangleEdge" - ], - "providedExports": [ - "RectangleEdge", - "Position" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var RectangleEdge;\n(function (RectangleEdge) {\n RectangleEdge[RectangleEdge[\"top\"] = 1] = \"top\";\n RectangleEdge[RectangleEdge[\"bottom\"] = -1] = \"bottom\";\n RectangleEdge[RectangleEdge[\"left\"] = 2] = \"left\";\n RectangleEdge[RectangleEdge[\"right\"] = -2] = \"right\";\n})(RectangleEdge || (RectangleEdge = {}));\nexport var Position;\n(function (Position) {\n Position[Position[\"top\"] = 0] = \"top\";\n Position[Position[\"bottom\"] = 1] = \"bottom\";\n Position[Position[\"start\"] = 2] = \"start\";\n Position[Position[\"end\"] = 3] = \"end\";\n})(Position || (Position = {}));\n//# sourceMappingURL=positioning.types.js.map" - }, - { - "id": "B2jj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "index": 127, - "index2": 185, - "size": 119, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../collectionColorField", - "loc": "73:0-63" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../collectionColorField", - "loc": "489:43-63" - } - ], - "usedExports": [ - "CollectionColorField" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 8, - "source": "export * from \"./ICollectionColorFieldProps\";\nexport * from \"./CollectionColorField\";\n//# sourceMappingURL=index.js.map" - }, - { - "id": "B8du", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/stubFalse.js", - "name": "./node_modules/lodash/stubFalse.js", - "index": 505, - "index2": 494, - "size": 280, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "issuerId": "DSRE", - "issuerName": "./node_modules/lodash/isBuffer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - }, - { - "id": "DSRE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "name": "./node_modules/lodash/isBuffer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "DSRE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "module": "./node_modules/lodash/isBuffer.js", - "moduleName": "./node_modules/lodash/isBuffer.js", - "type": "cjs require", - "userRequest": "./stubFalse", - "loc": "2:16-38" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * This method returns `false`.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {boolean} Returns `false`.\n * @example\n *\n * _.times(2, _.stubFalse);\n * // => [false, false]\n */\nfunction stubFalse() {\n return false;\n}\n\nmodule.exports = stubFalse;\n" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "index": 847, - "index2": 884, - "size": 215, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "issuerId": "4f4p", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4f4p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/sitePicker/index", - "loc": "1:0-50" - }, - { - "moduleId": "4f4p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/sitePicker/index", - "loc": "1:0-50" - } - ], - "usedExports": [ - "PropertyFieldSitePicker" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './PropertyFieldSitePicker';\nexport * from './IPropertyFieldSitePicker';\nexport * from './PropertyFieldSitePickerHost';\nexport * from './IPropertyFieldSitePickerHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "BiGR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isFlattenable.js", - "name": "./node_modules/lodash/_isFlattenable.js", - "index": 572, - "index2": 563, - "size": 608, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "issuerId": "XGnz", - "issuerName": "./node_modules/lodash/_baseFlatten.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "TYy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/flatten.js", - "name": "./node_modules/lodash/flatten.js" - }, - { - "id": "XGnz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "name": "./node_modules/lodash/_baseFlatten.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "XGnz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "module": "./node_modules/lodash/_baseFlatten.js", - "moduleName": "./node_modules/lodash/_baseFlatten.js", - "type": "cjs require", - "userRequest": "./_isFlattenable", - "loc": "2:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var Symbol = require('./_Symbol'),\n isArguments = require('./isArguments'),\n isArray = require('./isArray');\n\n/** Built-in value references. */\nvar spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined;\n\n/**\n * Checks if `value` is a flattenable `arguments` object or array.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.\n */\nfunction isFlattenable(value) {\n return isArray(value) || isArguments(value) ||\n !!(spreadableSymbol && value && value[spreadableSymbol]);\n}\n\nmodule.exports = isFlattenable;\n" - }, - { - "id": "CBcM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "index": 222, - "index2": 207, - "size": 51302, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "156:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "181:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "294:687-696" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "467:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "564:65-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "766:32-41" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "85:36-45" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "264:32-41" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "88:36-45" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "104:36-45" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "181:32-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "499:32-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "783:36-45" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "198:32-41" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-focus", - "loc": "85:18-27" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "138:36-45" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "37:78-87" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "18:40-49" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "87:32-41" - } - ], - "usedExports": [ - "FocusZone" - ], - "providedExports": [ - "FocusZone" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/elementContains.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/getParent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/mergeStyles.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/createMergedRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/css.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/focus.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/scroll.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 7, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/raiseClick.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/raiseClick.js", - "index": 223, - "index2": 205, - "size": 543, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "603:16-26" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/raiseClick", - "loc": "13:0-33" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/raiseClick", - "loc": "13:0-33" - } - ], - "usedExports": [ - "raiseClick" - ], - "providedExports": [ - "raiseClick" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/** Raises a click event. */\nexport function raiseClick(target) {\n var event = createNewEvent('MouseEvents');\n event.initEvent('click', true, true);\n target.dispatchEvent(event);\n}\nfunction createNewEvent(eventName) {\n var event;\n if (typeof Event === 'function') {\n // Chrome, Opera, Firefox\n event = new Event(eventName);\n }\n else {\n // IE\n event = document.createEvent('Event');\n event.initEvent(eventName, true, true);\n }\n return event;\n}\n//# sourceMappingURL=raiseClick.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "index": 222, - "index2": 207, - "size": 50664, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "issuerId": "ZdmW", - "issuerName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "156:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "181:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "294:687-696" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "467:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "564:65-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "766:32-41" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "85:36-45" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "264:32-41" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "88:36-45" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "104:36-45" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "181:32-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "499:32-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "783:36-45" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "198:32-41" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-focus", - "loc": "85:18-27" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "138:36-45" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "37:78-87" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "18:40-49" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "87:32-41" - } - ], - "usedExports": [ - "FocusZone" - ], - "providedExports": [ - "FocusZone" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { mergeStyles } from '@uifabric/merge-styles';\nimport { getTheme } from '@uifabric/styling';\nimport { KeyCodes, css, elementContains, getDocument, getElementIndexPath, getFocusableByIndexPath, getId, getNativeProps, getNextElement, getParent, getPreviousElement, getRTL, htmlElementProperties, initializeComponentRef, isElementFocusSubZone, isElementFocusZone, isElementTabbable, raiseClick, shouldWrapFocus, warnDeprecations, portalContainsElement, getWindow, findScrollableParent, createMergedRef, } from '@uifabric/utilities';\nimport { FocusZoneDirection, FocusZoneTabbableElements } from './FocusZone.types';\nvar IS_FOCUSABLE_ATTRIBUTE = 'data-is-focusable';\nvar IS_ENTER_DISABLED_ATTRIBUTE = 'data-disable-click-on-enter';\nvar FOCUSZONE_ID_ATTRIBUTE = 'data-focuszone-id';\nvar TABINDEX = 'tabindex';\nvar NO_VERTICAL_WRAP = 'data-no-vertical-wrap';\nvar NO_HORIZONTAL_WRAP = 'data-no-horizontal-wrap';\nvar LARGE_DISTANCE_FROM_CENTER = 999999999;\nvar LARGE_NEGATIVE_DISTANCE_FROM_CENTER = -999999999;\nvar focusZoneStyles;\nvar focusZoneClass = 'ms-FocusZone';\n// Helper function that will return a class for when the root is focused\nfunction getRootClass() {\n if (!focusZoneStyles) {\n focusZoneStyles = mergeStyles({\n selectors: {\n ':focus': {\n outline: 'none',\n },\n },\n }, focusZoneClass);\n }\n return focusZoneStyles;\n}\nvar _allInstances = {};\nvar _outerZones = new Set();\nvar ALLOWED_INPUT_TYPES = ['text', 'number', 'password', 'email', 'tel', 'url', 'search'];\nvar ALLOW_VIRTUAL_ELEMENTS = false;\nvar FocusZone = /** @class */ (function (_super) {\n __extends(FocusZone, _super);\n function FocusZone(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._mergedRef = createMergedRef();\n _this._onFocus = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var _a = _this.props, onActiveElementChanged = _a.onActiveElementChanged, \n // eslint-disable-next-line deprecation/deprecation\n doNotAllowFocusEventToPropagate = _a.doNotAllowFocusEventToPropagate, stopFocusPropagation = _a.stopFocusPropagation, \n // eslint-disable-next-line deprecation/deprecation\n onFocusNotification = _a.onFocusNotification, onFocus = _a.onFocus, shouldFocusInnerElementWhenReceivedFocus = _a.shouldFocusInnerElementWhenReceivedFocus, defaultTabbableElement = _a.defaultTabbableElement;\n var isImmediateDescendant = _this._isImmediateDescendantOfZone(ev.target);\n var newActiveElement;\n if (isImmediateDescendant) {\n newActiveElement = ev.target;\n }\n else {\n var parentElement = ev.target;\n while (parentElement && parentElement !== _this._root.current) {\n if (isElementTabbable(parentElement) && _this._isImmediateDescendantOfZone(parentElement)) {\n newActiveElement = parentElement;\n break;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n }\n // If an inner focusable element should be focused when FocusZone container receives focus\n if (shouldFocusInnerElementWhenReceivedFocus && ev.target === _this._root.current) {\n var maybeElementToFocus = defaultTabbableElement &&\n typeof defaultTabbableElement === 'function' &&\n defaultTabbableElement(_this._root.current);\n // try to focus defaultTabbable element\n if (maybeElementToFocus && isElementTabbable(maybeElementToFocus)) {\n newActiveElement = maybeElementToFocus;\n maybeElementToFocus.focus();\n }\n else {\n // force focus on first focusable element\n _this.focus(true);\n if (_this._activeElement) {\n // set to null as new active element was handled in method above\n newActiveElement = null;\n }\n }\n }\n var initialElementFocused = !_this._activeElement;\n // If the new active element is a child of this zone and received focus,\n // update alignment an immediate descendant\n if (newActiveElement && newActiveElement !== _this._activeElement) {\n if (isImmediateDescendant || initialElementFocused) {\n _this._setFocusAlignment(newActiveElement, true, true);\n }\n _this._activeElement = newActiveElement;\n if (initialElementFocused) {\n _this._updateTabIndexes();\n }\n }\n if (onActiveElementChanged) {\n onActiveElementChanged(_this._activeElement, ev);\n }\n if (stopFocusPropagation || doNotAllowFocusEventToPropagate) {\n ev.stopPropagation();\n }\n if (onFocus) {\n onFocus(ev);\n }\n else if (onFocusNotification) {\n onFocusNotification();\n }\n };\n _this._onBlur = function () {\n _this._setParkedFocus(false);\n };\n _this._onMouseDown = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var disabled = _this.props.disabled;\n if (disabled) {\n return;\n }\n var target = ev.target;\n var path = [];\n while (target && target !== _this._root.current) {\n path.push(target);\n target = getParent(target, ALLOW_VIRTUAL_ELEMENTS);\n }\n while (path.length) {\n target = path.pop();\n if (target && isElementTabbable(target)) {\n _this._setActiveElement(target, true);\n }\n if (isElementFocusZone(target)) {\n // Stop here since the focus zone will take care of its own children.\n break;\n }\n }\n };\n /**\n * Handle the keystrokes.\n */\n _this._onKeyDown = function (ev, theme) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, direction = _a.direction, disabled = _a.disabled, isInnerZoneKeystroke = _a.isInnerZoneKeystroke, pagingSupportDisabled = _a.pagingSupportDisabled, shouldEnterInnerZone = _a.shouldEnterInnerZone;\n if (disabled) {\n return;\n }\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n }\n // If the default has been prevented, do not process keyboard events.\n if (ev.isDefaultPrevented()) {\n return;\n }\n if (_this._getDocument().activeElement === _this._root.current && _this._isInnerZone) {\n // If this element has focus, it is being controlled by a parent.\n // Ignore the keystroke.\n return;\n }\n if (((shouldEnterInnerZone && shouldEnterInnerZone(ev)) || (isInnerZoneKeystroke && isInnerZoneKeystroke(ev))) &&\n _this._isImmediateDescendantOfZone(ev.target)) {\n // Try to focus\n var innerZone = _this._getFirstInnerZone();\n if (innerZone) {\n if (!innerZone.focus(true)) {\n return;\n }\n }\n else if (isElementFocusSubZone(ev.target)) {\n if (!_this.focusElement(getNextElement(ev.target, ev.target.firstChild, true))) {\n return;\n }\n }\n else {\n return;\n }\n }\n else if (ev.altKey) {\n return;\n }\n else {\n // eslint-disable-next-line @fluentui/deprecated-keyboard-event-props\n switch (ev.which) {\n case KeyCodes.space:\n if (_this._tryInvokeClickForFocusable(ev.target)) {\n break;\n }\n return;\n case KeyCodes.left:\n if (direction !== FocusZoneDirection.vertical) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusLeft(theme)) {\n break;\n }\n }\n return;\n case KeyCodes.right:\n if (direction !== FocusZoneDirection.vertical) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusRight(theme)) {\n break;\n }\n }\n return;\n case KeyCodes.up:\n if (direction !== FocusZoneDirection.horizontal) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusUp()) {\n break;\n }\n }\n return;\n case KeyCodes.down:\n if (direction !== FocusZoneDirection.horizontal) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusDown()) {\n break;\n }\n }\n return;\n case KeyCodes.pageDown:\n if (!pagingSupportDisabled && _this._moveFocusPaging(true)) {\n break;\n }\n return;\n case KeyCodes.pageUp:\n if (!pagingSupportDisabled && _this._moveFocusPaging(false)) {\n break;\n }\n return;\n case KeyCodes.tab:\n if (\n // eslint-disable-next-line deprecation/deprecation\n _this.props.allowTabKey ||\n _this.props.handleTabKey === FocusZoneTabbableElements.all ||\n (_this.props.handleTabKey === FocusZoneTabbableElements.inputOnly &&\n _this._isElementInput(ev.target))) {\n var focusChanged = false;\n _this._processingTabKey = true;\n if (direction === FocusZoneDirection.vertical ||\n !_this._shouldWrapFocus(_this._activeElement, NO_HORIZONTAL_WRAP)) {\n focusChanged = ev.shiftKey ? _this._moveFocusUp() : _this._moveFocusDown();\n }\n else {\n var tabWithDirection = getRTL(theme) ? !ev.shiftKey : ev.shiftKey;\n focusChanged = tabWithDirection ? _this._moveFocusLeft(theme) : _this._moveFocusRight(theme);\n }\n _this._processingTabKey = false;\n if (focusChanged) {\n break;\n }\n else if (_this.props.shouldResetActiveElementWhenTabFromZone) {\n _this._activeElement = null;\n }\n }\n return;\n case KeyCodes.home:\n if (_this._isContentEditableElement(ev.target) ||\n (_this._isElementInput(ev.target) &&\n !_this._shouldInputLoseFocus(ev.target, false))) {\n return false;\n }\n var firstChild = _this._root.current && _this._root.current.firstChild;\n if (_this._root.current &&\n firstChild &&\n _this.focusElement(getNextElement(_this._root.current, firstChild, true))) {\n break;\n }\n return;\n case KeyCodes.end:\n if (_this._isContentEditableElement(ev.target) ||\n (_this._isElementInput(ev.target) &&\n !_this._shouldInputLoseFocus(ev.target, true))) {\n return false;\n }\n var lastChild = _this._root.current && _this._root.current.lastChild;\n if (_this._root.current &&\n _this.focusElement(getPreviousElement(_this._root.current, lastChild, true, true, true))) {\n break;\n }\n return;\n case KeyCodes.enter:\n if (_this._tryInvokeClickForFocusable(ev.target)) {\n break;\n }\n return;\n default:\n return;\n }\n }\n ev.preventDefault();\n ev.stopPropagation();\n };\n _this._getHorizontalDistanceFromCenter = function (isForward, activeRect, targetRect) {\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = _this._focusAlignment.left || _this._focusAlignment.x || 0;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n var targetRectBottom = Math.floor(targetRect.bottom);\n var activeRectTop = Math.floor(activeRect.top);\n var isValidCandidateOnpagingDown = isForward && targetRectTop > activeRectBottom;\n var isValidCandidateOnpagingUp = !isForward && targetRectBottom < activeRectTop;\n if (isValidCandidateOnpagingDown || isValidCandidateOnpagingUp) {\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n return 0;\n }\n return Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n };\n // Manage componentRef resolution.\n initializeComponentRef(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('FocusZone', props, {\n rootProps: undefined,\n allowTabKey: 'handleTabKey',\n elementType: 'as',\n ariaDescribedBy: 'aria-describedby',\n ariaLabelledBy: 'aria-labelledby',\n });\n }\n _this._id = getId('FocusZone');\n _this._focusAlignment = {\n left: 0,\n top: 0,\n };\n _this._processingTabKey = false;\n return _this;\n }\n /** Used for testing purposes only. */\n FocusZone.getOuterZones = function () {\n return _outerZones.size;\n };\n /**\n * Handle global tab presses so that we can patch tabindexes on the fly.\n * HEADS UP: This must not be an arrow function in order to be referentially equal among instances\n * for ref counting to work correctly!\n */\n FocusZone._onKeyDownCapture = function (ev) {\n // eslint-disable-next-line deprecation/deprecation, @fluentui/deprecated-keyboard-event-props\n if (ev.which === KeyCodes.tab) {\n _outerZones.forEach(function (zone) { return zone._updateTabIndexes(); });\n }\n };\n FocusZone.prototype.componentDidMount = function () {\n var root = this._root.current;\n _allInstances[this._id] = this;\n if (root) {\n this._windowElement = getWindow(root);\n var parentElement = getParent(root, ALLOW_VIRTUAL_ELEMENTS);\n while (parentElement && parentElement !== this._getDocument().body && parentElement.nodeType === 1) {\n if (isElementFocusZone(parentElement)) {\n this._isInnerZone = true;\n break;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n if (!this._isInnerZone) {\n _outerZones.add(this);\n if (this._windowElement && _outerZones.size === 1) {\n this._windowElement.addEventListener('keydown', FocusZone._onKeyDownCapture, true);\n }\n }\n this._root.current && this._root.current.addEventListener('blur', this._onBlur, true);\n // Assign initial tab indexes so that we can set initial focus as appropriate.\n this._updateTabIndexes();\n if (this.props.defaultTabbableElement && typeof this.props.defaultTabbableElement === 'string') {\n this._activeElement = this._getDocument().querySelector(this.props.defaultTabbableElement);\n // eslint-disable-next-line deprecation/deprecation\n }\n else if (this.props.defaultActiveElement) {\n // eslint-disable-next-line deprecation/deprecation\n this._activeElement = this._getDocument().querySelector(this.props.defaultActiveElement);\n }\n if (this.props.shouldFocusOnMount) {\n this.focus();\n }\n }\n };\n FocusZone.prototype.componentDidUpdate = function () {\n var root = this._root.current;\n var doc = this._getDocument();\n if (doc &&\n this._lastIndexPath &&\n (doc.activeElement === doc.body ||\n doc.activeElement === null ||\n (!this.props.preventFocusRestoration && doc.activeElement === root))) {\n // The element has been removed after the render, attempt to restore focus.\n var elementToFocus = getFocusableByIndexPath(root, this._lastIndexPath);\n if (elementToFocus) {\n this._setActiveElement(elementToFocus, true);\n elementToFocus.focus();\n this._setParkedFocus(false);\n }\n else {\n // We had a focus path to restore, but now that path is unresolvable. Park focus\n // on the container until we can try again.\n this._setParkedFocus(true);\n }\n }\n };\n FocusZone.prototype.componentWillUnmount = function () {\n delete _allInstances[this._id];\n if (!this._isInnerZone) {\n _outerZones.delete(this);\n // If this is the last outer zone, remove the keydown listener.\n if (this._windowElement && _outerZones.size === 0) {\n this._windowElement.removeEventListener('keydown', FocusZone._onKeyDownCapture, true);\n }\n }\n if (this._root.current) {\n this._root.current.removeEventListener('blur', this._onBlur, true);\n }\n this._activeElement = null;\n this._defaultFocusElement = null;\n };\n FocusZone.prototype.render = function () {\n var _this = this;\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, tag = _a.as, elementType = _a.elementType, rootProps = _a.rootProps, ariaDescribedBy = _a.ariaDescribedBy, ariaLabelledBy = _a.ariaLabelledBy, className = _a.className;\n var divProps = getNativeProps(this.props, htmlElementProperties);\n var Tag = tag || elementType || 'div';\n // Note, right before rendering/reconciling proceeds, we need to record if focus\n // was in the zone before the update. This helper will track this and, if focus\n // was actually in the zone, what the index path to the element is at this time.\n // Then, later in componentDidUpdate, we can evaluate if we need to restore it in\n // the case the element was removed.\n this._evaluateFocusBeforeRender();\n // Only support RTL defined in global theme, not contextual theme/RTL.\n var theme = getTheme();\n return (React.createElement(Tag, __assign({ \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy }, divProps, rootProps, { \n // Once the getClassName correctly memoizes inputs this should\n // be replaced so that className is passed to getRootClass and is included there so\n // the class names will always be in the same order.\n className: css(getRootClass(), className), \n // eslint-disable-next-line deprecation/deprecation\n ref: this._mergedRef(this.props.elementRef, this._root), \"data-focuszone-id\": this._id, \n // eslint-disable-next-line react/jsx-no-bind\n onKeyDown: function (ev) { return _this._onKeyDown(ev, theme); }, onFocus: this._onFocus, onMouseDownCapture: this._onMouseDown }), this.props.children));\n };\n /**\n * Sets focus to the first tabbable item in the zone.\n * @param forceIntoFirstElement - If true, focus will be forced into the first element, even\n * if focus is already in the focus zone.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focus = function (forceIntoFirstElement) {\n if (forceIntoFirstElement === void 0) { forceIntoFirstElement = false; }\n if (this._root.current) {\n if (!forceIntoFirstElement &&\n this._root.current.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true' &&\n this._isInnerZone) {\n var ownerZoneElement = this._getOwnerZone(this._root.current);\n if (ownerZoneElement !== this._root.current) {\n var ownerZone = _allInstances[ownerZoneElement.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n return !!ownerZone && ownerZone.focusElement(this._root.current);\n }\n return false;\n }\n else if (!forceIntoFirstElement &&\n this._activeElement &&\n elementContains(this._root.current, this._activeElement) &&\n isElementTabbable(this._activeElement)) {\n this._activeElement.focus();\n return true;\n }\n else {\n var firstChild = this._root.current.firstChild;\n return this.focusElement(getNextElement(this._root.current, firstChild, true));\n }\n }\n return false;\n };\n /**\n * Sets focus to the last tabbable item in the zone.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focusLast = function () {\n if (this._root.current) {\n var lastChild = this._root.current && this._root.current.lastChild;\n return this.focusElement(getPreviousElement(this._root.current, lastChild, true, true, true));\n }\n return false;\n };\n /**\n * Sets focus to a specific child element within the zone. This can be used in conjunction with\n * shouldReceiveFocus to create delayed focus scenarios (like animate the scroll position to the correct\n * location and then focus.)\n * @param element - The child element within the zone to focus.\n * @param forceAlignment - If true, focus alignment will be set according to the element provided.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focusElement = function (element, forceAlignment) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, onBeforeFocus = _a.onBeforeFocus, shouldReceiveFocus = _a.shouldReceiveFocus;\n if ((shouldReceiveFocus && !shouldReceiveFocus(element)) || (onBeforeFocus && !onBeforeFocus(element))) {\n return false;\n }\n if (element) {\n // when we set focus to a specific child, we should recalculate the alignment depending on its position.\n this._setActiveElement(element, forceAlignment);\n if (this._activeElement) {\n this._activeElement.focus();\n }\n return true;\n }\n return false;\n };\n /**\n * Forces horizontal alignment in the context of vertical arrowing to use specific point as the reference,\n * rather than a center based on the last horizontal motion.\n * @param point - the new reference point.\n */\n FocusZone.prototype.setFocusAlignment = function (point) {\n this._focusAlignment = point;\n };\n FocusZone.prototype._evaluateFocusBeforeRender = function () {\n var root = this._root.current;\n var doc = this._getDocument();\n if (doc) {\n var focusedElement = doc.activeElement;\n // Only update the index path if we are not parked on the root.\n if (focusedElement !== root) {\n var shouldRestoreFocus = elementContains(root, focusedElement, false);\n this._lastIndexPath = shouldRestoreFocus ? getElementIndexPath(root, focusedElement) : undefined;\n }\n }\n };\n /**\n * When focus is in the zone at render time but then all focusable elements are removed,\n * we \"park\" focus temporarily on the root. Once we update with focusable children, we restore\n * focus to the closest path from previous. If the user tabs away from the parked container,\n * we restore focusability to the pre-parked state.\n */\n FocusZone.prototype._setParkedFocus = function (isParked) {\n var root = this._root.current;\n if (root && this._isParked !== isParked) {\n this._isParked = isParked;\n if (isParked) {\n if (!this.props.allowFocusRoot) {\n this._parkedTabIndex = root.getAttribute('tabindex');\n root.setAttribute('tabindex', '-1');\n }\n root.focus();\n }\n else if (!this.props.allowFocusRoot) {\n if (this._parkedTabIndex) {\n root.setAttribute('tabindex', this._parkedTabIndex);\n this._parkedTabIndex = undefined;\n }\n else {\n root.removeAttribute('tabindex');\n }\n }\n }\n };\n FocusZone.prototype._setActiveElement = function (element, forceAlignment) {\n var previousActiveElement = this._activeElement;\n this._activeElement = element;\n if (previousActiveElement) {\n if (isElementFocusZone(previousActiveElement)) {\n this._updateTabIndexes(previousActiveElement);\n }\n previousActiveElement.tabIndex = -1;\n }\n if (this._activeElement) {\n if (!this._focusAlignment || forceAlignment) {\n this._setFocusAlignment(element, true, true);\n }\n this._activeElement.tabIndex = 0;\n }\n };\n FocusZone.prototype._preventDefaultWhenHandled = function (ev) {\n this.props.preventDefaultWhenHandled && ev.preventDefault();\n };\n /**\n * Walk up the dom try to find a focusable element.\n */\n FocusZone.prototype._tryInvokeClickForFocusable = function (target) {\n if (target === this._root.current || !this.props.shouldRaiseClicks) {\n return false;\n }\n do {\n if (target.tagName === 'BUTTON' ||\n target.tagName === 'A' ||\n target.tagName === 'INPUT' ||\n target.tagName === 'TEXTAREA') {\n return false;\n }\n if (this._isImmediateDescendantOfZone(target) &&\n target.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true' &&\n target.getAttribute(IS_ENTER_DISABLED_ATTRIBUTE) !== 'true') {\n raiseClick(target);\n return true;\n }\n target = getParent(target, ALLOW_VIRTUAL_ELEMENTS);\n } while (target !== this._root.current);\n return false;\n };\n /**\n * Traverse to find first child zone.\n */\n FocusZone.prototype._getFirstInnerZone = function (rootElement) {\n rootElement = rootElement || this._activeElement || this._root.current;\n if (!rootElement) {\n return null;\n }\n if (isElementFocusZone(rootElement)) {\n return _allInstances[rootElement.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n }\n var child = rootElement.firstElementChild;\n while (child) {\n if (isElementFocusZone(child)) {\n return _allInstances[child.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n }\n var match = this._getFirstInnerZone(child);\n if (match) {\n return match;\n }\n child = child.nextElementSibling;\n }\n return null;\n };\n FocusZone.prototype._moveFocus = function (isForward, getDistanceFromCenter, ev, useDefaultWrap) {\n if (useDefaultWrap === void 0) { useDefaultWrap = true; }\n var element = this._activeElement;\n var candidateDistance = -1;\n var candidateElement = undefined;\n var changedFocus = false;\n var isBidirectional = this.props.direction === FocusZoneDirection.bidirectional;\n if (!element || !this._root.current) {\n return false;\n }\n if (this._isElementInput(element)) {\n if (!this._shouldInputLoseFocus(element, isForward)) {\n return false;\n }\n }\n var activeRect = isBidirectional ? element.getBoundingClientRect() : null;\n do {\n element = (isForward\n ? getNextElement(this._root.current, element)\n : getPreviousElement(this._root.current, element));\n if (isBidirectional) {\n if (element) {\n var targetRect = element.getBoundingClientRect();\n var elementDistance = getDistanceFromCenter(activeRect, targetRect);\n if (elementDistance === -1 && candidateDistance === -1) {\n candidateElement = element;\n break;\n }\n if (elementDistance > -1 && (candidateDistance === -1 || elementDistance < candidateDistance)) {\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n if (candidateDistance >= 0 && elementDistance < 0) {\n break;\n }\n }\n }\n else {\n candidateElement = element;\n break;\n }\n } while (element);\n // Focus the closest candidate\n if (candidateElement && candidateElement !== this._activeElement) {\n changedFocus = true;\n this.focusElement(candidateElement);\n }\n else if (this.props.isCircularNavigation && useDefaultWrap) {\n if (isForward) {\n return this.focusElement(getNextElement(this._root.current, this._root.current.firstElementChild, true));\n }\n else {\n return this.focusElement(getPreviousElement(this._root.current, this._root.current.lastElementChild, true, true, true));\n }\n }\n return changedFocus;\n };\n FocusZone.prototype._moveFocusDown = function () {\n var _this = this;\n var targetTop = -1;\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = this._focusAlignment.left || this._focusAlignment.x || 0;\n if (this._moveFocus(true, function (activeRect, targetRect) {\n var distance = -1;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n if (targetRectTop < activeRectBottom) {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n if ((targetTop === -1 && targetRectTop >= activeRectBottom) || targetRectTop === targetTop) {\n targetTop = targetRectTop;\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n distance = 0;\n }\n else {\n distance = Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n }\n return distance;\n })) {\n this._setFocusAlignment(this._activeElement, false, true);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusUp = function () {\n var _this = this;\n var targetTop = -1;\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = this._focusAlignment.left || this._focusAlignment.x || 0;\n if (this._moveFocus(false, function (activeRect, targetRect) {\n var distance = -1;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectBottom = Math.floor(targetRect.bottom);\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectTop = Math.floor(activeRect.top);\n if (targetRectBottom > activeRectTop) {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n if ((targetTop === -1 && targetRectBottom <= activeRectTop) || targetRectTop === targetTop) {\n targetTop = targetRectTop;\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n distance = 0;\n }\n else {\n distance = Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n }\n return distance;\n })) {\n this._setFocusAlignment(this._activeElement, false, true);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusLeft = function (theme) {\n var _this = this;\n var shouldWrap = this._shouldWrapFocus(this._activeElement, NO_HORIZONTAL_WRAP);\n if (this._moveFocus(getRTL(theme), function (activeRect, targetRect) {\n var distance = -1;\n var topBottomComparison;\n if (getRTL(theme)) {\n // When in RTL, this comparison should be the same as the one in _moveFocusRight for LTR.\n // Going left at a leftmost rectangle will go down a line instead of up a line like in LTR.\n // This is important, because we want to be comparing the top of the target rect\n // with the bottom of the active rect.\n topBottomComparison = parseFloat(targetRect.top.toFixed(3)) < parseFloat(activeRect.bottom.toFixed(3));\n }\n else {\n topBottomComparison = parseFloat(targetRect.bottom.toFixed(3)) > parseFloat(activeRect.top.toFixed(3));\n }\n if (topBottomComparison &&\n targetRect.right <= activeRect.right &&\n _this.props.direction !== FocusZoneDirection.vertical) {\n distance = activeRect.right - targetRect.right;\n }\n else if (!shouldWrap) {\n distance = LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return distance;\n }, undefined /*ev*/, shouldWrap)) {\n this._setFocusAlignment(this._activeElement, true, false);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusRight = function (theme) {\n var _this = this;\n var shouldWrap = this._shouldWrapFocus(this._activeElement, NO_HORIZONTAL_WRAP);\n if (this._moveFocus(!getRTL(theme), function (activeRect, targetRect) {\n var distance = -1;\n var topBottomComparison;\n if (getRTL(theme)) {\n // When in RTL, this comparison should be the same as the one in _moveFocusLeft for LTR.\n // Going right at a rightmost rectangle will go up a line instead of down a line like in LTR.\n // This is important, because we want to be comparing the bottom of the target rect\n // with the top of the active rect.\n topBottomComparison = parseFloat(targetRect.bottom.toFixed(3)) > parseFloat(activeRect.top.toFixed(3));\n }\n else {\n topBottomComparison = parseFloat(targetRect.top.toFixed(3)) < parseFloat(activeRect.bottom.toFixed(3));\n }\n if (topBottomComparison &&\n targetRect.left >= activeRect.left &&\n _this.props.direction !== FocusZoneDirection.vertical) {\n distance = targetRect.left - activeRect.left;\n }\n else if (!shouldWrap) {\n distance = LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return distance;\n }, undefined /*ev*/, shouldWrap)) {\n this._setFocusAlignment(this._activeElement, true, false);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusPaging = function (isForward, useDefaultWrap) {\n if (useDefaultWrap === void 0) { useDefaultWrap = true; }\n var element = this._activeElement;\n if (!element || !this._root.current) {\n return false;\n }\n if (this._isElementInput(element)) {\n if (!this._shouldInputLoseFocus(element, isForward)) {\n return false;\n }\n }\n var scrollableParent = findScrollableParent(element);\n if (!scrollableParent) {\n return false;\n }\n var candidateDistance = -1;\n var candidateElement = undefined;\n var targetTop = -1;\n var targetBottom = -1;\n var pagesize = scrollableParent.clientHeight;\n var activeRect = element.getBoundingClientRect();\n do {\n element = isForward\n ? getNextElement(this._root.current, element)\n : getPreviousElement(this._root.current, element);\n if (element) {\n var targetRect = element.getBoundingClientRect();\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n var targetRectBottom = Math.floor(targetRect.bottom);\n var activeRectTop = Math.floor(activeRect.top);\n var elementDistance = this._getHorizontalDistanceFromCenter(isForward, activeRect, targetRect);\n var isElementPassedPageSizeOnPagingDown = isForward && targetRectTop > activeRectBottom + pagesize;\n var isElementPassedPageSizeOnPagingUp = !isForward && targetRectBottom < activeRectTop - pagesize;\n if (isElementPassedPageSizeOnPagingDown || isElementPassedPageSizeOnPagingUp) {\n break;\n }\n if (elementDistance > -1) {\n // for paging down\n if (isForward && targetRectTop > targetTop) {\n targetTop = targetRectTop;\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n else if (!isForward && targetRectBottom < targetBottom) {\n // for paging up\n targetBottom = targetRectBottom;\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n else if (candidateDistance === -1 || elementDistance <= candidateDistance) {\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n }\n }\n } while (element);\n var changedFocus = false;\n // Focus the closest candidate\n if (candidateElement && candidateElement !== this._activeElement) {\n changedFocus = true;\n this.focusElement(candidateElement);\n this._setFocusAlignment(candidateElement, false, true);\n }\n else if (this.props.isCircularNavigation && useDefaultWrap) {\n if (isForward) {\n return this.focusElement(getNextElement(this._root.current, this._root.current.firstElementChild, true));\n }\n return this.focusElement(getPreviousElement(this._root.current, this._root.current.lastElementChild, true, true, true));\n }\n return changedFocus;\n };\n FocusZone.prototype._setFocusAlignment = function (element, isHorizontal, isVertical) {\n if (this.props.direction === FocusZoneDirection.bidirectional &&\n (!this._focusAlignment || isHorizontal || isVertical)) {\n var rect = element.getBoundingClientRect();\n var left = rect.left + rect.width / 2;\n var top_1 = rect.top + rect.height / 2;\n if (!this._focusAlignment) {\n this._focusAlignment = { left: left, top: top_1 };\n }\n if (isHorizontal) {\n this._focusAlignment.left = left;\n }\n if (isVertical) {\n this._focusAlignment.top = top_1;\n }\n }\n };\n FocusZone.prototype._isImmediateDescendantOfZone = function (element) {\n return this._getOwnerZone(element) === this._root.current;\n };\n FocusZone.prototype._getOwnerZone = function (element) {\n var parentElement = getParent(element, ALLOW_VIRTUAL_ELEMENTS);\n while (parentElement && parentElement !== this._root.current && parentElement !== this._getDocument().body) {\n if (isElementFocusZone(parentElement)) {\n return parentElement;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n return parentElement;\n };\n FocusZone.prototype._updateTabIndexes = function (element) {\n if (!this._activeElement &&\n this.props.defaultTabbableElement &&\n typeof this.props.defaultTabbableElement === 'function') {\n this._activeElement = this.props.defaultTabbableElement(this._root.current);\n }\n if (!element && this._root.current) {\n this._defaultFocusElement = null;\n element = this._root.current;\n if (this._activeElement && !elementContains(element, this._activeElement)) {\n this._activeElement = null;\n }\n }\n // If active element changes state to disabled, set it to null.\n // Otherwise, we lose keyboard accessibility to other elements in focus zone.\n if (this._activeElement && !isElementTabbable(this._activeElement)) {\n this._activeElement = null;\n }\n var childNodes = element && element.children;\n for (var childIndex = 0; childNodes && childIndex < childNodes.length; childIndex++) {\n var child = childNodes[childIndex];\n if (!isElementFocusZone(child)) {\n // If the item is explicitly set to not be focusable then TABINDEX needs to be set to -1.\n if (child.getAttribute && child.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'false') {\n child.setAttribute(TABINDEX, '-1');\n }\n if (isElementTabbable(child)) {\n if (this.props.disabled) {\n child.setAttribute(TABINDEX, '-1');\n }\n else if (!this._isInnerZone &&\n ((!this._activeElement && !this._defaultFocusElement) || this._activeElement === child)) {\n this._defaultFocusElement = child;\n if (child.getAttribute(TABINDEX) !== '0') {\n child.setAttribute(TABINDEX, '0');\n }\n }\n else if (child.getAttribute(TABINDEX) !== '-1') {\n child.setAttribute(TABINDEX, '-1');\n }\n }\n else if (child.tagName === 'svg' && child.getAttribute('focusable') !== 'false') {\n // Disgusting IE hack. Sad face.\n child.setAttribute('focusable', 'false');\n }\n }\n else if (child.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true') {\n if (!this._isInnerZone &&\n ((!this._activeElement && !this._defaultFocusElement) || this._activeElement === child)) {\n this._defaultFocusElement = child;\n if (child.getAttribute(TABINDEX) !== '0') {\n child.setAttribute(TABINDEX, '0');\n }\n }\n else if (child.getAttribute(TABINDEX) !== '-1') {\n child.setAttribute(TABINDEX, '-1');\n }\n }\n this._updateTabIndexes(child);\n }\n };\n FocusZone.prototype._isContentEditableElement = function (element) {\n return element && element.getAttribute('contenteditable') === 'true';\n };\n FocusZone.prototype._isElementInput = function (element) {\n if (element &&\n element.tagName &&\n (element.tagName.toLowerCase() === 'input' || element.tagName.toLowerCase() === 'textarea')) {\n return true;\n }\n return false;\n };\n FocusZone.prototype._shouldInputLoseFocus = function (element, isForward) {\n // If a tab was used, we want to focus on the next element.\n if (!this._processingTabKey &&\n element &&\n element.type &&\n ALLOWED_INPUT_TYPES.indexOf(element.type.toLowerCase()) > -1) {\n var selectionStart = element.selectionStart;\n var selectionEnd = element.selectionEnd;\n var isRangeSelected = selectionStart !== selectionEnd;\n var inputValue = element.value;\n var isReadonly = element.readOnly;\n // We shouldn't lose focus in the following cases:\n // 1. There is range selected.\n // 2. When selection start is larger than 0 and it is backward and not readOnly.\n // 3. when selection start is not the end of length, it is forward and not readOnly.\n // 4. We press any of the arrow keys when our handleTabKey isn't none or undefined (only losing focus if we hit\n // tab) and if shouldInputLoseFocusOnArrowKey is defined, if scenario prefers to not loose the focus which is\n // determined by calling the callback shouldInputLoseFocusOnArrowKey\n if (isRangeSelected ||\n (selectionStart > 0 && !isForward && !isReadonly) ||\n (selectionStart !== inputValue.length && isForward && !isReadonly) ||\n (!!this.props.handleTabKey &&\n !(this.props.shouldInputLoseFocusOnArrowKey && this.props.shouldInputLoseFocusOnArrowKey(element)))) {\n return false;\n }\n }\n return true;\n };\n FocusZone.prototype._shouldWrapFocus = function (element, noWrapDataAttribute) {\n return this.props.checkForNoWrap ? shouldWrapFocus(element, noWrapDataAttribute) : true;\n };\n /**\n * Returns true if the element is a descendant of the FocusZone through a React portal.\n */\n FocusZone.prototype._portalContainsElement = function (element) {\n return element && !!this._root.current && portalContainsElement(element, this._root.current);\n };\n FocusZone.prototype._getDocument = function () {\n return getDocument(this._root.current);\n };\n FocusZone.defaultProps = {\n isCircularNavigation: false,\n direction: FocusZoneDirection.bidirectional,\n shouldRaiseClicks: true,\n };\n return FocusZone;\n}(React.Component));\nexport { FocusZone };\n//# sourceMappingURL=FocusZone.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "CH3K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayPush.js", - "name": "./node_modules/lodash/_arrayPush.js", - "index": 529, - "index2": 520, - "size": 437, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetAllKeys.js", - "issuerId": "fR/l", - "issuerName": "./node_modules/lodash/_baseGetAllKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "fR/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetAllKeys.js", - "name": "./node_modules/lodash/_baseGetAllKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "XGnz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "module": "./node_modules/lodash/_baseFlatten.js", - "moduleName": "./node_modules/lodash/_baseFlatten.js", - "type": "cjs require", - "userRequest": "./_arrayPush", - "loc": "1:16-39" - }, - { - "moduleId": "fR/l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetAllKeys.js", - "module": "./node_modules/lodash/_baseGetAllKeys.js", - "moduleName": "./node_modules/lodash/_baseGetAllKeys.js", - "type": "cjs require", - "userRequest": "./_arrayPush", - "loc": "1:16-39" - }, - { - "moduleId": "oCl/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "module": "./node_modules/lodash/_getSymbolsIn.js", - "moduleName": "./node_modules/lodash/_getSymbolsIn.js", - "type": "cjs require", - "userRequest": "./_arrayPush", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Appends the elements of `values` to `array`.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to append.\n * @returns {Array} Returns `array`.\n */\nfunction arrayPush(array, values) {\n var index = -1,\n length = values.length,\n offset = array.length;\n\n while (++index < length) {\n array[offset + index] = values[index];\n }\n return array;\n}\n\nmodule.exports = arrayPush;\n" - }, - { - "id": "CcL7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "index": 31, - "index2": 111, - "size": 42686, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "53:35-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../TextField", - "loc": "177:52-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "491:43-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "506:43-52" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../TextField", - "loc": "307:36-45" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField", - "loc": "1:0-28" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TextField", - "loc": "1:0-28" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/TextField", - "loc": "126:32-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony side effect evaluation", - "userRequest": "../TextField", - "loc": "3:0-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "../TextField", - "loc": "210:36-45" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "63:32-41" - } - ], - "usedExports": [ - "TextField" - ], - "providedExports": [ - "TextField" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/DelayedRender.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warn.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Label/Label.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 3, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "index": 42, - "index2": 109, - "size": 22310, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "BZ1n", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField.base", - "loc": "2:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony import specifier", - "userRequest": "./TextField.base", - "loc": "4:30-43" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField.base", - "loc": "2:0-33" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TextField.base", - "loc": "2:0-33" - } - ], - "usedExports": [ - "TextFieldBase" - ], - "providedExports": [ - "TextFieldBase" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Label } from '../../Label';\nimport { Icon } from '../../Icon';\nimport { Async, DelayedRender, classNamesFunction, getId, getNativeProps, getWindow, initializeComponentRef, inputProperties, isControlled, isIE11, textAreaProperties, warn, warnControlledUsage, warnMutuallyExclusive, } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar DEFAULT_STATE_VALUE = '';\nvar COMPONENT_NAME = 'TextField';\nvar REVEAL_ICON_NAME = 'RedEye';\nvar HIDE_ICON_NAME = 'Hide';\nvar TextFieldBase = /** @class */ (function (_super) {\n __extends(TextFieldBase, _super);\n function TextFieldBase(props) {\n var _this = _super.call(this, props) || this;\n _this._textElement = React.createRef();\n _this._onFocus = function (ev) {\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n _this.setState({ isFocused: true }, function () {\n if (_this.props.validateOnFocusIn) {\n _this._validate(_this.value);\n }\n });\n };\n _this._onBlur = function (ev) {\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n _this.setState({ isFocused: false }, function () {\n if (_this.props.validateOnFocusOut) {\n _this._validate(_this.value);\n }\n });\n };\n _this._onRenderLabel = function (props) {\n var label = props.label, required = props.required;\n // IProcessedStyleSet definition requires casting for what Label expects as its styles prop\n var labelStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.label\n : undefined;\n if (label) {\n return (React.createElement(Label, { required: required, htmlFor: _this._id, styles: labelStyles, disabled: props.disabled, id: _this._labelId }, props.label));\n }\n return null;\n };\n _this._onRenderDescription = function (props) {\n if (props.description) {\n return React.createElement(\"span\", { className: _this._classNames.description }, props.description);\n }\n return null;\n };\n _this._onRevealButtonClick = function (event) {\n _this.setState(function (prevState) { return ({ isRevealingPassword: !prevState.isRevealingPassword }); });\n };\n _this._onInputChange = function (event) {\n // Previously, we needed to call both onInput and onChange due to some weird IE/React issues,\n // which have *probably* been fixed now:\n // - https://github.com/microsoft/fluentui/issues/744 (likely fixed)\n // - https://github.com/microsoft/fluentui/issues/824 (confirmed fixed)\n // TODO (Fabric 8?) - Switch to calling only onChange. This switch is pretty disruptive for\n // tests (ours and maybe consumers' too), so it seemed best to do the switch in a major bump.\n var element = event.target;\n var value = element.value;\n // Ignore this event if the value is undefined (in case one of the IE bugs comes back)\n if (value === undefined || value === _this._lastChangeValue) {\n return;\n }\n _this._lastChangeValue = value;\n // This is so developers can access the event properties in asynchronous callbacks\n // https://reactjs.org/docs/events.html#event-pooling\n event.persist();\n var isSameValue;\n _this.setState(function (prevState, props) {\n var prevValue = _getValue(props, prevState) || '';\n isSameValue = value === prevValue;\n // Avoid doing unnecessary work when the value has not changed.\n if (isSameValue) {\n return null;\n }\n // ONLY if this is an uncontrolled component, update the displayed value.\n // (Controlled components must update the `value` prop from `onChange`.)\n return _this._isControlled ? null : { uncontrolledValue: value };\n }, function () {\n // If the value actually changed, call onChange (for either controlled or uncontrolled)\n var onChange = _this.props.onChange;\n if (!isSameValue && onChange) {\n onChange(event, value);\n }\n });\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnMutuallyExclusive(COMPONENT_NAME, props, {\n errorMessage: 'onGetErrorMessage',\n });\n }\n _this._fallbackId = getId(COMPONENT_NAME);\n _this._descriptionId = getId(COMPONENT_NAME + 'Description');\n _this._labelId = getId(COMPONENT_NAME + 'Label');\n _this._warnControlledUsage();\n var _a = props.defaultValue, defaultValue = _a === void 0 ? DEFAULT_STATE_VALUE : _a;\n if (typeof defaultValue === 'number') {\n // This isn't allowed per the props, but happens anyway.\n defaultValue = String(defaultValue);\n }\n _this.state = {\n uncontrolledValue: _this._isControlled ? undefined : defaultValue,\n isFocused: false,\n errorMessage: '',\n };\n _this._delayedValidate = _this._async.debounce(_this._validate, _this.props.deferredValidationTime);\n _this._lastValidation = 0;\n return _this;\n }\n Object.defineProperty(TextFieldBase.prototype, \"value\", {\n /**\n * Gets the current value of the text field.\n */\n get: function () {\n return _getValue(this.props, this.state);\n },\n enumerable: true,\n configurable: true\n });\n TextFieldBase.prototype.componentDidMount = function () {\n this._adjustInputHeight();\n if (this.props.validateOnLoad) {\n this._validate(this.value);\n }\n };\n TextFieldBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n };\n TextFieldBase.prototype.getSnapshotBeforeUpdate = function (prevProps, prevState) {\n return {\n selection: [this.selectionStart, this.selectionEnd],\n };\n };\n TextFieldBase.prototype.componentDidUpdate = function (prevProps, prevState, snapshot) {\n var props = this.props;\n var _a = (snapshot || {}).selection, selection = _a === void 0 ? [null, null] : _a;\n var start = selection[0], end = selection[1];\n if (!!prevProps.multiline !== !!props.multiline && prevState.isFocused) {\n // The text field has just changed between single- and multi-line, so we need to reset focus\n // and selection/cursor.\n this.focus();\n if (start !== null && end !== null && start >= 0 && end >= 0) {\n this.setSelectionRange(start, end);\n }\n }\n var prevValue = _getValue(prevProps, prevState);\n var value = this.value;\n if (prevValue !== value) {\n // Handle controlled/uncontrolled warnings and status\n this._warnControlledUsage(prevProps);\n // Clear error message if needed\n // TODO: is there any way to do this without an extra render?\n if (this.state.errorMessage && !props.errorMessage) {\n this.setState({ errorMessage: '' });\n }\n // Adjust height if needed based on new value\n this._adjustInputHeight();\n // Reset the record of the last value seen by a change/input event\n this._lastChangeValue = undefined;\n // TODO: #5875 added logic to trigger validation in componentWillReceiveProps and other places.\n // This seems a bit odd and hard to integrate with the new approach.\n // (Starting to think we should just put the validation logic in a separate wrapper component...?)\n if (_shouldValidateAllChanges(props)) {\n this._delayedValidate(value);\n }\n }\n };\n TextFieldBase.prototype.render = function () {\n var _a = this.props, borderless = _a.borderless, className = _a.className, disabled = _a.disabled, iconProps = _a.iconProps, inputClassName = _a.inputClassName, label = _a.label, multiline = _a.multiline, required = _a.required, underlined = _a.underlined, prefix = _a.prefix, resizable = _a.resizable, suffix = _a.suffix, theme = _a.theme, styles = _a.styles, autoAdjustHeight = _a.autoAdjustHeight, canRevealPassword = _a.canRevealPassword, type = _a.type, _b = _a.onRenderPrefix, onRenderPrefix = _b === void 0 ? this._onRenderPrefix : _b, _c = _a.onRenderSuffix, onRenderSuffix = _c === void 0 ? this._onRenderSuffix : _c, _d = _a.onRenderLabel, onRenderLabel = _d === void 0 ? this._onRenderLabel : _d, _e = _a.onRenderDescription, onRenderDescription = _e === void 0 ? this._onRenderDescription : _e;\n var _f = this.state, isFocused = _f.isFocused, isRevealingPassword = _f.isRevealingPassword;\n var errorMessage = this._errorMessage;\n var hasRevealButton = !!canRevealPassword && type === 'password' && _browserNeedsRevealButton();\n var classNames = (this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n disabled: disabled,\n focused: isFocused,\n required: required,\n multiline: multiline,\n hasLabel: !!label,\n hasErrorMessage: !!errorMessage,\n borderless: borderless,\n resizable: resizable,\n hasIcon: !!iconProps,\n underlined: underlined,\n inputClassName: inputClassName,\n autoAdjustHeight: autoAdjustHeight,\n hasRevealButton: hasRevealButton,\n }));\n return (React.createElement(\"div\", { className: classNames.root },\n React.createElement(\"div\", { className: classNames.wrapper },\n onRenderLabel(this.props, this._onRenderLabel),\n React.createElement(\"div\", { className: classNames.fieldGroup },\n (prefix !== undefined || this.props.onRenderPrefix) && (React.createElement(\"div\", { className: classNames.prefix }, onRenderPrefix(this.props, this._onRenderPrefix))),\n multiline ? this._renderTextArea() : this._renderInput(),\n iconProps && React.createElement(Icon, __assign({ className: classNames.icon }, iconProps)),\n hasRevealButton && (\n // Explicitly set type=\"button\" since the default button type within a form is \"submit\"\n React.createElement(\"button\", { className: classNames.revealButton, onClick: this._onRevealButtonClick, type: \"button\" },\n React.createElement(\"span\", { className: classNames.revealSpan },\n React.createElement(Icon, { className: classNames.revealIcon, iconName: isRevealingPassword ? HIDE_ICON_NAME : REVEAL_ICON_NAME })))),\n (suffix !== undefined || this.props.onRenderSuffix) && (React.createElement(\"div\", { className: classNames.suffix }, onRenderSuffix(this.props, this._onRenderSuffix))))),\n this._isDescriptionAvailable && (React.createElement(\"span\", { id: this._descriptionId },\n onRenderDescription(this.props, this._onRenderDescription),\n errorMessage && (React.createElement(\"div\", { role: \"alert\" },\n React.createElement(DelayedRender, null,\n React.createElement(\"p\", { className: classNames.errorMessage },\n React.createElement(\"span\", { \"data-automation-id\": \"error-message\" }, errorMessage)))))))));\n };\n /**\n * Sets focus on the text field\n */\n TextFieldBase.prototype.focus = function () {\n if (this._textElement.current) {\n this._textElement.current.focus();\n }\n };\n /**\n * Blurs the text field.\n */\n TextFieldBase.prototype.blur = function () {\n if (this._textElement.current) {\n this._textElement.current.blur();\n }\n };\n /**\n * Selects the text field\n */\n TextFieldBase.prototype.select = function () {\n if (this._textElement.current) {\n this._textElement.current.select();\n }\n };\n /**\n * Sets the selection start of the text field to a specified value\n */\n TextFieldBase.prototype.setSelectionStart = function (value) {\n if (this._textElement.current) {\n this._textElement.current.selectionStart = value;\n }\n };\n /**\n * Sets the selection end of the text field to a specified value\n */\n TextFieldBase.prototype.setSelectionEnd = function (value) {\n if (this._textElement.current) {\n this._textElement.current.selectionEnd = value;\n }\n };\n Object.defineProperty(TextFieldBase.prototype, \"selectionStart\", {\n /**\n * Gets the selection start of the text field\n */\n get: function () {\n return this._textElement.current ? this._textElement.current.selectionStart : -1;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TextFieldBase.prototype, \"selectionEnd\", {\n /**\n * Gets the selection end of the text field\n */\n get: function () {\n return this._textElement.current ? this._textElement.current.selectionEnd : -1;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Sets the start and end positions of a selection in a text field.\n * @param start - Index of the start of the selection.\n * @param end - Index of the end of the selection.\n */\n TextFieldBase.prototype.setSelectionRange = function (start, end) {\n if (this._textElement.current) {\n this._textElement.current.setSelectionRange(start, end);\n }\n };\n TextFieldBase.prototype._warnControlledUsage = function (prevProps) {\n // Show warnings if props are being used in an invalid way\n warnControlledUsage({\n componentId: this._id,\n componentName: COMPONENT_NAME,\n props: this.props,\n oldProps: prevProps,\n valueProp: 'value',\n defaultValueProp: 'defaultValue',\n onChangeProp: 'onChange',\n readOnlyProp: 'readOnly',\n });\n if (this.props.value === null && !this._hasWarnedNullValue) {\n this._hasWarnedNullValue = true;\n warn(\"Warning: 'value' prop on '\" + COMPONENT_NAME + \"' should not be null. Consider using an \" +\n 'empty string to clear the component or undefined to indicate an uncontrolled component.');\n }\n };\n Object.defineProperty(TextFieldBase.prototype, \"_id\", {\n /** Returns `props.id` if available, or a fallback if not. */\n get: function () {\n return this.props.id || this._fallbackId;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TextFieldBase.prototype, \"_isControlled\", {\n get: function () {\n return isControlled(this.props, 'value');\n },\n enumerable: true,\n configurable: true\n });\n TextFieldBase.prototype._onRenderPrefix = function (props) {\n var prefix = props.prefix;\n return React.createElement(\"span\", { style: { paddingBottom: '1px' } }, prefix);\n };\n TextFieldBase.prototype._onRenderSuffix = function (props) {\n var suffix = props.suffix;\n return React.createElement(\"span\", { style: { paddingBottom: '1px' } }, suffix);\n };\n Object.defineProperty(TextFieldBase.prototype, \"_errorMessage\", {\n /**\n * Current error message from either `props.errorMessage` or the result of `props.onGetErrorMessage`.\n *\n * - If there is no validation error or we have not validated the input value, errorMessage is an empty string.\n * - If we have done the validation and there is validation error, errorMessage is the validation error message.\n */\n get: function () {\n var _a = this.props.errorMessage, errorMessage = _a === void 0 ? this.state.errorMessage : _a;\n return errorMessage || '';\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TextFieldBase.prototype, \"_isDescriptionAvailable\", {\n /**\n * If a custom description render function is supplied then treat description as always available.\n * Otherwise defer to the presence of description or error message text.\n */\n get: function () {\n var props = this.props;\n return !!(props.onRenderDescription || props.description || this._errorMessage);\n },\n enumerable: true,\n configurable: true\n });\n TextFieldBase.prototype._renderTextArea = function () {\n var textAreaProps = getNativeProps(this.props, textAreaProperties, ['defaultValue']);\n var ariaLabelledBy = this.props['aria-labelledby'] || (this.props.label ? this._labelId : undefined);\n return (React.createElement(\"textarea\", __assign({ id: this._id }, textAreaProps, { ref: this._textElement, value: this.value || '', onInput: this._onInputChange, onChange: this._onInputChange, className: this._classNames.field, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": this._isDescriptionAvailable ? this._descriptionId : this.props['aria-describedby'], \"aria-invalid\": !!this._errorMessage, \"aria-label\": this.props.ariaLabel, readOnly: this.props.readOnly, onFocus: this._onFocus, onBlur: this._onBlur })));\n };\n TextFieldBase.prototype._renderInput = function () {\n var _a;\n var inputProps = getNativeProps(this.props, inputProperties, [\n 'defaultValue',\n 'type',\n ]);\n var ariaLabelledBy = this.props['aria-labelledby'] || (this.props.label ? this._labelId : undefined);\n var type = this.state.isRevealingPassword ? 'text' : (_a = this.props.type, (_a !== null && _a !== void 0 ? _a : 'text'));\n return (React.createElement(\"input\", __assign({ type: type, id: this._id, \"aria-labelledby\": ariaLabelledBy }, inputProps, { ref: this._textElement, value: this.value || '', onInput: this._onInputChange, onChange: this._onInputChange, className: this._classNames.field, \"aria-label\": this.props.ariaLabel, \"aria-describedby\": this._isDescriptionAvailable ? this._descriptionId : this.props['aria-describedby'], \"aria-invalid\": !!this._errorMessage, readOnly: this.props.readOnly, onFocus: this._onFocus, onBlur: this._onBlur })));\n };\n TextFieldBase.prototype._validate = function (value) {\n var _this = this;\n // In case _validate is called again while validation promise is executing\n if (this._latestValidateValue === value && _shouldValidateAllChanges(this.props)) {\n return;\n }\n this._latestValidateValue = value;\n var onGetErrorMessage = this.props.onGetErrorMessage;\n var result = onGetErrorMessage && onGetErrorMessage(value || '');\n if (result !== undefined) {\n if (typeof result === 'string' || !('then' in result)) {\n this.setState({ errorMessage: result });\n this._notifyAfterValidate(value, result);\n }\n else {\n var currentValidation_1 = ++this._lastValidation;\n result.then(function (errorMessage) {\n if (currentValidation_1 === _this._lastValidation) {\n _this.setState({ errorMessage: errorMessage });\n }\n _this._notifyAfterValidate(value, errorMessage);\n });\n }\n }\n else {\n this._notifyAfterValidate(value, '');\n }\n };\n TextFieldBase.prototype._notifyAfterValidate = function (value, errorMessage) {\n if (value === this.value && this.props.onNotifyValidationResult) {\n this.props.onNotifyValidationResult(errorMessage, value);\n }\n };\n TextFieldBase.prototype._adjustInputHeight = function () {\n if (this._textElement.current && this.props.autoAdjustHeight && this.props.multiline) {\n var textField = this._textElement.current;\n textField.style.height = '';\n textField.style.height = textField.scrollHeight + 'px';\n }\n };\n TextFieldBase.defaultProps = {\n resizable: true,\n deferredValidationTime: 200,\n validateOnLoad: true,\n canRevealPassword: false,\n };\n return TextFieldBase;\n}(React.Component));\nexport { TextFieldBase };\n/** Get the value from the given state and props (converting from number to string if needed) */\nfunction _getValue(props, state) {\n var _a = props.value, value = _a === void 0 ? state.uncontrolledValue : _a;\n if (typeof value === 'number') {\n // not allowed per typings, but happens anyway\n return String(value);\n }\n return value;\n}\n/**\n * If `validateOnFocusIn` or `validateOnFocusOut` is true, validation should run **only** on that event.\n * Otherwise, validation should run on every change.\n */\nfunction _shouldValidateAllChanges(props) {\n return !(props.validateOnFocusIn || props.validateOnFocusOut);\n}\n// Only calculate this once across all TextFields, since will stay the same\nvar __browserNeedsRevealButton;\nfunction _browserNeedsRevealButton() {\n var _a;\n if (typeof __browserNeedsRevealButton !== 'boolean') {\n var win = getWindow();\n if ((_a = win) === null || _a === void 0 ? void 0 : _a.navigator) {\n // Edge, Chromium Edge\n var isEdge = /Edg/.test(win.navigator.userAgent || '');\n __browserNeedsRevealButton = !(isIE11() || isEdge);\n }\n else {\n __browserNeedsRevealButton = true;\n }\n }\n return __browserNeedsRevealButton;\n}\n//# sourceMappingURL=TextField.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "index": 31, - "index2": 111, - "size": 274, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "issuerId": "BZ1n", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "BZ1n", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "53:35-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../TextField", - "loc": "177:52-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "491:43-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "506:43-52" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../TextField", - "loc": "307:36-45" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField", - "loc": "1:0-28" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TextField", - "loc": "1:0-28" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/TextField", - "loc": "126:32-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony side effect evaluation", - "userRequest": "../TextField", - "loc": "3:0-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "../TextField", - "loc": "210:36-45" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "63:32-41" - } - ], - "usedExports": [ - "TextField" - ], - "providedExports": [ - "TextField" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { styled } from '../../Utilities';\nimport { TextFieldBase } from './TextField.base';\nimport { getStyles } from './TextField.styles';\nexport var TextField = styled(TextFieldBase, getStyles, undefined, {\n scope: 'TextField',\n});\n//# sourceMappingURL=TextField.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "index": 121, - "index2": 110, - "size": 14507, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "BZ1n", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField.styles", - "loc": "3:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony import specifier", - "userRequest": "./TextField.styles", - "loc": "4:45-54" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign } from \"tslib\";\nimport { AnimationClassNames, getGlobalClassNames, getInputFocusStyle, HighContrastSelector, normalize, getPlaceholderStyles, IconFontSizes, getHighContrastNoAdjustStyle, } from '../../Styling';\nvar globalClassNames = {\n root: 'ms-TextField',\n description: 'ms-TextField-description',\n errorMessage: 'ms-TextField-errorMessage',\n field: 'ms-TextField-field',\n fieldGroup: 'ms-TextField-fieldGroup',\n prefix: 'ms-TextField-prefix',\n suffix: 'ms-TextField-suffix',\n wrapper: 'ms-TextField-wrapper',\n revealButton: 'ms-TextField-reveal',\n multiline: 'ms-TextField--multiline',\n borderless: 'ms-TextField--borderless',\n underlined: 'ms-TextField--underlined',\n unresizable: 'ms-TextField--unresizable',\n required: 'is-required',\n disabled: 'is-disabled',\n active: 'is-active',\n};\nfunction getLabelStyles(props) {\n var underlined = props.underlined, disabled = props.disabled, focused = props.focused, theme = props.theme;\n var palette = theme.palette, fonts = theme.fonts;\n return function () {\n var _a;\n return ({\n root: [\n underlined &&\n disabled && {\n color: palette.neutralTertiary,\n },\n underlined && {\n fontSize: fonts.medium.fontSize,\n marginRight: 8,\n paddingLeft: 12,\n paddingRight: 0,\n lineHeight: '22px',\n height: 32,\n },\n underlined &&\n focused && {\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n height: 31,\n },\n _a),\n },\n ],\n });\n };\n}\nexport function getStyles(props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;\n var theme = props.theme, className = props.className, disabled = props.disabled, focused = props.focused, required = props.required, multiline = props.multiline, hasLabel = props.hasLabel, borderless = props.borderless, underlined = props.underlined, hasIcon = props.hasIcon, resizable = props.resizable, hasErrorMessage = props.hasErrorMessage, inputClassName = props.inputClassName, autoAdjustHeight = props.autoAdjustHeight, hasRevealButton = props.hasRevealButton;\n var semanticColors = theme.semanticColors, effects = theme.effects, fonts = theme.fonts;\n var classNames = getGlobalClassNames(globalClassNames, theme);\n var fieldPrefixSuffix = {\n // Suffix/Prefix are not editable so the disabled slot perfectly fits.\n background: semanticColors.disabledBackground,\n color: !disabled ? semanticColors.inputPlaceholderText : semanticColors.disabledText,\n display: 'flex',\n alignItems: 'center',\n padding: '0 10px',\n lineHeight: 1,\n whiteSpace: 'nowrap',\n flexShrink: 0,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n background: 'Window',\n color: disabled ? 'GrayText' : 'WindowText',\n },\n _a),\n };\n // placeholder style constants\n var placeholderStyles = [\n fonts.medium,\n {\n color: semanticColors.inputPlaceholderText,\n opacity: 1,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'GrayText',\n },\n _b),\n },\n ];\n var disabledPlaceholderStyles = {\n color: semanticColors.disabledText,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'GrayText',\n },\n _c),\n };\n return {\n root: [\n classNames.root,\n fonts.medium,\n required && classNames.required,\n disabled && classNames.disabled,\n focused && classNames.active,\n multiline && classNames.multiline,\n borderless && classNames.borderless,\n underlined && classNames.underlined,\n normalize,\n {\n position: 'relative',\n },\n className,\n ],\n wrapper: [\n classNames.wrapper,\n underlined && [\n {\n display: 'flex',\n borderBottom: \"1px solid \" + (!hasErrorMessage ? semanticColors.inputBorder : semanticColors.errorText),\n width: '100%',\n },\n disabled && {\n borderBottomColor: semanticColors.disabledBackground,\n selectors: (_d = {},\n _d[HighContrastSelector] = __assign({ borderColor: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _d),\n },\n !disabled && {\n selectors: {\n ':hover': {\n borderBottomColor: !hasErrorMessage ? semanticColors.inputBorderHovered : semanticColors.errorText,\n selectors: (_e = {},\n _e[HighContrastSelector] = __assign({ borderBottomColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _e),\n },\n },\n },\n focused && [\n {\n position: 'relative',\n },\n getInputFocusStyle(!hasErrorMessage ? semanticColors.inputFocusBorderAlt : semanticColors.errorText, 0, 'borderBottom'),\n ],\n ],\n ],\n fieldGroup: [\n classNames.fieldGroup,\n normalize,\n {\n border: \"1px solid \" + semanticColors.inputBorder,\n borderRadius: effects.roundedCorner2,\n background: semanticColors.inputBackground,\n cursor: 'text',\n height: 32,\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'stretch',\n position: 'relative',\n },\n multiline && {\n minHeight: '60px',\n height: 'auto',\n display: 'flex',\n },\n !focused &&\n !disabled && {\n selectors: {\n ':hover': {\n borderColor: semanticColors.inputBorderHovered,\n selectors: (_f = {},\n _f[HighContrastSelector] = __assign({ borderColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _f),\n },\n },\n },\n focused &&\n !underlined &&\n getInputFocusStyle(!hasErrorMessage ? semanticColors.inputFocusBorderAlt : semanticColors.errorText, effects.roundedCorner2),\n disabled && {\n borderColor: semanticColors.disabledBackground,\n selectors: (_g = {},\n _g[HighContrastSelector] = __assign({ borderColor: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _g),\n cursor: 'default',\n },\n borderless && {\n border: 'none',\n },\n borderless &&\n focused && {\n border: 'none',\n selectors: {\n ':after': {\n border: 'none',\n },\n },\n },\n underlined && {\n flex: '1 1 0px',\n border: 'none',\n textAlign: 'left',\n },\n underlined &&\n disabled && {\n backgroundColor: 'transparent',\n },\n hasErrorMessage &&\n !underlined && {\n borderColor: semanticColors.errorText,\n selectors: {\n '&:hover': {\n borderColor: semanticColors.errorText,\n },\n },\n },\n !hasLabel &&\n required && {\n selectors: (_h = {\n ':before': {\n content: \"'*'\",\n color: semanticColors.errorText,\n position: 'absolute',\n top: -5,\n right: -10,\n }\n },\n _h[HighContrastSelector] = {\n selectors: {\n ':before': {\n color: 'WindowText',\n right: -14,\n },\n },\n },\n _h),\n },\n ],\n field: [\n fonts.medium,\n classNames.field,\n normalize,\n {\n borderRadius: 0,\n border: 'none',\n background: 'none',\n backgroundColor: 'transparent',\n color: semanticColors.inputText,\n padding: '0 8px',\n width: '100%',\n minWidth: 0,\n textOverflow: 'ellipsis',\n outline: 0,\n selectors: (_j = {\n '&:active, &:focus, &:hover': { outline: 0 },\n '::-ms-clear': {\n display: 'none',\n }\n },\n _j[HighContrastSelector] = {\n background: 'Window',\n color: disabled ? 'GrayText' : 'WindowText',\n },\n _j),\n },\n getPlaceholderStyles(placeholderStyles),\n multiline &&\n !resizable && [\n classNames.unresizable,\n {\n resize: 'none',\n },\n ],\n multiline && {\n minHeight: 'inherit',\n lineHeight: 17,\n flexGrow: 1,\n paddingTop: 6,\n paddingBottom: 6,\n overflow: 'auto',\n width: '100%',\n },\n multiline &&\n autoAdjustHeight && {\n overflow: 'hidden',\n },\n hasIcon &&\n !hasRevealButton && {\n paddingRight: 24,\n },\n multiline &&\n hasIcon && {\n paddingRight: 40,\n },\n disabled && [\n {\n backgroundColor: semanticColors.disabledBackground,\n color: semanticColors.disabledText,\n borderColor: semanticColors.disabledBackground,\n },\n getPlaceholderStyles(disabledPlaceholderStyles),\n ],\n underlined && {\n textAlign: 'left',\n },\n focused &&\n !borderless && {\n selectors: (_k = {},\n _k[HighContrastSelector] = {\n paddingLeft: 11,\n paddingRight: 11,\n },\n _k),\n },\n focused &&\n multiline &&\n !borderless && {\n selectors: (_l = {},\n _l[HighContrastSelector] = {\n paddingTop: 4,\n },\n _l),\n },\n inputClassName,\n ],\n icon: [\n multiline && {\n paddingRight: 24,\n alignItems: 'flex-end',\n },\n {\n pointerEvents: 'none',\n position: 'absolute',\n bottom: 6,\n right: 8,\n top: 'auto',\n fontSize: IconFontSizes.medium,\n lineHeight: 18,\n },\n disabled && {\n color: semanticColors.disabledText,\n },\n ],\n description: [\n classNames.description,\n {\n color: semanticColors.bodySubtext,\n fontSize: fonts.xSmall.fontSize,\n },\n ],\n errorMessage: [\n classNames.errorMessage,\n AnimationClassNames.slideDownIn20,\n fonts.small,\n {\n color: semanticColors.errorText,\n margin: 0,\n paddingTop: 5,\n display: 'flex',\n alignItems: 'center',\n },\n ],\n prefix: [classNames.prefix, fieldPrefixSuffix],\n suffix: [classNames.suffix, fieldPrefixSuffix],\n revealButton: [\n classNames.revealButton,\n 'ms-Button',\n 'ms-Button--icon',\n {\n height: 30,\n width: 32,\n border: 'none',\n padding: '0px 4px',\n backgroundColor: 'transparent',\n color: semanticColors.link,\n selectors: {\n ':hover': {\n outline: 0,\n color: semanticColors.primaryButtonBackgroundHovered,\n backgroundColor: semanticColors.buttonBackgroundHovered,\n selectors: (_m = {},\n _m[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _m),\n },\n ':focus': { outline: 0 },\n },\n },\n hasIcon && {\n marginRight: 28,\n },\n ],\n revealSpan: {\n display: 'flex',\n height: '100%',\n alignItems: 'center',\n },\n revealIcon: {\n margin: '0px 4px',\n pointerEvents: 'none',\n bottom: 6,\n right: 8,\n top: 'auto',\n fontSize: IconFontSizes.medium,\n lineHeight: 18,\n },\n subComponentStyles: {\n label: getLabelStyles(props),\n },\n };\n}\n//# sourceMappingURL=TextField.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/controlled.js", - "name": "./node_modules/@uifabric/utilities/lib/controlled.js", - "index": 119, - "index2": 107, - "size": 541, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "module": "./node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "type": "harmony side effect evaluation", - "userRequest": "../controlled", - "loc": "2:0-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "315:19-31" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "160:11-23" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./controlled", - "loc": "17:0-29" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./controlled", - "loc": "17:0-29" - } - ], - "usedExports": [ - "isControlled" - ], - "providedExports": [ - "isControlled" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Determines whether a component is controlled.\n * @param props - Component props\n * @param valueProp - Prop containing the controlled value\n * @returns true if controlled, false if uncontrolled\n */\nexport function isControlled(props, valueProp) {\n // React's built-in considers a prop to be provided if its value is non-null/undefined.\n // Mirror that behavior here (rather than checking for just undefined).\n return props[valueProp] !== undefined && props[valueProp] !== null;\n}\n//# sourceMappingURL=controlled.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/ie11Detector.js", - "name": "./node_modules/@uifabric/utilities/lib/ie11Detector.js", - "index": 120, - "index2": 108, - "size": 385, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "443:43-49" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "27:16-22" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "85:18-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ie11Detector", - "loc": "58:0-31" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ie11Detector", - "loc": "58:0-31" - } - ], - "usedExports": [ - "isIE11" - ], - "providedExports": [ - "isIE11" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\nexport var isIE11 = function () {\n var _a, _b;\n var win = getWindow();\n if (!((_b = (_a = win) === null || _a === void 0 ? void 0 : _a.navigator) === null || _b === void 0 ? void 0 : _b.userAgent)) {\n return false;\n }\n return win.navigator.userAgent.indexOf('rv:11.0') > -1;\n};\n//# sourceMappingURL=ie11Detector.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "index": 118, - "index2": 106, - "size": 4599, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "289:8-27" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnControlledUsage", - "loc": "3:0-43" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnControlledUsage", - "loc": "3:0-43" - } - ], - "usedExports": [ - "warnControlledUsage" - ], - "providedExports": [ - "resetControlledWarnings", - "warnControlledUsage" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { warn } from './warn';\nimport { isControlled as checkIsControlled } from '../controlled';\nvar warningsMap;\nif (process.env.NODE_ENV !== 'production') {\n warningsMap = {\n valueOnChange: {},\n valueDefaultValue: {},\n controlledToUncontrolled: {},\n uncontrolledToControlled: {},\n };\n}\n/** Reset controlled usage warnings for testing purposes. */\nexport function resetControlledWarnings() {\n if (process.env.NODE_ENV !== 'production') {\n warningsMap.valueOnChange = {};\n warningsMap.valueDefaultValue = {};\n warningsMap.controlledToUncontrolled = {};\n warningsMap.uncontrolledToControlled = {};\n }\n}\n/**\n * Check for and warn on the following error conditions with a form component:\n * - A value prop is provided (indicated it's being used as controlled) without a change handler,\n * and the component is not read-only\n * - Both the value and defaultValue props are provided\n * - The component is attempting to switch between controlled and uncontrolled\n *\n * The messages mimic the warnings React gives for these error conditions on input elements.\n * The warning will only be displayed once per component ID.\n */\nexport function warnControlledUsage(params) {\n if (process.env.NODE_ENV !== 'production') {\n var componentId = params.componentId, componentName = params.componentName, defaultValueProp = params.defaultValueProp, props = params.props, oldProps = params.oldProps, onChangeProp = params.onChangeProp, readOnlyProp = params.readOnlyProp, valueProp = params.valueProp;\n // This warning logic closely follows what React does for native elements.\n var oldIsControlled = oldProps ? checkIsControlled(oldProps, valueProp) : undefined;\n var newIsControlled = checkIsControlled(props, valueProp);\n if (newIsControlled) {\n // onChange (or readOnly) must be provided if value is provided\n var hasOnChange = !!props[onChangeProp];\n var isReadOnly = !!(readOnlyProp && props[readOnlyProp]);\n if (!(hasOnChange || isReadOnly) && !warningsMap.valueOnChange[componentId]) {\n warningsMap.valueOnChange[componentId] = true;\n warn(\"Warning: You provided a '\" + valueProp + \"' prop to a \" + componentName + \" without an '\" + onChangeProp + \"' handler. \" +\n (\"This will render a read-only field. If the field should be mutable use '\" + defaultValueProp + \"'. \") +\n (\"Otherwise, set '\" + onChangeProp + \"'\" + (readOnlyProp ? \" or '\" + readOnlyProp + \"'\" : '') + \".\"));\n }\n // value and defaultValue are mutually exclusive\n var defaultValue = props[defaultValueProp];\n if (defaultValue !== undefined && defaultValue !== null && !warningsMap.valueDefaultValue[componentId]) {\n warningsMap.valueDefaultValue[componentId] = true;\n warn(\"Warning: You provided both '\" + valueProp + \"' and '\" + defaultValueProp + \"' to a \" + componentName + \". \" +\n (\"Form fields must be either controlled or uncontrolled (specify either the '\" + valueProp + \"' prop, \") +\n (\"or the '\" + defaultValueProp + \"' prop, but not both). Decide between using a controlled or uncontrolled \") +\n (componentName + \" and remove one of these props. More info: https://fb.me/react-controlled-components\"));\n }\n }\n // Warn if switching between uncontrolled and controlled. (One difference between this implementation\n // and React's is that if oldIsControlled is indeterminate and newIsControlled true, we don't warn.)\n if (oldProps && newIsControlled !== oldIsControlled) {\n var oldType = oldIsControlled ? 'a controlled' : 'an uncontrolled';\n var newType = oldIsControlled ? 'uncontrolled' : 'controlled';\n var warnMap = oldIsControlled ? warningsMap.controlledToUncontrolled : warningsMap.uncontrolledToControlled;\n if (!warnMap[componentId]) {\n warnMap[componentId] = true;\n warn(\"Warning: A component is changing \" + oldType + \" \" + componentName + \" to be \" + newType + \". \" +\n (componentName + \"s should not switch from controlled to uncontrolled (or vice versa). \") +\n \"Decide between using controlled or uncontrolled for the lifetime of the component. \" +\n \"More info: https://fb.me/react-controlled-components\");\n }\n }\n }\n}\n//# sourceMappingURL=warnControlledUsage.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js", - "index": 461, - "index2": 464, - "size": 483, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "issuerId": "O0oS", - "issuerName": "./node_modules/lodash/_defineProperty.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HOxn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Promise.js", - "module": "./node_modules/lodash/_Promise.js", - "moduleName": "./node_modules/lodash/_Promise.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "O0oS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "module": "./node_modules/lodash/_defineProperty.js", - "moduleName": "./node_modules/lodash/_defineProperty.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "Of+w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_WeakMap.js", - "module": "./node_modules/lodash/_WeakMap.js", - "moduleName": "./node_modules/lodash/_WeakMap.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "YESw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nativeCreate.js", - "module": "./node_modules/lodash/_nativeCreate.js", - "moduleName": "./node_modules/lodash/_nativeCreate.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "ebwN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Map.js", - "module": "./node_modules/lodash/_Map.js", - "moduleName": "./node_modules/lodash/_Map.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "tadb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_DataView.js", - "module": "./node_modules/lodash/_DataView.js", - "moduleName": "./node_modules/lodash/_DataView.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "yGk4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Set.js", - "module": "./node_modules/lodash/_Set.js", - "moduleName": "./node_modules/lodash/_Set.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var baseIsNative = require('./_baseIsNative'),\n getValue = require('./_getValue');\n\n/**\n * Gets the native function at `key` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the method to get.\n * @returns {*} Returns the function if it's native, else `undefined`.\n */\nfunction getNative(object, key) {\n var value = getValue(object, key);\n return baseIsNative(value) ? value : undefined;\n}\n\nmodule.exports = getNative;\n" - }, - { - "id": "DSRE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "name": "./node_modules/lodash/isBuffer.js", - "index": 503, - "index2": 495, - "size": 1114, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "issuerId": "b80T", - "issuerName": "./node_modules/lodash/_arrayLikeKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./isBuffer", - "loc": "17:15-36" - }, - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./isBuffer", - "loc": "4:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var root = require('./_root'),\n stubFalse = require('./stubFalse');\n\n/** Detect free variable `exports`. */\nvar freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Built-in value references. */\nvar Buffer = moduleExports ? root.Buffer : undefined;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;\n\n/**\n * Checks if `value` is a buffer.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n * @example\n *\n * _.isBuffer(new Buffer(2));\n * // => true\n *\n * _.isBuffer(new Uint8Array(2));\n * // => false\n */\nvar isBuffer = nativeIsBuffer || stubFalse;\n\nmodule.exports = isBuffer;\n" - }, - { - "id": "DU53", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/osDetector.js", - "name": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "index": 219, - "index2": 202, - "size": 527, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "157:67-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "186:62-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "855:47-52" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:9-14" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./osDetector", - "loc": "45:0-29" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./osDetector", - "loc": "45:0-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "605:64-69" - } - ], - "usedExports": [ - "isMac" - ], - "providedExports": [ - "isMac" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\nvar isMacResult;\n/**\n * Returns true if the user is on a Mac. Caches the result value.\n * @param reset - Reset the cached result value (mainly for testing).\n */\nexport function isMac(reset) {\n if (typeof isMacResult === 'undefined' || reset) {\n var win = getWindow();\n var userAgent = win && win.navigator.userAgent;\n isMacResult = !!userAgent && userAgent.indexOf('Macintosh') !== -1;\n }\n return !!isMacResult;\n}\n//# sourceMappingURL=osDetector.js.map" - }, - { - "id": "DeEv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "index": 107, - "index2": 104, - "size": 4729, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "8:50-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "15:31-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "24:88-92" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "25:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Icon", - "loc": "29:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "33:47-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "34:119-123" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "48:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "49:43-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "53:113-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "74:154-158" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "74:293-297" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "81:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "122:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "123:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "124:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "127:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "128:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "154:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "203:53-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "208:48-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "284:189-193" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "284:268-272" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "465:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "557:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "567:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "573:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "578:65-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:160-164" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:268-272" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:377-381" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:479-483" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:32-36" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "65:36-40" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "156:36-40" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "255:48-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "261:48-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "263:48-52" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "285:49-53" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "301:49-53" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "126:32-36" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "170:32-36" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "68:108-112" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "49:44-48" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "174:48-52" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "180:48-52" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "221:58-62" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "31:36-40" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "69:36-40" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "74:32-36" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "59:40-44" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "29:46-50" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "11:28-32" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "12:48-52" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "31:32-36" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "35:35-39" - } - ], - "usedExports": [ - "Icon" - ], - "providedExports": [ - "Icon" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.types.js", - "index": 110, - "index2": 96, - "size": 906, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.types", - "loc": "3:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "./Icon.types", - "loc": "36:59-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "./Icon.types", - "loc": "36:101-109" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.types", - "loc": "3:0-29" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon.types", - "loc": "3:0-29" - } - ], - "usedExports": [ - "IconType" - ], - "providedExports": [ - "IconType" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n * {@docCategory Icon}\n */\nexport var IconType;\n(function (IconType) {\n /**\n * Render using the fabric icon font.\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"default\"] = 0] = \"default\";\n /**\n * Render using an image, where imageProps would be used.\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"image\"] = 1] = \"image\";\n /**\n * Deprecated, use `default`.\n * @deprecated Use `default`.\n */\n IconType[IconType[\"Default\"] = 100000] = \"Default\";\n /**\n * Deprecated, use `image`.\n * @deprecated Use `image`.\n */\n IconType[IconType[\"Image\"] = 100001] = \"Image\";\n})(IconType || (IconType = {}));\n//# sourceMappingURL=Icon.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "index": 108, - "index2": 103, - "size": 3282, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.base", - "loc": "2:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.base", - "loc": "9:25-33" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.base", - "loc": "2:0-28" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon.base", - "loc": "2:0-28" - } - ], - "usedExports": [ - "IconBase" - ], - "providedExports": [ - "IconBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { IconType } from './Icon.types';\nimport { Image } from '../Image/Image';\nimport { ImageLoadState } from '../Image/Image.types';\nimport { getNativeProps, htmlElementProperties, classNamesFunction } from '../../Utilities';\nimport { getIconContent } from './FontIcon';\nvar getClassNames = classNamesFunction({\n // Icon is used a lot by other components.\n // It's likely to see expected cases which pass different className to the Icon.\n // Therefore setting a larger cache size.\n cacheSize: 100,\n});\nvar IconBase = /** @class */ (function (_super) {\n __extends(IconBase, _super);\n function IconBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onImageLoadingStateChange = function (state) {\n if (_this.props.imageProps && _this.props.imageProps.onLoadingStateChange) {\n _this.props.imageProps.onLoadingStateChange(state);\n }\n if (state === ImageLoadState.error) {\n _this.setState({ imageLoadError: true });\n }\n };\n _this.state = {\n imageLoadError: false,\n };\n return _this;\n }\n IconBase.prototype.render = function () {\n var _a = this.props, children = _a.children, className = _a.className, styles = _a.styles, iconName = _a.iconName, imageErrorAs = _a.imageErrorAs, theme = _a.theme;\n var isPlaceholder = typeof iconName === 'string' && iconName.length === 0;\n var isImage = \n // eslint-disable-next-line deprecation/deprecation\n !!this.props.imageProps || this.props.iconType === IconType.image || this.props.iconType === IconType.Image;\n var iconContent = getIconContent(iconName) || {};\n var iconClassName = iconContent.iconClassName, iconContentChildren = iconContent.children;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n iconClassName: iconClassName,\n isImage: isImage,\n isPlaceholder: isPlaceholder,\n });\n var RootType = isImage ? 'span' : 'i';\n var nativeProps = getNativeProps(this.props, htmlElementProperties, [\n 'aria-label',\n ]);\n var imageLoadError = this.state.imageLoadError;\n var imageProps = __assign(__assign({}, this.props.imageProps), { onLoadingStateChange: this._onImageLoadingStateChange });\n var ImageType = (imageLoadError && imageErrorAs) || Image;\n // eslint-disable-next-line deprecation/deprecation\n var ariaLabel = this.props['aria-label'] || this.props.ariaLabel;\n var containerProps = ariaLabel\n ? {\n 'aria-label': ariaLabel,\n }\n : {\n 'aria-hidden': this.props['aria-labelledby'] || imageProps['aria-labelledby'] ? false : true,\n };\n return (React.createElement(RootType, __assign({ \"data-icon-name\": iconName }, containerProps, nativeProps, { className: classNames.root }), isImage ? React.createElement(ImageType, __assign({}, imageProps)) : children || iconContentChildren));\n };\n return IconBase;\n}(React.Component));\nexport { IconBase };\n//# sourceMappingURL=Icon.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "index": 107, - "index2": 104, - "size": 496, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerId": "d6Sr", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "8:50-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "15:31-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "24:88-92" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "25:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Icon", - "loc": "29:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "33:47-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "34:119-123" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "48:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "49:43-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "53:113-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "74:154-158" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "74:293-297" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "81:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "122:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "123:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "124:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "127:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "128:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "154:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "203:53-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "208:48-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "284:189-193" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "284:268-272" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "465:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "557:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "567:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "573:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "578:65-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:160-164" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:268-272" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:377-381" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:479-483" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:32-36" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "65:36-40" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "156:36-40" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "255:48-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "261:48-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "263:48-52" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "285:49-53" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "301:49-53" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "126:32-36" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "170:32-36" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "68:108-112" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "49:44-48" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "174:48-52" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "180:48-52" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "221:58-62" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "31:36-40" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "69:36-40" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "74:32-36" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "59:40-44" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "29:46-50" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "11:28-32" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "12:48-52" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "31:32-36" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "35:35-39" - } - ], - "usedExports": [ - "Icon" - ], - "providedExports": [ - "Icon" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { IconBase } from './Icon.base';\nimport { getStyles } from './Icon.styles';\n/**\n * Legacy Icon component which can be targeted by customization. It's recommended to use `FontIcon`\n * or `ImageIcon` instead, especially in scenarios where rendering performance is important.\n * {@docCategory Icon}\n */\nexport var Icon = styled(IconBase, getStyles, undefined, {\n scope: 'Icon',\n}, true);\nIcon.displayName = 'Icon';\n//# sourceMappingURL=Icon.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "Dw+G", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignIn.js", - "name": "./node_modules/lodash/_baseAssignIn.js", - "index": 517, - "index2": 513, - "size": 482, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_baseAssignIn", - "loc": "5:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var copyObject = require('./_copyObject'),\n keysIn = require('./keysIn');\n\n/**\n * The base implementation of `_.assignIn` without support for multiple sources\n * or `customizer` functions.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @returns {Object} Returns `object`.\n */\nfunction baseAssignIn(object, source) {\n return object && copyObject(source, keysIn(source), object);\n}\n\nmodule.exports = baseAssignIn;\n" - }, - { - "id": "E2jh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isMasked.js", - "name": "./node_modules/lodash/_isMasked.js", - "index": 471, - "index2": 460, - "size": 564, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "issuerId": "NKxu", - "issuerName": "./node_modules/lodash/_baseIsNative.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js" - }, - { - "id": "NKxu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "name": "./node_modules/lodash/_baseIsNative.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NKxu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "module": "./node_modules/lodash/_baseIsNative.js", - "moduleName": "./node_modules/lodash/_baseIsNative.js", - "type": "cjs require", - "userRequest": "./_isMasked", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 10, - "source": "var coreJsData = require('./_coreJsData');\n\n/** Used to detect methods masquerading as native. */\nvar maskSrcKey = (function() {\n var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n return uid ? ('Symbol(src)_1.' + uid) : '';\n}());\n\n/**\n * Checks if `func` has its source masked.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n */\nfunction isMasked(func) {\n return !!maskSrcKey && (maskSrcKey in func);\n}\n\nmodule.exports = isMasked;\n" - }, - { - "id": "EEGq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbolsIn.js", - "name": "./node_modules/lodash/_copySymbolsIn.js", - "index": 527, - "index2": 523, - "size": 470, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_copySymbolsIn", - "loc": "9:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var copyObject = require('./_copyObject'),\n getSymbolsIn = require('./_getSymbolsIn');\n\n/**\n * Copies own and inherited symbols of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy symbols from.\n * @param {Object} [object={}] The object to copy symbols to.\n * @returns {Object} Returns `object`.\n */\nfunction copySymbolsIn(source, object) {\n return copyObject(source, getSymbolsIn(source), object);\n}\n\nmodule.exports = copySymbolsIn;\n" - }, - { - "id": "EEdu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "index": 848, - "index2": 881, - "size": 4036, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerId": "Bd+z", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePicker", - "loc": "1:0-42" - }, - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldSitePicker", - "loc": "1:0-42" - } - ], - "usedExports": [ - "PropertyFieldSitePicker" - ], - "providedExports": [ - "PropertyFieldSitePicker" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as ReactDom from 'react-dom';\nimport { PropertyPaneFieldType } from '@microsoft/sp-property-pane';\nimport PropertyFieldSitePickerHost from './PropertyFieldSitePickerHost';\n/**\n * Represents a PropertyFieldSitePicker object\n */\nvar PropertyFieldSitePickerBuilder = /** @class */ (function () {\n /**\n * Constructor method\n */\n function PropertyFieldSitePickerBuilder(_targetProperty, _properties) {\n // Properties defined by IPropertyPaneField\n this.type = PropertyPaneFieldType.Custom;\n this.disabled = false;\n this.multiSelect = false;\n this.deferredValidationTime = 200;\n this.render = this.render.bind(this);\n this.label = _properties.label;\n this.targetProperty = _properties.targetProperty;\n this.properties = _properties;\n this.properties.onDispose = this.dispose;\n this.properties.onRender = this.render;\n this.onPropertyChange = _properties.onPropertyChange;\n this.context = _properties.context;\n this.initialSites = _properties.initialSites;\n this.customProperties = _properties.properties;\n this.key = _properties.key;\n this.onGetErrorMessage = _properties.onGetErrorMessage;\n this.trimDuplicates = _properties.trimDuplicates;\n this.additionalQuery = _properties.additionalQuery;\n if (typeof _properties.disabled !== 'undefined') {\n this.disabled = _properties.disabled;\n }\n if (_properties.deferredValidationTime) {\n this.deferredValidationTime = _properties.deferredValidationTime;\n }\n if (typeof _properties.multiSelect !== \"undefined\") {\n this.multiSelect = _properties.multiSelect;\n }\n }\n /**\n * Renders the PeoplePicker field content\n */\n PropertyFieldSitePickerBuilder.prototype.render = function (elem, ctx, changeCallback) {\n // Construct the JSX properties\n var element = React.createElement(PropertyFieldSitePickerHost, {\n label: this.label,\n disabled: this.disabled,\n targetProperty: this.targetProperty,\n initialSites: this.initialSites,\n multiSelect: this.multiSelect,\n onDispose: this.dispose,\n onRender: this.render,\n onChange: changeCallback,\n onPropertyChange: this.onPropertyChange,\n context: this.context,\n properties: this.customProperties,\n key: this.key,\n onGetErrorMessage: this.onGetErrorMessage,\n deferredValidationTime: this.deferredValidationTime,\n trimDuplicates: this.trimDuplicates,\n additionalQuery: this.additionalQuery\n });\n // Calls the REACT content generator\n ReactDom.render(element, elem);\n };\n /**\n * Disposes the current object\n */\n PropertyFieldSitePickerBuilder.prototype.dispose = function (elem) { };\n return PropertyFieldSitePickerBuilder;\n}());\n/**\n * Helper method to create a Site Picker on the PropertyPane.\n * @param targetProperty - Target property the site picker is associated to.\n * @param properties - Strongly typed site Picker properties.\n */\nexport function PropertyFieldSitePicker(targetProperty, properties) {\n // Calls the PropertyFieldSitePicker builder object\n // This object will simulate a PropertyFieldCustom to manage his rendering process\n return new PropertyFieldSitePickerBuilder(targetProperty, __assign(__assign({}, properties), { targetProperty: targetProperty, onDispose: null, onRender: null }));\n}\n//# sourceMappingURL=PropertyFieldSitePicker.js.map" - }, - { - "id": "Edjz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "index": 200, - "index2": 193, - "size": 5898, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "3:0-26" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "7:0-83" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "74:8-26" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "6:0-83" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "113:8-26" - }, - { - "moduleId": "ZZCj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": "ZZCj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "2:0-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "9:0-99" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "292:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "357:8-26" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "8:0-99" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "525:83-97" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "880:8-26" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "15:0-99" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "65:44-58" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "870:8-26" - } - ], - "usedExports": [ - "ResponsiveMode", - "withResponsiveMode" - ], - "providedExports": [ - "ResponsiveMode", - "setResponsiveMode", - "initializeResponsiveMode", - "getInitialResponsiveMode", - "withResponsiveMode", - "getResponsiveMode" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/EventGroup.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/hoistStatics.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "index": 200, - "index2": 193, - "size": 4773, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "3:0-26" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "7:0-83" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "74:8-26" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "6:0-83" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "113:8-26" - }, - { - "moduleId": "ZZCj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": "ZZCj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "2:0-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "9:0-99" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "292:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "357:8-26" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "8:0-99" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "525:83-97" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "880:8-26" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "15:0-99" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "65:44-58" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "870:8-26" - } - ], - "usedExports": [ - "ResponsiveMode", - "withResponsiveMode" - ], - "providedExports": [ - "ResponsiveMode", - "setResponsiveMode", - "initializeResponsiveMode", - "getInitialResponsiveMode", - "withResponsiveMode", - "getResponsiveMode" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseDecorator } from './BaseDecorator';\nimport { getWindow, hoistStatics, EventGroup } from '../../Utilities';\nimport { WindowContext } from '../../WindowProvider';\nexport var ResponsiveMode;\n(function (ResponsiveMode) {\n ResponsiveMode[ResponsiveMode[\"small\"] = 0] = \"small\";\n ResponsiveMode[ResponsiveMode[\"medium\"] = 1] = \"medium\";\n ResponsiveMode[ResponsiveMode[\"large\"] = 2] = \"large\";\n ResponsiveMode[ResponsiveMode[\"xLarge\"] = 3] = \"xLarge\";\n ResponsiveMode[ResponsiveMode[\"xxLarge\"] = 4] = \"xxLarge\";\n ResponsiveMode[ResponsiveMode[\"xxxLarge\"] = 5] = \"xxxLarge\";\n ResponsiveMode[ResponsiveMode[\"unknown\"] = 999] = \"unknown\";\n})(ResponsiveMode || (ResponsiveMode = {}));\nvar RESPONSIVE_MAX_CONSTRAINT = [479, 639, 1023, 1365, 1919, 99999999];\n/**\n * User specified mode to default to, useful for server side rendering scenarios.\n */\nvar _defaultMode;\n/**\n * Tracking the last mode we successfully rendered, which allows us to\n * paint initial renders with the correct size.\n */\nvar _lastMode;\n/**\n * Allows a server rendered scenario to provide a default responsive mode.\n */\nexport function setResponsiveMode(responsiveMode) {\n _defaultMode = responsiveMode;\n}\n/**\n * Initializes the responsive mode to the current window size. This can be used to avoid\n * a re-render during first component mount since the window would otherwise not be measured\n * until after mounting.\n */\nexport function initializeResponsiveMode(element) {\n if (typeof window !== 'undefined') {\n var currentWindow = (element && getWindow(element)) || window;\n getResponsiveMode(currentWindow);\n }\n}\nexport function getInitialResponsiveMode() {\n return _defaultMode || _lastMode || ResponsiveMode.large;\n}\nexport function withResponsiveMode(ComposedComponent) {\n var _a;\n var resultClass = (_a = /** @class */ (function (_super) {\n __extends(WithResponsiveMode, _super);\n function WithResponsiveMode(props) {\n var _this = _super.call(this, props) || this;\n _this._onResize = function () {\n var responsiveMode = getResponsiveMode(_this.context.window);\n if (responsiveMode !== _this.state.responsiveMode) {\n _this.setState({\n responsiveMode: responsiveMode,\n });\n }\n };\n _this._events = new EventGroup(_this);\n _this._updateComposedComponentRef = _this._updateComposedComponentRef.bind(_this);\n _this.state = {\n responsiveMode: getInitialResponsiveMode(),\n };\n return _this;\n }\n WithResponsiveMode.prototype.componentDidMount = function () {\n this._events.on(this.context.window, 'resize', this._onResize);\n this._onResize();\n };\n WithResponsiveMode.prototype.componentWillUnmount = function () {\n this._events.dispose();\n };\n WithResponsiveMode.prototype.render = function () {\n var responsiveMode = this.state.responsiveMode;\n return responsiveMode === ResponsiveMode.unknown ? null : (React.createElement(ComposedComponent, __assign({ ref: this._updateComposedComponentRef, responsiveMode: responsiveMode }, this.props)));\n };\n return WithResponsiveMode;\n }(BaseDecorator)),\n _a.contextType = WindowContext,\n _a);\n return hoistStatics(ComposedComponent, resultClass);\n}\nexport function getResponsiveMode(currentWindow) {\n var responsiveMode = ResponsiveMode.small;\n if (currentWindow) {\n try {\n while (currentWindow.innerWidth > RESPONSIVE_MAX_CONSTRAINT[responsiveMode]) {\n responsiveMode++;\n }\n }\n catch (e) {\n // Return a best effort result in cases where we're in the browser but it throws on getting innerWidth.\n responsiveMode = getInitialResponsiveMode();\n }\n // Tracking last mode just gives us a better default in future renders,\n // which avoids starting with the wrong value if we've measured once.\n _lastMode = responsiveMode;\n }\n else {\n if (_defaultMode !== undefined) {\n responsiveMode = _defaultMode;\n }\n else {\n throw new Error('Content was rendered in a server environment without providing a default responsive mode. ' +\n 'Call setResponsiveMode to define what the responsive mode is.');\n }\n }\n return responsiveMode;\n}\n//# sourceMappingURL=withResponsiveMode.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/WindowProvider.js", - "name": "./node_modules/@fluentui/react-window-provider/lib/WindowProvider.js", - "index": 204, - "index2": 192, - "size": 1095, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/index.js", - "issuerId": "kCx7", - "issuerName": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "jL7u", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/WindowProvider.js", - "name": "./node_modules/office-ui-fabric-react/lib/WindowProvider.js" - }, - { - "id": "kCx7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/index.js", - "name": "./node_modules/@fluentui/react-window-provider/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../WindowProvider", - "loc": "80:25-38" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-window-provider", - "loc": "19:23-32" - }, - { - "moduleId": "kCx7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/index.js", - "module": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "moduleName": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./WindowProvider", - "loc": "1:0-33" - }, - { - "moduleId": "kCx7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/index.js", - "module": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "moduleName": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./WindowProvider", - "loc": "1:0-33" - } - ], - "usedExports": [ - "WindowContext" - ], - "providedExports": [ - "WindowContext", - "useWindow", - "useDocument", - "WindowProvider" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as React from 'react';\n/**\n * Context for providing the window.\n */\nexport var WindowContext = React.createContext({\n window: typeof window === 'object' ? window : undefined,\n});\n/**\n * Hook to access the window object. This can be overridden contextually using the `WindowProvider`.\n */\nexport var useWindow = function () { return React.useContext(WindowContext).window; };\n/**\n * Hook to access the document object. This can be overridden contextually using the `WindowProvider`.\n */\nexport var useDocument = function () { var _a; return (_a = React.useContext(WindowContext).window) === null || _a === void 0 ? void 0 : _a.document; };\n/**\n * Component to provide the window object contextually. This is useful when rendering content to an element\n * contained within a child window or iframe element, where event handlers and styling must be projected\n * to an alternative window or document.\n */\nexport var WindowProvider = function (props) {\n return React.createElement(WindowContext.Provider, { value: props }, props.children);\n};\n//# sourceMappingURL=WindowProvider.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "EmNV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ErrorMsg.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ErrorMsg.js", - "index": 272, - "index2": 265, - "size": 36, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerId": "kQRI", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ErrorMsg", - "loc": "4:0-27" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ErrorMsg", - "loc": "4:0-27" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "//# sourceMappingURL=ErrorMsg.js.map" - }, - { - "id": "EpBk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isKeyable.js", - "name": "./node_modules/lodash/_isKeyable.js", - "index": 486, - "index2": 474, - "size": 430, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getMapData.js", - "issuerId": "QkVE", - "issuerName": "./node_modules/lodash/_getMapData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "H8j4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "name": "./node_modules/lodash/_mapCacheSet.js" - }, - { - "id": "QkVE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getMapData.js", - "name": "./node_modules/lodash/_getMapData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QkVE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getMapData.js", - "module": "./node_modules/lodash/_getMapData.js", - "moduleName": "./node_modules/lodash/_getMapData.js", - "type": "cjs require", - "userRequest": "./_isKeyable", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "/**\n * Checks if `value` is suitable for use as unique object key.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n */\nfunction isKeyable(value) {\n var type = typeof value;\n return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n ? (value !== '__proto__')\n : (value === null);\n}\n\nmodule.exports = isKeyable;\n" - }, - { - "id": "ExA7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isObjectLike.js", - "name": "./node_modules/lodash/isObjectLike.js", - "index": 501, - "index2": 489, - "size": 614, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "issuerId": "YO3V", - "issuerName": "./node_modules/lodash/isPlainObject.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/9aa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSymbol.js", - "module": "./node_modules/lodash/isSymbol.js", - "moduleName": "./node_modules/lodash/isSymbol.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - }, - { - "moduleId": "03A+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "module": "./node_modules/lodash/isArguments.js", - "moduleName": "./node_modules/lodash/isArguments.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - }, - { - "moduleId": "Gi0A", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsMap.js", - "module": "./node_modules/lodash/_baseIsMap.js", - "moduleName": "./node_modules/lodash/_baseIsMap.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - }, - { - "moduleId": "JTzB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsArguments.js", - "module": "./node_modules/lodash/_baseIsArguments.js", - "moduleName": "./node_modules/lodash/_baseIsArguments.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - }, - { - "moduleId": "YO3V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "module": "./node_modules/lodash/isPlainObject.js", - "moduleName": "./node_modules/lodash/isPlainObject.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "3:19-44" - }, - { - "moduleId": "dD9F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsTypedArray.js", - "module": "./node_modules/lodash/_baseIsTypedArray.js", - "moduleName": "./node_modules/lodash/_baseIsTypedArray.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "3:19-44" - }, - { - "moduleId": "w/wX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsSet.js", - "module": "./node_modules/lodash/_baseIsSet.js", - "moduleName": "./node_modules/lodash/_baseIsSet.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return value != null && typeof value == 'object';\n}\n\nmodule.exports = isObjectLike;\n" - }, - { - "id": "FbcY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "name": "./node_modules/@uifabric/utilities/lib/rtl.js", - "index": 45, - "index2": 36, - "size": 1984, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:18-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:73-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:75-92" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "48:63-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "51:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "76:32-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "137:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "155:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "161:38-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "168:31-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "188:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "212:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "226:31-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "248:55-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "281:32-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "283:31-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "285:32-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "327:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "361:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "370:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "466:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "765:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "768:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "796:29-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "799:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "802:33-39" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:27-33" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:21-38" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "129:21-38" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "324:46-52" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "171:31-37" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "285:31-37" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "166:72-78" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:16-22" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "245:17-23" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "367:36-42" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "372:36-42" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "377:36-42" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "382:36-42" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "413:68-74" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "414:68-74" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "433:48-65" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "436:63-80" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony side effect evaluation", - "userRequest": "./rtl", - "loc": "2:0-31" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "userRequest": "./rtl", - "loc": "51:65-71" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:50-56" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "170:50-56" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "88:182-188" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "98:143-149" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "174:66-72" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "180:66-72" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "171:58-64" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "117:28-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:28-34" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "39:59-65" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rtl", - "loc": "50:0-22" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rtl", - "loc": "50:0-22" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "150:27-33" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:16-22" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "97:30-36" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "96:59-65" - } - ], - "usedExports": [ - "getRTL", - "getRTLSafeKeyCode" - ], - "providedExports": [ - "getRTL", - "setRTL", - "getRTLSafeKeyCode" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { KeyCodes } from './KeyCodes';\nimport { getDocument } from './dom/getDocument';\nimport { getItem, setItem } from './sessionStorage';\nimport { setRTL as mergeStylesSetRTL } from '@uifabric/merge-styles';\nvar RTL_LOCAL_STORAGE_KEY = 'isRTL';\n// Default to undefined so that we initialize on first read.\nvar _isRTL;\n/**\n * Gets the rtl state of the page (returns true if in rtl.)\n */\nexport function getRTL(theme) {\n if (theme === void 0) { theme = {}; }\n if (theme.rtl !== undefined) {\n return theme.rtl;\n }\n if (_isRTL === undefined) {\n // Fabric supports persisting the RTL setting between page refreshes via session storage\n var savedRTL = getItem(RTL_LOCAL_STORAGE_KEY);\n if (savedRTL !== null) {\n _isRTL = savedRTL === '1';\n setRTL(_isRTL);\n }\n var doc = getDocument();\n if (_isRTL === undefined && doc) {\n _isRTL = ((doc.body && doc.body.getAttribute('dir')) || doc.documentElement.getAttribute('dir')) === 'rtl';\n mergeStylesSetRTL(_isRTL);\n }\n }\n return !!_isRTL;\n}\n/**\n * Sets the rtl state of the page (by adjusting the dir attribute of the html element.)\n */\nexport function setRTL(isRTL, persistSetting) {\n if (persistSetting === void 0) { persistSetting = false; }\n var doc = getDocument();\n if (doc) {\n doc.documentElement.setAttribute('dir', isRTL ? 'rtl' : 'ltr');\n }\n if (persistSetting) {\n setItem(RTL_LOCAL_STORAGE_KEY, isRTL ? '1' : '0');\n }\n _isRTL = isRTL;\n mergeStylesSetRTL(_isRTL);\n}\n/**\n * Returns the given key, but flips right/left arrows if necessary.\n */\nexport function getRTLSafeKeyCode(key, theme) {\n if (theme === void 0) { theme = {}; }\n if (getRTL(theme)) {\n if (key === KeyCodes.left) {\n key = KeyCodes.right;\n }\n else if (key === KeyCodes.right) {\n key = KeyCodes.left;\n }\n }\n return key;\n}\n//# sourceMappingURL=rtl.js.map" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js", - "index": 533, - "index2": 526, - "size": 488, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_getAllKeysIn", - "loc": "11:19-45" - }, - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_getAllKeysIn", - "loc": "8:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var baseGetAllKeys = require('./_baseGetAllKeys'),\n getSymbolsIn = require('./_getSymbolsIn'),\n keysIn = require('./keysIn');\n\n/**\n * Creates an array of own and inherited enumerable property names and\n * symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names and symbols.\n */\nfunction getAllKeysIn(object) {\n return baseGetAllKeys(object, keysIn, getSymbolsIn);\n}\n\nmodule.exports = getAllKeysIn;\n" - }, - { - "id": "GBV5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/IPropertyFieldNumberHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/IPropertyFieldNumberHost.js", - "index": 892, - "index2": 889, - "size": 52, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerId": "LatS", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldNumberHost", - "loc": "3:0-43" - }, - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldNumberHost", - "loc": "3:0-43" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldNumberHost.js.map" - }, - { - "id": "GCTM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "index": 243, - "index2": 228, - "size": 1071, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "283:8-38" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "5:0-87" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "182:8-38" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "2:0-54" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "2:0-54" - } - ], - "usedExports": [ - "warnConditionallyRequiredProps" - ], - "providedExports": [ - "warnConditionallyRequiredProps" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { warn } from './warn';\n/**\n * Warns when props are required if a condition is met.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param requiredProps - The name of the props that are required when the condition is met.\n * @param conditionalPropName - The name of the prop that the condition is based on.\n * @param condition - Whether the condition is met.\n */\nexport function warnConditionallyRequiredProps(componentName, props, requiredProps, conditionalPropName, condition) {\n if (condition === true && process.env.NODE_ENV !== 'production') {\n for (var _i = 0, requiredProps_1 = requiredProps; _i < requiredProps_1.length; _i++) {\n var requiredPropName = requiredProps_1[_i];\n if (!(requiredPropName in props)) {\n warn(componentName + \" property '\" + requiredPropName + \"' is required when '\" + conditionalPropName + \"' is used.'\");\n }\n }\n }\n}\n//# sourceMappingURL=warnConditionallyRequiredProps.js.map" - }, - { - "id": "GNiM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "name": "./node_modules/lodash/_stringToPath.js", - "index": 557, - "index2": 551, - "size": 840, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "issuerId": "4uTw", - "issuerName": "./node_modules/lodash/_castPath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4uTw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "module": "./node_modules/lodash/_castPath.js", - "moduleName": "./node_modules/lodash/_castPath.js", - "type": "cjs require", - "userRequest": "./_stringToPath", - "loc": "3:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var memoizeCapped = require('./_memoizeCapped');\n\n/** Used to match property names within property paths. */\nvar rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g;\n\n/** Used to match backslashes in property paths. */\nvar reEscapeChar = /\\\\(\\\\)?/g;\n\n/**\n * Converts `string` to a property path array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the property path array.\n */\nvar stringToPath = memoizeCapped(function(string) {\n var result = [];\n if (string.charCodeAt(0) === 46 /* . */) {\n result.push('');\n }\n string.replace(rePropName, function(match, number, quote, subString) {\n result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));\n });\n return result;\n});\n\nmodule.exports = stringToPath;\n" - }, - { - "id": "Gi0A", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsMap.js", - "name": "./node_modules/lodash/_baseIsMap.js", - "index": 550, - "index2": 542, - "size": 478, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "issuerId": "zEVN", - "issuerName": "./node_modules/lodash/isMap.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "zEVN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "name": "./node_modules/lodash/isMap.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "zEVN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "module": "./node_modules/lodash/isMap.js", - "moduleName": "./node_modules/lodash/isMap.js", - "type": "cjs require", - "userRequest": "./_baseIsMap", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getTag = require('./_getTag'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar mapTag = '[object Map]';\n\n/**\n * The base implementation of `_.isMap` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a map, else `false`.\n */\nfunction baseIsMap(value) {\n return isObjectLike(value) && getTag(value) == mapTag;\n}\n\nmodule.exports = baseIsMap;\n" - }, - { - "id": "GoyQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isObject.js", - "name": "./node_modules/lodash/isObject.js", - "index": 470, - "index2": 457, - "size": 733, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "issuerId": "QcOe", - "issuerName": "./node_modules/lodash/_baseKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "QcOe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "name": "./node_modules/lodash/_baseKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NKxu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "module": "./node_modules/lodash/_baseIsNative.js", - "moduleName": "./node_modules/lodash/_baseIsNative.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "3:15-36" - }, - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "19:15-36" - }, - { - "moduleId": "QcOe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "module": "./node_modules/lodash/_baseKeysIn.js", - "moduleName": "./node_modules/lodash/_baseKeysIn.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "1:15-36" - }, - { - "moduleId": "dTAl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseCreate.js", - "module": "./node_modules/lodash/_baseCreate.js", - "moduleName": "./node_modules/lodash/_baseCreate.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "1:15-36" - }, - { - "moduleId": "lSCD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isFunction.js", - "module": "./node_modules/lodash/isFunction.js", - "moduleName": "./node_modules/lodash/isFunction.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "2:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\nfunction isObject(value) {\n var type = typeof value;\n return value != null && (type == 'object' || type == 'function');\n}\n\nmodule.exports = isObject;\n" - }, - { - "id": "H8j4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "name": "./node_modules/lodash/_mapCacheSet.js", - "index": 489, - "index2": 479, - "size": 489, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "issuerId": "e4Nc", - "issuerName": "./node_modules/lodash/_MapCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "e4Nc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "module": "./node_modules/lodash/_MapCache.js", - "moduleName": "./node_modules/lodash/_MapCache.js", - "type": "cjs require", - "userRequest": "./_mapCacheSet", - "loc": "5:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var getMapData = require('./_getMapData');\n\n/**\n * Sets the map `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf MapCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the map cache instance.\n */\nfunction mapCacheSet(key, value) {\n var data = getMapData(this, key),\n size = data.size;\n\n data.set(key, value);\n this.size += data.size == size ? 0 : 1;\n return this;\n}\n\nmodule.exports = mapCacheSet;\n" - }, - { - "id": "HBL8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Page.js", - "name": "./node_modules/react-js-pagination/dist/Page.js", - "index": 355, - "index2": 353, - "size": 6416, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "issuerId": "0fKb", - "issuerName": "./node_modules/react-js-pagination/dist/Pagination.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "./Page", - "loc": "14:35-52" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports[\"default\"] = void 0;\n\nvar _react = _interopRequireWildcard(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _classnames = _interopRequireDefault(require(\"classnames\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _getRequireWildcardCache() { if (typeof WeakMap !== \"function\") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== \"object\" && typeof obj !== \"function\") { return { \"default\": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj[\"default\"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar Page =\n/*#__PURE__*/\nfunction (_Component) {\n _inherits(Page, _Component);\n\n function Page() {\n _classCallCheck(this, Page);\n\n return _possibleConstructorReturn(this, _getPrototypeOf(Page).apply(this, arguments));\n }\n\n _createClass(Page, [{\n key: \"handleClick\",\n value: function handleClick(e) {\n var _this$props = this.props,\n isDisabled = _this$props.isDisabled,\n pageNumber = _this$props.pageNumber;\n e.preventDefault();\n\n if (isDisabled) {\n return;\n }\n\n this.props.onClick(pageNumber);\n }\n }, {\n key: \"render\",\n value: function render() {\n var _cx;\n\n var _this$props2 = this.props,\n pageText = _this$props2.pageText,\n pageNumber = _this$props2.pageNumber,\n activeClass = _this$props2.activeClass,\n itemClass = _this$props2.itemClass,\n linkClass = _this$props2.linkClass,\n activeLinkClass = _this$props2.activeLinkClass,\n disabledClass = _this$props2.disabledClass,\n isActive = _this$props2.isActive,\n isDisabled = _this$props2.isDisabled,\n href = _this$props2.href,\n ariaLabel = _this$props2.ariaLabel;\n var css = (0, _classnames[\"default\"])(itemClass, (_cx = {}, _defineProperty(_cx, activeClass, isActive), _defineProperty(_cx, disabledClass, isDisabled), _cx));\n var linkCss = (0, _classnames[\"default\"])(linkClass, _defineProperty({}, activeLinkClass, isActive));\n return _react[\"default\"].createElement(\"li\", {\n className: css,\n onClick: this.handleClick.bind(this)\n }, _react[\"default\"].createElement(\"a\", {\n className: linkCss,\n href: href,\n \"aria-label\": ariaLabel\n }, pageText));\n }\n }]);\n\n return Page;\n}(_react.Component);\n\nexports[\"default\"] = Page;\n\n_defineProperty(Page, \"propTypes\", {\n pageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n pageNumber: _propTypes[\"default\"].number.isRequired,\n onClick: _propTypes[\"default\"].func.isRequired,\n isActive: _propTypes[\"default\"].bool.isRequired,\n isDisabled: _propTypes[\"default\"].bool,\n activeClass: _propTypes[\"default\"].string,\n activeLinkClass: _propTypes[\"default\"].string,\n itemClass: _propTypes[\"default\"].string,\n linkClass: _propTypes[\"default\"].string,\n disabledClass: _propTypes[\"default\"].string,\n href: _propTypes[\"default\"].string\n});\n\n_defineProperty(Page, \"defaultProps\", {\n activeClass: \"active\",\n disabledClass: \"disabled\",\n itemClass: undefined,\n linkClass: undefined,\n activeLinkCLass: undefined,\n isActive: false,\n isDisabled: false,\n href: \"#\"\n});" - }, - { - "id": "HJn1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "index": 142, - "index2": 130, - "size": 6679, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "issuerId": "AsHc", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "JiuB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Popup.js", - "name": "./node_modules/office-ui-fabric-react/lib/Popup.js" - }, - { - "id": "AsHc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Popup", - "loc": "219:32-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Popup", - "loc": "220:36-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Popup/index", - "loc": "294:36-41" - }, - { - "moduleId": "AsHc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Popup", - "loc": "1:0-24" - }, - { - "moduleId": "AsHc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Popup", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Popup" - ], - "providedExports": [ - "Popup" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async, KeyCodes, divProperties, doesElementContainFocus, getDocument, getNativeProps, on, getWindow, elementContains, } from '../../Utilities';\n/**\n * This adds accessibility to Dialog and Panel controls\n */\nvar Popup = /** @class */ (function (_super) {\n __extends(Popup, _super);\n function Popup(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._disposables = [];\n _this._onKeyDown = function (ev) {\n switch (ev.which) {\n case KeyCodes.escape:\n if (_this.props.onDismiss) {\n _this.props.onDismiss(ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n break;\n }\n };\n _this._onFocus = function () {\n _this._containsFocus = true;\n };\n _this._onBlur = function (ev) {\n /** The popup should update this._containsFocus when:\n * relatedTarget exists AND\n * the relatedTarget is not contained within the popup.\n * If the relatedTarget is within the popup, that means the popup still has focus\n * and focused moved from one element to another within the popup.\n * If relatedTarget is undefined or null that usually means that a\n * keyboard event occured and focus didn't change\n */\n if (_this._root.current &&\n ev.relatedTarget &&\n !elementContains(_this._root.current, ev.relatedTarget)) {\n _this._containsFocus = false;\n }\n };\n _this._async = new Async(_this);\n _this.state = { needsVerticalScrollBar: false };\n return _this;\n }\n Popup.prototype.UNSAFE_componentWillMount = function () {\n this._originalFocusedElement = getDocument().activeElement;\n };\n Popup.prototype.componentDidMount = function () {\n if (this._root.current) {\n this._disposables.push(on(this._root.current, 'focus', this._onFocus, true), on(this._root.current, 'blur', this._onBlur, true));\n var currentWindow = getWindow(this._root.current);\n if (currentWindow) {\n this._disposables.push(on(currentWindow, 'keydown', this._onKeyDown));\n }\n if (doesElementContainFocus(this._root.current)) {\n this._containsFocus = true;\n }\n }\n this._updateScrollBarAsync();\n };\n Popup.prototype.componentDidUpdate = function () {\n this._updateScrollBarAsync();\n this._async.dispose();\n };\n Popup.prototype.componentWillUnmount = function () {\n var _a;\n this._disposables.forEach(function (dispose) { return dispose(); });\n // eslint-disable-next-line deprecation/deprecation\n if (this.props.shouldRestoreFocus) {\n var _b = this.props.onRestoreFocus, onRestoreFocus = _b === void 0 ? defaultFocusRestorer : _b;\n onRestoreFocus({\n originalElement: this._originalFocusedElement,\n containsFocus: this._containsFocus,\n documentContainsFocus: ((_a = getDocument()) === null || _a === void 0 ? void 0 : _a.hasFocus()) || false,\n });\n }\n // De-reference DOM Node to avoid retainment via transpiled closure of _onKeyDown\n delete this._originalFocusedElement;\n };\n Popup.prototype.render = function () {\n var _a = this.props, role = _a.role, className = _a.className, ariaLabel = _a.ariaLabel, ariaLabelledBy = _a.ariaLabelledBy, ariaDescribedBy = _a.ariaDescribedBy, style = _a.style;\n return (React.createElement(\"div\", __assign({ ref: this._root }, getNativeProps(this.props, divProperties), { className: className, role: role, \"aria-label\": ariaLabel, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy, onKeyDown: this._onKeyDown, style: __assign({ overflowY: this.state.needsVerticalScrollBar ? 'scroll' : undefined, outline: 'none' }, style) }), this.props.children));\n };\n Popup.prototype._updateScrollBarAsync = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () {\n _this._getScrollBar();\n });\n };\n Popup.prototype._getScrollBar = function () {\n // If overflowY is overriden, don't waste time calculating whether the scrollbar is necessary.\n if (this.props.style && this.props.style.overflowY) {\n return;\n }\n var needsVerticalScrollBar = false;\n if (this._root && this._root.current && this._root.current.firstElementChild) {\n // ClientHeight returns the client height of an element rounded to an\n // integer. On some browsers at different zoom levels this rounding\n // can generate different results for the root container and child even\n // though they are the same height. This causes us to show a scroll bar\n // when not needed. Ideally we would use BoundingClientRect().height\n // instead however seems that the API is 90% slower than using ClientHeight.\n // Therefore instead we will calculate the difference between heights and\n // allow for a 1px difference to still be considered ok and not show the\n // scroll bar.\n var rootHeight = this._root.current.clientHeight;\n var firstChildHeight = this._root.current.firstElementChild.clientHeight;\n if (rootHeight > 0 && firstChildHeight > rootHeight) {\n needsVerticalScrollBar = firstChildHeight - rootHeight > 1;\n }\n }\n if (this.state.needsVerticalScrollBar !== needsVerticalScrollBar) {\n this.setState({\n needsVerticalScrollBar: needsVerticalScrollBar,\n });\n }\n };\n Popup.defaultProps = {\n shouldRestoreFocus: true,\n };\n return Popup;\n}(React.Component));\nexport { Popup };\nfunction defaultFocusRestorer(options) {\n var originalElement = options.originalElement, containsFocus = options.containsFocus;\n if (originalElement && containsFocus && originalElement !== window) {\n // Make sure that the focus method actually exists\n // In some cases the object might exist but not be a real element.\n // This is primarily for IE 11 and should be removed once IE 11 is no longer in use.\n if (originalElement.focus) {\n originalElement.focus();\n }\n }\n}\n//# sourceMappingURL=Popup.js.map" - }, - { - "id": "HOxn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Promise.js", - "name": "./node_modules/lodash/_Promise.js", - "index": 536, - "index2": 528, - "size": 207, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "issuerId": "QqLw", - "issuerName": "./node_modules/lodash/_getTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_Promise", - "loc": "3:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar Promise = getNative(root, 'Promise');\n\nmodule.exports = Promise;\n" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "index": 7, - "index2": 281, - "size": 307, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "issuerId": "tGMu", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "..", - "loc": "67:0-47" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "480:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "482:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "484:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "486:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "488:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "490:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "494:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "504:17-42" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": ".", - "loc": "15:0-52" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": ".", - "loc": "29:42-73" - }, - { - "moduleId": "tGMu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/collectionData", - "loc": "1:0-48" - }, - { - "moduleId": "tGMu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/collectionData", - "loc": "1:0-48" - } - ], - "usedExports": [ - "CustomCollectionFieldType", - "PropertyFieldCollectionData", - "PropertyFieldCollectionDataHost" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './ICustomCollectionField';\nexport * from './IPropertyFieldCollectionData';\nexport * from './PropertyFieldCollectionData';\nexport * from './IPropertyFieldCollectionDataHost';\nexport * from './PropertyFieldCollectionDataHost';\nexport * from './FieldValidator';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Hvzi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashDelete.js", - "name": "./node_modules/lodash/_hashDelete.js", - "index": 480, - "index2": 468, - "size": 445, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "issuerId": "4kuk", - "issuerName": "./node_modules/lodash/_Hash.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4kuk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "module": "./node_modules/lodash/_Hash.js", - "moduleName": "./node_modules/lodash/_Hash.js", - "type": "cjs require", - "userRequest": "./_hashDelete", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "/**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction hashDelete(key) {\n var result = this.has(key) && delete this.__data__[key];\n this.size -= result ? 1 : 0;\n return result;\n}\n\nmodule.exports = hashDelete;\n" - }, - { - "id": "I01J", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_memoizeCapped.js", - "name": "./node_modules/lodash/_memoizeCapped.js", - "index": 558, - "index2": 550, - "size": 633, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "issuerId": "GNiM", - "issuerName": "./node_modules/lodash/_stringToPath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - }, - { - "id": "GNiM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "name": "./node_modules/lodash/_stringToPath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "GNiM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "module": "./node_modules/lodash/_stringToPath.js", - "moduleName": "./node_modules/lodash/_stringToPath.js", - "type": "cjs require", - "userRequest": "./_memoizeCapped", - "loc": "1:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var memoize = require('./memoize');\n\n/** Used as the maximum memoize cache size. */\nvar MAX_MEMOIZE_SIZE = 500;\n\n/**\n * A specialized version of `_.memoize` which clears the memoized function's\n * cache when it exceeds `MAX_MEMOIZE_SIZE`.\n *\n * @private\n * @param {Function} func The function to have its output memoized.\n * @returns {Function} Returns the new memoized function.\n */\nfunction memoizeCapped(func) {\n var result = memoize(func, function(key) {\n if (cache.size === MAX_MEMOIZE_SIZE) {\n cache.clear();\n }\n return key;\n });\n\n var cache = result.cache;\n return result;\n}\n\nmodule.exports = memoizeCapped;\n" - }, - { - "id": "IAIq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "index": 891, - "index2": 887, - "size": 5771, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerId": "LatS", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldNumberHost", - "loc": "4:0-42" - }, - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldNumberHost", - "loc": "4:0-42" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldNumberHost", - "loc": "15:0-64" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldNumberHost", - "loc": "26:42-65" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport { TextField } from 'office-ui-fabric-react/lib/TextField';\nimport * as telemetry from '../../common/telemetry';\nimport { Async } from 'office-ui-fabric-react/lib/Utilities';\nimport * as strings from 'PropertyControlStrings';\nimport { GeneralHelper } from '../../helpers/GeneralHelper';\nvar PropertyFieldNumberHost = /** @class */ (function (_super) {\n __extends(PropertyFieldNumberHost, _super);\n function PropertyFieldNumberHost(props) {\n var _this = _super.call(this, props) || this;\n /**\n * Validate if field value is a number\n * @param value\n */\n _this._validateNumber = function (value) {\n var nrValue = !GeneralHelper.isDefined(_this.props.precision) || _this.props.precision === 0 ? parseInt(value) : parseFloat(value);\n if (isNaN(nrValue)) {\n return strings.NotNumberValidationMessage + \" \" + value + \".\";\n }\n var _a = _this.props, minValue = _a.minValue, maxValue = _a.maxValue;\n // Check if number is lower or equal to minimum value\n if (GeneralHelper.isDefined(minValue) && nrValue < minValue) {\n return strings.MinimumNumberValidationMessage + \" \" + minValue;\n }\n // Check if the number is greater than the maximum value\n if (GeneralHelper.isDefined(maxValue) && nrValue > maxValue) {\n return strings.MaximumNumberValidationMessage + \" \" + maxValue;\n }\n if (_this.props.onGetErrorMessage) {\n return _this.props.onGetErrorMessage(nrValue);\n }\n else {\n return '';\n }\n };\n /**\n * On field change event handler\n */\n _this._onChanged = function (value) {\n var nrValue;\n var precision = _this.props.precision;\n if (!GeneralHelper.isDefined(precision)) {\n nrValue = parseFloat(value);\n }\n else if (precision === 0) {\n nrValue = parseInt(value);\n }\n else {\n var multiplier = Math.pow(10, precision);\n nrValue = Math.round((parseFloat(value) + 0.000000000000001) * multiplier) / multiplier;\n }\n // Update state\n _this.setState({\n value: value,\n roundedValue: nrValue\n });\n var _a = _this.props, minValue = _a.minValue, maxValue = _a.maxValue;\n if (!isNaN(nrValue)) {\n if ((!GeneralHelper.isDefined(minValue) || nrValue >= minValue) && (!GeneralHelper.isDefined(maxValue) || nrValue <= maxValue)) {\n // Trigger change for the web part\n _this.props.onChanged(nrValue);\n }\n }\n else {\n _this.props.onChanged(undefined);\n }\n };\n telemetry.track('PropertyFieldNumber', {\n disabled: props.disabled\n });\n var value = null;\n var nrValue = undefined;\n if (GeneralHelper.isDefined(props.value)) {\n value = props.value.toString();\n if (!GeneralHelper.isDefined(props.precision)) {\n nrValue = props.value;\n }\n else if (props.precision === 0) {\n nrValue = parseInt(value);\n }\n else {\n var multiplier = Math.pow(10, props.precision);\n nrValue = Math.round((parseFloat(value) + 0.000000000000001) * multiplier) / multiplier;\n }\n }\n _this.state = {\n value: value,\n roundedValue: nrValue\n };\n _this._async = new Async(_this);\n _this._delayedChange = _this._async.debounce(_this._onChanged, _this.props.deferredValidationTime ? _this.props.deferredValidationTime : 200);\n return _this;\n }\n /**\n * componentDidUpdate lifecycle hook\n *\n * @param prevProps\n * @param prevState\n */\n PropertyFieldNumberHost.prototype.componentDidUpdate = function (prevProps, prevState) {\n if (prevProps.value !== this.props.value && this.props.value !== this.state.roundedValue) {\n this.setState({\n value: GeneralHelper.isDefined(this.props.value) ? this.props.value.toString() : null\n });\n }\n };\n /**\n * Render field\n */\n PropertyFieldNumberHost.prototype.render = function () {\n var _this = this;\n return (React.createElement(\"div\", null,\n React.createElement(TextField, { label: this.props.label, ariaLabel: this.props.ariaLabel, onChange: function (e, value) { return _this._delayedChange(value); }, defaultValue: this.state.value, description: this.props.description, placeholder: this.props.placeholder, errorMessage: this.props.errorMessage, onGetErrorMessage: this._validateNumber, deferredValidationTime: this.props.deferredValidationTime, disabled: this.props.disabled })));\n };\n return PropertyFieldNumberHost;\n}(React.Component));\nexport default PropertyFieldNumberHost;\n//# sourceMappingURL=PropertyFieldNumberHost.js.map" - }, - { - "id": "IMkN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "index": 295, - "index2": 289, - "size": 2919, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./libconfig", - "loc": "2:0-28" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./libconfig", - "loc": "2:0-28" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "./libconfig", - "loc": "3:0-44" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig", - "loc": "21:12-25" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig", - "loc": "153:33-46" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig", - "loc": "171:76-89" - } - ], - "usedExports": [ - "RuntimeConfig" - ], - "providedExports": [ - "setup", - "RuntimeConfigImpl", - "RuntimeConfig" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { mergeMaps, objectToMap } from \"./collections\";\r\nexport function setup(config) {\r\n RuntimeConfig.assign(config);\r\n}\r\n// lable mapping for known config values\r\nvar s = [\r\n \"defaultCachingStore\",\r\n \"defaultCachingTimeoutSeconds\",\r\n \"globalCacheDisable\",\r\n \"enableCacheExpiration\",\r\n \"cacheExpirationIntervalMilliseconds\",\r\n \"spfxContext\",\r\n \"ie11\",\r\n];\r\nvar RuntimeConfigImpl = /** @class */ (function () {\r\n function RuntimeConfigImpl(_v) {\r\n if (_v === void 0) { _v = new Map(); }\r\n this._v = _v;\r\n // setup defaults\r\n this._v.set(s[0], \"session\");\r\n this._v.set(s[1], 60);\r\n this._v.set(s[2], false);\r\n this._v.set(s[3], false);\r\n this._v.set(s[4], 750);\r\n this._v.set(s[5], null);\r\n this._v.set(s[6], false);\r\n }\r\n /**\r\n *\r\n * @param config The set of properties to add to the globa configuration instance\r\n */\r\n RuntimeConfigImpl.prototype.assign = function (config) {\r\n this._v = mergeMaps(this._v, objectToMap(config));\r\n };\r\n RuntimeConfigImpl.prototype.get = function (key) {\r\n return this._v.get(key);\r\n };\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"defaultCachingStore\", {\r\n get: function () {\r\n return this.get(s[0]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"defaultCachingTimeoutSeconds\", {\r\n get: function () {\r\n return this.get(s[1]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"globalCacheDisable\", {\r\n get: function () {\r\n return this.get(s[2]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"enableCacheExpiration\", {\r\n get: function () {\r\n return this.get(s[3]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"cacheExpirationIntervalMilliseconds\", {\r\n get: function () {\r\n return this.get(s[4]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"spfxContext\", {\r\n get: function () {\r\n return this.get(s[5]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"ie11\", {\r\n get: function () {\r\n return this.get(s[6]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n return RuntimeConfigImpl;\r\n}());\r\nexport { RuntimeConfigImpl };\r\nvar _runtimeConfig = new RuntimeConfigImpl();\r\nexport var RuntimeConfig = _runtimeConfig;\r\n//# sourceMappingURL=libconfig.js.map" - }, - { - "id": "Iceg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "index": 297, - "index2": 290, - "size": 148, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./safe-global", - "loc": "7:0-30" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./safe-global", - "loc": "7:0-30" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony side effect evaluation", - "userRequest": "./safe-global", - "loc": "3:0-43" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./safe-global", - "loc": "35:15-25" - } - ], - "usedExports": [ - "safeGlobal" - ], - "providedExports": [ - "safeGlobal" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module uses injected variables (global)" - ], - "depth": 5, - "source": "// export either window or global\r\nexport var safeGlobal = typeof global === \"undefined\" ? window : global;\r\n//# sourceMappingURL=safe-global.js.map" - }, - { - "id": "Ioao", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_overRest.js", - "name": "./node_modules/lodash/_overRest.js", - "index": 573, - "index2": 567, - "size": 1096, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "issuerId": "xs/l", - "issuerName": "./node_modules/lodash/_flatRest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "xs/l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "module": "./node_modules/lodash/_flatRest.js", - "moduleName": "./node_modules/lodash/_flatRest.js", - "type": "cjs require", - "userRequest": "./_overRest", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var apply = require('./_apply');\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeMax = Math.max;\n\n/**\n * A specialized version of `baseRest` which transforms the rest array.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @param {Function} transform The rest array transform.\n * @returns {Function} Returns the new function.\n */\nfunction overRest(func, start, transform) {\n start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\n return function() {\n var args = arguments,\n index = -1,\n length = nativeMax(args.length - start, 0),\n array = Array(length);\n\n while (++index < length) {\n array[index] = args[start + index];\n }\n index = -1;\n var otherArgs = Array(start + 1);\n while (++index < start) {\n otherArgs[index] = args[index];\n }\n otherArgs[start] = transform(array);\n return apply(func, this, otherArgs);\n };\n}\n\nmodule.exports = overRest;\n" - }, - { - "id": "Itfc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "index": 856, - "index2": 848, - "size": 713, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "issuerId": "m08b", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js" - }, - { - "id": "m08b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "m08b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../../css-loader/dist/cjs.js!../../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldSitePickerListItem.module.css", - "loc": "1:14-167" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "exports = module.exports = require(\"../../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".siteListItem_03474fe9{display:-ms-flexbox;display:flex;white-space:nowrap;-ms-flex-align:center;align-items:center}.siteListItem_03474fe9 .checkbox_03474fe9{display:inline-block!important;margin-right:4px}.siteListItem_03474fe9 .content_03474fe9{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;padding:4px 0}.siteListItem_03474fe9 .title_03474fe9{line-height:18px;overflow:hidden;text-overflow:ellipsis}.siteListItem_03474fe9 .url_03474fe9{font-size:12px;line-height:14px;font-weight:300;overflow:hidden;text-overflow:ellipsis}\", \"\"]);\n" - }, - { - "id": "J5N+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "index": 286, - "index2": 284, - "size": 586, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "cjs require", - "userRequest": "./ListSearchWebPart.module.css", - "loc": "2:0-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "var content = require(\"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/postcss-loader/src/index.js??postcss!./ListSearchWebPart.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "J7IA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/FieldValidator.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/FieldValidator.js", - "index": 283, - "index2": 280, - "size": 42, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FieldValidator", - "loc": "6:0-33" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FieldValidator", - "loc": "6:0-33" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=FieldValidator.js.map" - }, - { - "id": "JHRd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Uint8Array.js", - "name": "./node_modules/lodash/_Uint8Array.js", - "index": 542, - "index2": 533, - "size": 130, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneArrayBuffer.js", - "issuerId": "+K+b", - "issuerName": "./node_modules/lodash/_cloneArrayBuffer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js" - }, - { - "id": "+K+b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneArrayBuffer.js", - "name": "./node_modules/lodash/_cloneArrayBuffer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+K+b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneArrayBuffer.js", - "module": "./node_modules/lodash/_cloneArrayBuffer.js", - "moduleName": "./node_modules/lodash/_cloneArrayBuffer.js", - "type": "cjs require", - "userRequest": "./_Uint8Array", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var root = require('./_root');\n\n/** Built-in value references. */\nvar Uint8Array = root.Uint8Array;\n\nmodule.exports = Uint8Array;\n" - }, - { - "id": "JHgL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheGet.js", - "name": "./node_modules/lodash/_mapCacheGet.js", - "index": 487, - "index2": 477, - "size": 330, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "issuerId": "e4Nc", - "issuerName": "./node_modules/lodash/_MapCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "e4Nc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "module": "./node_modules/lodash/_MapCache.js", - "moduleName": "./node_modules/lodash/_MapCache.js", - "type": "cjs require", - "userRequest": "./_mapCacheGet", - "loc": "3:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var getMapData = require('./_getMapData');\n\n/**\n * Gets the map value for `key`.\n *\n * @private\n * @name get\n * @memberOf MapCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction mapCacheGet(key) {\n return getMapData(this, key).get(key);\n}\n\nmodule.exports = mapCacheGet;\n" - }, - { - "id": "JPst", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/runtime/api.js", - "name": "./node_modules/css-loader/dist/runtime/api.js", - "index": 22, - "index2": 13, - "size": 2677, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerId": "Lja1", - "issuerName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js" - }, - { - "id": "J5N+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.css" - }, - { - "id": "Lja1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8//X", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "Itfc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "type": "cjs require", - "userRequest": "../../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-86" - }, - { - "moduleId": "Lja1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "type": "cjs require", - "userRequest": "../../../node_modules/css-loader/dist/runtime/api.js", - "loc": "1:27-90" - }, - { - "moduleId": "MKqn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "T0RK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "type": "cjs require", - "userRequest": "../../../../node_modules/css-loader/dist/runtime/api.js", - "loc": "1:27-93" - }, - { - "moduleId": "a3+T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "gtmu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "nsUS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "sa5x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \"{\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = modules[_i]; // skip already imported module\n // this implementation is not 100% perfect for weird media query combinations\n // when a module is imported multiple times with different media queries.\n // I hope this will never occur (Hey this way we have smaller bundles)\n\n if (item[0] == null || !alreadyImportedModules[item[0]]) {\n if (mediaQuery && !item[2]) {\n item[2] = mediaQuery;\n } else if (mediaQuery) {\n item[2] = \"(\".concat(item[2], \") and (\").concat(mediaQuery, \")\");\n }\n\n list.push(item);\n }\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot).concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}" - }, - { - "id": "JSQU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashSet.js", - "name": "./node_modules/lodash/_hashSet.js", - "index": 483, - "index2": 471, - "size": 598, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "issuerId": "4kuk", - "issuerName": "./node_modules/lodash/_Hash.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4kuk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "module": "./node_modules/lodash/_Hash.js", - "moduleName": "./node_modules/lodash/_Hash.js", - "type": "cjs require", - "userRequest": "./_hashSet", - "loc": "5:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "var nativeCreate = require('./_nativeCreate');\n\n/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/**\n * Sets the hash `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Hash\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the hash instance.\n */\nfunction hashSet(key, value) {\n var data = this.__data__;\n this.size += this.has(key) ? 0 : 1;\n data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n return this;\n}\n\nmodule.exports = hashSet;\n" - }, - { - "id": "JTzB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsArguments.js", - "name": "./node_modules/lodash/_baseIsArguments.js", - "index": 500, - "index2": 490, - "size": 488, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "issuerId": "03A+", - "issuerName": "./node_modules/lodash/isArguments.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - }, - { - "id": "03A+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "name": "./node_modules/lodash/isArguments.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "03A+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "module": "./node_modules/lodash/isArguments.js", - "moduleName": "./node_modules/lodash/isArguments.js", - "type": "cjs require", - "userRequest": "./_baseIsArguments", - "loc": "1:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var baseGetTag = require('./_baseGetTag'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]';\n\n/**\n * The base implementation of `_.isArguments`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n */\nfunction baseIsArguments(value) {\n return isObjectLike(value) && baseGetTag(value) == argsTag;\n}\n\nmodule.exports = baseIsArguments;\n" - }, - { - "id": "JaqE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/ICustomCollectionField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/ICustomCollectionField.js", - "index": 8, - "index2": 5, - "size": 865, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICustomCollectionField", - "loc": "1:0-41" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICustomCollectionField", - "loc": "1:0-41" - } - ], - "usedExports": [ - "CustomCollectionFieldType" - ], - "providedExports": [ - "CustomCollectionFieldType" - ], - "optimizationBailout": [], - "depth": 3, - "source": "export var CustomCollectionFieldType;\n(function (CustomCollectionFieldType) {\n CustomCollectionFieldType[CustomCollectionFieldType[\"string\"] = 1] = \"string\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"number\"] = 2] = \"number\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"boolean\"] = 3] = \"boolean\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"dropdown\"] = 4] = \"dropdown\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"fabricIcon\"] = 5] = \"fabricIcon\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"url\"] = 6] = \"url\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"custom\"] = 7] = \"custom\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"color\"] = 8] = \"color\";\n})(CustomCollectionFieldType || (CustomCollectionFieldType = {}));\n//# sourceMappingURL=ICustomCollectionField.js.map" - }, - { - "id": "KHN1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "index": 36, - "index2": 26, - "size": 3341, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "18:14-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "23:8-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "70:4-18" - }, - { - "moduleId": "IBIL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/scheme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/scheme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/scheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "21:32-46" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Customizations", - "loc": "2:0-50" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "14:12-26" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "18:16-30" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "23:11-25" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Customizations", - "loc": "3:0-50" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "28:8-22" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "31:8-22" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "./Customizations", - "loc": "3:0-50" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "21:20-34" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "24:20-34" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "29:43-57" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/Customizations", - "loc": "19:0-48" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/Customizations", - "loc": "19:0-48" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "104:11-25" - } - ], - "usedExports": [ - "Customizations" - ], - "providedExports": [ - "Customizations" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { GlobalSettings } from '../GlobalSettings';\nvar CustomizationsGlobalKey = 'customizations';\nvar NO_CUSTOMIZATIONS = { settings: {}, scopedSettings: {}, inCustomizerContext: false };\nvar _allSettings = GlobalSettings.getValue(CustomizationsGlobalKey, {\n settings: {},\n scopedSettings: {},\n inCustomizerContext: false,\n});\nvar _events = [];\nvar Customizations = /** @class */ (function () {\n function Customizations() {\n }\n Customizations.reset = function () {\n _allSettings.settings = {};\n _allSettings.scopedSettings = {};\n };\n /** Apply global Customization settings.\n * @example Customizations.applySettings(\\{ theme: \\{...\\} \\});\n */\n Customizations.applySettings = function (settings) {\n _allSettings.settings = __assign(__assign({}, _allSettings.settings), settings);\n Customizations._raiseChange();\n };\n /** Apply Customizations to a particular named scope, like a component.\n * @example Customizations.applyScopedSettings('Nav', \\{ styles: () =\\> \\{\\} \\});\n */\n Customizations.applyScopedSettings = function (scopeName, settings) {\n _allSettings.scopedSettings[scopeName] = __assign(__assign({}, _allSettings.scopedSettings[scopeName]), settings);\n Customizations._raiseChange();\n };\n Customizations.getSettings = function (properties, scopeName, localSettings) {\n if (localSettings === void 0) { localSettings = NO_CUSTOMIZATIONS; }\n var settings = {};\n var localScopedSettings = (scopeName && localSettings.scopedSettings[scopeName]) || {};\n var globalScopedSettings = (scopeName && _allSettings.scopedSettings[scopeName]) || {};\n for (var _i = 0, properties_1 = properties; _i < properties_1.length; _i++) {\n var property = properties_1[_i];\n settings[property] =\n localScopedSettings[property] ||\n localSettings.settings[property] ||\n globalScopedSettings[property] ||\n _allSettings.settings[property];\n }\n return settings;\n };\n /** Used to run some code that sets Customizations without triggering an update until the end.\n * Useful for applying Customizations that don't affect anything currently rendered, or for\n * applying many customizations at once.\n * @param suppressUpdate - Do not raise the change event at the end, preventing all updates\n */\n Customizations.applyBatchedUpdates = function (code, suppressUpdate) {\n Customizations._suppressUpdates = true;\n try {\n code();\n }\n catch (_a) {\n /* do nothing */\n }\n Customizations._suppressUpdates = false;\n if (!suppressUpdate) {\n Customizations._raiseChange();\n }\n };\n Customizations.observe = function (onChange) {\n _events.push(onChange);\n };\n Customizations.unobserve = function (onChange) {\n _events = _events.filter(function (cb) { return cb !== onChange; });\n };\n Customizations._raiseChange = function () {\n if (!Customizations._suppressUpdates) {\n _events.forEach(function (cb) { return cb(); });\n }\n };\n return Customizations;\n}());\nexport { Customizations };\n//# sourceMappingURL=Customizations.js.map" - }, - { - "id": "KMkd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheClear.js", - "name": "./node_modules/lodash/_listCacheClear.js", - "index": 448, - "index2": 439, - "size": 218, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "issuerId": "Xi7e", - "issuerName": "./node_modules/lodash/_ListCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Xi7e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "module": "./node_modules/lodash/_ListCache.js", - "moduleName": "./node_modules/lodash/_ListCache.js", - "type": "cjs require", - "userRequest": "./_listCacheClear", - "loc": "1:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * Removes all key-value entries from the list cache.\n *\n * @private\n * @name clear\n * @memberOf ListCache\n */\nfunction listCacheClear() {\n this.__data__ = [];\n this.size = 0;\n}\n\nmodule.exports = listCacheClear;\n" - }, - { - "id": "KZ3/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/ICollectionIconFieldProps.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/ICollectionIconFieldProps.js", - "index": 29, - "index2": 20, - "size": 53, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "issuerId": "niPH", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "niPH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "niPH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionIconFieldProps", - "loc": "1:0-44" - }, - { - "moduleId": "niPH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionIconFieldProps", - "loc": "1:0-44" - } - ], - "usedExports": [ - "CollectionIconField" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "//# sourceMappingURL=ICollectionIconFieldProps.js.map" - }, - { - "id": "KfNM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_objectToString.js", - "name": "./node_modules/lodash/_objectToString.js", - "index": 469, - "index2": 455, - "size": 565, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "issuerId": "NykK", - "issuerName": "./node_modules/lodash/_baseGetTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NykK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "module": "./node_modules/lodash/_baseGetTag.js", - "moduleName": "./node_modules/lodash/_baseGetTag.js", - "type": "cjs require", - "userRequest": "./_objectToString", - "loc": "3:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/**\n * Converts `value` to a string using `Object.prototype.toString`.\n *\n * @private\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n */\nfunction objectToString(value) {\n return nativeObjectToString.call(value);\n}\n\nmodule.exports = objectToString;\n" - }, - { - "id": "KiHr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/object.js", - "name": "./node_modules/@uifabric/utilities/lib/object.js", - "index": 141, - "index2": 128, - "size": 4961, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "45:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "128:20-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "135:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "135:57-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "143:236-242" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "175:13-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "324:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "366:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "394:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "444:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "444:57-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "514:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "527:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "808:16-22" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "250:16-30" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "250:57-71" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:4-17" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:8-21" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:28-34" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "148:28-34" - }, - { - "moduleId": "cwxN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/EventGroup.js", - "module": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "type": "harmony side effect evaluation", - "userRequest": "./object", - "loc": "1:0-34" - }, - { - "moduleId": "cwxN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/EventGroup.js", - "module": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "type": "harmony import specifier", - "userRequest": "./object", - "loc": "32:16-22" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "49:16-30" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "191:28-34" - } - ], - "usedExports": [ - "assign", - "shallowCompare" - ], - "providedExports": [ - "shallowCompare", - "assign", - "filteredAssign", - "mapEnumByName", - "values", - "omit" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Compares a to b and b to a.\n *\n * @public\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function shallowCompare(a, b) {\n for (var propName in a) {\n if (a.hasOwnProperty(propName)) {\n if (!b.hasOwnProperty(propName) || b[propName] !== a[propName]) {\n return false;\n }\n }\n }\n for (var propName in b) {\n if (b.hasOwnProperty(propName)) {\n if (!a.hasOwnProperty(propName)) {\n return false;\n }\n }\n }\n return true;\n}\n/**\n * Makes a resulting merge of a bunch of objects. Pass in the target object followed by 1 or more\n * objects as arguments and they will be merged sequentially into the target. Note that this will\n * shallow merge; it will not create new cloned values for target members.\n *\n * @public\n * @param target - Target object to merge following object arguments into.\n * @param args - One or more objects that will be mixed into the target in the order they are provided.\n * @returns Resulting merged target.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function assign(target) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n return filteredAssign.apply(this, [null, target].concat(args));\n}\n/**\n * Makes a resulting merge of a bunch of objects, but allows a filter function to be passed in to filter\n * the resulting merges. This allows for scenarios where you want to merge \"everything except that one thing\"\n * or \"properties that start with data-\". Note that this will shallow merge; it will not create new cloned\n * values for target members.\n *\n * @public\n * @param isAllowed - Callback to determine if the given propName is allowed in the result.\n * @param target - Target object to merge following object arguments into.\n * @param args - One or more objects that will be mixed into the target in the order they are provided.\n * @returns Resulting merged target.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function filteredAssign(isAllowed, target) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n target = target || {};\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\n var sourceObject = args_1[_a];\n if (sourceObject) {\n for (var propName in sourceObject) {\n if (sourceObject.hasOwnProperty(propName) && (!isAllowed || isAllowed(propName))) {\n target[propName] = sourceObject[propName];\n }\n }\n }\n }\n return target;\n}\n/**\n * Takes an enum and iterates over each value of the enum (as a string), running the callback on each,\n * returning a mapped array.\n * @param theEnum - Enum to iterate over\n * @param callback - The first parameter the name of the entry, and the second parameter is the value\n * of that entry, which is the value you'd normally use when using the enum (usually a number).\n */\nexport function mapEnumByName(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntheEnum, callback) {\n // map to satisfy compiler since it doesn't realize we strip out undefineds in the .filter() call\n return Object.keys(theEnum)\n .map(function (p) {\n // map on each property name as a string\n if (String(Number(p)) !== p) {\n // if the property is not just a number (because enums in TypeScript will map both ways)\n return callback(p, theEnum[p]);\n }\n return undefined;\n })\n .filter(function (v) { return !!v; }); // only return elements with values\n}\n/**\n * Get all values in an object dictionary\n *\n * @param obj - The dictionary to get values for\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function values(obj) {\n return Object.keys(obj).reduce(function (arr, key) {\n arr.push(obj[key]);\n return arr;\n }, []);\n}\n/**\n * Tiny helper to do the minimal amount of work in duplicating an object but omitting some\n * props. This ends up faster than using object ...rest or reduce to filter.\n *\n * This behaves very much like filteredAssign, but does not merge many objects together,\n * uses an exclusion object map, and avoids spreads all for optimal performance.\n *\n * See perf test for background:\n * https://jsperf.com/omit-vs-rest-vs-reduce/1\n *\n * @param obj - The object to clone\n * @param exclusions - The array of keys to exclude\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function omit(obj, exclusions) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var result = {};\n for (var key in obj) {\n if (exclusions.indexOf(key) === -1 && obj.hasOwnProperty(key)) {\n result[key] = obj[key];\n }\n }\n return result;\n}\n//# sourceMappingURL=object.js.map" - }, - { - "id": "Kx7X", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/StyleOptionsState.js", - "name": "./node_modules/@uifabric/merge-styles/lib/StyleOptionsState.js", - "index": 48, - "index2": 34, - "size": 890, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerId": "YDzY", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "3:0-54" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./StyleOptionsState", - "loc": "18:35-50" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "8:0-45" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./StyleOptionsState", - "loc": "8:0-45" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "26:12-29" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "44:4-21" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "2:0-54" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony import specifier", - "userRequest": "./StyleOptionsState", - "loc": "14:26-41" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "1:0-54" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "1:0-54" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./StyleOptionsState", - "loc": "9:77-92" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./StyleOptionsState", - "loc": "15:60-75" - } - ], - "usedExports": [ - "getStyleOptions", - "setRTL" - ], - "providedExports": [ - "setRTL", - "getRTL", - "getStyleOptions" - ], - "optimizationBailout": [], - "depth": 7, - "source": "/**\n * Sets the current RTL value.\n */\nexport function setRTL(isRTL) {\n if (_rtl !== isRTL) {\n _rtl = isRTL;\n }\n}\n/**\n * Gets the current RTL value.\n */\nexport function getRTL() {\n if (_rtl === undefined) {\n _rtl =\n typeof document !== 'undefined' &&\n !!document.documentElement &&\n document.documentElement.getAttribute('dir') === 'rtl';\n }\n return _rtl;\n}\n// This has been split into 2 lines because it was working in Fabric due to the code being transpiled to es5, so this\n// was converted to var while not working in Fluent that uses babel to transpile the code to be es6-like. Splitting the\n// logic into two lines, however, allows it to work in both scenarios.\nvar _rtl;\n_rtl = getRTL();\nexport function getStyleOptions() {\n return {\n rtl: getRTL(),\n };\n}\n//# sourceMappingURL=StyleOptionsState.js.map" - }, - { - "id": "KxBF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSlice.js", - "name": "./node_modules/lodash/_baseSlice.js", - "index": 566, - "index2": 558, - "size": 756, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "issuerId": "gpbi", - "issuerName": "./node_modules/lodash/_parent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - }, - { - "id": "gpbi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "name": "./node_modules/lodash/_parent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gpbi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "module": "./node_modules/lodash/_parent.js", - "moduleName": "./node_modules/lodash/_parent.js", - "type": "cjs require", - "userRequest": "./_baseSlice", - "loc": "2:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * The base implementation of `_.slice` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\nfunction baseSlice(array, start, end) {\n var index = -1,\n length = array.length;\n\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = end > length ? length : end;\n if (end < 0) {\n end += length;\n }\n length = start > end ? 0 : ((end - start) >>> 0);\n start >>>= 0;\n\n var result = Array(length);\n while (++index < length) {\n result[index] = array[index + start];\n }\n return result;\n}\n\nmodule.exports = baseSlice;\n" - }, - { - "id": "Kz5y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_root.js", - "name": "./node_modules/lodash/_root.js", - "index": 466, - "index2": 452, - "size": 300, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Symbol.js", - "issuerId": "nmnc", - "issuerName": "./node_modules/lodash/_Symbol.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js" - }, - { - "id": "nmnc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Symbol.js", - "name": "./node_modules/lodash/_Symbol.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "2gN3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_coreJsData.js", - "module": "./node_modules/lodash/_coreJsData.js", - "moduleName": "./node_modules/lodash/_coreJsData.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "5Tg0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneBuffer.js", - "module": "./node_modules/lodash/_cloneBuffer.js", - "moduleName": "./node_modules/lodash/_cloneBuffer.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "DSRE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "module": "./node_modules/lodash/isBuffer.js", - "moduleName": "./node_modules/lodash/isBuffer.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "HOxn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Promise.js", - "module": "./node_modules/lodash/_Promise.js", - "moduleName": "./node_modules/lodash/_Promise.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - }, - { - "moduleId": "JHRd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Uint8Array.js", - "module": "./node_modules/lodash/_Uint8Array.js", - "moduleName": "./node_modules/lodash/_Uint8Array.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "Of+w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_WeakMap.js", - "module": "./node_modules/lodash/_WeakMap.js", - "moduleName": "./node_modules/lodash/_WeakMap.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - }, - { - "moduleId": "ebwN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Map.js", - "module": "./node_modules/lodash/_Map.js", - "moduleName": "./node_modules/lodash/_Map.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - }, - { - "moduleId": "nmnc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Symbol.js", - "module": "./node_modules/lodash/_Symbol.js", - "moduleName": "./node_modules/lodash/_Symbol.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "tadb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_DataView.js", - "module": "./node_modules/lodash/_DataView.js", - "moduleName": "./node_modules/lodash/_DataView.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - }, - { - "moduleId": "yGk4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Set.js", - "module": "./node_modules/lodash/_Set.js", - "moduleName": "./node_modules/lodash/_Set.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var freeGlobal = require('./_freeGlobal');\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\nmodule.exports = root;\n" - }, - { - "id": "L8xA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackDelete.js", - "name": "./node_modules/lodash/_stackDelete.js", - "index": 456, - "index2": 448, - "size": 405, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackDelete", - "loc": "3:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Removes `key` and its value from the stack.\n *\n * @private\n * @name delete\n * @memberOf Stack\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction stackDelete(key) {\n var data = this.__data__,\n result = data['delete'](key);\n\n this.size = data.size;\n return result;\n}\n\nmodule.exports = stackDelete;\n" - }, - { - "id": "LQdl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "name": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "index": 72, - "index2": 55, - "size": 1141, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "22:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "37:21-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "38:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "64:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "78:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "86:28-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "101:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "108:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "111:25-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "124:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "130:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "139:25-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "151:21-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "162:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "162:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "237:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "246:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "427:12-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "431:12-30" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "97:12-30" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:29-52" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "154:38-61" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "50:29-52" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "60:29-52" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "80:29-52" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "35:29-52" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "115:25-48" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setFocusVisibility", - "loc": "60:0-83" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setFocusVisibility", - "loc": "60:0-83" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setFocusVisibility", - "loc": "60:0-83" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "229:29-52" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "29:25-48" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "66:25-48" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "69:25-48" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "92:29-52" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony side effect evaluation", - "userRequest": "./setFocusVisibility", - "loc": "3:0-58" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "34:4-22" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "38:8-26" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "43:38-56" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./setFocusVisibility", - "loc": "4:0-58" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "73:4-22" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "77:8-26" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "83:8-26" - } - ], - "usedExports": [ - "IsFocusVisibleClassName", - "setFocusVisibility" - ], - "providedExports": [ - "IsFocusVisibleClassName", - "IsFocusHiddenClassName", - "setFocusVisibility" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\nexport var IsFocusVisibleClassName = 'ms-Fabric--isFocusVisible';\nexport var IsFocusHiddenClassName = 'ms-Fabric--isFocusHidden';\n/**\n * Sets the visibility of focus styling.\n *\n * By default, focus styles (the box surrounding a focused Button, for example) only show up when navigational\n * keypresses occur (through Tab, arrows, PgUp/PgDn, Home and End), and are hidden when mouse interactions occur.\n * This API provides an imperative way to turn them on/off.\n *\n * A use case might be when you have a keypress like ctrl-f6 navigate to a particular region on the page,\n * and want focus to show up.\n *\n * @param enabled - whether to remove or add focus\n * @param target - optional target\n */\nexport function setFocusVisibility(enabled, target) {\n var win = target ? getWindow(target) : getWindow();\n if (win) {\n var classList = win.document.body.classList;\n classList.add(enabled ? IsFocusVisibleClassName : IsFocusHiddenClassName);\n classList.remove(enabled ? IsFocusHiddenClassName : IsFocusVisibleClassName);\n }\n}\n//# sourceMappingURL=setFocusVisibility.js.map" - }, - { - "id": "LVfT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/tslib/tslib.es6.js", - "name": "./node_modules/@pnp/sp/node_modules/tslib/tslib.es6.js", - "index": 298, - "index2": 291, - "size": 10679, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "name": "./node_modules/@pnp/sp/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "name": "./node_modules/@pnp/sp/sharepointqueryable.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "80:15-24" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:19-30" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:15-24" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:19-30" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:4-13" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:4-13" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "92:15-24" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "94:19-30" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "111:15-24" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "113:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "4:0-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:38-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:11-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:12-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:15-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:11-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:56-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:15-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:19-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:23-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "38:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:33-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "41:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "42:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "46:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "52:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "59:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "59:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:12-22" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:13-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "64:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "70:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "74:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "74:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "76:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "76:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "79:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "81:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "83:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "84:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "86:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "92:46-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "95:42-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "96:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "97:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "98:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "101:49-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "107:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "109:66-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "113:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "115:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "115:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "119:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "125:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "126:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "127:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "134:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "136:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "138:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "140:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "140:38-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "142:15-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "146:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "148:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "149:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "151:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "152:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "154:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "154:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "155:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "155:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "157:13-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "157:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "158:13-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "159:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "162:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "165:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "166:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "168:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "169:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "171:18-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "175:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "185:131-140" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "187:39-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "190:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "191:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "191:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "194:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "197:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "200:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "207:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "209:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "224:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "226:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "229:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "232:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "256:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "257:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "258:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "258:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "259:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "259:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "262:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "265:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "268:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "271:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "274:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "275:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "277:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "277:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "280:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "280:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "282:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "283:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "286:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "289:11-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "297:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "297:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "299:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "299:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "308:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "311:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "314:12-22" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "336:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "339:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "340:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "340:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "342:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "342:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "342:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "354:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "357:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "359:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "366:20-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "367:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "370:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "373:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "376:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "378:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "379:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "382:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "385:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "386:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "388:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "388:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "391:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "394:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "397:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "400:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "403:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "406:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "409:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "412:14-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "415:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "418:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "420:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "421:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "421:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "424:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "427:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "430:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "433:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "433:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "435:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "436:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "439:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "441:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "442:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "445:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "479:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "482:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "485:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "488:4-14" - } - ], - "usedExports": [ - "__awaiter", - "__decorate", - "__extends", - "__generator", - "__spread" - ], - "providedExports": [ - "__extends", - "__assign", - "__rest", - "__decorate", - "__param", - "__metadata", - "__awaiter", - "__generator", - "__createBinding", - "__exportStar", - "__values", - "__read", - "__spread", - "__spreadArrays", - "__await", - "__asyncGenerator", - "__asyncDelegator", - "__asyncValues", - "__makeTemplateObject", - "__importStar", - "__importDefault", - "__classPrivateFieldGet", - "__classPrivateFieldSet" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n" - }, - { - "id": "LXxW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayFilter.js", - "name": "./node_modules/lodash/_arrayFilter.js", - "index": 525, - "index2": 516, - "size": 632, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "issuerId": "MvSz", - "issuerName": "./node_modules/lodash/_getSymbols.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - }, - { - "id": "MvSz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "name": "./node_modules/lodash/_getSymbols.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MvSz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "module": "./node_modules/lodash/_getSymbols.js", - "moduleName": "./node_modules/lodash/_getSymbols.js", - "type": "cjs require", - "userRequest": "./_arrayFilter", - "loc": "1:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * A specialized version of `_.filter` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\nfunction arrayFilter(array, predicate) {\n var index = -1,\n length = array == null ? 0 : array.length,\n resIndex = 0,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (predicate(value, index, array)) {\n result[resIndex++] = value;\n }\n }\n return result;\n}\n\nmodule.exports = arrayFilter;\n" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "index": 888, - "index2": 890, - "size": 199, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "issuerId": "ZSuZ", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZSuZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/number/index", - "loc": "1:0-46" - }, - { - "moduleId": "ZSuZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/number/index", - "loc": "1:0-46" - } - ], - "usedExports": [ - "PropertyFieldNumber" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './IPropertyFieldNumber';\nexport * from './PropertyFieldNumber';\nexport * from './IPropertyFieldNumberHost';\nexport * from './PropertyFieldNumberHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "LcsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getPrototype.js", - "name": "./node_modules/lodash/_getPrototype.js", - "index": 530, - "index2": 521, - "size": 163, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "issuerId": "oCl/", - "issuerName": "./node_modules/lodash/_getSymbolsIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+iFO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "module": "./node_modules/lodash/_initCloneObject.js", - "moduleName": "./node_modules/lodash/_initCloneObject.js", - "type": "cjs require", - "userRequest": "./_getPrototype", - "loc": "2:19-45" - }, - { - "moduleId": "YO3V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "module": "./node_modules/lodash/isPlainObject.js", - "moduleName": "./node_modules/lodash/isPlainObject.js", - "type": "cjs require", - "userRequest": "./_getPrototype", - "loc": "2:19-45" - }, - { - "moduleId": "oCl/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "module": "./node_modules/lodash/_getSymbolsIn.js", - "moduleName": "./node_modules/lodash/_getSymbolsIn.js", - "type": "cjs require", - "userRequest": "./_getPrototype", - "loc": "2:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var overArg = require('./_overArg');\n\n/** Built-in value references. */\nvar getPrototype = overArg(Object.getPrototypeOf, Object);\n\nmodule.exports = getPrototype;\n" - }, - { - "id": "Lcy0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "index": 10, - "index2": 7, - "size": 2319, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldCollectionData", - "loc": "3:0-46" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldCollectionData", - "loc": "3:0-46" - } - ], - "usedExports": [ - "PropertyFieldCollectionData" - ], - "providedExports": [ - "PropertyFieldCollectionData" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { PropertyPaneFieldType } from '@microsoft/sp-webpart-base';\nimport { PropertyFieldCollectionDataHost } from '.';\n/**\n * Property Field Collection Data Builder Class\n */\nvar PropertyFieldCollectionDataBuilder = /** @class */ (function () {\n function PropertyFieldCollectionDataBuilder(_targetProperty, _properties) {\n this.type = PropertyPaneFieldType.Custom;\n this.targetProperty = _targetProperty;\n this.properties = _properties;\n this.properties.onRender = this.render.bind(this);\n this.properties.onDispose = this.dispose.bind(this);\n }\n PropertyFieldCollectionDataBuilder.prototype.render = function (elem, context, changeCallback) {\n var props = this.properties;\n var element = React.createElement(PropertyFieldCollectionDataHost, __assign(__assign({}, props), { onChanged: this.onChanged.bind(this) }));\n ReactDOM.render(element, elem);\n if (changeCallback) {\n this._onChangeCallback = changeCallback;\n }\n };\n /**\n * Dispose the property field\n */\n PropertyFieldCollectionDataBuilder.prototype.dispose = function (elem) {\n ReactDOM.unmountComponentAtNode(elem);\n };\n /**\n * On field change event handler\n * @param value\n */\n PropertyFieldCollectionDataBuilder.prototype.onChanged = function (value) {\n if (this._onChangeCallback) {\n this._onChangeCallback(this.targetProperty, value);\n }\n };\n return PropertyFieldCollectionDataBuilder;\n}());\n/**\n * Property field\n * @param targetProperty\n * @param properties\n */\nexport function PropertyFieldCollectionData(targetProperty, properties) {\n return new PropertyFieldCollectionDataBuilder(targetProperty, __assign(__assign({}, properties), { onRender: null, onDispose: null }));\n}\n//# sourceMappingURL=PropertyFieldCollectionData.js.map" - }, - { - "id": "Lja1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "index": 287, - "index2": 283, - "size": 7579, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerId": "J5N+", - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js" - }, - { - "id": "J5N+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "J5N+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "module": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "type": "cjs require", - "userRequest": "!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/postcss-loader/src/index.js??postcss!./ListSearchWebPart.module.css", - "loc": "1:14-161" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "exports = module.exports = require(\"../../../node_modules/css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".listSearch_3d392993{box-sizing:border-box;padding:0 8px}.listSearch_3d392993:after,.listSearch_3d392993:before{display:table;content:\\\"\\\";line-height:0}.listSearch_3d392993:after{clear:both}.listSearch_3d392993 .row_3d392993{margin:0 -8px;box-sizing:border-box}.listSearch_3d392993 .row_3d392993:after,.listSearch_3d392993 .row_3d392993:before{display:table;content:\\\"\\\";line-height:0}.listSearch_3d392993 .row_3d392993:after{clear:both}.listSearch_3d392993 .column_3d392993{position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearch_3d392993 .column_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993{width:100%}}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993{margin:0 -8px;box-sizing:border-box}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993:after,.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993:before{display:table;content:\\\"\\\";line-height:0}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993:after{clear:both}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993{margin-top:5px;position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993{width:83.3333333333%}}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993{margin-top:5px;position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993{width:100%}}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993{margin-top:5px;position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993{width:16.6666666667%}}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993 .btn_3d392993{width:100%}.listSearch_3d392993 .column_3d392993 .rowData_3d392993{margin:0 -8px;box-sizing:border-box}.listSearch_3d392993 .column_3d392993 .rowData_3d392993:after,.listSearch_3d392993 .column_3d392993 .rowData_3d392993:before{display:table;content:\\\"\\\";line-height:0}.listSearch_3d392993 .column_3d392993 .rowData_3d392993:after{clear:both}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993{position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%;padding-top:16px}[dir=ltr] .listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993{width:100%}}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .template_resultCount_3d392993{padding-left:10px;margin-bottom:10px;font-weight:600}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer_3d392993{margin:0}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer_3d392993{text-align:center}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993{display:inline-block;text-align:center}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 .inverted_3d392993 a{color:#fff}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 .standard_3d392993 a{color:\\\"[theme: themePrimary, default: #005a9e]\\\"}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul{display:inline-block;padding-left:0;margin:0}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li{display:inline}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li a{float:left;padding:5px;text-decoration:none}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li a i{font-size:10px}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li .active_3d392993{font-weight:700;color:\\\"[theme: themeDark, default: #005a9e]\\\";text-decoration:underline}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li .active__inverted_3d392993{font-weight:700;color:#fff;text-decoration:underline}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li a:visited{color:inherit}.containerModal_3d392993{display:flex;-ms-flex-flow:\\\"column nowrap\\\";flex-flow:\\\"column nowrap\\\";-ms-flex-align:stretch;align-items:stretch;max-width:1200px}.containerModal_3d392993 .headerModal_3d392993{font-weight:700;-ms-flex:\\\"1 1 auto\\\";flex:\\\"1 1 auto\\\";border-top:4px solid;color:\\\"[theme:themePrimary, default: #0078d4]\\\";-ms-flex-align:center;align-items:center;font-size:x-large;padding-right:12px}.containerModal_3d392993 .bodyModal_3d392993{padding:0 24px 24px}.containerModal_3d392993 .bodyModal_3d392993 .propertyModal_3d392993{padding:10px 0;font-weight:700;color:\\\"[theme:themePrimary, default: #0078d4]\\\";font-size:larger}.collectionDataField_3d392993>span{display:none}.collectionDataField_3d392993 div[class^=invalid_]{border-color:#a80000!important}\", \"\"]);\n" - }, - { - "id": "LrGI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js", - "index": 221, - "index2": 204, - "size": 1058, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "issuerId": "ZdmW", - "issuerName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "156:69-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "186:32-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "216:64-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "288:19-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "467:266-284" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "564:163-188" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "626:14-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "766:78-96" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "85:60-78" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone.types", - "loc": "6:0-82" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "193:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "201:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "209:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "217:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "238:57-82" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "239:58-83" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "243:46-64" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "640:55-73" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "780:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "811:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "897:37-55" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "1040:19-37" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "104:101-119" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "499:86-104" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "784:61-79" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone.types", - "loc": "2:0-34" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone.types", - "loc": "2:0-34" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "198:65-83" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-focus", - "loc": "86:182-200" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-focus", - "loc": "86:212-230" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "138:117-135" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "18:104-122" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "87:65-83" - } - ], - "usedExports": [ - "FocusZoneDirection", - "FocusZoneTabbableElements" - ], - "providedExports": [ - "FocusZoneTabbableElements", - "FocusZoneDirection" - ], - "optimizationBailout": [], - "depth": 7, - "source": "/**\n * {@docCategory FocusZone}\n */\nexport var FocusZoneTabbableElements = {\n /** Tabbing is not allowed */\n none: 0,\n /** All tabbing action is allowed */\n all: 1,\n /** Tabbing is allowed only on input elements */\n inputOnly: 2,\n};\n/**\n * {@docCategory FocusZone}\n */\nexport var FocusZoneDirection;\n(function (FocusZoneDirection) {\n /** Only react to up/down arrows. */\n FocusZoneDirection[FocusZoneDirection[\"vertical\"] = 0] = \"vertical\";\n /** Only react to left/right arrows. */\n FocusZoneDirection[FocusZoneDirection[\"horizontal\"] = 1] = \"horizontal\";\n /** React to all arrows. */\n FocusZoneDirection[FocusZoneDirection[\"bidirectional\"] = 2] = \"bidirectional\";\n /**\n * React to all arrows. Navigate next item in DOM on right/down arrow keys and previous - left/up arrow keys.\n * Right and Left arrow keys are swapped in RTL mode.\n */\n FocusZoneDirection[FocusZoneDirection[\"domOrder\"] = 3] = \"domOrder\";\n})(FocusZoneDirection || (FocusZoneDirection = {}));\n//# sourceMappingURL=FocusZone.types.js.map" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "index": 916, - "index2": 912, - "size": 2862, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerId": "QxFg", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyPaneWebPartInformationHost", - "loc": "4:0-86" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony import specifier", - "userRequest": "./PropertyPaneWebPartInformationHost", - "loc": "27:42-76" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyPaneWebPartInformationHost", - "loc": "4:0-53" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyPaneWebPartInformationHost", - "loc": "4:0-53" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as strings from 'PropertyControlStrings';\nimport * as telemetry from '../../common/telemetry';\nvar PropertyPaneWebPartInformationHost = /** @class */ (function (_super) {\n __extends(PropertyPaneWebPartInformationHost, _super);\n function PropertyPaneWebPartInformationHost(props) {\n var _this = _super.call(this, props) || this;\n telemetry.track('PropertyWebPartInformation', {});\n return _this;\n }\n PropertyPaneWebPartInformationHost.prototype.render = function () {\n var iframeElm = null;\n if (this.props.videoProperties && this.props.videoProperties.embedLink !== \"\") {\n var linkProperties = {};\n linkProperties[\"src\"] = this.props.videoProperties.embedLink;\n if (this.props.videoProperties.height) {\n linkProperties[\"height\"] = this.props.videoProperties.height;\n }\n if (this.props.videoProperties.width) {\n linkProperties[\"width\"] = this.props.videoProperties.width;\n }\n for (var prop in this.props.videoProperties.properties) {\n linkProperties[\"prop\"] = this.props.videoProperties[prop];\n }\n iframeElm = React.createElement(\"iframe\", __assign({}, linkProperties));\n }\n return (React.createElement(\"div\", null,\n React.createElement(\"div\", { dangerouslySetInnerHTML: { __html: this.props.description } }),\n this.props.moreInfoLink && (React.createElement(\"div\", null,\n React.createElement(\"a\", { href: this.props.moreInfoLink, target: this.props.moreInfoLinkTarget }, strings.MoreInfoLabel))),\n iframeElm));\n };\n return PropertyPaneWebPartInformationHost;\n}(React.Component));\nexport default PropertyPaneWebPartInformationHost;\n//# sourceMappingURL=PropertyPaneWebPartInformationHost.js.map" - }, - { - "id": "MKqn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "index": 282, - "index2": 275, - "size": 356, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "issuerId": "Mmr5", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js" - }, - { - "id": "Mmr5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Mmr5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./FieldErrorMessage.module.css", - "loc": "1:14-147" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "exports = module.exports = require(\"../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".errorMessage_49b1134c{font-size:12px;font-weight:400;color:#a80000;margin:0;padding-top:5px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.errorIcon_49b1134c{font-size:14px;margin-right:5px}\", \"\"]);\n" - }, - { - "id": "MMmD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArrayLike.js", - "name": "./node_modules/lodash/isArrayLike.js", - "index": 516, - "index2": 507, - "size": 830, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "issuerId": "mTTR", - "issuerName": "./node_modules/lodash/keysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7GkX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "module": "./node_modules/lodash/keys.js", - "moduleName": "./node_modules/lodash/keys.js", - "type": "cjs require", - "userRequest": "./isArrayLike", - "loc": "3:18-42" - }, - { - "moduleId": "mTTR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "module": "./node_modules/lodash/keysIn.js", - "moduleName": "./node_modules/lodash/keysIn.js", - "type": "cjs require", - "userRequest": "./isArrayLike", - "loc": "3:18-42" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var isFunction = require('./isFunction'),\n isLength = require('./isLength');\n\n/**\n * Checks if `value` is array-like. A value is considered array-like if it's\n * not a function and has a `value.length` that's an integer greater than or\n * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n * @example\n *\n * _.isArrayLike([1, 2, 3]);\n * // => true\n *\n * _.isArrayLike(document.body.children);\n * // => true\n *\n * _.isArrayLike('abc');\n * // => true\n *\n * _.isArrayLike(_.noop);\n * // => false\n */\nfunction isArrayLike(value) {\n return value != null && isLength(value.length) && !isFunction(value);\n}\n\nmodule.exports = isArrayLike;\n" - }, - { - "id": "MflU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/IPropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/IPropertyFieldSitePickerHost.js", - "index": 886, - "index2": 883, - "size": 56, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerId": "Bd+z", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldSitePickerHost", - "loc": "4:0-47" - }, - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldSitePickerHost", - "loc": "4:0-47" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldSitePickerHost.js.map" - }, - { - "id": "Mmr5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "index": 281, - "index2": 276, - "size": 572, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "cjs require", - "userRequest": "./FieldErrorMessage.module.css", - "loc": "2:0-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./FieldErrorMessage.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js", - "index": 491, - "index2": 486, - "size": 899, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "issuerId": "juv8", - "issuerName": "./node_modules/lodash/_copyObject.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_assignValue", - "loc": "3:18-43" - }, - { - "moduleId": "juv8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "module": "./node_modules/lodash/_copyObject.js", - "moduleName": "./node_modules/lodash/_copyObject.js", - "type": "cjs require", - "userRequest": "./_assignValue", - "loc": "1:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseAssignValue = require('./_baseAssignValue'),\n eq = require('./eq');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Assigns `value` to `key` of `object` if the existing value is not equivalent\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction assignValue(object, key, value) {\n var objValue = object[key];\n if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n}\n\nmodule.exports = assignValue;\n" - }, - { - "id": "MvSz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "name": "./node_modules/lodash/_getSymbols.js", - "index": 524, - "index2": 518, - "size": 886, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "issuerId": "oCl/", - "issuerName": "./node_modules/lodash/_getSymbolsIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "VOtZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbols.js", - "module": "./node_modules/lodash/_copySymbols.js", - "moduleName": "./node_modules/lodash/_copySymbols.js", - "type": "cjs require", - "userRequest": "./_getSymbols", - "loc": "2:17-41" - }, - { - "moduleId": "oCl/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "module": "./node_modules/lodash/_getSymbolsIn.js", - "moduleName": "./node_modules/lodash/_getSymbolsIn.js", - "type": "cjs require", - "userRequest": "./_getSymbols", - "loc": "3:17-41" - }, - { - "moduleId": "qZTm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeys.js", - "module": "./node_modules/lodash/_getAllKeys.js", - "moduleName": "./node_modules/lodash/_getAllKeys.js", - "type": "cjs require", - "userRequest": "./_getSymbols", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var arrayFilter = require('./_arrayFilter'),\n stubArray = require('./stubArray');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Built-in value references. */\nvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n/**\n * Creates an array of the own enumerable symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of symbols.\n */\nvar getSymbols = !nativeGetSymbols ? stubArray : function(object) {\n if (object == null) {\n return [];\n }\n object = Object(object);\n return arrayFilter(nativeGetSymbols(object), function(symbol) {\n return propertyIsEnumerable.call(object, symbol);\n });\n};\n\nmodule.exports = getSymbols;\n" - }, - { - "id": "N+vi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "name": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "index": 40, - "index2": 29, - "size": 1236, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "19:23-47" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSetsWithProps", - "loc": "4:0-70" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./concatStyleSetsWithProps", - "loc": "4:0-70" - } - ], - "usedExports": [ - "concatStyleSetsWithProps" - ], - "providedExports": [ - "concatStyleSetsWithProps" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { concatStyleSets } from './concatStyleSets';\n/**\n * Concatenates style sets into one, but resolves functional sets using the given props.\n * @param styleProps - Props used to resolve functional sets.\n * @param allStyles - Style sets, which can be functions or objects.\n */\nexport function concatStyleSetsWithProps(styleProps) {\n var allStyles = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n allStyles[_i - 1] = arguments[_i];\n }\n var result = [];\n for (var _a = 0, allStyles_1 = allStyles; _a < allStyles_1.length; _a++) {\n var styles = allStyles_1[_a];\n if (styles) {\n result.push(typeof styles === 'function' ? styles(styleProps) : styles);\n }\n }\n if (result.length === 1) {\n return result[0];\n }\n else if (result.length) {\n // cliffkoh: I cannot figure out how to avoid the cast to any here.\n // It is something to do with the use of Omit in IStyleSet.\n // It might not be necessary once Omit becomes part of lib.d.ts (when we remove our own Omit and rely on\n // the official version).\n return concatStyleSets.apply(void 0, result);\n }\n return {};\n}\n//# sourceMappingURL=concatStyleSetsWithProps.js.map" - }, - { - "id": "N3Ov", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/setPortalAttribute.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/setPortalAttribute.js", - "index": 151, - "index2": 138, - "size": 323, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:12-30" - }, - { - "moduleId": "69HH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-84" - }, - { - "moduleId": "69HH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-84" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setPortalAttribute", - "loc": "9:0-37" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setPortalAttribute", - "loc": "9:0-37" - }, - { - "moduleId": "rgVD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "type": "harmony side effect evaluation", - "userRequest": "./setPortalAttribute", - "loc": "2:0-61" - }, - { - "moduleId": "rgVD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "type": "harmony import specifier", - "userRequest": "./setPortalAttribute", - "loc": "12:135-156" - }, - { - "moduleId": "rgVD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "type": "harmony import specifier", - "userRequest": "./setPortalAttribute", - "loc": "13:62-83" - } - ], - "usedExports": [ - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute" - ], - "providedExports": [ - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export var DATA_PORTAL_ATTRIBUTE = 'data-portal-element';\n/**\n * Identify element as a portal by setting an attribute.\n * @param element - Element to mark as a portal.\n */\nexport function setPortalAttribute(element) {\n element.setAttribute(DATA_PORTAL_ATTRIBUTE, 'true');\n}\n//# sourceMappingURL=setPortalAttribute.js.map" - }, - { - "id": "N3ZD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "index": 279, - "index2": 278, - "size": 2097, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "31:0-66" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "72:66-83" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "59:0-66" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "168:32-49" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "index": 279, - "index2": 278, - "size": 1825, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "31:0-66" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "72:66-83" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "59:0-66" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "168:32-49" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport styles from './FieldErrorMessage.module.scss';\nimport { Icon } from 'office-ui-fabric-react/lib/Icon';\n/**\n * Component that shows an error message when something went wront with the property control\n */\nvar FieldErrorMessage = /** @class */ (function (_super) {\n __extends(FieldErrorMessage, _super);\n function FieldErrorMessage() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n FieldErrorMessage.prototype.render = function () {\n if (this.props.errorMessage !== 'undefined' && this.props.errorMessage !== null && this.props.errorMessage !== '') {\n return (React.createElement(\"div\", { \"aria-live\": \"assertive\" },\n React.createElement(\"p\", { className: \"ms-TextField-errorMessage \" + styles.errorMessage },\n React.createElement(Icon, { iconName: 'Error', className: styles.errorIcon }),\n React.createElement(\"span\", { \"data-automation-id\": \"error-message\" }, this.props.errorMessage))));\n }\n else {\n return null;\n }\n };\n return FieldErrorMessage;\n}(React.Component));\nexport default FieldErrorMessage;\n//# sourceMappingURL=FieldErrorMessage.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "index": 280, - "index2": 277, - "size": 262, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony side effect evaluation", - "userRequest": "./FieldErrorMessage.module.scss", - "loc": "15:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony import specifier", - "userRequest": "./FieldErrorMessage.module.scss", - "loc": "28:85-91" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony import specifier", - "userRequest": "./FieldErrorMessage.module.scss", - "loc": "29:78-84" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/* tslint:disable */\nrequire(\"./FieldErrorMessage.module.css\");\nvar styles = {\n errorMessage: 'errorMessage_49b1134c',\n errorIcon: 'errorIcon_49b1134c'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=FieldErrorMessage.module.scss.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "NKxu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "name": "./node_modules/lodash/_baseIsNative.js", - "index": 462, - "index2": 462, - "size": 1417, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "issuerId": "Cwc5", - "issuerName": "./node_modules/lodash/_getNative.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Cwc5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "module": "./node_modules/lodash/_getNative.js", - "moduleName": "./node_modules/lodash/_getNative.js", - "type": "cjs require", - "userRequest": "./_baseIsNative", - "loc": "1:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var isFunction = require('./isFunction'),\n isMasked = require('./_isMasked'),\n isObject = require('./isObject'),\n toSource = require('./_toSource');\n\n/**\n * Used to match `RegExp`\n * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n */\nvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n/** Used to detect host constructors (Safari). */\nvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n/** Used for built-in method references. */\nvar funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Used to detect if a method is native. */\nvar reIsNative = RegExp('^' +\n funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n);\n\n/**\n * The base implementation of `_.isNative` without bad shim checks.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function,\n * else `false`.\n */\nfunction baseIsNative(value) {\n if (!isObject(value) || isMasked(value)) {\n return false;\n }\n var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n return pattern.test(toSource(value));\n}\n\nmodule.exports = baseIsNative;\n" - }, - { - "id": "Npjl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getValue.js", - "name": "./node_modules/lodash/_getValue.js", - "index": 474, - "index2": 463, - "size": 325, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "issuerId": "Cwc5", - "issuerName": "./node_modules/lodash/_getNative.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Cwc5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "module": "./node_modules/lodash/_getNative.js", - "moduleName": "./node_modules/lodash/_getNative.js", - "type": "cjs require", - "userRequest": "./_getValue", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "/**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction getValue(object, key) {\n return object == null ? undefined : object[key];\n}\n\nmodule.exports = getValue;\n" - }, - { - "id": "NqsX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/setSSR.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/setSSR.js", - "index": 39, - "index2": 23, - "size": 232, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "issuerId": "3uSm", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "elao", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "name": "./node_modules/@uifabric/utilities/lib/Async.js" - }, - { - "id": "3uSm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "3uSm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "type": "harmony side effect evaluation", - "userRequest": "./setSSR", - "loc": "1:0-34" - }, - { - "moduleId": "3uSm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "type": "harmony import specifier", - "userRequest": "./setSSR", - "loc": "21:8-14" - }, - { - "moduleId": "4PRO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "type": "harmony side effect evaluation", - "userRequest": "./setSSR", - "loc": "1:0-34" - }, - { - "moduleId": "4PRO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "type": "harmony import specifier", - "userRequest": "./setSSR", - "loc": "11:8-14" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/setSSR", - "loc": "61:0-38" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/setSSR", - "loc": "61:0-38" - } - ], - "usedExports": [ - "_isSSR" - ], - "providedExports": [ - "_isSSR", - "setSSR" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var _isSSR = false;\n/**\n * Helper to set ssr mode to simulate no window object returned from getWindow helper.\n *\n * @public\n */\nexport function setSSR(isEnabled) {\n _isSSR = isEnabled;\n}\n//# sourceMappingURL=setSSR.js.map" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js", - "index": 464, - "index2": 456, - "size": 792, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "issuerId": "YO3V", - "issuerName": "./node_modules/lodash/isPlainObject.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/9aa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSymbol.js", - "module": "./node_modules/lodash/isSymbol.js", - "moduleName": "./node_modules/lodash/isSymbol.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - }, - { - "moduleId": "JTzB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsArguments.js", - "module": "./node_modules/lodash/_baseIsArguments.js", - "moduleName": "./node_modules/lodash/_baseIsArguments.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - }, - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "6:17-41" - }, - { - "moduleId": "YO3V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "module": "./node_modules/lodash/isPlainObject.js", - "moduleName": "./node_modules/lodash/isPlainObject.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - }, - { - "moduleId": "dD9F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsTypedArray.js", - "module": "./node_modules/lodash/_baseIsTypedArray.js", - "moduleName": "./node_modules/lodash/_baseIsTypedArray.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - }, - { - "moduleId": "lSCD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isFunction.js", - "module": "./node_modules/lodash/isFunction.js", - "moduleName": "./node_modules/lodash/isFunction.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var Symbol = require('./_Symbol'),\n getRawTag = require('./_getRawTag'),\n objectToString = require('./_objectToString');\n\n/** `Object#toString` result references. */\nvar nullTag = '[object Null]',\n undefinedTag = '[object Undefined]';\n\n/** Built-in value references. */\nvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n/**\n * The base implementation of `getTag` without fallbacks for buggy environments.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nfunction baseGetTag(value) {\n if (value == null) {\n return value === undefined ? undefinedTag : nullTag;\n }\n return (symToStringTag && symToStringTag in Object(value))\n ? getRawTag(value)\n : objectToString(value);\n}\n\nmodule.exports = baseGetTag;\n" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js", - "index": 493, - "index2": 484, - "size": 233, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "issuerId": "hypo", - "issuerName": "./node_modules/lodash/_baseAssignValue.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hypo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "module": "./node_modules/lodash/_baseAssignValue.js", - "moduleName": "./node_modules/lodash/_baseAssignValue.js", - "type": "cjs require", - "userRequest": "./_defineProperty", - "loc": "1:21-49" - }, - { - "moduleId": "pFRH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "module": "./node_modules/lodash/_baseSetToString.js", - "moduleName": "./node_modules/lodash/_baseSetToString.js", - "type": "cjs require", - "userRequest": "./_defineProperty", - "loc": "2:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative');\n\nvar defineProperty = (function() {\n try {\n var func = getNative(Object, 'defineProperty');\n func({}, '', {});\n return func;\n } catch (e) {}\n}());\n\nmodule.exports = defineProperty;\n" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js", - "index": 445, - "index2": 546, - "size": 5575, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_baseClone", - "loc": "2:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var Stack = require('./_Stack'),\n arrayEach = require('./_arrayEach'),\n assignValue = require('./_assignValue'),\n baseAssign = require('./_baseAssign'),\n baseAssignIn = require('./_baseAssignIn'),\n cloneBuffer = require('./_cloneBuffer'),\n copyArray = require('./_copyArray'),\n copySymbols = require('./_copySymbols'),\n copySymbolsIn = require('./_copySymbolsIn'),\n getAllKeys = require('./_getAllKeys'),\n getAllKeysIn = require('./_getAllKeysIn'),\n getTag = require('./_getTag'),\n initCloneArray = require('./_initCloneArray'),\n initCloneByTag = require('./_initCloneByTag'),\n initCloneObject = require('./_initCloneObject'),\n isArray = require('./isArray'),\n isBuffer = require('./isBuffer'),\n isMap = require('./isMap'),\n isObject = require('./isObject'),\n isSet = require('./isSet'),\n keys = require('./keys');\n\n/** Used to compose bitmasks for cloning. */\nvar CLONE_DEEP_FLAG = 1,\n CLONE_FLAT_FLAG = 2,\n CLONE_SYMBOLS_FLAG = 4;\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n genTag = '[object GeneratorFunction]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n objectTag = '[object Object]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n symbolTag = '[object Symbol]',\n weakMapTag = '[object WeakMap]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n/** Used to identify `toStringTag` values supported by `_.clone`. */\nvar cloneableTags = {};\ncloneableTags[argsTag] = cloneableTags[arrayTag] =\ncloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] =\ncloneableTags[boolTag] = cloneableTags[dateTag] =\ncloneableTags[float32Tag] = cloneableTags[float64Tag] =\ncloneableTags[int8Tag] = cloneableTags[int16Tag] =\ncloneableTags[int32Tag] = cloneableTags[mapTag] =\ncloneableTags[numberTag] = cloneableTags[objectTag] =\ncloneableTags[regexpTag] = cloneableTags[setTag] =\ncloneableTags[stringTag] = cloneableTags[symbolTag] =\ncloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =\ncloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\ncloneableTags[errorTag] = cloneableTags[funcTag] =\ncloneableTags[weakMapTag] = false;\n\n/**\n * The base implementation of `_.clone` and `_.cloneDeep` which tracks\n * traversed objects.\n *\n * @private\n * @param {*} value The value to clone.\n * @param {boolean} bitmask The bitmask flags.\n * 1 - Deep clone\n * 2 - Flatten inherited properties\n * 4 - Clone symbols\n * @param {Function} [customizer] The function to customize cloning.\n * @param {string} [key] The key of `value`.\n * @param {Object} [object] The parent object of `value`.\n * @param {Object} [stack] Tracks traversed objects and their clone counterparts.\n * @returns {*} Returns the cloned value.\n */\nfunction baseClone(value, bitmask, customizer, key, object, stack) {\n var result,\n isDeep = bitmask & CLONE_DEEP_FLAG,\n isFlat = bitmask & CLONE_FLAT_FLAG,\n isFull = bitmask & CLONE_SYMBOLS_FLAG;\n\n if (customizer) {\n result = object ? customizer(value, key, object, stack) : customizer(value);\n }\n if (result !== undefined) {\n return result;\n }\n if (!isObject(value)) {\n return value;\n }\n var isArr = isArray(value);\n if (isArr) {\n result = initCloneArray(value);\n if (!isDeep) {\n return copyArray(value, result);\n }\n } else {\n var tag = getTag(value),\n isFunc = tag == funcTag || tag == genTag;\n\n if (isBuffer(value)) {\n return cloneBuffer(value, isDeep);\n }\n if (tag == objectTag || tag == argsTag || (isFunc && !object)) {\n result = (isFlat || isFunc) ? {} : initCloneObject(value);\n if (!isDeep) {\n return isFlat\n ? copySymbolsIn(value, baseAssignIn(result, value))\n : copySymbols(value, baseAssign(result, value));\n }\n } else {\n if (!cloneableTags[tag]) {\n return object ? value : {};\n }\n result = initCloneByTag(value, tag, isDeep);\n }\n }\n // Check for circular references and return its corresponding clone.\n stack || (stack = new Stack);\n var stacked = stack.get(value);\n if (stacked) {\n return stacked;\n }\n stack.set(value, result);\n\n if (isSet(value)) {\n value.forEach(function(subValue) {\n result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));\n });\n } else if (isMap(value)) {\n value.forEach(function(subValue, key) {\n result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack));\n });\n }\n\n var keysFunc = isFull\n ? (isFlat ? getAllKeysIn : getAllKeys)\n : (isFlat ? keysIn : keys);\n\n var props = isArr ? undefined : keysFunc(value);\n arrayEach(props || value, function(subValue, key) {\n if (props) {\n key = subValue;\n subValue = value[key];\n }\n // Recursively populate clone (susceptible to call stack limits).\n assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));\n });\n return result;\n}\n\nmodule.exports = baseClone;\n" - }, - { - "id": "OXrI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "name": "./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "index": 41, - "index2": 28, - "size": 3544, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSets", - "loc": "1:0-52" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./concatStyleSets", - "loc": "36:31-46" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSets", - "loc": "3:0-52" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./concatStyleSets", - "loc": "3:0-52" - }, - { - "moduleId": "N+vi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "module": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSets", - "loc": "1:0-52" - }, - { - "moduleId": "N+vi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "module": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "type": "harmony import specifier", - "userRequest": "./concatStyleSets", - "loc": "27:15-30" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "40:51-66" - } - ], - "usedExports": [ - "concatStyleSets" - ], - "providedExports": [ - "concatStyleSets" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __spreadArrays } from \"tslib\";\n/**\n * Combine a set of styles together (but does not register css classes).\n * @param styleSets - One or more stylesets to be merged (each param can also be falsy).\n */\nexport function concatStyleSets() {\n var styleSets = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styleSets[_i] = arguments[_i];\n }\n if (styleSets && styleSets.length === 1 && styleSets[0] && !styleSets[0].subComponentStyles) {\n return styleSets[0];\n }\n var mergedSet = {};\n // We process sub component styles in two phases. First we collect them, then we combine them into 1 style function.\n var workingSubcomponentStyles = {};\n for (var _a = 0, styleSets_1 = styleSets; _a < styleSets_1.length; _a++) {\n var currentSet = styleSets_1[_a];\n if (currentSet) {\n for (var prop in currentSet) {\n if (currentSet.hasOwnProperty(prop)) {\n if (prop === 'subComponentStyles' && currentSet.subComponentStyles !== undefined) {\n // subcomponent styles - style functions or objects\n var currentComponentStyles = currentSet.subComponentStyles;\n for (var subCompProp in currentComponentStyles) {\n if (currentComponentStyles.hasOwnProperty(subCompProp)) {\n if (workingSubcomponentStyles.hasOwnProperty(subCompProp)) {\n workingSubcomponentStyles[subCompProp].push(currentComponentStyles[subCompProp]);\n }\n else {\n workingSubcomponentStyles[subCompProp] = [currentComponentStyles[subCompProp]];\n }\n }\n }\n continue;\n }\n // the as any casts below is a workaround for ts 2.8.\n // todo: remove cast to any in ts 2.9.\n var mergedValue = mergedSet[prop];\n var currentValue = currentSet[prop];\n if (mergedValue === undefined) {\n mergedSet[prop] = currentValue;\n }\n else {\n mergedSet[prop] = __spreadArrays((Array.isArray(mergedValue) ? mergedValue : [mergedValue]), (Array.isArray(currentValue) ? currentValue : [currentValue]));\n }\n }\n }\n }\n }\n if (Object.keys(workingSubcomponentStyles).length > 0) {\n mergedSet.subComponentStyles = {};\n var mergedSubStyles = mergedSet.subComponentStyles;\n var _loop_1 = function (subCompProp) {\n if (workingSubcomponentStyles.hasOwnProperty(subCompProp)) {\n var workingSet_1 = workingSubcomponentStyles[subCompProp];\n mergedSubStyles[subCompProp] = function (styleProps) {\n return concatStyleSets.apply(void 0, workingSet_1.map(function (styleFunctionOrObject) {\n return typeof styleFunctionOrObject === 'function' ? styleFunctionOrObject(styleProps) : styleFunctionOrObject;\n }));\n };\n }\n };\n // now we process the subcomponent styles if there are any\n for (var subCompProp in workingSubcomponentStyles) {\n _loop_1(subCompProp);\n }\n }\n return mergedSet;\n}\n//# sourceMappingURL=concatStyleSets.js.map" - }, - { - "id": "Of+w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_WeakMap.js", - "name": "./node_modules/lodash/_WeakMap.js", - "index": 538, - "index2": 530, - "size": 207, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "issuerId": "QqLw", - "issuerName": "./node_modules/lodash/_getTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_WeakMap", - "loc": "5:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar WeakMap = getNative(root, 'WeakMap');\n\nmodule.exports = WeakMap;\n" - }, - { - "id": "P2nX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/IPropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/IPropertyFieldSitePicker.js", - "index": 885, - "index2": 882, - "size": 52, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerId": "Bd+z", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldSitePicker", - "loc": "2:0-43" - }, - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldSitePicker", - "loc": "2:0-43" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldSitePicker.js.map" - }, - { - "id": "PIci", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/paginator/index.js", - "name": "./node_modules/paginator/index.js", - "index": 354, - "index2": 351, - "size": 3294, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "issuerId": "0fKb", - "issuerName": "./node_modules/react-js-pagination/dist/Pagination.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "paginator", - "loc": "12:40-60" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "module.exports = Paginator;\n\n// Paginator constructor\n//\n// `per_page` is the number of results per page, `length` is the number of\n// pages to display. They default to `25` and `10` respectively.\nfunction Paginator(per_page, length) {\n // You really should be calling this with `new Paginator`, but WHATEVER.\n if (!(this instanceof Paginator)) {\n return new Paginator(per_page, length);\n }\n\n // Woo, defaults!\n this.per_page = per_page || 25;\n this.length = length || 10;\n}\n\n// Build an object with all the necessary information for outputting pagination\n// controls.\n//\n// (new Paginator(paginator.build(100, 2)\nPaginator.prototype.build = function(total_results, current_page) {\n // We want the number of pages, rounded up to the nearest page.\n var total_pages = Math.ceil(total_results / this.per_page);\n\n // Ensure both total_results and current_page are treated as Numbers\n total_results = parseInt(total_results, 10);\n current_page = parseInt(current_page, 10) || 1;\n\n // Obviously we can't be on a negative or 0 page.\n if (current_page < 1) { current_page = 1; }\n // If the user has done something like /page/99999 we want to clamp that back\n // down.\n if (current_page > total_pages) { current_page = total_pages; }\n\n // This is the first page to be displayed as a numbered link.\n var first_page = Math.max(1, current_page - Math.floor(this.length / 2));\n\n // And here's the last page to be displayed specifically.\n var last_page = Math.min(total_pages, current_page + Math.floor(this.length / 2));\n\n // This is triggered if we're at or near one of the extremes; we won't have\n // enough page links. We need to adjust our bounds accordingly.\n if (last_page - first_page + 1 < this.length) {\n if (current_page < (total_pages / 2)) {\n last_page = Math.min(total_pages, last_page + (this.length - (last_page - first_page)));\n } else {\n first_page = Math.max(1, first_page - (this.length - (last_page - first_page)));\n }\n }\n\n // This can be triggered if the user wants an odd number of pages.\n if (last_page - first_page + 1 > this.length) {\n // We want to move towards whatever extreme we're closest to at the time.\n if (current_page > (total_pages / 2)) {\n first_page++;\n } else {\n last_page--;\n }\n }\n\n // First result on the page. This, along with the field below, can be used to\n // do \"showing x to y of z results\" style things.\n var first_result = this.per_page * (current_page - 1);\n if (first_result < 0) { first_result = 0; }\n\n // Last result on the page.\n var last_result = (this.per_page * current_page) - 1;\n if (last_result < 0) { last_result = 0; }\n if (last_result > Math.max(total_results - 1, 0)) { last_result = Math.max(total_results - 1, 0); }\n\n // GIMME THAT OBJECT\n return {\n total_pages: total_pages,\n pages: Math.min(last_page - first_page + 1, total_pages),\n current_page: current_page,\n first_page: first_page,\n last_page: last_page,\n previous_page: current_page - 1,\n next_page: current_page + 1,\n has_previous_page: current_page > 1,\n has_next_page: current_page < total_pages,\n total_results: total_results,\n results: Math.min(last_result - first_result + 1, total_results),\n first_result: first_result,\n last_result: last_result,\n };\n};\n" - }, - { - "id": "Pk8u", - "identifier": "external \"@microsoft/sp-lodash-subset\"", - "name": "external \"@microsoft/sp-lodash-subset\"", - "index": 122, - "index2": 114, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "71:0-71" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "236:22-27" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "251:26-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "420:27-36" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "426:30-39" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "464:24-30" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "27:0-64" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "69:31-37" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "115:38-47" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "118:34-40" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "149:43-49" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "149:50-59" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "159:23-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "15:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "19:0-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "33:0-69" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "40:78-85" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "40:118-125" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "116:21-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "123:30-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "162:21-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "194:40-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "201:22-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "206:36-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "473:29-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "474:55-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "758:29-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "768:25-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "894:35-42" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "53:0-54" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "123:13-20" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "16:0-56" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "40:68-77" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "2:0-49" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "290:8-13" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "300:11-16" - } - ], - "usedExports": [ - "clone", - "cloneDeep", - "find", - "findIndex", - "get", - "groupBy", - "intersection", - "isEmpty", - "isEqual", - "set", - "sortBy" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 2 - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js", - "index": 443, - "index2": 574, - "size": 1629, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "issuerId": "xDKH", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "lodash/omit", - "loc": "28:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "lodash/omit", - "loc": "30:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "lodash/omit", - "loc": "44:279-283" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "lodash/omit", - "loc": "72:142-146" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "lodash/omit", - "loc": "17:0-31" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "lodash/omit", - "loc": "28:94-98" - } - ], - "usedExports": [ - "default" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "var arrayMap = require('./_arrayMap'),\n baseClone = require('./_baseClone'),\n baseUnset = require('./_baseUnset'),\n castPath = require('./_castPath'),\n copyObject = require('./_copyObject'),\n customOmitClone = require('./_customOmitClone'),\n flatRest = require('./_flatRest'),\n getAllKeysIn = require('./_getAllKeysIn');\n\n/** Used to compose bitmasks for cloning. */\nvar CLONE_DEEP_FLAG = 1,\n CLONE_FLAT_FLAG = 2,\n CLONE_SYMBOLS_FLAG = 4;\n\n/**\n * The opposite of `_.pick`; this method creates an object composed of the\n * own and inherited enumerable property paths of `object` that are not omitted.\n *\n * **Note:** This method is considerably slower than `_.pick`.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The source object.\n * @param {...(string|string[])} [paths] The property paths to omit.\n * @returns {Object} Returns the new object.\n * @example\n *\n * var object = { 'a': 1, 'b': '2', 'c': 3 };\n *\n * _.omit(object, ['a', 'c']);\n * // => { 'b': '2' }\n */\nvar omit = flatRest(function(object, paths) {\n var result = {};\n if (object == null) {\n return result;\n }\n var isDeep = false;\n paths = arrayMap(paths, function(path) {\n path = castPath(path, object);\n isDeep || (isDeep = path.length > 1);\n return path;\n });\n copyObject(object, getAllKeysIn(object), result);\n if (isDeep) {\n result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone);\n }\n var length = paths.length;\n while (length--) {\n baseUnset(result, paths[length]);\n }\n return result;\n});\n\nmodule.exports = omit;\n" - }, - { - "id": "Q1l4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyArray.js", - "name": "./node_modules/lodash/_copyArray.js", - "index": 522, - "index2": 515, - "size": 454, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_copyArray", - "loc": "7:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/**\n * Copies the values of `source` to `array`.\n *\n * @private\n * @param {Array} source The array to copy values from.\n * @param {Array} [array=[]] The array to copy values to.\n * @returns {Array} Returns `array`.\n */\nfunction copyArray(source, array) {\n var index = -1,\n length = source.length;\n\n array || (array = Array(length));\n while (++index < length) {\n array[index] = source[index];\n }\n return array;\n}\n\nmodule.exports = copyArray;\n" - }, - { - "id": "Q4IW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "name": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "index": 44, - "index2": 31, - "size": 8708, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "issuerId": "uGHJ", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": "uGHJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "name": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "8:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "13:17-27" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "7:0-29" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Stylesheet", - "loc": "7:0-29" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "7:17-27" - }, - { - "moduleId": "mWkG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getId.js", - "module": "./node_modules/@uifabric/utilities/lib/getId.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "20:25-35" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "2:0-42" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "2:0-42" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "9:4-14" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "10:21-31" - }, - { - "moduleId": "uGHJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "module": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "1:0-42" - }, - { - "moduleId": "uGHJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "module": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "13:21-31" - }, - { - "moduleId": "xL1/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/memoize.js", - "module": "./node_modules/@uifabric/utilities/lib/memoize.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/memoize.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "66:25-35" - }, - { - "moduleId": "xL1/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/memoize.js", - "module": "./node_modules/@uifabric/utilities/lib/memoize.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/memoize.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "68:12-22" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "2:0-42" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "86:21-31" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "205:25-35" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "232:21-31" - } - ], - "usedExports": [ - "Stylesheet" - ], - "providedExports": [ - "InjectionMode", - "Stylesheet" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign } from \"tslib\";\nexport var InjectionMode = {\n /**\n * Avoids style injection, use getRules() to read the styles.\n */\n none: 0,\n /**\n * Inserts rules using the insertRule api.\n */\n insertNode: 1,\n /**\n * Appends rules using appendChild.\n */\n appendChild: 2,\n};\nvar STYLESHEET_SETTING = '__stylesheet__';\n/**\n * MSIE 11 doesn't cascade styles based on DOM ordering, but rather on the order that each style node\n * is created. As such, to maintain consistent priority, IE11 should reuse a single style node.\n */\nvar REUSE_STYLE_NODE = typeof navigator !== 'undefined' && /rv:11.0/.test(navigator.userAgent);\nvar _global = {};\n// Grab window.\ntry {\n _global = window;\n}\ncatch (_a) {\n /* leave as blank object */\n}\nvar _stylesheet;\n/**\n * Represents the state of styles registered in the page. Abstracts\n * the surface for adding styles to the stylesheet, exposes helpers\n * for reading the styles registered in server rendered scenarios.\n *\n * @public\n */\nvar Stylesheet = /** @class */ (function () {\n function Stylesheet(config) {\n this._rules = [];\n this._preservedRules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._keyToClassName = {};\n this._onResetCallbacks = [];\n this._classNameToArgs = {};\n this._config = __assign({ injectionMode: InjectionMode.insertNode, defaultPrefix: 'css', namespace: undefined, cspSettings: undefined }, config);\n this._keyToClassName = this._config.classNameCache || {};\n }\n /**\n * Gets the singleton instance.\n */\n Stylesheet.getInstance = function () {\n var _a;\n _stylesheet = _global[STYLESHEET_SETTING];\n if (!_stylesheet || (_stylesheet._lastStyleElement && _stylesheet._lastStyleElement.ownerDocument !== document)) {\n var fabricConfig = ((_a = _global) === null || _a === void 0 ? void 0 : _a.FabricConfig) || {};\n _stylesheet = _global[STYLESHEET_SETTING] = new Stylesheet(fabricConfig.mergeStyles);\n }\n return _stylesheet;\n };\n /**\n * Configures the stylesheet.\n */\n Stylesheet.prototype.setConfig = function (config) {\n this._config = __assign(__assign({}, this._config), config);\n };\n /**\n * Configures a reset callback.\n *\n * @param callback - A callback which will be called when the Stylesheet is reset.\n */\n Stylesheet.prototype.onReset = function (callback) {\n this._onResetCallbacks.push(callback);\n };\n /**\n * Generates a unique classname.\n *\n * @param displayName - Optional value to use as a prefix.\n */\n Stylesheet.prototype.getClassName = function (displayName) {\n var namespace = this._config.namespace;\n var prefix = displayName || this._config.defaultPrefix;\n return \"\" + (namespace ? namespace + '-' : '') + prefix + \"-\" + this._counter++;\n };\n /**\n * Used internally to cache information about a class which was\n * registered with the stylesheet.\n */\n Stylesheet.prototype.cacheClassName = function (className, key, args, rules) {\n this._keyToClassName[key] = className;\n this._classNameToArgs[className] = {\n args: args,\n rules: rules,\n };\n };\n /**\n * Gets the appropriate classname given a key which was previously\n * registered using cacheClassName.\n */\n Stylesheet.prototype.classNameFromKey = function (key) {\n return this._keyToClassName[key];\n };\n /**\n * Gets all classnames cache with the stylesheet.\n */\n Stylesheet.prototype.getClassNameCache = function () {\n return this._keyToClassName;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.argsFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.args;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.insertedRulesFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.rules;\n };\n /**\n * Inserts a css rule into the stylesheet.\n * @param preserve - Preserves the rule beyond a reset boundary.\n */\n Stylesheet.prototype.insertRule = function (rule, preserve) {\n var injectionMode = this._config.injectionMode;\n var element = injectionMode !== InjectionMode.none ? this._getStyleElement() : undefined;\n if (preserve) {\n this._preservedRules.push(rule);\n }\n if (element) {\n switch (this._config.injectionMode) {\n case InjectionMode.insertNode:\n var sheet = element.sheet;\n try {\n sheet.insertRule(rule, sheet.cssRules.length);\n }\n catch (e) {\n // The browser will throw exceptions on unsupported rules (such as a moz prefix in webkit.)\n // We need to swallow the exceptions for this scenario, otherwise we'd need to filter\n // which could be slower and bulkier.\n }\n break;\n case InjectionMode.appendChild:\n element.appendChild(document.createTextNode(rule));\n break;\n }\n }\n else {\n this._rules.push(rule);\n }\n if (this._config.onInsertRule) {\n this._config.onInsertRule(rule);\n }\n };\n /**\n * Gets all rules registered with the stylesheet; only valid when\n * using InsertionMode.none.\n */\n Stylesheet.prototype.getRules = function (includePreservedRules) {\n return ((includePreservedRules ? this._preservedRules.join('') : '') + this._rules.join('') + this._rulesToInsert.join(''));\n };\n /**\n * Resets the internal state of the stylesheet. Only used in server\n * rendered scenarios where we're using InsertionMode.none.\n */\n Stylesheet.prototype.reset = function () {\n this._rules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._classNameToArgs = {};\n this._keyToClassName = {};\n this._onResetCallbacks.forEach(function (callback) { return callback(); });\n };\n // Forces the regeneration of incoming styles without totally resetting the stylesheet.\n Stylesheet.prototype.resetKeys = function () {\n this._keyToClassName = {};\n };\n Stylesheet.prototype._getStyleElement = function () {\n var _this = this;\n if (!this._styleElement && typeof document !== 'undefined') {\n this._styleElement = this._createStyleElement();\n if (!REUSE_STYLE_NODE) {\n // Reset the style element on the next frame.\n window.requestAnimationFrame(function () {\n _this._styleElement = undefined;\n });\n }\n }\n return this._styleElement;\n };\n Stylesheet.prototype._createStyleElement = function () {\n var head = document.head;\n var styleElement = document.createElement('style');\n styleElement.setAttribute('data-merge-styles', 'true');\n var cspSettings = this._config.cspSettings;\n if (cspSettings) {\n if (cspSettings.nonce) {\n styleElement.setAttribute('nonce', cspSettings.nonce);\n }\n }\n if (this._lastStyleElement) {\n // If the `nextElementSibling` is null, then the insertBefore will act as a regular append.\n // https://developer.mozilla.org/en-US/docs/Web/API/Node/insertBefore#Syntax\n head.insertBefore(styleElement, this._lastStyleElement.nextElementSibling);\n }\n else {\n var placeholderStyleTag = this._findPlaceholderStyleTag();\n if (placeholderStyleTag) {\n head.insertBefore(styleElement, placeholderStyleTag.nextElementSibling);\n }\n else {\n head.insertBefore(styleElement, head.childNodes[0]);\n }\n }\n this._lastStyleElement = styleElement;\n return styleElement;\n };\n Stylesheet.prototype._findPlaceholderStyleTag = function () {\n var head = document.head;\n if (head) {\n return head.querySelector('style[data-merge-styles]');\n }\n return null;\n };\n return Stylesheet;\n}());\nexport { Stylesheet };\n//# sourceMappingURL=Stylesheet.js.map" - }, - { - "id": "Q9RI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "index": 183, - "index2": 171, - "size": 1034, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "67:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "73:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "119:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "187:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "284:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "425:8-24" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnDeprecations", - "loc": "7:0-59" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnDeprecations", - "loc": "164:8-24" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:8-24" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:8-24" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "236:8-24" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnDeprecations", - "loc": "4:0-40" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnDeprecations", - "loc": "4:0-40" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "167:8-24" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:8-24" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:4-20" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:8-24" - } - ], - "usedExports": [ - "warnDeprecations" - ], - "providedExports": [ - "warnDeprecations" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { warn } from './warn';\n/**\n * Warns when a deprecated props are being used.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\n * either null or a replacement prop name.\n */\nexport function warnDeprecations(componentName, props, deprecationMap) {\n if (process.env.NODE_ENV !== 'production') {\n for (var propName in deprecationMap) {\n if (props && propName in props) {\n var deprecationMessage = componentName + \" property '\" + propName + \"' was used but has been deprecated.\";\n var replacementPropName = deprecationMap[propName];\n if (replacementPropName) {\n deprecationMessage += \" Use '\" + replacementPropName + \"' instead.\";\n }\n warn(deprecationMessage);\n }\n }\n }\n}\n//# sourceMappingURL=warnDeprecations.js.map" - }, - { - "id": "QcOe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "name": "./node_modules/lodash/_baseKeysIn.js", - "index": 519, - "index2": 511, - "size": 870, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "issuerId": "mTTR", - "issuerName": "./node_modules/lodash/keysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "mTTR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "module": "./node_modules/lodash/keysIn.js", - "moduleName": "./node_modules/lodash/keysIn.js", - "type": "cjs require", - "userRequest": "./_baseKeysIn", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var isObject = require('./isObject'),\n isPrototype = require('./_isPrototype'),\n nativeKeysIn = require('./_nativeKeysIn');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeysIn(object) {\n if (!isObject(object)) {\n return nativeKeysIn(object);\n }\n var isProto = isPrototype(object),\n result = [];\n\n for (var key in object) {\n if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = baseKeysIn;\n" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "index": 18, - "index2": 271, - "size": 11011, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "issuerId": "/x9U", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/x9U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionDataViewer", - "loc": "1:0-39" - }, - { - "moduleId": "/x9U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionDataViewer", - "loc": "1:0-39" - } - ], - "usedExports": [ - "CollectionDataViewer" - ], - "providedExports": [ - "CollectionDataViewer" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __spreadArrays = (this && this.__spreadArrays) || function () {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { CollectionDataItem } from '../collectionDataItem';\nimport { PrimaryButton, DefaultButton } from 'office-ui-fabric-react/lib/components/Button';\nimport { Icon } from 'office-ui-fabric-react/lib/components/Icon';\nimport * as strings from 'PropertyControlStrings';\nimport { cloneDeep, sortBy } from '@microsoft/sp-lodash-subset';\nvar CollectionDataViewer = /** @class */ (function (_super) {\n __extends(CollectionDataViewer, _super);\n function CollectionDataViewer(props) {\n var _this = _super.call(this, props) || this;\n _this.SORT_IDX = \"sortIdx\";\n /**\n * Add a new item to the collection\n */\n _this.addItem = function (item) {\n _this.setState(function (prevState) {\n var crntItems = __spreadArrays(prevState.crntItems, [item]);\n crntItems = _this.updateSortProperty(crntItems);\n return {\n crntItems: crntItems,\n inCreationItem: null,\n inCreationItemValid: null\n };\n });\n };\n /**\n * Remove an item from the collection\n */\n _this.updateItem = function (idx, item) {\n _this.setState(function (prevState) {\n var crntItems = prevState.crntItems;\n // Update the item in the array\n crntItems[idx] = item;\n return { crntItems: crntItems };\n });\n };\n /**\n * Remove an item from the collection\n */\n _this.deleteItem = function (idx) {\n _this.setState(function (prevState) {\n var crntItems = prevState.crntItems, validation = prevState.validation;\n crntItems.splice(idx, 1);\n delete validation[idx];\n // Update the sort propety\n crntItems = _this.updateSortProperty(crntItems);\n return {\n crntItems: sortBy(crntItems, _this.SORT_IDX),\n validation: validation\n };\n });\n };\n /**\n * Validate every item\n */\n _this.validateItem = function (idx, isValid) {\n _this.setState(function (prevState) {\n var validation = prevState.validation;\n validation[idx] = isValid;\n return {\n validation: prevState.validation\n };\n });\n };\n /**\n * Currently in creation\n */\n _this.addInCreation = function (item, isValid) {\n _this.setState({\n inCreationItem: item,\n inCreationItemValid: isValid\n });\n };\n /**\n * Add the item and save the form\n */\n _this.addAndSave = function () {\n // Check if the item is not empty\n if (_this.state.inCreationItem) {\n var crntItems = __spreadArrays(_this.state.crntItems, [_this.state.inCreationItem]);\n crntItems = _this.updateSortProperty(crntItems);\n _this.props.fOnSave(crntItems);\n }\n else {\n _this.onSave();\n }\n };\n /**\n * Update the sort order\n */\n _this.updateSortOrder = function (oldIdx, newIdx) {\n _this.setState(function (prevState) {\n var crntItems = prevState.crntItems;\n var newOrderedItems = cloneDeep(crntItems);\n newOrderedItems = _this.moveItemTo(newOrderedItems, oldIdx, newIdx - 1);\n newOrderedItems = _this.updateSortProperty(newOrderedItems);\n newOrderedItems = sortBy(newOrderedItems, _this.SORT_IDX);\n return {\n crntItems: newOrderedItems\n };\n });\n };\n /**\n * Save the collection data\n */\n _this.onSave = function () {\n _this.props.fOnSave(_this.state.crntItems);\n };\n /**\n * Cancel\n */\n _this.onCancel = function () {\n _this.props.fOnClose();\n };\n _this.state = {\n crntItems: [],\n inCreationItem: null,\n inCreationItemValid: null,\n validation: {}\n };\n return _this;\n }\n /**\n * componentDidMount lifecycle hook\n */\n CollectionDataViewer.prototype.componentDidMount = function () {\n var _this = this;\n var crntItems = this.props.value ? sortBy(cloneDeep(this.props.value), this.SORT_IDX) : [];\n crntItems = crntItems.map(function (item, idx) {\n if (!item[_this.SORT_IDX]) {\n item[_this.SORT_IDX] = idx + 1;\n }\n return item;\n });\n // Update the sort propety\n crntItems = this.updateSortProperty(crntItems);\n this.setState({\n crntItems: sortBy(crntItems, this.SORT_IDX)\n });\n };\n /**\n * Check if all items are valid\n */\n CollectionDataViewer.prototype.allItemsValid = function () {\n var validation = this.state.validation;\n if (validation) {\n var keys = Object.keys(validation);\n for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {\n var key = keys_1[_i];\n if (!validation[key]) {\n return false;\n }\n }\n }\n return true;\n };\n /**\n * Move an item in the array\n *\n * @param crntItems\n * @param oldIdx\n * @param newIdx\n */\n CollectionDataViewer.prototype.moveItemTo = function (crntItems, oldIdx, newIdx) {\n if (newIdx > -1 && newIdx < crntItems.length) {\n var removedElement = crntItems.splice(oldIdx, 1)[0];\n if (removedElement) {\n crntItems.splice(newIdx, 0, removedElement);\n }\n }\n return crntItems;\n };\n /**\n * Update the sort property\n *\n * @param crntItems\n */\n CollectionDataViewer.prototype.updateSortProperty = function (crntItems) {\n var _this = this;\n // Update the sort order\n return crntItems.map(function (item, itemIdx) {\n item[_this.SORT_IDX] = itemIdx + 1;\n return item;\n });\n };\n /**\n * Default React render\n */\n CollectionDataViewer.prototype.render = function () {\n var _this = this;\n var crntItems = __spreadArrays(this.state.crntItems, [this.state.inCreationItem]).filter(function (i) { return i; });\n var visibleFields = this.props.fields.filter(function (f) { return !f.isVisible || f.isVisible(f, crntItems); });\n return (React.createElement(\"div\", null,\n React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__table \" + styles.table + \" \" + (this.props.tableClassName || \"\") },\n React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__table-head \" + styles.tableRow + \" \" + styles.tableHead },\n this.props.enableSorting && (React.createElement(\"span\", { className: \"PropertyFieldCollectionData__panel__table-cell \" + styles.tableCell })),\n visibleFields.map(function (f) { return (React.createElement(\"span\", { key: \"dataviewer-\" + f.id, className: \"PropertyFieldCollectionData__panel__table-cell \" + styles.tableCell },\n f.title,\n \" \",\n f.required && React.createElement(Icon, { className: styles.required, iconName: \"Asterisk\" }))); }),\n React.createElement(\"span\", { className: \"PropertyFieldCollectionData__panel__table-cell \" + styles.tableCell }),\n React.createElement(\"span\", { className: \"PropertyFieldCollectionData__panel__table-cell \" + styles.tableCell })),\n (this.state.crntItems && this.state.crntItems.length > 0) && (this.state.crntItems.map(function (item, idx, allItems) { return (React.createElement(CollectionDataItem, { key: item.uniqueId, fields: visibleFields, index: idx, item: item, totalItems: allItems.length, sortingEnabled: _this.props.enableSorting, disableItemDeletion: _this.props.disableItemDeletion, fUpdateItem: _this.updateItem, fDeleteItem: _this.deleteItem, fValidation: _this.validateItem, fOnSorting: _this.updateSortOrder })); })),\n !this.props.disableItemCreation && (React.createElement(CollectionDataItem, { fields: visibleFields, index: null, item: null, sortingEnabled: this.props.enableSorting, totalItems: null, fAddItem: this.addItem, fAddInCreation: this.addInCreation }))),\n (!this.state.crntItems || this.state.crntItems.length === 0) && (React.createElement(\"p\", { className: \"PropertyFieldCollectionData__panel__no-collection-data \" + styles.noCollectionData }, strings.CollectionDataEmptyValue)),\n React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__actions \" + styles.panelActions },\n this.state.inCreationItem && this.state.inCreationItemValid && React.createElement(PrimaryButton, { text: this.props.saveAndAddBtnLabel || strings.CollectionSaveAndAddButtonLabel, onClick: this.addAndSave, disabled: !this.allItemsValid(), className: \"PropertyFieldCollectionData__panel__action__add\" }),\n !(this.state.inCreationItem && this.state.inCreationItemValid) && React.createElement(PrimaryButton, { text: this.props.saveBtnLabel || strings.SaveButtonLabel, onClick: this.onSave, disabled: !this.allItemsValid(), className: \"PropertyFieldCollectionData__panel__action__save\" }),\n React.createElement(DefaultButton, { text: this.props.cancelBtnLabel || strings.CancelButtonLabel, onClick: this.onCancel, className: \"PropertyFieldCollectionData__panel__action__cancel\" }))));\n };\n return CollectionDataViewer;\n}(React.Component));\nexport { CollectionDataViewer };\n//# sourceMappingURL=CollectionDataViewer.js.map" - }, - { - "id": "QkVE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getMapData.js", - "name": "./node_modules/lodash/_getMapData.js", - "index": 485, - "index2": 475, - "size": 400, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "issuerId": "H8j4", - "issuerName": "./node_modules/lodash/_mapCacheSet.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "H8j4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "name": "./node_modules/lodash/_mapCacheSet.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "H8j4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "module": "./node_modules/lodash/_mapCacheSet.js", - "moduleName": "./node_modules/lodash/_mapCacheSet.js", - "type": "cjs require", - "userRequest": "./_getMapData", - "loc": "1:17-41" - }, - { - "moduleId": "JHgL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheGet.js", - "module": "./node_modules/lodash/_mapCacheGet.js", - "moduleName": "./node_modules/lodash/_mapCacheGet.js", - "type": "cjs require", - "userRequest": "./_getMapData", - "loc": "1:17-41" - }, - { - "moduleId": "k+1r", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheDelete.js", - "module": "./node_modules/lodash/_mapCacheDelete.js", - "moduleName": "./node_modules/lodash/_mapCacheDelete.js", - "type": "cjs require", - "userRequest": "./_getMapData", - "loc": "1:17-41" - }, - { - "moduleId": "pSRY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheHas.js", - "module": "./node_modules/lodash/_mapCacheHas.js", - "moduleName": "./node_modules/lodash/_mapCacheHas.js", - "type": "cjs require", - "userRequest": "./_getMapData", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 10, - "source": "var isKeyable = require('./_isKeyable');\n\n/**\n * Gets the data for `map`.\n *\n * @private\n * @param {Object} map The map to query.\n * @param {string} key The reference key.\n * @returns {*} Returns the map data.\n */\nfunction getMapData(map, key) {\n var data = map.__data__;\n return isKeyable(key)\n ? data[typeof key == 'string' ? 'string' : 'hash']\n : data.map;\n}\n\nmodule.exports = getMapData;\n" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js", - "index": 534, - "index2": 531, - "size": 1838, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Gi0A", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsMap.js", - "module": "./node_modules/lodash/_baseIsMap.js", - "moduleName": "./node_modules/lodash/_baseIsMap.js", - "type": "cjs require", - "userRequest": "./_getTag", - "loc": "1:13-33" - }, - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_getTag", - "loc": "12:13-33" - }, - { - "moduleId": "w/wX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsSet.js", - "module": "./node_modules/lodash/_baseIsSet.js", - "moduleName": "./node_modules/lodash/_baseIsSet.js", - "type": "cjs require", - "userRequest": "./_getTag", - "loc": "1:13-33" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var DataView = require('./_DataView'),\n Map = require('./_Map'),\n Promise = require('./_Promise'),\n Set = require('./_Set'),\n WeakMap = require('./_WeakMap'),\n baseGetTag = require('./_baseGetTag'),\n toSource = require('./_toSource');\n\n/** `Object#toString` result references. */\nvar mapTag = '[object Map]',\n objectTag = '[object Object]',\n promiseTag = '[object Promise]',\n setTag = '[object Set]',\n weakMapTag = '[object WeakMap]';\n\nvar dataViewTag = '[object DataView]';\n\n/** Used to detect maps, sets, and weakmaps. */\nvar dataViewCtorString = toSource(DataView),\n mapCtorString = toSource(Map),\n promiseCtorString = toSource(Promise),\n setCtorString = toSource(Set),\n weakMapCtorString = toSource(WeakMap);\n\n/**\n * Gets the `toStringTag` of `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nvar getTag = baseGetTag;\n\n// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\nif ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||\n (Map && getTag(new Map) != mapTag) ||\n (Promise && getTag(Promise.resolve()) != promiseTag) ||\n (Set && getTag(new Set) != setTag) ||\n (WeakMap && getTag(new WeakMap) != weakMapTag)) {\n getTag = function(value) {\n var result = baseGetTag(value),\n Ctor = result == objectTag ? value.constructor : undefined,\n ctorString = Ctor ? toSource(Ctor) : '';\n\n if (ctorString) {\n switch (ctorString) {\n case dataViewCtorString: return dataViewTag;\n case mapCtorString: return mapTag;\n case promiseCtorString: return promiseTag;\n case setCtorString: return setTag;\n case weakMapCtorString: return weakMapTag;\n }\n }\n return result;\n };\n}\n\nmodule.exports = getTag;\n" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "index": 913, - "index2": 915, - "size": 243, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "issuerId": "bLNN", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "bLNN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/webPartInformation", - "loc": "1:0-52" - }, - { - "moduleId": "bLNN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/webPartInformation", - "loc": "1:0-52" - } - ], - "usedExports": [ - "PropertyPaneWebPartInformation" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './IPropertyPaneWebPartInformation';\nexport * from './PropertyPaneWebPartInformation';\nexport * from './IPropertyPaneWebPartInformationHost';\nexport * from './PropertyPaneWebPartInformationHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "RBan", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/last.js", - "name": "./node_modules/lodash/last.js", - "index": 562, - "index2": 555, - "size": 401, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "issuerId": "S7Xf", - "issuerName": "./node_modules/lodash/_baseUnset.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S7Xf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "module": "./node_modules/lodash/_baseUnset.js", - "moduleName": "./node_modules/lodash/_baseUnset.js", - "type": "cjs require", - "userRequest": "./last", - "loc": "2:11-28" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/**\n * Gets the last element of `array`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to query.\n * @returns {*} Returns the last element of `array`.\n * @example\n *\n * _.last([1, 2, 3]);\n * // => 3\n */\nfunction last(array) {\n var length = array == null ? 0 : array.length;\n return length ? array[length - 1] : undefined;\n}\n\nmodule.exports = last;\n" - }, - { - "id": "RNC2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "index": 114, - "index2": 102, - "size": 12573, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "43:40-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Image", - "loc": "713:53-58" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "4:0-39" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "52:60-65" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "44:44-49" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "46:44-49" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "28:36-41" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "71:41-46" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "74:39-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "3:0-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "21:28-33" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image", - "loc": "1:0-24" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Image", - "loc": "1:0-24" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "25:45-50" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "63:36-41" - } - ], - "usedExports": [ - "Image" - ], - "providedExports": [ - "Image" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "index": 115, - "index2": 100, - "size": 7213, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sLem", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/Image.js" - }, - { - "id": "weyb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "userRequest": "./Image.base", - "loc": "4:26-35" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.base", - "loc": "2:0-29" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Image.base", - "loc": "2:0-29" - } - ], - "usedExports": [ - "ImageBase" - ], - "providedExports": [ - "ImageBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getNativeProps, imgProperties } from '../../Utilities';\nimport { ImageCoverStyle, ImageFit, ImageLoadState } from './Image.types';\nvar getClassNames = classNamesFunction();\nvar KEY_PREFIX = 'fabricImage';\nvar ImageBase = /** @class */ (function (_super) {\n __extends(ImageBase, _super);\n function ImageBase(props) {\n var _this = _super.call(this, props) || this;\n // Make an initial assumption about the image layout until we can\n // check the rendered element. The value here only takes effect when\n // shouldStartVisible is true.\n _this._coverStyle = ImageCoverStyle.portrait;\n _this._imageElement = React.createRef();\n _this._frameElement = React.createRef();\n _this._onImageLoaded = function (ev) {\n var _a = _this.props, src = _a.src, onLoad = _a.onLoad;\n if (onLoad) {\n onLoad(ev);\n }\n _this._computeCoverStyle(_this.props);\n if (src) {\n _this.setState({\n loadState: ImageLoadState.loaded,\n });\n }\n };\n _this._onImageError = function (ev) {\n if (_this.props.onError) {\n _this.props.onError(ev);\n }\n _this.setState({\n loadState: ImageLoadState.error,\n });\n };\n _this.state = {\n loadState: ImageLoadState.notLoaded,\n };\n return _this;\n }\n ImageBase.prototype.UNSAFE_componentWillReceiveProps = function (nextProps) {\n if (nextProps.src !== this.props.src) {\n this.setState({\n loadState: ImageLoadState.notLoaded,\n });\n }\n else if (this.state.loadState === ImageLoadState.loaded) {\n this._computeCoverStyle(nextProps);\n }\n };\n ImageBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._checkImageLoaded();\n if (this.props.onLoadingStateChange && prevState.loadState !== this.state.loadState) {\n this.props.onLoadingStateChange(this.state.loadState);\n }\n };\n ImageBase.prototype.render = function () {\n var imageProps = getNativeProps(this.props, imgProperties, [\n 'width',\n 'height',\n ]);\n var _a = this.props, src = _a.src, alt = _a.alt, width = _a.width, height = _a.height, shouldFadeIn = _a.shouldFadeIn, shouldStartVisible = _a.shouldStartVisible, className = _a.className, imageFit = _a.imageFit, role = _a.role, maximizeFrame = _a.maximizeFrame, styles = _a.styles, theme = _a.theme;\n var loadState = this.state.loadState;\n var coverStyle = this.props.coverStyle !== undefined ? this.props.coverStyle : this._coverStyle;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n width: width,\n height: height,\n maximizeFrame: maximizeFrame,\n shouldFadeIn: shouldFadeIn,\n shouldStartVisible: shouldStartVisible,\n isLoaded: loadState === ImageLoadState.loaded ||\n (loadState === ImageLoadState.notLoaded && this.props.shouldStartVisible),\n isLandscape: coverStyle === ImageCoverStyle.landscape,\n isCenter: imageFit === ImageFit.center,\n isCenterContain: imageFit === ImageFit.centerContain,\n isCenterCover: imageFit === ImageFit.centerCover,\n isContain: imageFit === ImageFit.contain,\n isCover: imageFit === ImageFit.cover,\n isNone: imageFit === ImageFit.none,\n isError: loadState === ImageLoadState.error,\n isNotImageFit: imageFit === undefined,\n });\n // If image dimensions aren't specified, the natural size of the image is used.\n return (React.createElement(\"div\", { className: classNames.root, style: { width: width, height: height }, ref: this._frameElement },\n React.createElement(\"img\", __assign({}, imageProps, { onLoad: this._onImageLoaded, onError: this._onImageError, key: KEY_PREFIX + this.props.src || '', className: classNames.image, ref: this._imageElement, src: src, alt: alt, role: role }))));\n };\n ImageBase.prototype._checkImageLoaded = function () {\n var src = this.props.src;\n var loadState = this.state.loadState;\n if (loadState === ImageLoadState.notLoaded) {\n // testing if naturalWidth and naturalHeight are greater than zero is better than checking\n // .complete, because .complete will also be set to true if the image breaks. However,\n // for some browsers, SVG images do not have a naturalWidth or naturalHeight, so fall back\n // to checking .complete for these images.\n var isLoaded = this._imageElement.current\n ? (src && this._imageElement.current.naturalWidth > 0 && this._imageElement.current.naturalHeight > 0) ||\n (this._imageElement.current.complete && ImageBase._svgRegex.test(src))\n : false;\n if (isLoaded) {\n this._computeCoverStyle(this.props);\n this.setState({\n loadState: ImageLoadState.loaded,\n });\n }\n }\n };\n ImageBase.prototype._computeCoverStyle = function (props) {\n var imageFit = props.imageFit, width = props.width, height = props.height;\n // Do not compute cover style if it was already specified in props\n if ((imageFit === ImageFit.cover ||\n imageFit === ImageFit.contain ||\n imageFit === ImageFit.centerContain ||\n imageFit === ImageFit.centerCover) &&\n this.props.coverStyle === undefined &&\n this._imageElement.current &&\n this._frameElement.current) {\n // Determine the desired ratio using the width and height props.\n // If those props aren't available, measure measure the frame.\n var desiredRatio = void 0;\n if (typeof width === 'number' &&\n typeof height === 'number' &&\n imageFit !== ImageFit.centerContain &&\n imageFit !== ImageFit.centerCover) {\n desiredRatio = width / height;\n }\n else {\n desiredRatio = this._frameElement.current.clientWidth / this._frameElement.current.clientHeight;\n }\n // Examine the source image to determine its original ratio.\n var naturalRatio = this._imageElement.current.naturalWidth / this._imageElement.current.naturalHeight;\n // Should we crop from the top or the sides?\n if (naturalRatio > desiredRatio) {\n this._coverStyle = ImageCoverStyle.landscape;\n }\n else {\n this._coverStyle = ImageCoverStyle.portrait;\n }\n }\n };\n ImageBase.defaultProps = {\n shouldFadeIn: true,\n };\n ImageBase._svgRegex = /\\.svg$/i;\n return ImageBase;\n}(React.Component));\nexport { ImageBase };\n//# sourceMappingURL=Image.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "index": 114, - "index2": 102, - "size": 252, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "issuerId": "weyb", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sLem", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/Image.js" - }, - { - "id": "weyb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "43:40-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Image", - "loc": "713:53-58" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "4:0-39" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "52:60-65" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "44:44-49" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "46:44-49" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "28:36-41" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "71:41-46" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "74:39-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "3:0-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "21:28-33" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image", - "loc": "1:0-24" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Image", - "loc": "1:0-24" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "25:45-50" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "63:36-41" - } - ], - "usedExports": [ - "Image" - ], - "providedExports": [ - "Image" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { ImageBase } from './Image.base';\nimport { getStyles } from './Image.styles';\nexport var Image = styled(ImageBase, getStyles, undefined, {\n scope: 'Image',\n}, true);\n//# sourceMappingURL=Image.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "index": 116, - "index2": 101, - "size": 5068, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sLem", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/Image.js" - }, - { - "id": "weyb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "userRequest": "./Image.styles", - "loc": "4:37-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { AnimationClassNames, getGlobalClassNames } from '../../Styling';\nimport { getWindow } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Image',\n rootMaximizeFrame: 'ms-Image--maximizeFrame',\n image: 'ms-Image-image',\n imageCenter: 'ms-Image-image--center',\n imageContain: 'ms-Image-image--contain',\n imageCover: 'ms-Image-image--cover',\n imageCenterContain: 'ms-Image-image--centerContain',\n imageCenterCover: 'ms-Image-image--centerCover',\n imageNone: 'ms-Image-image--none',\n imageLandscape: 'ms-Image-image--landscape',\n imagePortrait: 'ms-Image-image--portrait',\n};\nexport var getStyles = function (props) {\n var className = props.className, width = props.width, height = props.height, maximizeFrame = props.maximizeFrame, isLoaded = props.isLoaded, shouldFadeIn = props.shouldFadeIn, shouldStartVisible = props.shouldStartVisible, isLandscape = props.isLandscape, isCenter = props.isCenter, isContain = props.isContain, isCover = props.isCover, isCenterContain = props.isCenterContain, isCenterCover = props.isCenterCover, isNone = props.isNone, isError = props.isError, isNotImageFit = props.isNotImageFit, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var ImageFitStyles = {\n position: 'absolute',\n left: '50% /* @noflip */',\n top: '50%',\n transform: 'translate(-50%,-50%)',\n };\n // Cut the mustard using msMaxTouchPoints to detect IE11 which does not support CSS object-fit\n var window = getWindow();\n var supportsObjectFit = window !== undefined && window.navigator.msMaxTouchPoints === undefined;\n var fallbackObjectFitStyles = (isContain && isLandscape) || (isCover && !isLandscape)\n ? { width: '100%', height: 'auto' }\n : { width: 'auto', height: '100%' };\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n overflow: 'hidden',\n },\n maximizeFrame && [\n classNames.rootMaximizeFrame,\n {\n height: '100%',\n width: '100%',\n },\n ],\n isLoaded && shouldFadeIn && !shouldStartVisible && AnimationClassNames.fadeIn400,\n (isCenter || isContain || isCover || isCenterContain || isCenterCover) && {\n position: 'relative',\n },\n className,\n ],\n image: [\n classNames.image,\n {\n display: 'block',\n opacity: 0,\n },\n isLoaded && [\n 'is-loaded',\n {\n opacity: 1,\n },\n ],\n isCenter && [classNames.imageCenter, ImageFitStyles],\n isContain && [\n classNames.imageContain,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'contain',\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n ImageFitStyles,\n ],\n isCover && [\n classNames.imageCover,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'cover',\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n ImageFitStyles,\n ],\n isCenterContain && [\n classNames.imageCenterContain,\n isLandscape && {\n maxWidth: '100%',\n },\n !isLandscape && {\n maxHeight: '100%',\n },\n ImageFitStyles,\n ],\n isCenterCover && [\n classNames.imageCenterCover,\n isLandscape && {\n maxHeight: '100%',\n },\n !isLandscape && {\n maxWidth: '100%',\n },\n ImageFitStyles,\n ],\n isNone && [\n classNames.imageNone,\n {\n width: 'auto',\n height: 'auto',\n },\n ],\n isNotImageFit && [\n !!width &&\n !height && {\n height: 'auto',\n width: '100%',\n },\n !width &&\n !!height && {\n height: '100%',\n width: 'auto',\n },\n !!width &&\n !!height && {\n height: '100%',\n width: '100%',\n },\n ],\n isLandscape && classNames.imageLandscape,\n !isLandscape && classNames.imagePortrait,\n !isLoaded && 'is-notLoaded',\n shouldFadeIn && 'is-fadeIn',\n isError && 'is-error',\n ],\n };\n};\n//# sourceMappingURL=Image.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "RY1Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "index": 129, - "index2": 184, - "size": 61012, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionColorField", - "loc": "2:0-39" - }, - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionColorField", - "loc": "2:0-39" - } - ], - "usedExports": [ - "CollectionColorField" - ], - "providedExports": [ - "CollectionColorField" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/on.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warn.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 9, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/consts.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/consts.js", - "index": 169, - "index2": 155, - "size": 907, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/consts", - "loc": "4:0-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/consts", - "loc": "5:0-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "6:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/consts", - "loc": "7:0-168" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "7:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "7:41-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:29-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:34-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:56-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:21-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:52-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:56-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:119-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "11:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "11:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "12:32-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "14:28-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "28:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "32:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "33:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "34:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "48:36-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "48:53-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "50:60-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "50:92-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "57:67-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "80:47-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "97:49-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "106:366-381" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "110:105-120" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "112:15-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "126:15-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "136:42-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "136:58-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:62-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:85-105" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:125-140" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:157-172" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:175-190" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "199:54-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "199:71-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "201:38-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "201:50-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "215:42-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "218:42-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "221:42-55" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-80" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "6:26-39" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "7:26-46" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:26-41" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "3:0-25" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./consts", - "loc": "3:0-25" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-43" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "14:36-51" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "18:12-27" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-41" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "47:23-36" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "47:52-65" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "47:81-94" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "166:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "167:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "168:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "171:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "172:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "173:34-47" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-25" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./consts", - "loc": "1:0-25" - }, - { - "moduleId": "wFJs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-65" - }, - { - "moduleId": "wFJs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "4:9-29" - }, - { - "moduleId": "wFJs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "5:9-24" - } - ], - "usedExports": [ - "MIN_HEX_LENGTH", - "MIN_RGBA_LENGTH", - "MAX_COLOR_ALPHA", - "MAX_HEX_LENGTH", - "MAX_RGBA_LENGTH", - "HEX_REGEX", - "RGBA_REGEX", - "MAX_COLOR_RGB", - "MAX_COLOR_SATURATION", - "MAX_COLOR_VALUE", - "MAX_COLOR_HUE" - ], - "providedExports": [ - "MAX_COLOR_SATURATION", - "MAX_COLOR_HUE", - "MAX_COLOR_VALUE", - "MAX_COLOR_RGB", - "MAX_COLOR_RGBA", - "MAX_COLOR_ALPHA", - "MIN_HEX_LENGTH", - "MAX_HEX_LENGTH", - "MIN_RGBA_LENGTH", - "MAX_RGBA_LENGTH", - "HEX_REGEX", - "RGBA_REGEX" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var MAX_COLOR_SATURATION = 100;\nexport var MAX_COLOR_HUE = 359;\nexport var MAX_COLOR_VALUE = 100;\nexport var MAX_COLOR_RGB = 255;\n/** @deprecated Use MAX_COLOR_RGB (255) or MAX_COLOR_ALPHA (100) */\nexport var MAX_COLOR_RGBA = MAX_COLOR_RGB;\nexport var MAX_COLOR_ALPHA = 100;\n/** Minimum length for a hexadecimal color string (not including the #) */\nexport var MIN_HEX_LENGTH = 3;\n/** Maximum length for a hexadecimal color string (not including the #) */\nexport var MAX_HEX_LENGTH = 6;\n/** Minimum length for a string of an RGBA color component */\nexport var MIN_RGBA_LENGTH = 1;\n/** Maximum length for a string of an RGBA color component */\nexport var MAX_RGBA_LENGTH = 3;\n/** Regular expression matching only valid hexadecimal chars */\nexport var HEX_REGEX = /^[\\da-f]{0,6}$/i;\n/** Regular expression matching only numbers */\nexport var RGBA_REGEX = /^\\d{0,3}$/;\n//# sourceMappingURL=consts.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "index": 168, - "index2": 156, - "size": 948, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "issuerId": "cXV2", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": "cXV2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "1:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "5:13-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "6:11-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "12:13-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "12:13-20" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "9:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hsv2rgb", - "loc": "9:0-26" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "2:0-36" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "15:13-20" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "6:0-36" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "125:35-42" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "148:35-42" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "7:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./hsv2rgb", - "loc": "7:0-26" - } - ], - "usedExports": [ - "hsv2rgb" - ], - "providedExports": [ - "hsv2rgb" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_RGB } from './consts';\n/** Converts HSV components to an RGB color. Does not set the alpha value. */\nexport function hsv2rgb(h, s, v) {\n s = s / 100;\n v = v / 100;\n var rgb = [];\n var c = v * s;\n var hh = h / 60;\n var x = c * (1 - Math.abs((hh % 2) - 1));\n var m = v - c;\n switch (Math.floor(hh)) {\n case 0:\n rgb = [c, x, 0];\n break;\n case 1:\n rgb = [x, c, 0];\n break;\n case 2:\n rgb = [0, c, x];\n break;\n case 3:\n rgb = [0, x, c];\n break;\n case 4:\n rgb = [x, 0, c];\n break;\n case 5:\n rgb = [c, 0, x];\n break;\n }\n return {\n r: Math.round(MAX_COLOR_RGB * (rgb[0] + m)),\n g: Math.round(MAX_COLOR_RGB * (rgb[1] + m)),\n b: Math.round(MAX_COLOR_RGB * (rgb[2] + m)),\n };\n}\n//# sourceMappingURL=hsv2rgb.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/clamp.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/clamp.js", - "index": 171, - "index2": 157, - "size": 233, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "issuerId": "cXV2", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": "cXV2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "2:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "2:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/clamp", - "loc": "4:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "6:11-16" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/clamp", - "loc": "7:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "7:11-16" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "8:11-16" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "9:10-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "9:41-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/clamp", - "loc": "10:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "43:35-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "50:51-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "50:83-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/clamp", - "loc": "57:46-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "59:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "143:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "143:108-113" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "2:0-32" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "6:11-16" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "7:11-16" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "8:11-16" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "6:0-24" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./clamp", - "loc": "6:0-24" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "3:0-32" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "53:11-16" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "59:11-16" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "60:11-16" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "4:0-24" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./clamp", - "loc": "4:0-24" - } - ], - "usedExports": [ - "clamp" - ], - "providedExports": [ - "clamp" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/** Clamp a value to ensure it falls within a given range. */\nexport function clamp(value, max, min) {\n if (min === void 0) { min = 0; }\n return value < min ? min : value > max ? max : value;\n}\n//# sourceMappingURL=clamp.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "index": 170, - "index2": 158, - "size": 526, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "3:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "3:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "3:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hex", - "loc": "6:11-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hex", - "loc": "9:14-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hex", - "loc": "13:14-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hex", - "loc": "13:14-21" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "5:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rgb2hex", - "loc": "5:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "3:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./rgb2hex", - "loc": "3:0-26" - } - ], - "usedExports": [ - "rgb2hex" - ], - "providedExports": [ - "rgb2hex" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_RGB } from './consts';\nimport { clamp } from './clamp';\n/** Converts RGB components to a hex color string (without # prefix). */\nexport function rgb2hex(r, g, b) {\n return [_rgbToPaddedHex(r), _rgbToPaddedHex(g), _rgbToPaddedHex(b)].join('');\n}\n/** Converts an RGB component to a 0-padded hex component of length 2. */\nfunction _rgbToPaddedHex(num) {\n num = clamp(num, MAX_COLOR_RGB);\n var hex = num.toString(16);\n return hex.length === 1 ? '0' + hex : hex;\n}\n//# sourceMappingURL=rgb2hex.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "index": 188, - "index2": 173, - "size": 309, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2hex", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony import specifier", - "userRequest": "./hsv2hex", - "loc": "8:17-24" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2hex", - "loc": "10:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hsv2hex", - "loc": "10:0-26" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2hex", - "loc": "3:0-36" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./hsv2hex", - "loc": "16:14-21" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2hex", - "loc": "8:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./hsv2hex", - "loc": "8:0-26" - } - ], - "usedExports": [ - "hsv2hex" - ], - "providedExports": [ - "hsv2hex" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { hsv2rgb } from './hsv2rgb';\nimport { rgb2hex } from './rgb2hex';\n/** Converts HSV components to a hex color string (without # prefix). */\nexport function hsv2hex(h, s, v) {\n var _a = hsv2rgb(h, s, v), r = _a.r, g = _a.g, b = _a.b;\n return rgb2hex(r, g, b);\n}\n//# sourceMappingURL=hsv2hex.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "index": 187, - "index2": 174, - "size": 411, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/getFullColorString", - "loc": "5:0-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/getFullColorString", - "loc": "106:129-147" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getFullColorString", - "loc": "16:0-37" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getFullColorString", - "loc": "16:0-37" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./getFullColorString", - "loc": "14:0-37" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./getFullColorString", - "loc": "14:0-37" - } - ], - "usedExports": [ - "getFullColorString" - ], - "providedExports": [ - "getFullColorString" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_SATURATION, MAX_COLOR_VALUE } from './consts';\nimport { hsv2hex } from './hsv2hex';\n/**\n * Converts a color hue to an HTML color string (with # prefix).\n * This implementation ignores all components of `color` except hue.\n */\nexport function getFullColorString(color) {\n return \"#\" + hsv2hex(color.h, MAX_COLOR_SATURATION, MAX_COLOR_VALUE);\n}\n//# sourceMappingURL=getFullColorString.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "index": 186, - "index2": 172, - "size": 724, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/updateSV", - "loc": "6:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/updateSV", - "loc": "50:35-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/updateSV", - "loc": "143:11-19" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateSV", - "loc": "17:0-27" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./updateSV", - "loc": "17:0-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateSV", - "loc": "15:0-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./updateSV", - "loc": "15:0-27" - } - ], - "usedExports": [ - "updateSV" - ], - "providedExports": [ - "updateSV" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { hsv2rgb } from './hsv2rgb';\nimport { rgb2hex } from './rgb2hex';\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\n/**\n * Gets a color with the same hue as `color` and other components updated to match the given\n * saturation and value.\n *\n * Does not modify the original `color` and does not supply a default alpha value.\n */\nexport function updateSV(color, s, v) {\n var _a = hsv2rgb(color.h, s, v), r = _a.r, g = _a.g, b = _a.b;\n var hex = rgb2hex(r, g, b);\n return __assign(__assign({}, color), { s: s,\n v: v,\n r: r,\n g: g,\n b: b,\n hex: hex, str: _rgbaOrHexString(r, g, b, color.a, hex) });\n}\n//# sourceMappingURL=updateSV.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2hsv.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2hsv.js", - "index": 178, - "index2": 163, - "size": 272, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2hsv", - "loc": "1:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "type": "harmony import specifier", - "userRequest": "./hsl2hsv", - "loc": "5:14-21" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2hsv", - "loc": "8:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hsl2hsv", - "loc": "8:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2hsv", - "loc": "6:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./hsl2hsv", - "loc": "6:0-26" - } - ], - "usedExports": [ - "hsl2hsv" - ], - "providedExports": [ - "hsl2hsv" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/** Converts HSL components to an HSV color. */\nexport function hsl2hsv(h, s, l) {\n s *= (l < 50 ? l : 100 - l) / 100;\n var v = l + s;\n return {\n h: h,\n s: v === 0 ? 0 : ((2 * s) / v) * 100,\n v: v,\n };\n}\n//# sourceMappingURL=hsl2hsv.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "index": 177, - "index2": 164, - "size": 297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2rgb", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./hsl2rgb", - "loc": "96:23-30" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2rgb", - "loc": "7:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hsl2rgb", - "loc": "7:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2rgb", - "loc": "5:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./hsl2rgb", - "loc": "5:0-26" - } - ], - "usedExports": [ - "hsl2rgb" - ], - "providedExports": [ - "hsl2rgb" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { hsl2hsv } from './hsl2hsv';\nimport { hsv2rgb } from './hsv2rgb';\n/** Converts HSL components to an RGB color. Does not set the alpha value. */\nexport function hsl2rgb(h, s, l) {\n var hsv = hsl2hsv(h, s, l);\n return hsv2rgb(hsv.h, hsv.s, hsv.v);\n}\n//# sourceMappingURL=hsl2rgb.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "index": 176, - "index2": 165, - "size": 4836, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "type": "harmony side effect evaluation", - "userRequest": "./cssColor", - "loc": "2:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "type": "harmony import specifier", - "userRequest": "./cssColor", - "loc": "13:16-24" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./cssColor", - "loc": "4:0-27" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./cssColor", - "loc": "4:0-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./cssColor", - "loc": "2:0-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./cssColor", - "loc": "2:0-27" - } - ], - "usedExports": [ - "cssColor" - ], - "providedExports": [ - "cssColor" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_ALPHA } from './consts';\nimport { hsl2rgb } from './hsl2rgb';\n/**\n * Converts a valid CSS color string to an RGB color.\n * Note that hex colors *must* be prefixed with # to be considered valid.\n * Alpha in returned color defaults to 100.\n * Four and eight digit hex values (with alpha) are supported if the current browser supports them.\n */\nexport function cssColor(color) {\n if (!color) {\n return undefined;\n }\n // Need to check the following valid color formats: RGB(A), HSL(A), hex, named color\n // First check for well formatted RGB(A), HSL(A), and hex formats at the start.\n // This is for perf (no creating an element) and catches the intentional \"transparent\" color\n // case early on.\n var easyColor = _rgba(color) || _hex6(color) || _hex3(color) || _hsla(color);\n if (easyColor) {\n return easyColor;\n }\n // if the above fails, do the more expensive catch-all\n return _browserCompute(color);\n}\n/**\n * Uses the browser's getComputedStyle() to determine what the passed-in color is.\n * This assumes _rgba, _hex6, _hex3, and _hsla have already been tried and all failed.\n * This works by attaching an element to the DOM, which may fail in server-side rendering\n * or with headless browsers.\n */\nfunction _browserCompute(str) {\n if (typeof document === 'undefined') {\n // don't throw an error when used server-side\n return undefined;\n }\n var elem = document.createElement('div');\n elem.style.backgroundColor = str;\n // This element must be attached to the DOM for getComputedStyle() to have a value\n elem.style.position = 'absolute';\n elem.style.top = '-9999px';\n elem.style.left = '-9999px';\n elem.style.height = '1px';\n elem.style.width = '1px';\n document.body.appendChild(elem);\n var eComputedStyle = getComputedStyle(elem);\n var computedColor = eComputedStyle && eComputedStyle.backgroundColor;\n document.body.removeChild(elem);\n // computedColor is always an RGB(A) string, except for invalid colors in IE/Edge which return 'transparent'\n // browsers return one of these if the color string is invalid,\n // so need to differentiate between an actual error and intentionally passing in this color\n if (computedColor === 'rgba(0, 0, 0, 0)' || computedColor === 'transparent') {\n switch (str.trim()) {\n // RGB and HSL were already checked at the start of the function\n case 'transparent':\n case '#0000':\n case '#00000000':\n return { r: 0, g: 0, b: 0, a: 0 };\n }\n return undefined;\n }\n return _rgba(computedColor);\n}\n/**\n * If `str` is in valid `rgb()` or `rgba()` format, returns an RGB color (alpha defaults to 100).\n * Otherwise returns undefined.\n */\nfunction _rgba(str) {\n if (!str) {\n return undefined;\n }\n var match = str.match(/^rgb(a?)\\(([\\d., ]+)\\)$/);\n if (match) {\n var hasAlpha = !!match[1];\n var expectedPartCount = hasAlpha ? 4 : 3;\n var parts = match[2].split(/ *, */).map(Number);\n if (parts.length === expectedPartCount) {\n return {\n r: parts[0],\n g: parts[1],\n b: parts[2],\n a: hasAlpha ? parts[3] * 100 : MAX_COLOR_ALPHA,\n };\n }\n }\n}\n/**\n * If `str` is in `hsl()` or `hsla()` format, returns an RGB color (alpha defaults to 100).\n * Otherwise returns undefined.\n */\nfunction _hsla(str) {\n var match = str.match(/^hsl(a?)\\(([\\d., ]+)\\)$/);\n if (match) {\n var hasAlpha = !!match[1];\n var expectedPartCount = hasAlpha ? 4 : 3;\n var parts = match[2].split(/ *, */).map(Number);\n if (parts.length === expectedPartCount) {\n var rgba = hsl2rgb(parts[0], parts[1], parts[2]);\n rgba.a = hasAlpha ? parts[3] * 100 : MAX_COLOR_ALPHA;\n return rgba;\n }\n }\n}\n/**\n * If `str` is in valid 6-digit hex format *with* # prefix, returns an RGB color (with alpha 100).\n * Otherwise returns undefined.\n */\nfunction _hex6(str) {\n if (str[0] === '#' && str.length === 7 && /^#[\\da-fA-F]{6}$/.test(str)) {\n return {\n r: parseInt(str.slice(1, 3), 16),\n g: parseInt(str.slice(3, 5), 16),\n b: parseInt(str.slice(5, 7), 16),\n a: MAX_COLOR_ALPHA,\n };\n }\n}\n/**\n * If `str` is in valid 3-digit hex format *with* # prefix, returns an RGB color (with alpha 100).\n * Otherwise returns undefined.\n */\nfunction _hex3(str) {\n if (str[0] === '#' && str.length === 4 && /^#[\\da-fA-F]{3}$/.test(str)) {\n return {\n r: parseInt(str[1] + str[1], 16),\n g: parseInt(str[2] + str[2], 16),\n b: parseInt(str[3] + str[3], 16),\n a: MAX_COLOR_ALPHA,\n };\n }\n}\n//# sourceMappingURL=cssColor.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "index": 180, - "index2": 166, - "size": 771, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hsv", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hsv", - "loc": "8:13-20" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hsv", - "loc": "11:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rgb2hsv", - "loc": "11:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hsv", - "loc": "9:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./rgb2hsv", - "loc": "9:0-26" - } - ], - "usedExports": [ - "rgb2hsv" - ], - "providedExports": [ - "rgb2hsv" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_RGB } from './consts';\n/** Converts RGB components to an HSV color. */\nexport function rgb2hsv(r, g, b) {\n var h = NaN;\n var max = Math.max(r, g, b);\n var min = Math.min(r, g, b);\n var delta = max - min;\n // hue\n if (delta === 0) {\n h = 0;\n }\n else if (r === max) {\n h = ((g - b) / delta) % 6;\n }\n else if (g === max) {\n h = (b - r) / delta + 2;\n }\n else if (b === max) {\n h = (r - g) / delta + 4;\n }\n h = Math.round(h * 60);\n if (h < 0) {\n h += 360;\n }\n // saturation\n var s = Math.round((max === 0 ? 0 : delta / max) * 100);\n // value\n var v = Math.round((max / MAX_COLOR_RGB) * 100);\n return { h: h, s: s, v: v };\n}\n//# sourceMappingURL=rgb2hsv.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "index": 179, - "index2": 167, - "size": 690, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "3:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromRGBA", - "loc": "9:0-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "type": "harmony import specifier", - "userRequest": "./getColorFromRGBA", - "loc": "17:33-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromRGBA", - "loc": "60:31-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromRGBA", - "loc": "242:22-38" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "14:0-35" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromRGBA", - "loc": "14:0-35" - }, - { - "moduleId": "ZK5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "1:0-54" - }, - { - "moduleId": "ZK5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "type": "harmony import specifier", - "userRequest": "./getColorFromRGBA", - "loc": "8:11-27" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "4:0-54" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./getColorFromRGBA", - "loc": "125:11-27" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./getColorFromRGBA", - "loc": "148:11-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "12:0-35" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromRGBA", - "loc": "12:0-35" - } - ], - "usedExports": [ - "getColorFromRGBA" - ], - "providedExports": [ - "getColorFromRGBA" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_ALPHA } from './consts';\nimport { rgb2hsv } from './rgb2hsv';\nimport { rgb2hex } from './rgb2hex';\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\n/** Converts an RGBA color to a color object (alpha defaults to 100). */\nexport function getColorFromRGBA(rgba) {\n var _a = rgba.a, a = _a === void 0 ? MAX_COLOR_ALPHA : _a, b = rgba.b, g = rgba.g, r = rgba.r;\n var _b = rgb2hsv(r, g, b), h = _b.h, s = _b.s, v = _b.v;\n var hex = rgb2hex(r, g, b);\n var str = _rgbaOrHexString(r, g, b, a, hex);\n var t = MAX_COLOR_ALPHA - a;\n return { a: a, b: b, g: g, h: h, hex: hex, r: r, s: s, str: str, v: v, t: t };\n}\n//# sourceMappingURL=getColorFromRGBA.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "index": 175, - "index2": 168, - "size": 732, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "issuerId": "352s", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "8:0-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "53:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "87:48-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "239:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "291:39-57" - }, - { - "moduleId": "352s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "1:0-78" - }, - { - "moduleId": "352s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "28:32-50" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromString", - "loc": "13:0-37" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromString", - "loc": "13:0-37" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromString", - "loc": "20:0-37" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromString", - "loc": "20:0-37" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "2:0-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "87:57-75" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "88:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "89:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "127:66-84" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "128:63-81" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "129:61-79" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "130:69-87" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "131:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "132:67-85" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "133:54-72" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "134:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "135:66-84" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "136:65-83" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "137:64-82" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "138:54-72" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "139:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "140:58-76" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "141:61-79" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "142:63-81" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "143:62-80" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "144:59-77" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "145:61-79" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "146:64-82" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromString", - "loc": "11:0-37" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromString", - "loc": "11:0-37" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "5:0-78" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "56:111-129" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "84:20-38" - } - ], - "usedExports": [ - "getColorFromString" - ], - "providedExports": [ - "getColorFromString" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { cssColor } from './cssColor';\nimport { getColorFromRGBA } from './getColorFromRGBA';\n/**\n * Converts a CSS color string to a color object.\n * Note that hex colors *must* be prefixed with # to be considered valid.\n *\n * `inputColor` will be used unmodified as the `str` property of the returned object.\n * Alpha defaults to 100 if not specified in `inputColor`.\n * Returns undefined if the color string is invalid/not recognized.\n */\nexport function getColorFromString(inputColor) {\n var color = cssColor(inputColor);\n if (!color) {\n return;\n }\n return __assign(__assign({}, getColorFromRGBA(color)), { str: inputColor });\n}\n//# sourceMappingURL=getColorFromString.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "index": 174, - "index2": 162, - "size": 478, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/updateA", - "loc": "11:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateA", - "loc": "34:79-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateA", - "loc": "56:44-51" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateA", - "loc": "21:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./updateA", - "loc": "21:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateA", - "loc": "18:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./updateA", - "loc": "18:0-26" - } - ], - "usedExports": [ - "updateA" - ], - "providedExports": [ - "updateA" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\nimport { MAX_COLOR_ALPHA } from './consts';\n/**\n * Gets a color with the given alpha value and the same other components as `color`.\n * Does not modify the original color.\n */\nexport function updateA(color, a) {\n return __assign(__assign({}, color), { a: a, t: MAX_COLOR_ALPHA - a, str: _rgbaOrHexString(color.r, color.g, color.b, a, color.hex) });\n}\n//# sourceMappingURL=updateA.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "index": 173, - "index2": 161, - "size": 508, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/updateT", - "loc": "12:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateT", - "loc": "34:69-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateT", - "loc": "56:54-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateT", - "loc": "241:22-29" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateT", - "loc": "22:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./updateT", - "loc": "22:0-26" - } - ], - "usedExports": [ - "updateT" - ], - "providedExports": [ - "updateT" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\nimport { MAX_COLOR_ALPHA } from './consts';\n/**\n * Gets a color with the given transparency value and the same other components as `color`.\n * Does not modify the original color.\n */\nexport function updateT(color, t) {\n var a = MAX_COLOR_ALPHA - t;\n return __assign(__assign({}, color), { t: t,\n a: a, str: _rgbaOrHexString(color.r, color.g, color.b, a, color.hex) });\n}\n//# sourceMappingURL=updateT.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "index": 167, - "index2": 160, - "size": 715, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/updateH", - "loc": "13:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateH", - "loc": "30:35-42" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateH", - "loc": "18:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./updateH", - "loc": "18:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateH", - "loc": "16:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./updateH", - "loc": "16:0-26" - } - ], - "usedExports": [ - "updateH" - ], - "providedExports": [ - "updateH" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { hsv2rgb } from './hsv2rgb';\nimport { rgb2hex } from './rgb2hex';\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\n/**\n * Gets a color with the same saturation and value as `color` and the other components updated\n * to match the given hue.\n *\n * Does not modify the original `color` and does not supply a default alpha value.\n */\nexport function updateH(color, h) {\n var _a = hsv2rgb(h, color.s, color.v), r = _a.r, g = _a.g, b = _a.b;\n var hex = rgb2hex(r, g, b);\n return __assign(__assign({}, color), { h: h,\n r: r,\n g: g,\n b: b,\n hex: hex, str: _rgbaOrHexString(r, g, b, color.a, hex) });\n}\n//# sourceMappingURL=updateH.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "index": 182, - "index2": 170, - "size": 460, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/correctRGB", - "loc": "14:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/correctRGB", - "loc": "60:48-58" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./correctRGB", - "loc": "23:0-29" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./correctRGB", - "loc": "23:0-29" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./correctRGB", - "loc": "19:0-29" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./correctRGB", - "loc": "19:0-29" - } - ], - "usedExports": [ - "correctRGB" - ], - "providedExports": [ - "correctRGB" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_ALPHA, MAX_COLOR_RGB } from './consts';\nimport { clamp } from './clamp';\n/** Corrects an RGB color to fall within the valid range. */\nexport function correctRGB(color) {\n return {\n r: clamp(color.r, MAX_COLOR_RGB),\n g: clamp(color.g, MAX_COLOR_RGB),\n b: clamp(color.b, MAX_COLOR_RGB),\n a: typeof color.a === 'number' ? clamp(color.a, MAX_COLOR_ALPHA) : color.a,\n };\n}\n//# sourceMappingURL=correctRGB.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "index": 166, - "index2": 181, - "size": 15670, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPicker.base", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony import specifier", - "userRequest": "./ColorPicker.base", - "loc": "4:32-47" - }, - { - "moduleId": "mFm4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPicker.base", - "loc": "2:0-35" - }, - { - "moduleId": "mFm4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ColorPicker.base", - "loc": "2:0-35" - } - ], - "usedExports": [ - "ColorPickerBase" - ], - "providedExports": [ - "ColorPickerBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef, warnDeprecations, warn } from '../../Utilities';\nimport { TextField } from '../../TextField';\nimport { ColorRectangle } from './ColorRectangle/ColorRectangle';\nimport { ColorSlider } from './ColorSlider/ColorSlider';\nimport { MAX_COLOR_ALPHA, MAX_COLOR_RGB, MAX_HEX_LENGTH, MAX_RGBA_LENGTH, MIN_HEX_LENGTH, MIN_RGBA_LENGTH, HEX_REGEX, RGBA_REGEX, } from '../../utilities/color/consts';\nimport { getColorFromString } from '../../utilities/color/getColorFromString';\nimport { getColorFromRGBA } from '../../utilities/color/getColorFromRGBA';\nimport { clamp } from '../../utilities/color/clamp';\nimport { updateA } from '../../utilities/color/updateA';\nimport { updateT } from '../../utilities/color/updateT';\nimport { updateH } from '../../utilities/color/updateH';\nimport { correctRGB } from '../../utilities/color/correctRGB';\nimport { correctHex } from '../../utilities/color/correctHex';\nimport { ColorRectangleBase } from './ColorRectangle/ColorRectangle.base';\nvar getClassNames = classNamesFunction();\nvar allColorComponents = ['hex', 'r', 'g', 'b', 'a', 't'];\n/**\n * {@docCategory ColorPicker}\n */\nvar ColorPickerBase = /** @class */ (function (_super) {\n __extends(ColorPickerBase, _super);\n function ColorPickerBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onSVChanged = function (ev, color) {\n _this._updateColor(ev, color);\n };\n _this._onHChanged = function (ev, h) {\n _this._updateColor(ev, updateH(_this.state.color, h));\n };\n /** Callback for when the alpha/transparency slider changes */\n _this._onATChanged = function (ev, value) {\n var updater = _this.props.alphaType === 'transparency' ? updateT : updateA;\n _this._updateColor(ev, updater(_this.state.color, Math.round(value)));\n };\n _this._onBlur = function (event) {\n var _a;\n var _b = _this.state, color = _b.color, editingColor = _b.editingColor;\n if (!editingColor) {\n return;\n }\n // If there was an intermediate incorrect value (such as too large or empty), correct it.\n var value = editingColor.value, component = editingColor.component;\n var isHex = component === 'hex';\n var isAlpha = component === 'a';\n var isTransparency = component === 't';\n var minLength = isHex ? MIN_HEX_LENGTH : MIN_RGBA_LENGTH;\n if (value.length >= minLength && (isHex || !isNaN(Number(value)))) {\n // Real value. Clamp to appropriate length (hex) or range (rgba).\n var newColor = void 0;\n if (isHex) {\n newColor = getColorFromString('#' + correctHex(value));\n }\n else if (isAlpha || isTransparency) {\n var updater = isAlpha ? updateA : updateT;\n newColor = updater(color, clamp(Number(value), MAX_COLOR_ALPHA));\n }\n else {\n newColor = getColorFromRGBA(correctRGB(__assign(__assign({}, color), (_a = {}, _a[component] = Number(value), _a))));\n }\n // Update state and call onChange\n _this._updateColor(event, newColor);\n }\n else {\n // Intermediate value was an empty string or too short (hex only).\n // Just clear the intermediate state and revert to the previous value.\n _this.setState({ editingColor: undefined });\n }\n };\n initializeComponentRef(_this);\n var strings = props.strings; // always defined since it's in defaultProps\n warnDeprecations('ColorPicker', props, {\n hexLabel: 'strings.hex',\n redLabel: 'strings.red',\n greenLabel: 'strings.green',\n blueLabel: 'strings.blue',\n alphaLabel: 'strings.alpha',\n alphaSliderHidden: 'alphaType',\n });\n // eslint-disable-next-line deprecation/deprecation\n if (strings.hue) {\n // warnDeprecations can't handle nested deprecated props\n warn(\"ColorPicker property 'strings.hue' was used but has been deprecated. Use 'strings.hueAriaLabel' instead.\");\n }\n _this.state = {\n color: _getColorFromProps(props) || getColorFromString('#ffffff'),\n };\n _this._textChangeHandlers = {};\n for (var _i = 0, allColorComponents_1 = allColorComponents; _i < allColorComponents_1.length; _i++) {\n var component = allColorComponents_1[_i];\n _this._textChangeHandlers[component] = _this._onTextChange.bind(_this, component);\n }\n var defaultStrings = ColorPickerBase.defaultProps.strings;\n _this._textLabels = {\n /* eslint-disable deprecation/deprecation */\n r: props.redLabel || strings.red || defaultStrings.red,\n g: props.greenLabel || strings.green || defaultStrings.green,\n b: props.blueLabel || strings.blue || defaultStrings.blue,\n a: props.alphaLabel || strings.alpha || defaultStrings.alpha,\n hex: props.hexLabel || strings.hex || defaultStrings.hex,\n t: strings.transparency || defaultStrings.transparency,\n };\n _this._strings = __assign(__assign(__assign({}, defaultStrings), { \n // these aria labels default to the visible labels\n alphaAriaLabel: _this._textLabels.a, transparencyAriaLabel: _this._textLabels.t }), strings);\n return _this;\n }\n Object.defineProperty(ColorPickerBase.prototype, \"color\", {\n get: function () {\n return this.state.color;\n },\n enumerable: true,\n configurable: true\n });\n ColorPickerBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n // if props changed (as opposed to a state update), update the color\n if (prevProps !== this.props) {\n var color = _getColorFromProps(this.props);\n if (color) {\n this._updateColor(undefined, color);\n }\n }\n };\n ColorPickerBase.prototype.render = function () {\n var _this = this;\n var props = this.props;\n var strings = this._strings;\n var textLabels = this._textLabels;\n var theme = props.theme, className = props.className, styles = props.styles, alphaType = props.alphaType, \n // eslint-disable-next-line deprecation/deprecation\n _a = props.alphaSliderHidden, \n // eslint-disable-next-line deprecation/deprecation\n alphaSliderHidden = _a === void 0 ? alphaType === 'none' : _a;\n var color = this.state.color;\n var useTransparency = alphaType === 'transparency';\n var colorComponents = ['hex', 'r', 'g', 'b', useTransparency ? 't' : 'a'];\n var atValue = useTransparency ? color.t : color.a;\n var atLabel = useTransparency ? textLabels.t : textLabels.a;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n alphaType: alphaType,\n });\n var selectedColorAriaParts = [textLabels.r, color.r, textLabels.g, color.g, textLabels.b, color.b];\n if (!alphaSliderHidden && typeof atValue === 'number') {\n selectedColorAriaParts.push(atLabel, atValue + \"%\");\n }\n var ariaLabel = strings.rootAriaLabelFormat.replace('{0}', selectedColorAriaParts.join(' '));\n return (React.createElement(\"div\", { className: classNames.root, role: \"group\", \"aria-label\": ariaLabel },\n React.createElement(\"div\", { className: classNames.panel },\n React.createElement(ColorRectangle, { color: color, onChange: this._onSVChanged, ariaLabel: strings.svAriaLabel, ariaDescription: strings.svAriaDescription, ariaValueFormat: strings.svAriaValueFormat, className: classNames.colorRectangle }),\n React.createElement(\"div\", { className: classNames.flexContainer },\n React.createElement(\"div\", { className: classNames.flexSlider },\n React.createElement(ColorSlider, { className: \"is-hue\", type: \"hue\", \n // eslint-disable-next-line deprecation/deprecation\n ariaLabel: strings.hue || strings.hueAriaLabel, value: color.h, onChange: this._onHChanged }),\n !alphaSliderHidden && (React.createElement(ColorSlider, { className: \"is-alpha\", type: alphaType, ariaLabel: useTransparency ? strings.transparencyAriaLabel : strings.alphaAriaLabel, overlayColor: color.hex, value: atValue, onChange: this._onATChanged }))),\n props.showPreview && (React.createElement(\"div\", { className: classNames.flexPreviewBox },\n React.createElement(\"div\", { className: classNames.colorSquare + ' is-preview', style: {\n backgroundColor: color.str,\n } })))),\n React.createElement(\"table\", { className: classNames.table, role: \"group\", cellPadding: \"0\", cellSpacing: \"0\" },\n React.createElement(\"thead\", null,\n React.createElement(\"tr\", { className: classNames.tableHeader },\n React.createElement(\"td\", { className: classNames.tableHexCell }, textLabels.hex),\n React.createElement(\"td\", null, textLabels.r),\n React.createElement(\"td\", null, textLabels.g),\n React.createElement(\"td\", null, textLabels.b),\n !alphaSliderHidden && React.createElement(\"td\", { className: classNames.tableAlphaCell }, atLabel))),\n React.createElement(\"tbody\", null,\n React.createElement(\"tr\", null, colorComponents.map(function (comp) {\n if ((comp === 'a' || comp === 't') && alphaSliderHidden) {\n return null;\n }\n return (React.createElement(\"td\", { key: comp },\n React.createElement(TextField, { className: classNames.input, onChange: _this._textChangeHandlers[comp], onBlur: _this._onBlur, value: _this._getDisplayValue(comp), spellCheck: false, ariaLabel: textLabels[comp], \"aria-live\": comp !== 'hex' ? 'assertive' : undefined, autoComplete: \"off\" })));\n })))))));\n };\n ColorPickerBase.prototype._getDisplayValue = function (component) {\n var _a = this.state, color = _a.color, editingColor = _a.editingColor;\n if (editingColor && editingColor.component === component) {\n return editingColor.value;\n }\n if (component === 'hex') {\n return color[component] || '';\n }\n else if (typeof color[component] === 'number' && !isNaN(color[component])) {\n return String(color[component]);\n }\n return '';\n };\n ColorPickerBase.prototype._onTextChange = function (component, event, newValue) {\n var _a;\n var color = this.state.color;\n var isHex = component === 'hex';\n var isAlpha = component === 'a';\n var isTransparency = component === 't';\n newValue = (newValue || '').substr(0, isHex ? MAX_HEX_LENGTH : MAX_RGBA_LENGTH);\n // Ignore what the user typed if it contains invalid characters\n var validCharsRegex = isHex ? HEX_REGEX : RGBA_REGEX;\n if (!validCharsRegex.test(newValue)) {\n return;\n }\n // Determine if the entry is valid (different methods for hex, alpha, and RGB)\n var isValid;\n if (newValue === '') {\n // Empty string is obviously not valid\n isValid = false;\n }\n else if (isHex) {\n // Technically hex values of length 3 are also valid, but committing the value here would\n // cause it to be automatically converted to a value of length 6, which may not be what the\n // user wanted if they're not finished typing. (Values of length 3 will be committed on blur.)\n isValid = newValue.length === MAX_HEX_LENGTH;\n }\n else if (isAlpha || isTransparency) {\n isValid = Number(newValue) <= MAX_COLOR_ALPHA;\n }\n else {\n isValid = Number(newValue) <= MAX_COLOR_RGB;\n }\n if (!isValid) {\n // If the new value is an empty string or other invalid value, save that to display.\n // (if the user still hasn't entered anything on blur, the last value is restored)\n this.setState({ editingColor: { component: component, value: newValue } });\n }\n else if (String(color[component]) === newValue) {\n // If the new value is the same as the current value, mostly ignore it.\n // Exception is that if the user was previously editing the value (but hadn't yet entered\n // a new valid value), we should clear the intermediate value.\n if (this.state.editingColor) {\n this.setState({ editingColor: undefined });\n }\n }\n else {\n // Should be a valid color. Update the value.\n var newColor = isHex\n ? getColorFromString('#' + newValue)\n : isTransparency\n ? updateT(color, Number(newValue))\n : getColorFromRGBA(__assign(__assign({}, color), (_a = {}, _a[component] = Number(newValue), _a)));\n this._updateColor(event, newColor);\n }\n };\n /**\n * Update the displayed color and call change handlers if appropriate.\n * @param ev - Event if call was triggered by an event (undefined if triggered by props change)\n * @param newColor - Updated color\n */\n ColorPickerBase.prototype._updateColor = function (ev, newColor) {\n if (!newColor) {\n return;\n }\n var _a = this.state, color = _a.color, editingColor = _a.editingColor;\n // For black or white, the hue can change without changing the string.\n var isDifferentColor = newColor.h !== color.h || newColor.str !== color.str;\n if (isDifferentColor || editingColor) {\n // If ev is undefined, it's an update from props (which should be unconditionally respected\n // and not call onChange).\n if (ev && this.props.onChange) {\n this.props.onChange(ev, newColor);\n if (ev.defaultPrevented) {\n return;\n }\n }\n this.setState({ color: newColor, editingColor: undefined });\n }\n };\n ColorPickerBase.defaultProps = {\n alphaType: 'alpha',\n strings: {\n rootAriaLabelFormat: 'Color picker, {0} selected.',\n hex: 'Hex',\n red: 'Red',\n green: 'Green',\n blue: 'Blue',\n alpha: 'Alpha',\n transparency: 'Transparency',\n hueAriaLabel: 'Hue',\n svAriaLabel: ColorRectangleBase.defaultProps.ariaLabel,\n svAriaValueFormat: ColorRectangleBase.defaultProps.ariaValueFormat,\n svAriaDescription: ColorRectangleBase.defaultProps.ariaDescription,\n },\n };\n return ColorPickerBase;\n}(React.Component));\nexport { ColorPickerBase };\nfunction _getColorFromProps(props) {\n var color = props.color;\n return typeof color === 'string' ? getColorFromString(color) : color;\n}\n//# sourceMappingURL=ColorPicker.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "index": 165, - "index2": 183, - "size": 283, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "issuerId": "mFm4", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/ColorPicker", - "loc": "132:36-47" - }, - { - "moduleId": "mFm4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPicker", - "loc": "1:0-30" - }, - { - "moduleId": "mFm4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ColorPicker", - "loc": "1:0-30" - } - ], - "usedExports": [ - "ColorPicker" - ], - "providedExports": [ - "ColorPicker" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { ColorPickerBase } from './ColorPicker.base';\nimport { getStyles } from './ColorPicker.styles';\nexport var ColorPicker = styled(ColorPickerBase, getStyles, undefined, { scope: 'ColorPicker' });\n//# sourceMappingURL=ColorPicker.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "index": 172, - "index2": 159, - "size": 467, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "2:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "2:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "9:78-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "10:14-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "11:19-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "18:23-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "19:23-39" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "4:0-54" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "17:14-30" - } - ], - "usedExports": [ - "_rgbaOrHexString" - ], - "providedExports": [ - "_rgbaOrHexString" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { MAX_COLOR_ALPHA } from './consts';\n/**\n * @internal\n * Get a CSS color string from some color components.\n * If `a` is specified and not 100, returns an `rgba()` string.\n * Otherwise returns `hex` prefixed with #.\n */\nexport function _rgbaOrHexString(r, g, b, a, hex) {\n return a === MAX_COLOR_ALPHA || typeof a !== 'number' ? \"#\" + hex : \"rgba(\" + r + \", \" + g + \", \" + b + \", \" + a / MAX_COLOR_ALPHA + \")\";\n}\n//# sourceMappingURL=_rgbaOrHexString.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "index": 185, - "index2": 175, - "size": 7022, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorRectangle.base", - "loc": "2:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle.base", - "loc": "4:35-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorRectangle/ColorRectangle.base", - "loc": "16:0-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle/ColorRectangle.base", - "loc": "281:25-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle/ColorRectangle.base", - "loc": "282:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle/ColorRectangle.base", - "loc": "283:31-49" - } - ], - "usedExports": [ - "ColorRectangleBase" - ], - "providedExports": [ - "ColorRectangleBase", - "_getNewColor" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, on, initializeComponentRef, KeyCodes, getId } from '../../../Utilities';\nimport { MAX_COLOR_SATURATION, MAX_COLOR_VALUE } from '../../../utilities/color/consts';\nimport { getFullColorString } from '../../../utilities/color/getFullColorString';\nimport { updateSV } from '../../../utilities/color/updateSV';\nimport { clamp } from '../../../utilities/color/clamp';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory ColorPicker}\n */\nvar ColorRectangleBase = /** @class */ (function (_super) {\n __extends(ColorRectangleBase, _super);\n function ColorRectangleBase(props) {\n var _this = _super.call(this, props) || this;\n _this._disposables = [];\n _this._root = React.createRef();\n _this._isAdjustingSaturation = true;\n _this._descriptionId = getId('ColorRectangle-description');\n _this._onKeyDown = function (ev) {\n var color = _this.state.color;\n var s = color.s, v = color.v;\n var increment = ev.shiftKey ? 10 : 1;\n // Intentionally DO NOT flip the color picker in RTL: its orientation is not very meaningful,\n // and getting all the math and styles flipped correctly is tricky\n switch (ev.which) {\n case KeyCodes.up: {\n _this._isAdjustingSaturation = false;\n v += increment; // V = 100 (lightest) is at the top\n break;\n }\n case KeyCodes.down: {\n _this._isAdjustingSaturation = false;\n v -= increment; // V = 0 (darkest) is at the bottom\n break;\n }\n case KeyCodes.left: {\n _this._isAdjustingSaturation = true;\n s -= increment;\n break;\n }\n case KeyCodes.right: {\n _this._isAdjustingSaturation = true;\n s += increment;\n break;\n }\n default:\n return;\n }\n _this._updateColor(ev, updateSV(color, clamp(s, MAX_COLOR_SATURATION), clamp(v, MAX_COLOR_VALUE)));\n };\n _this._onMouseDown = function (ev) {\n _this._disposables.push(on(window, 'mousemove', _this._onMouseMove, true), on(window, 'mouseup', _this._disposeListeners, true));\n _this._onMouseMove(ev);\n };\n _this._onMouseMove = function (ev) {\n if (!_this._root.current) {\n return;\n }\n // Leaving the following commented code which is sometimes necessary for debugging:\n // If the primary button (1) isn't pressed, the user is no longer dragging, so turn off\n // the event handlers and exit.\n // if (!(ev.buttons & 1)) {\n // this._disposeListeners();\n // return;\n // }\n var newColor = _getNewColor(ev, _this.state.color, _this._root.current);\n if (newColor) {\n _this._updateColor(ev, newColor);\n }\n };\n _this._disposeListeners = function () {\n _this._disposables.forEach(function (dispose) { return dispose(); });\n _this._disposables = [];\n };\n initializeComponentRef(_this);\n _this.state = { color: props.color };\n return _this;\n }\n Object.defineProperty(ColorRectangleBase.prototype, \"color\", {\n get: function () {\n return this.state.color;\n },\n enumerable: true,\n configurable: true\n });\n ColorRectangleBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n // if props changed (as opposed to a state update), set the value\n // TODO: switch to strict controlled pattern instead\n if (prevProps !== this.props && this.props.color) {\n this.setState({ color: this.props.color });\n }\n };\n ColorRectangleBase.prototype.componentWillUnmount = function () {\n this._disposeListeners();\n };\n ColorRectangleBase.prototype.render = function () {\n var _a = this.props, minSize = _a.minSize, theme = _a.theme, className = _a.className, styles = _a.styles, ariaValueFormat = _a.ariaValueFormat, ariaLabel = _a.ariaLabel, ariaDescription = _a.ariaDescription;\n var color = this.state.color;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n minSize: minSize,\n });\n var valueText = ariaValueFormat.replace('{0}', String(color.s)).replace('{1}', String(color.v));\n return (React.createElement(\"div\", { ref: this._root, tabIndex: 0, className: classNames.root, style: { backgroundColor: getFullColorString(color) }, onMouseDown: this._onMouseDown, onKeyDown: this._onKeyDown, role: \"slider\", \"aria-valuetext\": valueText, \"aria-valuenow\": this._isAdjustingSaturation ? color.s : color.v, \"aria-valuemin\": 0, \"aria-valuemax\": MAX_COLOR_VALUE, \"aria-label\": ariaLabel, \"aria-describedby\": this._descriptionId, \"data-is-focusable\": true },\n React.createElement(\"div\", { className: classNames.description, id: this._descriptionId }, ariaDescription),\n React.createElement(\"div\", { className: classNames.light }),\n React.createElement(\"div\", { className: classNames.dark }),\n React.createElement(\"div\", { className: classNames.thumb, style: { left: color.s + '%', top: MAX_COLOR_VALUE - color.v + '%', backgroundColor: color.str } })));\n };\n ColorRectangleBase.prototype._updateColor = function (ev, color) {\n var onChange = this.props.onChange;\n var oldColor = this.state.color;\n if (color.s === oldColor.s && color.v === oldColor.v) {\n return; // no change\n }\n if (onChange) {\n onChange(ev, color);\n }\n if (!ev.defaultPrevented) {\n this.setState({ color: color });\n ev.preventDefault();\n }\n };\n ColorRectangleBase.defaultProps = {\n minSize: 220,\n ariaLabel: 'Saturation and brightness',\n ariaValueFormat: 'Saturation {0} brightness {1}',\n ariaDescription: 'Use left and right arrow keys to set saturation. Use up and down arrow keys to set brightness.',\n };\n return ColorRectangleBase;\n}(React.Component));\nexport { ColorRectangleBase };\n/**\n * Exported for testing only.\n * @internal\n */\nexport function _getNewColor(ev, prevColor, root) {\n var rectSize = root.getBoundingClientRect();\n var sPercentage = (ev.clientX - rectSize.left) / rectSize.width;\n var vPercentage = (ev.clientY - rectSize.top) / rectSize.height;\n return updateSV(prevColor, clamp(Math.round(sPercentage * MAX_COLOR_SATURATION), MAX_COLOR_SATURATION), clamp(Math.round(MAX_COLOR_VALUE - vPercentage * MAX_COLOR_VALUE), MAX_COLOR_VALUE));\n}\n//# sourceMappingURL=ColorRectangle.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "index": 184, - "index2": 177, - "size": 307, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorRectangle/ColorRectangle", - "loc": "5:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle/ColorRectangle", - "loc": "152:36-50" - } - ], - "usedExports": [ - "ColorRectangle" - ], - "providedExports": [ - "ColorRectangle" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { styled } from '../../../Utilities';\nimport { ColorRectangleBase } from './ColorRectangle.base';\nimport { getStyles } from './ColorRectangle.styles';\nexport var ColorRectangle = styled(ColorRectangleBase, getStyles, undefined, { scope: 'ColorRectangle' });\n//# sourceMappingURL=ColorRectangle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "index": 190, - "index2": 180, - "size": 286, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorSlider/ColorSlider", - "loc": "6:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorSlider/ColorSlider", - "loc": "155:44-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorSlider/ColorSlider", - "loc": "158:67-78" - } - ], - "usedExports": [ - "ColorSlider" - ], - "providedExports": [ - "ColorSlider" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { styled } from '../../../Utilities';\nimport { ColorSliderBase } from './ColorSlider.base';\nimport { getStyles } from './ColorSlider.styles';\nexport var ColorSlider = styled(ColorSliderBase, getStyles, undefined, { scope: 'ColorSlider' });\n//# sourceMappingURL=ColorSlider.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "index": 181, - "index2": 169, - "size": 606, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/correctHex", - "loc": "15:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/correctHex", - "loc": "53:56-66" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./correctHex", - "loc": "21:0-29" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./correctHex", - "loc": "21:0-29" - } - ], - "usedExports": [ - "correctHex" - ], - "providedExports": [ - "correctHex" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { MIN_HEX_LENGTH, MAX_HEX_LENGTH } from './consts';\n/**\n * Corrects a hex color to have length 3 or 6. Defaults to white if too short.\n * Does NOT check anything besides the length (such as valid characters) and does NOT handle\n * hex values starting with # sign.\n */\nexport function correctHex(hex) {\n if (!hex || hex.length < MIN_HEX_LENGTH) {\n return 'ffffff'; // not a valid color--default to white\n }\n if (hex.length >= MAX_HEX_LENGTH) {\n return hex.substring(0, MAX_HEX_LENGTH);\n }\n return hex.substring(0, MIN_HEX_LENGTH);\n}\n//# sourceMappingURL=correctHex.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.styles.js", - "index": 193, - "index2": 182, - "size": 2326, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPicker.styles", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony import specifier", - "userRequest": "./ColorPicker.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "export var getStyles = function (props) {\n var className = props.className, theme = props.theme, alphaType = props.alphaType;\n return {\n root: [\n 'ms-ColorPicker',\n theme.fonts.medium,\n {\n position: 'relative',\n maxWidth: 300,\n },\n className,\n ],\n panel: [\n 'ms-ColorPicker-panel',\n {\n padding: '16px',\n },\n ],\n table: [\n 'ms-ColorPicker-table',\n {\n tableLayout: 'fixed',\n width: '100%',\n selectors: {\n 'tbody td:last-of-type .ms-ColorPicker-input': {\n paddingRight: 0,\n },\n },\n },\n ],\n tableHeader: [\n theme.fonts.small,\n {\n selectors: {\n td: {\n paddingBottom: 4,\n },\n },\n },\n ],\n tableHexCell: {\n width: '25%',\n },\n // Account for \"Transparency\" being a longer word\n tableAlphaCell: alphaType === 'transparency' && {\n width: '22%',\n },\n colorSquare: [\n 'ms-ColorPicker-colorSquare',\n {\n width: 48,\n height: 48,\n margin: '0 0 0 8px',\n border: '1px solid #c8c6c4',\n },\n ],\n flexContainer: {\n display: 'flex',\n },\n flexSlider: {\n flexGrow: '1',\n },\n flexPreviewBox: {\n flexGrow: '0',\n },\n input: [\n 'ms-ColorPicker-input',\n {\n width: '100%',\n border: 'none',\n boxSizing: 'border-box',\n height: 30,\n selectors: {\n '&.ms-TextField': {\n paddingRight: 4,\n },\n '& .ms-TextField-field': {\n minWidth: 'auto',\n padding: 5,\n textOverflow: 'clip',\n },\n },\n },\n ],\n };\n};\n//# sourceMappingURL=ColorPicker.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "index": 189, - "index2": 176, - "size": 3025, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorRectangle.styles", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle.styles", - "loc": "4:55-64" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, getHighContrastNoAdjustStyle } from '../../../Styling';\nimport { IsFocusVisibleClassName } from '../../../Utilities';\nimport { hiddenContentStyle } from '@uifabric/styling';\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, theme = props.theme, minSize = props.minSize;\n var palette = theme.palette, effects = theme.effects;\n return {\n root: [\n 'ms-ColorPicker-colorRect',\n {\n position: 'relative',\n marginBottom: 8,\n border: \"1px solid \" + palette.neutralLighter,\n borderRadius: effects.roundedCorner2,\n minWidth: minSize,\n minHeight: minSize,\n outline: 'none',\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({}, getHighContrastNoAdjustStyle()),\n _a[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n outline: \"1px solid \" + palette.neutralSecondary,\n },\n _a),\n },\n className,\n ],\n light: [\n 'ms-ColorPicker-light',\n {\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n // Intentionally DO NOT flip the color picker in RTL: its orientation is not very meaningful,\n // and getting all the math and styles flipped correctly is tricky\n background: 'linear-gradient(to right, white 0%, transparent 100%) /*@noflip*/',\n },\n ],\n dark: [\n 'ms-ColorPicker-dark',\n {\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n background: 'linear-gradient(to bottom, transparent 0, #000 100%)',\n },\n ],\n thumb: [\n 'ms-ColorPicker-thumb',\n {\n position: 'absolute',\n width: 20,\n height: 20,\n background: 'white',\n border: \"1px solid \" + palette.neutralSecondaryAlt,\n borderRadius: '50%',\n boxShadow: effects.elevation8,\n transform: 'translate(-50%, -50%)',\n selectors: {\n ':before': {\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n border: \"2px solid \" + palette.white,\n borderRadius: '50%',\n boxSizing: 'border-box',\n content: '\"\"',\n },\n },\n },\n ],\n description: hiddenContentStyle,\n };\n};\n//# sourceMappingURL=ColorRectangle.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "index": 191, - "index2": 178, - "size": 6970, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorSlider.base", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony import specifier", - "userRequest": "./ColorSlider.base", - "loc": "4:32-47" - } - ], - "usedExports": [ - "ColorSliderBase" - ], - "providedExports": [ - "ColorSliderBase" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef, on, KeyCodes, getWindow, warnDeprecations, warn, } from '../../../Utilities';\nimport { clamp } from '../../../utilities/color/clamp';\nimport { MAX_COLOR_HUE, MAX_COLOR_ALPHA } from '../../../utilities/color/consts';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory ColorPicker}\n */\nvar ColorSliderBase = /** @class */ (function (_super) {\n __extends(ColorSliderBase, _super);\n function ColorSliderBase(props) {\n var _this = _super.call(this, props) || this;\n _this._disposables = [];\n _this._root = React.createRef();\n _this._onKeyDown = function (ev) {\n var currentValue = _this.value;\n var maxValue = _this._maxValue;\n var increment = ev.shiftKey ? 10 : 1;\n // Intentionally DO NOT flip the color picker in RTL: its orientation is not very meaningful,\n // and getting all the math and styles flipped correctly is tricky\n switch (ev.which) {\n case KeyCodes.left: {\n currentValue -= increment;\n break;\n }\n case KeyCodes.right: {\n currentValue += increment;\n break;\n }\n case KeyCodes.home: {\n currentValue = 0;\n break;\n }\n case KeyCodes.end: {\n currentValue = maxValue;\n break;\n }\n default: {\n return;\n }\n }\n _this._updateValue(ev, clamp(currentValue, maxValue));\n };\n _this._onMouseDown = function (ev) {\n var win = getWindow(_this);\n if (win) {\n _this._disposables.push(on(win, 'mousemove', _this._onMouseMove, true), on(win, 'mouseup', _this._disposeListeners, true));\n }\n _this._onMouseMove(ev);\n };\n _this._onMouseMove = function (ev) {\n if (!_this._root.current) {\n return;\n }\n var maxValue = _this._maxValue;\n var rectSize = _this._root.current.getBoundingClientRect();\n var currentPercentage = (ev.clientX - rectSize.left) / rectSize.width;\n var newValue = clamp(Math.round(currentPercentage * maxValue), maxValue);\n _this._updateValue(ev, newValue);\n };\n _this._disposeListeners = function () {\n _this._disposables.forEach(function (dispose) { return dispose(); });\n _this._disposables = [];\n };\n initializeComponentRef(_this);\n warnDeprecations('ColorSlider', props, {\n thumbColor: 'styles.sliderThumb',\n overlayStyle: 'overlayColor',\n isAlpha: 'type',\n maxValue: 'type',\n minValue: 'type',\n });\n // eslint-disable-next-line deprecation/deprecation\n if (_this._type !== 'hue' && !(props.overlayColor || props.overlayStyle)) {\n warn(\"ColorSlider: 'overlayColor' is required when 'type' is \\\"alpha\\\" or \\\"transparency\\\"\");\n }\n _this.state = {\n currentValue: props.value || 0,\n };\n return _this;\n }\n Object.defineProperty(ColorSliderBase.prototype, \"value\", {\n get: function () {\n return this.state.currentValue;\n },\n enumerable: true,\n configurable: true\n });\n ColorSliderBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n // if props changed (as opposed to a state update), set the value\n // TODO: switch to strict controlled pattern instead\n if (prevProps !== this.props && this.props.value !== undefined) {\n this.setState({ currentValue: this.props.value });\n }\n };\n ColorSliderBase.prototype.componentWillUnmount = function () {\n this._disposeListeners();\n };\n ColorSliderBase.prototype.render = function () {\n var type = this._type;\n var maxValue = this._maxValue;\n var _a = this.props, \n // eslint-disable-next-line deprecation/deprecation\n overlayStyle = _a.overlayStyle, overlayColor = _a.overlayColor, theme = _a.theme, className = _a.className, styles = _a.styles, _b = _a.ariaLabel, ariaLabel = _b === void 0 ? type : _b;\n var currentValue = this.value;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n type: type,\n });\n var currentPercentage = (100 * currentValue) / maxValue;\n return (React.createElement(\"div\", { ref: this._root, className: classNames.root, tabIndex: 0, onKeyDown: this._onKeyDown, onMouseDown: this._onMouseDown, role: \"slider\", \"aria-valuenow\": currentValue, \"aria-valuetext\": String(currentValue), \"aria-valuemin\": 0, \"aria-valuemax\": maxValue, \"aria-label\": ariaLabel, \"data-is-focusable\": true },\n !!(overlayColor || overlayStyle) && (React.createElement(\"div\", { className: classNames.sliderOverlay, \n // this isn't included in getStyles because it may change frequently\n style: overlayColor\n ? {\n background: type === 'transparency'\n ? \"linear-gradient(to right, #\" + overlayColor + \", transparent)\"\n : \"linear-gradient(to right, transparent, #\" + overlayColor + \")\",\n }\n : overlayStyle })),\n React.createElement(\"div\", { className: classNames.sliderThumb, style: { left: currentPercentage + '%' } })));\n };\n Object.defineProperty(ColorSliderBase.prototype, \"_type\", {\n get: function () {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, isAlpha = _a.isAlpha, _b = _a.type, type = _b === void 0 ? isAlpha ? 'alpha' : 'hue' : _b;\n return type;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ColorSliderBase.prototype, \"_maxValue\", {\n get: function () {\n return this._type === 'hue' ? MAX_COLOR_HUE : MAX_COLOR_ALPHA;\n },\n enumerable: true,\n configurable: true\n });\n ColorSliderBase.prototype._updateValue = function (ev, newValue) {\n if (newValue === this.value) {\n return;\n }\n var onChange = this.props.onChange;\n if (onChange) {\n onChange(ev, newValue);\n }\n if (!ev.defaultPrevented) {\n this.setState({\n currentValue: newValue,\n });\n ev.preventDefault();\n }\n };\n ColorSliderBase.defaultProps = {\n value: 0,\n };\n return ColorSliderBase;\n}(React.Component));\nexport { ColorSliderBase };\n//# sourceMappingURL=ColorSlider.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "index": 192, - "index2": 179, - "size": 2476, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorSlider.styles", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony import specifier", - "userRequest": "./ColorSlider.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { IsFocusVisibleClassName } from '../../../Utilities';\nvar hueStyle = {\n background: \"linear-gradient(\" + [\n 'to left',\n 'red 0',\n '#f09 10%',\n '#cd00ff 20%',\n '#3200ff 30%',\n '#06f 40%',\n '#00fffd 50%',\n '#0f6 60%',\n '#35ff00 70%',\n '#cdff00 80%',\n '#f90 90%',\n 'red 100%',\n ].join(',') + \")\",\n};\nvar alphaStyle = {\n backgroundImage: 'url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJUlEQVQYV2N89erVfwY0ICYmxoguxjgUFKI7GsTH5m4M3w1ChQC1/Ca8i2n1WgAAAABJRU5ErkJggg==)',\n};\nexport var getStyles = function (props) {\n var _a;\n // eslint-disable-next-line deprecation/deprecation\n var theme = props.theme, className = props.className, _b = props.type, type = _b === void 0 ? 'hue' : _b, _c = props.isAlpha, useAlphaBackground = _c === void 0 ? type !== 'hue' : _c;\n var palette = theme.palette, effects = theme.effects;\n return {\n root: [\n 'ms-ColorPicker-slider',\n {\n position: 'relative',\n height: 20,\n marginBottom: 8,\n border: \"1px solid \" + palette.neutralLight,\n borderRadius: effects.roundedCorner2,\n boxSizing: 'border-box',\n outline: 'none',\n selectors: (_a = {},\n _a[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n outline: \"1px solid \" + palette.neutralSecondary,\n },\n _a),\n },\n useAlphaBackground ? alphaStyle : hueStyle,\n className,\n ],\n sliderOverlay: [\n 'ms-ColorPicker-sliderOverlay',\n {\n content: '',\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n },\n ],\n sliderThumb: [\n 'ms-ColorPicker-thumb',\n 'is-slider',\n {\n position: 'absolute',\n width: 20,\n height: 20,\n background: 'white',\n border: \"1px solid \" + palette.neutralSecondaryAlt,\n borderRadius: '50%',\n boxShadow: effects.elevation8,\n transform: 'translate(-50%, -50%)',\n top: '50%',\n },\n ],\n };\n};\n//# sourceMappingURL=ColorSlider.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "index": 129, - "index2": 184, - "size": 7667, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "issuerId": "B2jj", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "B2jj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionColorField", - "loc": "2:0-39" - }, - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionColorField", - "loc": "2:0-39" - } - ], - "usedExports": [ - "CollectionColorField" - ], - "providedExports": [ - "CollectionColorField" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { Async } from 'office-ui-fabric-react/lib/Utilities';\nimport { Callout, DirectionalHint } from 'office-ui-fabric-react/lib/Callout';\nimport { ColorPicker } from 'office-ui-fabric-react/lib/ColorPicker';\nvar CollectionColorField = /** @class */ (function (_super) {\n __extends(CollectionColorField, _super);\n function CollectionColorField(props, state) {\n var _this = _super.call(this, props, state) || this;\n _this._colorElement = React.createRef();\n _this._onCalloutDismiss = function () {\n _this.setState({\n isCalloutVisible: false\n });\n };\n _this._onCalloutToggle = function () {\n _this.setState({\n isCalloutVisible: !_this.state.isCalloutVisible\n });\n };\n /**\n * Value change event handler\n *\n * @param field\n * @param value\n */\n _this.valueChange = function (field, value) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n this.setState({\n color: value\n });\n return [4 /*yield*/, this.props.fOnValueChange(field.id, value)];\n case 1:\n _a.sent();\n this.delayedValidate(field, value);\n return [2 /*return*/];\n }\n });\n }); };\n /**\n * Delayed field validation\n */\n _this.valueValidation = function (field, value) { return __awaiter(_this, void 0, void 0, function () {\n var validation;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.props.fValidation(field, value)];\n case 1:\n validation = _a.sent();\n // Update the error message\n this.setState({\n errorMessage: validation\n });\n return [2 /*return*/];\n }\n });\n }); };\n var _a = _this.props, field = _a.field, item = _a.item;\n _this.state = {\n isCalloutVisible: false,\n color: item[field.id] ? item[field.id] : \"#0000ff\",\n errorMessage: ''\n };\n _this.async = new Async(_this);\n _this.delayedValidate = _this.async.debounce(_this.valueValidation, (_this.props.field.deferredValidationTime || _this.props.field.deferredValidationTime >= 0) ? _this.props.field.deferredValidationTime : 200);\n return _this;\n }\n /**\n * componentWillMount lifecycle hook\n */\n CollectionColorField.prototype.componentWillMount = function () {\n this.valueChange(this.props.field, this.props.item[this.props.field.id]);\n };\n CollectionColorField.prototype.render = function () {\n var _this = this;\n var field = this.props.field;\n return (React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__color-field \" + styles.colorField + \" \" + (this.state.errorMessage ? styles.invalidField : \"\") },\n React.createElement(\"div\", { className: styles.colorIndicator, style: { backgroundColor: this.state.color, cursor: this.props.disableEdit ? 'default' : 'hand' }, ref: this._colorElement, onClick: function () { if (!_this.props.disableEdit)\n _this._onCalloutToggle(); } }),\n React.createElement(Callout, { gapSpace: 0, target: this._colorElement.current, onDismiss: this._onCalloutDismiss, setInitialFocus: true, hidden: !this.state.isCalloutVisible, directionalHint: DirectionalHint.rightCenter },\n React.createElement(ColorPicker, { color: this.state.color, alphaSliderHidden: true, onChange: function (ev, color) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.valueChange(this.props.field, color.str)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); } }))));\n };\n return CollectionColorField;\n}(React.Component));\nexport { CollectionColorField };\n//# sourceMappingURL=CollectionColorField.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "RgyG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/hoistStatics.js", - "name": "./node_modules/@uifabric/utilities/lib/hoistStatics.js", - "index": 163, - "index2": 149, - "size": 661, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "82:11-23" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "../hoistStatics", - "loc": "4:0-47" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "../hoistStatics", - "loc": "57:15-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hoistStatics", - "loc": "32:0-31" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hoistStatics", - "loc": "32:0-31" - } - ], - "usedExports": [ - "hoistStatics" - ], - "providedExports": [ - "hoistStatics" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Allows you to hoist static functions in components.\n * Created for the purpose of fixing broken static functions in classes\n * that utilize decorators.\n *\n * @public\n * @param source - The object where the methods are hoisted from.\n * @param dest - The object to hoist the methods onto.\n * @returns The dest object with methods added\n */\nexport function hoistStatics(source, dest) {\n for (var name_1 in source) {\n if (source.hasOwnProperty(name_1)) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n dest[name_1] = source[name_1];\n }\n }\n return dest;\n}\n//# sourceMappingURL=hoistStatics.js.map" - }, - { - "id": "RyIQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "index": 130, - "index2": 154, - "size": 62967, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "25:36-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "77:251-258" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Callout", - "loc": "131:32-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "558:40-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Callout", - "loc": "558:63-70" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "308:54-61" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "204:68-75" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "3:0-36" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "./Callout", - "loc": "10:32-39" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Callout", - "loc": "13:47-54" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "36:36-43" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "514:82-89" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "316:40-47" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "51:36-43" - } - ], - "usedExports": [ - "Callout" - ], - "providedExports": [ - "Callout" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/elementContains.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/css.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/on.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/focus.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/object.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/scroll.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Rectangle.js", - "name": "./node_modules/@uifabric/utilities/lib/Rectangle.js", - "index": 146, - "index2": 132, - "size": 1827, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "409:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "430:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "431:27-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "444:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "447:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "455:34-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "470:34-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "481:30-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "526:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "537:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "584:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "593:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "596:25-34" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Rectangle", - "loc": "9:0-28" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Rectangle", - "loc": "9:0-28" - } - ], - "usedExports": [ - "Rectangle" - ], - "providedExports": [ - "Rectangle" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Rectangle helper class.\n *\n * @public\n * {@docCategory Rectangle}\n */\nvar Rectangle = /** @class */ (function () {\n function Rectangle(left, right, top, bottom) {\n if (left === void 0) { left = 0; }\n if (right === void 0) { right = 0; }\n if (top === void 0) { top = 0; }\n if (bottom === void 0) { bottom = 0; }\n this.top = top;\n this.bottom = bottom;\n this.left = left;\n this.right = right;\n }\n Object.defineProperty(Rectangle.prototype, \"width\", {\n /**\n * Calculated automatically by subtracting the right from left\n */\n get: function () {\n return this.right - this.left;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(Rectangle.prototype, \"height\", {\n /**\n * Calculated automatically by subtracting the bottom from top.\n */\n get: function () {\n return this.bottom - this.top;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Tests if another rect is approximately equal to this rect (within 4 decimal places.)\n */\n Rectangle.prototype.equals = function (rect) {\n // Fixing to 4 decimal places because it allows enough precision and will handle cases when something\n // should be rounded, like .999999 should round to 1.\n return (parseFloat(this.top.toFixed(4)) === parseFloat(rect.top.toFixed(4)) &&\n parseFloat(this.bottom.toFixed(4)) === parseFloat(rect.bottom.toFixed(4)) &&\n parseFloat(this.left.toFixed(4)) === parseFloat(rect.left.toFixed(4)) &&\n parseFloat(this.right.toFixed(4)) === parseFloat(rect.right.toFixed(4)));\n };\n return Rectangle;\n}());\nexport { Rectangle };\n//# sourceMappingURL=Rectangle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "index": 144, - "index2": 134, - "size": 32197, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerId": "mI+f", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "yI02", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/Coachmark.js" - }, - { - "id": "bATe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js" - }, - { - "id": "y19T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js" - }, - { - "id": "Sbs+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js" - }, - { - "id": "wuZE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning.js" - }, - { - "id": "mI+f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "286:18-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "287:18-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "313:32-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "340:43-55" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "169:37-52" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "225:34-46" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "195:19-34" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - } - ], - "usedExports": [ - "positionCard", - "positionCallout", - "getBoundsFromTargetWindow", - "getMaxHeight" - ], - "providedExports": [ - "__positioningTestPackage", - "positionElement", - "positionCallout", - "positionCard", - "getMaxHeight", - "getOppositeEdge", - "getBoundsFromTargetWindow" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var _a;\nimport { __assign } from \"tslib\";\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { getScrollbarWidth, getRTL } from '../../Utilities';\nimport { RectangleEdge, } from './positioning.types';\nimport { Rectangle } from '../../Utilities';\nfunction _createPositionData(targetEdge, alignmentEdge, isAuto) {\n return {\n targetEdge: targetEdge,\n alignmentEdge: alignmentEdge,\n isAuto: isAuto,\n };\n}\n// Currently the beakPercent is set to 50 for all positions meaning that it should tend to the center of the target\nvar DirectionalDictionary = (_a = {},\n _a[DirectionalHint.topLeftEdge] = _createPositionData(RectangleEdge.top, RectangleEdge.left),\n _a[DirectionalHint.topCenter] = _createPositionData(RectangleEdge.top),\n _a[DirectionalHint.topRightEdge] = _createPositionData(RectangleEdge.top, RectangleEdge.right),\n _a[DirectionalHint.topAutoEdge] = _createPositionData(RectangleEdge.top, undefined, true),\n _a[DirectionalHint.bottomLeftEdge] = _createPositionData(RectangleEdge.bottom, RectangleEdge.left),\n _a[DirectionalHint.bottomCenter] = _createPositionData(RectangleEdge.bottom),\n _a[DirectionalHint.bottomRightEdge] = _createPositionData(RectangleEdge.bottom, RectangleEdge.right),\n _a[DirectionalHint.bottomAutoEdge] = _createPositionData(RectangleEdge.bottom, undefined, true),\n _a[DirectionalHint.leftTopEdge] = _createPositionData(RectangleEdge.left, RectangleEdge.top),\n _a[DirectionalHint.leftCenter] = _createPositionData(RectangleEdge.left),\n _a[DirectionalHint.leftBottomEdge] = _createPositionData(RectangleEdge.left, RectangleEdge.bottom),\n _a[DirectionalHint.rightTopEdge] = _createPositionData(RectangleEdge.right, RectangleEdge.top),\n _a[DirectionalHint.rightCenter] = _createPositionData(RectangleEdge.right),\n _a[DirectionalHint.rightBottomEdge] = _createPositionData(RectangleEdge.right, RectangleEdge.bottom),\n _a);\nfunction _isRectangleWithinBounds(rect, boundingRect) {\n if (rect.top < boundingRect.top) {\n return false;\n }\n if (rect.bottom > boundingRect.bottom) {\n return false;\n }\n if (rect.left < boundingRect.left) {\n return false;\n }\n if (rect.right > boundingRect.right) {\n return false;\n }\n return true;\n}\n/**\n * Gets all of the edges of a rectangle that are outside of the given bounds.\n * If there are no out of bounds edges it returns an empty array.\n */\nfunction _getOutOfBoundsEdges(rect, boundingRect) {\n var outOfBounds = [];\n if (rect.top < boundingRect.top) {\n outOfBounds.push(RectangleEdge.top);\n }\n if (rect.bottom > boundingRect.bottom) {\n outOfBounds.push(RectangleEdge.bottom);\n }\n if (rect.left < boundingRect.left) {\n outOfBounds.push(RectangleEdge.left);\n }\n if (rect.right > boundingRect.right) {\n outOfBounds.push(RectangleEdge.right);\n }\n return outOfBounds;\n}\nfunction _getEdgeValue(rect, edge) {\n return rect[RectangleEdge[edge]];\n}\nfunction _setEdgeValue(rect, edge, value) {\n rect[RectangleEdge[edge]] = value;\n return rect;\n}\n/**\n * Returns the middle value of an edge. Only returns 1 value rather than xy coordinates as\n * the itself already contains the other coordinate.\n * For instance, a bottom edge's current value is it's y coordinate, so the number returned is the x.\n */\nfunction _getCenterValue(rect, edge) {\n var edges = _getFlankingEdges(edge);\n return (_getEdgeValue(rect, edges.positiveEdge) + _getEdgeValue(rect, edges.negativeEdge)) / 2;\n}\n/**\n * Flips the value depending on the edge.\n * If the edge is a \"positive\" edge, Top or Left, then the value should stay as it is.\n * If the edge is a \"negative\" edge, Bottom or Right, then the value should be flipped.\n * This is to account for the fact that the coordinates are effectively reveserved in certain cases for the\n * \"negative\" edges.\n *\n * For example, when testing to see if a bottom edge 1 is within the bounds of another bottom edge 2:\n * If edge 1 is greater than edge 2 then it is out of bounds. This is reversed for top edge 1 and top edge 2.\n * If top edge 1 is less than edge 2 then it is out of bounds.\n */\nfunction _getRelativeEdgeValue(edge, value) {\n if (edge > 0) {\n return value;\n }\n else {\n return value * -1;\n }\n}\nfunction _getRelativeRectEdgeValue(edge, rect) {\n return _getRelativeEdgeValue(edge, _getEdgeValue(rect, edge));\n}\nfunction _getRelativeEdgeDifference(rect, hostRect, edge) {\n var edgeDifference = _getEdgeValue(rect, edge) - _getEdgeValue(hostRect, edge);\n return _getRelativeEdgeValue(edge, edgeDifference);\n}\n/**\n * Moves the edge of a rectangle to the value given. It only moves the edge in a linear direction based on that edge.\n * For example, if it's a bottom edge it will only change y coordinates.\n */\nfunction _moveEdge(rect, edge, newValue) {\n var difference = _getEdgeValue(rect, edge) - newValue;\n rect = _setEdgeValue(rect, edge, newValue);\n rect = _setEdgeValue(rect, edge * -1, _getEdgeValue(rect, edge * -1) - difference);\n return rect;\n}\n/**\n * Aligns the edge on the passed in rect to the target. If there is a gap then it will have that space between the two.\n */\nfunction _alignEdges(rect, target, edge, gap) {\n if (gap === void 0) { gap = 0; }\n return _moveEdge(rect, edge, _getEdgeValue(target, edge) + _getRelativeEdgeValue(edge, gap));\n}\n/**\n * Aligns the targetEdge on the passed in target to the rects corresponding opposite edge.\n * For instance if targetEdge is bottom, then the rects top will be moved to match it.\n */\nfunction _alignOppositeEdges(rect, target, targetEdge, gap) {\n if (gap === void 0) { gap = 0; }\n var oppositeEdge = targetEdge * -1;\n var adjustedGap = _getRelativeEdgeValue(oppositeEdge, gap);\n return _moveEdge(rect, targetEdge * -1, _getEdgeValue(target, targetEdge) + adjustedGap);\n}\n/**\n * Tests to see if the given edge is within the bounds of the given rectangle.\n */\nfunction _isEdgeInBounds(rect, bounds, edge) {\n var adjustedRectValue = _getRelativeRectEdgeValue(edge, rect);\n return adjustedRectValue > _getRelativeRectEdgeValue(edge, bounds);\n}\n/**\n * Attempts to move the rectangle through various sides of the target to find a place to fit.\n * If no fit is found, the original position should be returned.\n */\nfunction _flipToFit(rect, target, bounding, positionData, gap) {\n if (gap === void 0) { gap = 0; }\n var directions = [\n RectangleEdge.left,\n RectangleEdge.right,\n RectangleEdge.bottom,\n RectangleEdge.top,\n ];\n // In RTL page, RectangleEdge.right has a higher priority than RectangleEdge.left, so the order should be updated.\n if (getRTL()) {\n directions[0] *= -1;\n directions[1] *= -1;\n }\n var currentEstimate = rect;\n var currentEdge = positionData.targetEdge;\n var currentAlignment = positionData.alignmentEdge;\n // Keep switching sides until one is found with enough space.\n // If all sides don't fit then return the unmodified element.\n for (var i = 0; i < 4; i++) {\n if (!_isEdgeInBounds(currentEstimate, bounding, currentEdge)) {\n directions.splice(directions.indexOf(currentEdge), 1);\n if (directions.length > 0) {\n if (directions.indexOf(currentEdge * -1) > -1) {\n currentEdge = currentEdge * -1;\n }\n else {\n currentAlignment = currentEdge;\n currentEdge = directions.slice(-1)[0];\n }\n currentEstimate = _estimatePosition(rect, target, { targetEdge: currentEdge, alignmentEdge: currentAlignment }, gap);\n }\n }\n else {\n return {\n elementRectangle: currentEstimate,\n targetEdge: currentEdge,\n alignmentEdge: currentAlignment,\n };\n }\n }\n return {\n elementRectangle: rect,\n targetEdge: positionData.targetEdge,\n alignmentEdge: positionData.alignmentEdge,\n };\n}\n/**\n * Flips only the alignment edge of an element rectangle. This is used instead of nudging the alignment edges\n * into position, when alignTargetEdge is specified.\n */\nfunction _flipAlignmentEdge(elementEstimate, target, gap, coverTarget) {\n var alignmentEdge = elementEstimate.alignmentEdge, targetEdge = elementEstimate.targetEdge, elementRectangle = elementEstimate.elementRectangle;\n var oppositeEdge = alignmentEdge * -1;\n var newEstimate = _estimatePosition(elementRectangle, target, { targetEdge: targetEdge, alignmentEdge: oppositeEdge }, gap, coverTarget);\n return {\n elementRectangle: newEstimate,\n targetEdge: targetEdge,\n alignmentEdge: oppositeEdge,\n };\n}\n/**\n * Adjusts a element rectangle to fit within the bounds given. If directionalHintFixed or covertarget is passed in\n * then the element will not flip sides on the target. They will, however, be nudged to fit within the bounds given.\n */\nfunction _adjustFitWithinBounds(element, target, bounding, positionData, gap, directionalHintFixed, coverTarget) {\n if (gap === void 0) { gap = 0; }\n var alignmentEdge = positionData.alignmentEdge, alignTargetEdge = positionData.alignTargetEdge;\n var elementEstimate = {\n elementRectangle: element,\n targetEdge: positionData.targetEdge,\n alignmentEdge: alignmentEdge,\n };\n if (!directionalHintFixed && !coverTarget) {\n elementEstimate = _flipToFit(element, target, bounding, positionData, gap);\n }\n var outOfBounds = _getOutOfBoundsEdges(element, bounding);\n if (alignTargetEdge) {\n // The edge opposite to the alignment edge might be out of bounds.\n // Flip alignment to see if we can get it within bounds.\n if (elementEstimate.alignmentEdge && outOfBounds.indexOf(elementEstimate.alignmentEdge * -1) > -1) {\n var flippedElementEstimate = _flipAlignmentEdge(elementEstimate, target, gap, coverTarget);\n if (_isRectangleWithinBounds(flippedElementEstimate.elementRectangle, bounding)) {\n return flippedElementEstimate;\n }\n else {\n // If the flipped elements edges are still out of bounds, try nudging it.\n elementEstimate = _alignOutOfBoundsEdges(_getOutOfBoundsEdges(flippedElementEstimate.elementRectangle, bounding), elementEstimate, bounding);\n }\n }\n }\n else {\n elementEstimate = _alignOutOfBoundsEdges(outOfBounds, elementEstimate, bounding);\n }\n return elementEstimate;\n}\n/**\n * Iterates through a list of out of bounds edges and tries to nudge and align them.\n * @param outOfBoundsEdges - Array of edges that are out of bounds\n * @param elementEstimate - The current element positioning estimate\n * @param bounding - The current bounds\n */\nfunction _alignOutOfBoundsEdges(outOfBoundsEdges, elementEstimate, bounding) {\n for (var _i = 0, outOfBoundsEdges_1 = outOfBoundsEdges; _i < outOfBoundsEdges_1.length; _i++) {\n var direction = outOfBoundsEdges_1[_i];\n elementEstimate.elementRectangle = _alignEdges(elementEstimate.elementRectangle, bounding, direction);\n }\n return elementEstimate;\n}\n/**\n * Moves the middle point on an edge to the point given.\n * Only moves in one direction. For instance if a bottom edge is passed in, then\n * the bottom edge will be moved in the x axis to match the point.\n */\nfunction _centerEdgeToPoint(rect, edge, point) {\n var positiveEdge = _getFlankingEdges(edge).positiveEdge;\n var elementMiddle = _getCenterValue(rect, edge);\n var distanceToMiddle = elementMiddle - _getEdgeValue(rect, positiveEdge);\n return _moveEdge(rect, positiveEdge, point - distanceToMiddle);\n}\n/**\n * Moves the element rectangle to be appropriately positioned relative to a given target.\n * Does not flip or adjust the element.\n */\nfunction _estimatePosition(elementToPosition, target, positionData, gap, coverTarget) {\n if (gap === void 0) { gap = 0; }\n var estimatedElementPosition;\n var alignmentEdge = positionData.alignmentEdge, targetEdge = positionData.targetEdge;\n var elementEdge = coverTarget ? targetEdge : targetEdge * -1;\n estimatedElementPosition = coverTarget\n ? _alignEdges(elementToPosition, target, targetEdge, gap)\n : _alignOppositeEdges(elementToPosition, target, targetEdge, gap);\n // if no alignment edge is provided it's supposed to be centered.\n if (!alignmentEdge) {\n var targetMiddlePoint = _getCenterValue(target, targetEdge);\n estimatedElementPosition = _centerEdgeToPoint(estimatedElementPosition, elementEdge, targetMiddlePoint);\n }\n else {\n estimatedElementPosition = _alignEdges(estimatedElementPosition, target, alignmentEdge);\n }\n return estimatedElementPosition;\n}\n/**\n * Returns the non-opposite edges of the target edge.\n * For instance if bottom is passed in then left and right will be returned.\n */\nfunction _getFlankingEdges(edge) {\n if (edge === RectangleEdge.top || edge === RectangleEdge.bottom) {\n return {\n positiveEdge: RectangleEdge.left,\n negativeEdge: RectangleEdge.right,\n };\n }\n else {\n return {\n positiveEdge: RectangleEdge.top,\n negativeEdge: RectangleEdge.bottom,\n };\n }\n}\n/**\n * Retrieve the final value for the return edge of elementRectangle. If the elementRectangle is closer to one side\n * of the bounds versus the other, the return edge is flipped to grow inward.\n */\nfunction _finalizeReturnEdge(elementRectangle, returnEdge, bounds) {\n if (bounds &&\n Math.abs(_getRelativeEdgeDifference(elementRectangle, bounds, returnEdge)) >\n Math.abs(_getRelativeEdgeDifference(elementRectangle, bounds, returnEdge * -1))) {\n return returnEdge * -1;\n }\n return returnEdge;\n}\n/**\n * Finalizes the element positon based on the hostElement. Only returns the\n * rectangle values to position such that they are anchored to the target.\n * This helps prevent resizing from looking very strange.\n * For instance, if the target edge is top and aligned with the left side then\n * the bottom and left values are returned so as the callou shrinks it shrinks towards that corner.\n */\nfunction _finalizeElementPosition(elementRectangle, hostElement, targetEdge, bounds, alignmentEdge, coverTarget, doNotFinalizeReturnEdge) {\n var returnValue = {};\n var hostRect = _getRectangleFromElement(hostElement);\n var elementEdge = coverTarget ? targetEdge : targetEdge * -1;\n var elementEdgeString = RectangleEdge[elementEdge];\n var returnEdge = alignmentEdge ? alignmentEdge : _getFlankingEdges(targetEdge).positiveEdge;\n if (!doNotFinalizeReturnEdge) {\n returnEdge = _finalizeReturnEdge(elementRectangle, returnEdge, bounds);\n }\n returnValue[elementEdgeString] = _getRelativeEdgeDifference(elementRectangle, hostRect, elementEdge);\n returnValue[RectangleEdge[returnEdge]] = _getRelativeEdgeDifference(elementRectangle, hostRect, returnEdge);\n return returnValue;\n}\n// Since the beak is rotated 45 degrees the actual height/width is the length of the diagonal.\n// We still want to position the beak based on it's midpoint which does not change. It will\n// be at (beakwidth / 2, beakwidth / 2)\nfunction _calculateActualBeakWidthInPixels(beakWidth) {\n return Math.sqrt(beakWidth * beakWidth * 2);\n}\n/**\n * Returns the appropriate IPositionData based on the props altered for RTL.\n * If directionalHintForRTL is passed in that is used if the page is RTL.\n * If directionalHint is specified, no directionalHintForRTL is available, and the page is RTL, the hint will be\n * flipped (e.g. bottomLeftEdge would become bottomRightEdge).\n *\n * If there is no directionalHint passed in, bottomAutoEdge is chosen automatically.\n */\nfunction _getPositionData(directionalHint, directionalHintForRTL, previousPositions) {\n if (directionalHint === void 0) { directionalHint = DirectionalHint.bottomAutoEdge; }\n if (previousPositions) {\n return {\n alignmentEdge: previousPositions.alignmentEdge,\n isAuto: previousPositions.isAuto,\n targetEdge: previousPositions.targetEdge,\n };\n }\n var positionInformation = __assign({}, DirectionalDictionary[directionalHint]);\n if (getRTL()) {\n // If alignment edge exists and that alignment edge is -2 or 2, right or left, then flip it.\n if (positionInformation.alignmentEdge && positionInformation.alignmentEdge % 2 === 0) {\n positionInformation.alignmentEdge = positionInformation.alignmentEdge * -1;\n }\n return directionalHintForRTL !== undefined ? DirectionalDictionary[directionalHintForRTL] : positionInformation;\n }\n return positionInformation;\n}\n/**\n * Get's the alignment data for the given information. This only really matters if the positioning is Auto.\n * If it is auto then the alignmentEdge should be chosen based on the target edge's position relative to\n * the center of the page.\n */\nfunction _getAlignmentData(positionData, target, boundingRect, coverTarget, alignTargetEdge) {\n if (positionData.isAuto) {\n positionData.alignmentEdge = getClosestEdge(positionData.targetEdge, target, boundingRect);\n }\n positionData.alignTargetEdge = alignTargetEdge;\n return positionData;\n}\nfunction getClosestEdge(targetEdge, target, boundingRect) {\n var targetCenter = _getCenterValue(target, targetEdge);\n var boundingCenter = _getCenterValue(boundingRect, targetEdge);\n var _a = _getFlankingEdges(targetEdge), positiveEdge = _a.positiveEdge, negativeEdge = _a.negativeEdge;\n if (targetCenter <= boundingCenter) {\n return positiveEdge;\n }\n else {\n return negativeEdge;\n }\n}\nfunction _positionElementWithinBounds(elementToPosition, target, bounding, positionData, gap, directionalHintFixed, coverTarget) {\n var estimatedElementPosition = _estimatePosition(elementToPosition, target, positionData, gap, coverTarget);\n if (_isRectangleWithinBounds(estimatedElementPosition, bounding)) {\n return {\n elementRectangle: estimatedElementPosition,\n targetEdge: positionData.targetEdge,\n alignmentEdge: positionData.alignmentEdge,\n };\n }\n else {\n return _adjustFitWithinBounds(elementToPosition, target, bounding, positionData, gap, directionalHintFixed, coverTarget);\n }\n}\nfunction _finalizeBeakPosition(elementPosition, positionedBeak, bounds) {\n var targetEdge = elementPosition.targetEdge * -1;\n // The \"host\" element that we will use to help position the beak.\n var actualElement = new Rectangle(0, elementPosition.elementRectangle.width, 0, elementPosition.elementRectangle.height);\n var returnValue = {};\n var returnEdge = _finalizeReturnEdge(elementPosition.elementRectangle, elementPosition.alignmentEdge ? elementPosition.alignmentEdge : _getFlankingEdges(targetEdge).positiveEdge, bounds);\n returnValue[RectangleEdge[targetEdge]] = _getEdgeValue(positionedBeak, targetEdge);\n returnValue[RectangleEdge[returnEdge]] = _getRelativeEdgeDifference(positionedBeak, actualElement, returnEdge);\n return {\n elementPosition: __assign({}, returnValue),\n closestEdge: getClosestEdge(elementPosition.targetEdge, positionedBeak, actualElement),\n targetEdge: targetEdge,\n };\n}\nfunction _positionBeak(beakWidth, elementPosition) {\n var target = elementPosition.targetRectangle;\n /**\n * Note about beak positioning: The actual beak width only matters for getting the gap between the callout and\n * target, it does not impact the beak placement within the callout. For example example, if the beakWidth is 8,\n * then the actual beakWidth is sqrroot(8^2 + 8^2) = 11.31x11.31. So the callout will need to be an extra 3 pixels\n * away from its target. While the beak is being positioned in the callout it still acts as though it were 8x8.\n */\n var _a = _getFlankingEdges(elementPosition.targetEdge), positiveEdge = _a.positiveEdge, negativeEdge = _a.negativeEdge;\n var beakTargetPoint = _getCenterValue(target, elementPosition.targetEdge);\n var elementBounds = new Rectangle(beakWidth / 2, elementPosition.elementRectangle.width - beakWidth / 2, beakWidth / 2, elementPosition.elementRectangle.height - beakWidth / 2);\n var beakPosition = new Rectangle(0, beakWidth, 0, beakWidth);\n beakPosition = _moveEdge(beakPosition, elementPosition.targetEdge * -1, -beakWidth / 2);\n beakPosition = _centerEdgeToPoint(beakPosition, elementPosition.targetEdge * -1, beakTargetPoint - _getRelativeRectEdgeValue(positiveEdge, elementPosition.elementRectangle));\n if (!_isEdgeInBounds(beakPosition, elementBounds, positiveEdge)) {\n beakPosition = _alignEdges(beakPosition, elementBounds, positiveEdge);\n }\n else if (!_isEdgeInBounds(beakPosition, elementBounds, negativeEdge)) {\n beakPosition = _alignEdges(beakPosition, elementBounds, negativeEdge);\n }\n return beakPosition;\n}\nfunction _getRectangleFromElement(element) {\n var clientRect = element.getBoundingClientRect();\n return new Rectangle(clientRect.left, clientRect.right, clientRect.top, clientRect.bottom);\n}\nfunction _getRectangleFromIRect(rect) {\n return new Rectangle(rect.left, rect.right, rect.top, rect.bottom);\n}\nfunction _getTargetRect(bounds, target) {\n var targetRectangle;\n if (target) {\n // eslint-disable-next-line no-extra-boolean-cast\n if (!!target.preventDefault) {\n var ev = target;\n targetRectangle = new Rectangle(ev.clientX, ev.clientX, ev.clientY, ev.clientY);\n // eslint-disable-next-line no-extra-boolean-cast\n }\n else if (!!target.getBoundingClientRect) {\n targetRectangle = _getRectangleFromElement(target);\n // HTMLImgElements can have x and y values. The check for it being a point must go last.\n }\n else {\n var rectOrPoint = target;\n // eslint-disable-next-line deprecation/deprecation\n var left = rectOrPoint.left || rectOrPoint.x;\n // eslint-disable-next-line deprecation/deprecation\n var top_1 = rectOrPoint.top || rectOrPoint.y;\n var right = rectOrPoint.right || left;\n var bottom = rectOrPoint.bottom || top_1;\n targetRectangle = new Rectangle(left, right, top_1, bottom);\n }\n if (!_isRectangleWithinBounds(targetRectangle, bounds)) {\n var outOfBounds = _getOutOfBoundsEdges(targetRectangle, bounds);\n for (var _i = 0, outOfBounds_1 = outOfBounds; _i < outOfBounds_1.length; _i++) {\n var direction = outOfBounds_1[_i];\n targetRectangle[RectangleEdge[direction]] = bounds[RectangleEdge[direction]];\n }\n }\n }\n else {\n targetRectangle = new Rectangle(0, 0, 0, 0);\n }\n return targetRectangle;\n}\n/**\n * If max height is less than zero it returns the bounds height instead.\n */\nfunction _getMaxHeightFromTargetRectangle(targetRectangle, targetEdge, gapSpace, bounds, coverTarget) {\n var maxHeight = 0;\n var directionalHint = DirectionalDictionary[targetEdge];\n // If cover target is set, then the max height should be calculated using the opposite of the target edge since\n // that's the direction that the callout will expand in.\n // For instance, if the directionalhint is bottomLeftEdge then the callout will position so it's bottom edge\n // is aligned with the bottom of the target and expand up towards the top of the screen and the calculated max height\n // is (bottom of target) - (top of screen) - gapSpace.\n var target = coverTarget ? directionalHint.targetEdge * -1 : directionalHint.targetEdge;\n if (target === RectangleEdge.top) {\n maxHeight = _getEdgeValue(targetRectangle, directionalHint.targetEdge) - bounds.top - gapSpace;\n }\n else if (target === RectangleEdge.bottom) {\n maxHeight = bounds.bottom - _getEdgeValue(targetRectangle, directionalHint.targetEdge) - gapSpace;\n }\n else {\n maxHeight = bounds.bottom - targetRectangle.top - gapSpace;\n }\n return maxHeight > 0 ? maxHeight : bounds.height;\n}\nfunction _positionElementRelative(props, elementToPosition, boundingRect, previousPositions) {\n var gap = props.gapSpace ? props.gapSpace : 0;\n var targetRect = _getTargetRect(boundingRect, props.target);\n var positionData = _getAlignmentData(_getPositionData(props.directionalHint, props.directionalHintForRTL, previousPositions), targetRect, boundingRect, props.coverTarget, props.alignTargetEdge);\n var positionedElement = _positionElementWithinBounds(_getRectangleFromElement(elementToPosition), targetRect, boundingRect, positionData, gap, props.directionalHintFixed, props.coverTarget);\n return __assign(__assign({}, positionedElement), { targetRectangle: targetRect });\n}\nfunction _finalizePositionData(positionedElement, hostElement, bounds, coverTarget, doNotFinalizeReturnEdge) {\n var finalizedElement = _finalizeElementPosition(positionedElement.elementRectangle, hostElement, positionedElement.targetEdge, bounds, positionedElement.alignmentEdge, coverTarget, doNotFinalizeReturnEdge);\n return {\n elementPosition: finalizedElement,\n targetEdge: positionedElement.targetEdge,\n alignmentEdge: positionedElement.alignmentEdge,\n };\n}\nfunction _positionElement(props, hostElement, elementToPosition, previousPositions) {\n var boundingRect = props.bounds\n ? _getRectangleFromIRect(props.bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n var positionedElement = _positionElementRelative(props, elementToPosition, boundingRect, previousPositions);\n return _finalizePositionData(positionedElement, hostElement, boundingRect, props.coverTarget);\n}\nfunction _positionCallout(props, hostElement, callout, previousPositions, doNotFinalizeReturnEdge) {\n var beakWidth = props.isBeakVisible ? props.beakWidth || 0 : 0;\n var gap = _calculateActualBeakWidthInPixels(beakWidth) / 2 + (props.gapSpace ? props.gapSpace : 0);\n var positionProps = props;\n positionProps.gapSpace = gap;\n var boundingRect = props.bounds\n ? _getRectangleFromIRect(props.bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n var positionedElement = _positionElementRelative(positionProps, callout, boundingRect, previousPositions);\n var beakPositioned = _positionBeak(beakWidth, positionedElement);\n var finalizedBeakPosition = _finalizeBeakPosition(positionedElement, beakPositioned, boundingRect);\n return __assign(__assign({}, _finalizePositionData(positionedElement, hostElement, boundingRect, props.coverTarget, doNotFinalizeReturnEdge)), { beakPosition: finalizedBeakPosition });\n}\nfunction _positionCard(props, hostElement, callout, previousPositions) {\n return _positionCallout(props, hostElement, callout, previousPositions, true);\n}\n// END PRIVATE FUNCTIONS\nexport var __positioningTestPackage = {\n _finalizePositionData: _finalizePositionData,\n _finalizeBeakPosition: _finalizeBeakPosition,\n _calculateActualBeakWidthInPixels: _calculateActualBeakWidthInPixels,\n _positionElementWithinBounds: _positionElementWithinBounds,\n _positionBeak: _positionBeak,\n _getPositionData: _getPositionData,\n _getMaxHeightFromTargetRectangle: _getMaxHeightFromTargetRectangle,\n};\n/**\n * Used to position an element relative to the given positioning props.\n * If positioning has been completed before, previousPositions can be passed to ensure that the positioning element\n * repositions based on its previous targets rather than starting with directionalhint.\n */\nexport function positionElement(props, hostElement, elementToPosition, previousPositions) {\n return _positionElement(props, hostElement, elementToPosition, previousPositions);\n}\nexport function positionCallout(props, hostElement, elementToPosition, previousPositions) {\n return _positionCallout(props, hostElement, elementToPosition, previousPositions);\n}\nexport function positionCard(props, hostElement, elementToPosition, previousPositions) {\n return _positionCard(props, hostElement, elementToPosition, previousPositions);\n}\n/**\n * Gets the maximum height that a rectangle can have in order to fit below or above a target.\n * If the directional hint specifies a left or right edge (i.e. leftCenter) it will limit the height to the topBorder\n * of the target given.\n * If no bounds are provided then the window is treated as the bounds.\n */\nexport function getMaxHeight(target, targetEdge, gapSpace, bounds, coverTarget) {\n if (gapSpace === void 0) { gapSpace = 0; }\n var mouseTarget = target;\n var elementTarget = target;\n var rectOrPointTarget = target;\n var targetRect;\n var boundingRectangle = bounds\n ? _getRectangleFromIRect(bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n // eslint-disable-next-line deprecation/deprecation\n var left = rectOrPointTarget.left || rectOrPointTarget.x;\n // eslint-disable-next-line deprecation/deprecation\n var top = rectOrPointTarget.top || rectOrPointTarget.y;\n var right = rectOrPointTarget.right || left;\n var bottom = rectOrPointTarget.bottom || top;\n // eslint-disable-next-line no-extra-boolean-cast -- may not actually be a MouseEvent\n if (!!mouseTarget.stopPropagation) {\n targetRect = new Rectangle(mouseTarget.clientX, mouseTarget.clientX, mouseTarget.clientY, mouseTarget.clientY);\n }\n else if (left !== undefined && top !== undefined) {\n targetRect = new Rectangle(left, right, top, bottom);\n }\n else {\n targetRect = _getRectangleFromElement(elementTarget);\n }\n return _getMaxHeightFromTargetRectangle(targetRect, targetEdge, gapSpace, boundingRectangle, coverTarget);\n}\n/**\n * Returns the opposite edge of the given RectangleEdge.\n */\nexport function getOppositeEdge(edge) {\n return edge * -1;\n}\nfunction _getBoundsFromTargetWindow(target, targetWindow) {\n var segments = undefined;\n if (targetWindow.getWindowSegments) {\n segments = targetWindow.getWindowSegments();\n }\n // Identify if we're dealing with single screen scenarios.\n if (segments === undefined || segments.length <= 1) {\n return {\n top: 0,\n left: 0,\n right: targetWindow.innerWidth,\n bottom: targetWindow.innerHeight,\n width: targetWindow.innerWidth,\n height: targetWindow.innerHeight,\n };\n }\n // Logic for determining dual screen scenarios.\n var x = 0;\n var y = 0;\n // If the target is an Element get coordinates for its center.\n if (target !== null && !!target.getBoundingClientRect) {\n var clientRect = target.getBoundingClientRect();\n x = (clientRect.left + clientRect.right) / 2;\n y = (clientRect.top + clientRect.bottom) / 2;\n }\n // If the target is not null get x-axis and y-axis coordinates directly.\n else if (target !== null) {\n // eslint-disable-next-line deprecation/deprecation\n x = target.left || target.x;\n // eslint-disable-next-line deprecation/deprecation\n y = target.top || target.y;\n }\n var bounds = { top: 0, left: 0, right: 0, bottom: 0, width: 0, height: 0 };\n // Define which window segment are the coordinates in and calculate bounds based on that.\n for (var _i = 0, segments_1 = segments; _i < segments_1.length; _i++) {\n var segment = segments_1[_i];\n if (x && segment.left <= x && segment.right >= x && y && segment.top <= y && segment.bottom >= y) {\n bounds = {\n top: segment.top,\n left: segment.left,\n right: segment.right,\n bottom: segment.bottom,\n width: segment.width,\n height: segment.height,\n };\n }\n }\n return bounds;\n}\nexport function getBoundsFromTargetWindow(target, targetWindow) {\n return _getBoundsFromTargetWindow(target, targetWindow);\n}\n//# sourceMappingURL=positioning.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "index": 132, - "index2": 135, - "size": 24522, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent.base", - "loc": "2:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent.base", - "loc": "4:35-53" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent.base", - "loc": "3:0-38" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CalloutContent.base", - "loc": "3:0-38" - } - ], - "usedExports": [ - "CalloutContentBase" - ], - "providedExports": [ - "CalloutContentBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var _a;\nimport { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { Async, css, divProperties, elementContains, focusFirstChild, getDocument, getNativeProps, getWindow, on, shallowCompare, } from '../../Utilities';\nimport { positionCallout, getMaxHeight, RectangleEdge, positionCard, getBoundsFromTargetWindow, } from '../../utilities/positioning';\nimport { Popup } from '../../Popup';\nimport { classNamesFunction } from '../../Utilities';\nimport { AnimationClassNames } from '../../Styling';\nvar ANIMATIONS = (_a = {},\n _a[RectangleEdge.top] = AnimationClassNames.slideUpIn10,\n _a[RectangleEdge.bottom] = AnimationClassNames.slideDownIn10,\n _a[RectangleEdge.left] = AnimationClassNames.slideLeftIn10,\n _a[RectangleEdge.right] = AnimationClassNames.slideRightIn10,\n _a);\nvar getClassNames = classNamesFunction({\n disableCaching: true,\n});\nvar BEAK_ORIGIN_POSITION = { top: 0, left: 0 };\n// Microsoft Edge will overwrite inline styles if there is an animation pertaining to that style.\n// To help ensure that edge will respect the offscreen style opacity\n// filter needs to be added as an additional way to set opacity.\n// Also set pointer-events: none so that the callout will not occlude the element it is\n// going to be positioned against\nvar OFF_SCREEN_STYLE = { opacity: 0, filter: 'opacity(0)', pointerEvents: 'none' };\n// role and role description go hand-in-hand. Both would be included by spreading getNativeProps for a basic element\n// This constant array can be used to filter these out of native props spread on callout root and apply them together on\n// calloutMain (the Popup component within the callout)\nvar ARIA_ROLE_ATTRIBUTES = ['role', 'aria-roledescription'];\nvar CalloutContentBase = /** @class */ (function (_super) {\n __extends(CalloutContentBase, _super);\n function CalloutContentBase(props) {\n var _this = _super.call(this, props) || this;\n _this._hostElement = React.createRef();\n _this._calloutElement = React.createRef();\n _this._hasListeners = false;\n _this._disposables = [];\n _this.dismiss = function (ev) {\n var onDismiss = _this.props.onDismiss;\n if (onDismiss) {\n onDismiss(ev);\n }\n };\n _this._dismissOnScroll = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, preventDismissOnEvent = _a.preventDismissOnEvent, preventDismissOnScroll = _a.preventDismissOnScroll;\n if (_this.state.positions &&\n ((preventDismissOnEvent && !preventDismissOnEvent(ev)) || (!preventDismissOnEvent && !preventDismissOnScroll))) {\n _this._dismissOnClickOrScroll(ev);\n }\n };\n _this._dismissOnResize = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, preventDismissOnEvent = _a.preventDismissOnEvent, preventDismissOnResize = _a.preventDismissOnResize;\n if ((preventDismissOnEvent && !preventDismissOnEvent(ev)) || (!preventDismissOnEvent && !preventDismissOnResize)) {\n _this.dismiss(ev);\n }\n };\n _this._dismissOnLostFocus = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, preventDismissOnEvent = _a.preventDismissOnEvent, preventDismissOnLostFocus = _a.preventDismissOnLostFocus;\n if ((preventDismissOnEvent && !preventDismissOnEvent(ev)) ||\n (!preventDismissOnEvent && !preventDismissOnLostFocus)) {\n _this._dismissOnClickOrScroll(ev);\n }\n };\n _this._setInitialFocus = function () {\n if (_this.props.setInitialFocus &&\n !_this._didSetInitialFocus &&\n _this.state.positions &&\n _this._calloutElement.current) {\n _this._didSetInitialFocus = true;\n _this._async.requestAnimationFrame(function () { return focusFirstChild(_this._calloutElement.current); }, _this._calloutElement.current);\n }\n };\n _this._onComponentDidMount = function () {\n _this._addListeners();\n if (_this.props.onLayerMounted) {\n _this.props.onLayerMounted();\n }\n _this._updateAsyncPosition();\n _this._setHeightOffsetEveryFrame();\n };\n _this._dismissOnTargetWindowBlur = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, preventDismissOnEvent = _a.preventDismissOnEvent, preventDismissOnLostFocus = _a.preventDismissOnLostFocus, shouldDismissOnWindowFocus = _a.shouldDismissOnWindowFocus;\n // Do nothing\n if (!shouldDismissOnWindowFocus) {\n return;\n }\n if (((preventDismissOnEvent && !preventDismissOnEvent(ev)) ||\n (!preventDismissOnEvent && !preventDismissOnLostFocus)) &&\n !_this._targetWindow.document.hasFocus() &&\n ev.relatedTarget === null) {\n _this.dismiss(ev);\n }\n };\n _this._mouseDownOnPopup = function () {\n _this._isMouseDownOnPopup = true;\n };\n _this._mouseUpOnPopup = function () {\n _this._isMouseDownOnPopup = false;\n };\n _this._async = new Async(_this);\n _this._didSetInitialFocus = false;\n _this.state = {\n positions: undefined,\n slideDirectionalClassName: undefined,\n // @TODO it looks like this is not even being used anymore.\n calloutElementRect: undefined,\n heightOffset: 0,\n };\n _this._positionAttempts = 0;\n return _this;\n }\n CalloutContentBase.prototype.componentDidUpdate = function () {\n if (!this.props.hidden) {\n this._setInitialFocus();\n if (!this._hasListeners) {\n this._addListeners();\n }\n this._updateAsyncPosition();\n }\n else {\n if (this._hasListeners) {\n this._removeListeners();\n }\n }\n };\n CalloutContentBase.prototype.shouldComponentUpdate = function (newProps, newState) {\n if (!newProps.shouldUpdateWhenHidden && this.props.hidden && newProps.hidden) {\n // Do not update when hidden.\n return false;\n }\n return !shallowCompare(this.props, newProps) || !shallowCompare(this.state, newState);\n };\n CalloutContentBase.prototype.UNSAFE_componentWillMount = function () {\n this._setTargetWindowAndElement(this._getTarget());\n };\n CalloutContentBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._disposables.forEach(function (dispose) { return dispose(); });\n };\n CalloutContentBase.prototype.UNSAFE_componentWillUpdate = function (newProps) {\n // If the target element changed, find the new one. If we are tracking target with class name, always find element\n // because we do not know if fabric has rendered a new element and disposed the old element.\n var newTarget = this._getTarget(newProps);\n var oldTarget = this._getTarget();\n if ((newTarget !== oldTarget || typeof newTarget === 'string' || newTarget instanceof String) &&\n !this._blockResetHeight) {\n this._maxHeight = undefined;\n this._setTargetWindowAndElement(newTarget);\n }\n if (newProps.gapSpace !== this.props.gapSpace || this.props.beakWidth !== newProps.beakWidth) {\n this._maxHeight = undefined;\n }\n if (newProps.finalHeight !== this.props.finalHeight) {\n this._setHeightOffsetEveryFrame();\n }\n // Ensure positioning is recalculated when we are about to show a persisted menu.\n if (this._didPositionPropsChange(newProps, this.props)) {\n this._maxHeight = undefined;\n // Target might have been updated while hidden.\n this._setTargetWindowAndElement(newTarget);\n this.setState({\n positions: undefined,\n });\n this._didSetInitialFocus = false;\n this._bounds = undefined;\n }\n this._blockResetHeight = false;\n };\n CalloutContentBase.prototype.componentDidMount = function () {\n if (!this.props.hidden) {\n this._onComponentDidMount();\n }\n };\n CalloutContentBase.prototype.render = function () {\n // If there is no target window then we are likely in server side rendering and we should not render anything.\n if (!this._targetWindow) {\n return null;\n }\n var target = this.props.target;\n var _a = this.props, styles = _a.styles, style = _a.style, ariaLabel = _a.ariaLabel, ariaDescribedBy = _a.ariaDescribedBy, ariaLabelledBy = _a.ariaLabelledBy, className = _a.className, isBeakVisible = _a.isBeakVisible, children = _a.children, beakWidth = _a.beakWidth, calloutWidth = _a.calloutWidth, calloutMaxWidth = _a.calloutMaxWidth, calloutMinWidth = _a.calloutMinWidth, finalHeight = _a.finalHeight, _b = _a.hideOverflow, hideOverflow = _b === void 0 ? !!finalHeight : _b, backgroundColor = _a.backgroundColor, calloutMaxHeight = _a.calloutMaxHeight, onScroll = _a.onScroll, \n // eslint-disable-next-line deprecation/deprecation\n _c = _a.shouldRestoreFocus, \n // eslint-disable-next-line deprecation/deprecation\n shouldRestoreFocus = _c === void 0 ? true : _c;\n target = this._getTarget();\n var positions = this.state.positions;\n var getContentMaxHeight = this._getMaxHeight()\n ? this._getMaxHeight() + this.state.heightOffset\n : undefined;\n var contentMaxHeight = calloutMaxHeight && getContentMaxHeight && calloutMaxHeight < getContentMaxHeight\n ? calloutMaxHeight\n : getContentMaxHeight;\n var overflowYHidden = hideOverflow;\n var beakVisible = isBeakVisible && !!target;\n this._classNames = getClassNames(styles, {\n theme: this.props.theme,\n className: className,\n overflowYHidden: overflowYHidden,\n calloutWidth: calloutWidth,\n positions: positions,\n beakWidth: beakWidth,\n backgroundColor: backgroundColor,\n calloutMinWidth: calloutMinWidth,\n calloutMaxWidth: calloutMaxWidth,\n });\n var overflowStyle = __assign(__assign(__assign({}, style), { maxHeight: contentMaxHeight }), (overflowYHidden && { overflowY: 'hidden' }));\n var visibilityStyle = this.props.hidden ? { visibility: 'hidden' } : undefined;\n // React.CSSProperties does not understand IRawStyle, so the inline animations will need to be cast as any for now.\n var content = (React.createElement(\"div\", { ref: this._hostElement, className: this._classNames.container, style: visibilityStyle },\n React.createElement(\"div\", __assign({}, getNativeProps(this.props, divProperties, ARIA_ROLE_ATTRIBUTES), { className: css(this._classNames.root, positions && positions.targetEdge && ANIMATIONS[positions.targetEdge]), style: positions ? positions.elementPosition : OFF_SCREEN_STYLE, \n // Safari and Firefox on Mac OS requires this to back-stop click events so focus remains in the Callout.\n // See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Clicking_and_focus\n tabIndex: -1, ref: this._calloutElement }),\n beakVisible && React.createElement(\"div\", { className: this._classNames.beak, style: this._getBeakPosition() }),\n beakVisible && React.createElement(\"div\", { className: this._classNames.beakCurtain }),\n React.createElement(Popup, __assign({}, getNativeProps(this.props, ARIA_ROLE_ATTRIBUTES), { ariaLabel: ariaLabel, onRestoreFocus: this.props.onRestoreFocus, ariaDescribedBy: ariaDescribedBy, ariaLabelledBy: ariaLabelledBy, className: this._classNames.calloutMain, onDismiss: this.dismiss, onScroll: onScroll, shouldRestoreFocus: shouldRestoreFocus, style: overflowStyle, onMouseDown: this._mouseDownOnPopup, onMouseUp: this._mouseUpOnPopup }), children))));\n return content;\n };\n CalloutContentBase.prototype._dismissOnClickOrScroll = function (ev) {\n var target = ev.target;\n var isEventTargetOutsideCallout = this._hostElement.current && !elementContains(this._hostElement.current, target);\n // If mouse is pressed down on callout but moved outside then released, don't dismiss the callout.\n if (isEventTargetOutsideCallout && this._isMouseDownOnPopup) {\n this._isMouseDownOnPopup = false;\n return;\n }\n if ((!this._target && isEventTargetOutsideCallout) ||\n (ev.target !== this._targetWindow &&\n isEventTargetOutsideCallout &&\n (this._target.stopPropagation ||\n !this._target ||\n this.props.dismissOnTargetClick ||\n (target !== this._target && !elementContains(this._target, target))))) {\n this.dismiss(ev);\n }\n };\n CalloutContentBase.prototype._addListeners = function () {\n var _this = this;\n // This is added so the callout will dismiss when the window is scrolled\n // but not when something inside the callout is scrolled. The delay seems\n // to be required to avoid React firing an async focus event in IE from\n // the target changing focus quickly prior to rendering the callout.\n this._async.setTimeout(function () {\n _this._disposables.push(on(_this._targetWindow, 'scroll', _this._dismissOnScroll, true), on(_this._targetWindow, 'resize', _this._dismissOnResize, true), on(_this._targetWindow.document.documentElement, 'focus', _this._dismissOnLostFocus, true), on(_this._targetWindow.document.documentElement, 'click', _this._dismissOnLostFocus, true), on(_this._targetWindow, 'blur', _this._dismissOnTargetWindowBlur, true));\n _this._hasListeners = true;\n }, 0);\n };\n CalloutContentBase.prototype._removeListeners = function () {\n this._disposables.forEach(function (dispose) { return dispose(); });\n this._disposables = [];\n this._hasListeners = false;\n };\n CalloutContentBase.prototype._updateAsyncPosition = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () { return _this._updatePosition(); }, this._calloutElement.current);\n };\n CalloutContentBase.prototype._getBeakPosition = function () {\n var positions = this.state.positions;\n var beakPostionStyle = __assign({}, (positions && positions.beakPosition ? positions.beakPosition.elementPosition : null));\n if (!beakPostionStyle.top && !beakPostionStyle.bottom && !beakPostionStyle.left && !beakPostionStyle.right) {\n beakPostionStyle.left = BEAK_ORIGIN_POSITION.left;\n beakPostionStyle.top = BEAK_ORIGIN_POSITION.top;\n }\n return beakPostionStyle;\n };\n CalloutContentBase.prototype._updatePosition = function () {\n // Try to update the target, page might have changed\n this._setTargetWindowAndElement(this._getTarget());\n var positions = this.state.positions;\n var hostElement = this._hostElement.current;\n var calloutElement = this._calloutElement.current;\n // If we expect a target element to position against, we need to wait until `this._target` is resolved. Otherwise\n // we can try to position.\n var expectsTarget = !!this.props.target;\n if (hostElement && calloutElement && (!expectsTarget || this._target)) {\n var currentProps = __assign({}, this.props);\n currentProps.bounds = this._getBounds();\n currentProps.target = this._target;\n // If there is a finalHeight given then we assume that the user knows and will handle\n // additional positioning adjustments so we should call positionCard\n var newPositions = this.props.finalHeight\n ? positionCard(currentProps, hostElement, calloutElement, positions)\n : positionCallout(currentProps, hostElement, calloutElement, positions);\n // Set the new position only when the positions are not exists or one of the new callout positions are different.\n // The position should not change if the position is within 2 decimal places.\n if ((!positions && newPositions) ||\n (positions && newPositions && !this._arePositionsEqual(positions, newPositions) && this._positionAttempts < 5)) {\n // We should not reposition the callout more than a few times, if it is then the content is likely resizing\n // and we should stop trying to reposition to prevent a stack overflow.\n this._positionAttempts++;\n this.setState({\n positions: newPositions,\n });\n }\n else if (this._positionAttempts > 0) {\n // Only call the onPositioned callback if the callout has been re-positioned at least once.\n this._positionAttempts = 0;\n if (this.props.onPositioned) {\n this.props.onPositioned(this.state.positions);\n }\n }\n }\n };\n CalloutContentBase.prototype._getBounds = function () {\n if (!this._bounds) {\n var bounds = this.props.bounds;\n var currentBounds = typeof bounds === 'function' ? bounds(this.props.target, this._targetWindow) : bounds;\n if (!currentBounds) {\n currentBounds = getBoundsFromTargetWindow(this._target, this._targetWindow);\n currentBounds = {\n top: currentBounds.top + this.props.minPagePadding,\n left: currentBounds.left + this.props.minPagePadding,\n right: currentBounds.right - this.props.minPagePadding,\n bottom: currentBounds.bottom - this.props.minPagePadding,\n width: currentBounds.width - this.props.minPagePadding * 2,\n height: currentBounds.height - this.props.minPagePadding * 2,\n };\n }\n this._bounds = currentBounds;\n }\n return this._bounds;\n };\n // Max height should remain as synchronous as possible, which is why it is not done using set state.\n // It needs to be synchronous since it will impact the ultimate position of the callout.\n CalloutContentBase.prototype._getMaxHeight = function () {\n var _this = this;\n if (!this._maxHeight) {\n if (this.props.directionalHintFixed && this._target) {\n var beakWidth = this.props.isBeakVisible ? this.props.beakWidth : 0;\n var gapSpace = this.props.gapSpace ? this.props.gapSpace : 0;\n // Since the callout cannot measure it's border size it must be taken into account here. Otherwise it will\n // overlap with the target.\n var totalGap_1 = gapSpace + beakWidth;\n this._async.requestAnimationFrame(function () {\n if (_this._target) {\n _this._maxHeight = getMaxHeight(_this._target, _this.props.directionalHint, totalGap_1, _this._getBounds(), _this.props.coverTarget);\n _this._blockResetHeight = true;\n _this.forceUpdate();\n }\n }, this._target);\n }\n else {\n this._maxHeight = this._getBounds().height;\n }\n }\n return this._maxHeight;\n };\n CalloutContentBase.prototype._arePositionsEqual = function (positions, newPosition) {\n return (this._comparePositions(positions.elementPosition, newPosition.elementPosition) &&\n this._comparePositions(positions.beakPosition.elementPosition, newPosition.beakPosition.elementPosition));\n };\n CalloutContentBase.prototype._comparePositions = function (oldPositions, newPositions) {\n for (var key in newPositions) {\n if (newPositions.hasOwnProperty(key)) {\n var oldPositionEdge = oldPositions[key];\n var newPositionEdge = newPositions[key];\n if (oldPositionEdge !== undefined && newPositionEdge !== undefined) {\n if (oldPositionEdge.toFixed(2) !== newPositionEdge.toFixed(2)) {\n return false;\n }\n }\n else {\n return false;\n }\n }\n }\n return true;\n };\n CalloutContentBase.prototype._setTargetWindowAndElement = function (target) {\n var currentElement = this._calloutElement.current;\n if (target) {\n if (typeof target === 'string') {\n var currentDoc = getDocument(currentElement);\n this._target = currentDoc ? currentDoc.querySelector(target) : null;\n this._targetWindow = getWindow(currentElement);\n // Cast to any prevents error about stopPropagation always existing\n }\n else if (target.stopPropagation) {\n this._targetWindow = getWindow(target.target);\n this._target = target;\n // Same reason here\n }\n else if (target.getBoundingClientRect) {\n var targetElement = target;\n this._targetWindow = getWindow(targetElement);\n this._target = targetElement;\n }\n else if (target.current !== undefined) {\n this._target = target.current;\n this._targetWindow = getWindow(this._target);\n // HTMLImgElements can have x and y values. The check for it being a point must go last.\n }\n else {\n this._targetWindow = getWindow(currentElement);\n this._target = target;\n }\n }\n else {\n this._targetWindow = getWindow(currentElement);\n }\n };\n CalloutContentBase.prototype._setHeightOffsetEveryFrame = function () {\n var _this = this;\n if (this._calloutElement.current && this.props.finalHeight) {\n this._setHeightOffsetTimer = this._async.requestAnimationFrame(function () {\n var calloutMainElem = _this._calloutElement.current && _this._calloutElement.current.lastChild;\n if (!calloutMainElem) {\n return;\n }\n var cardScrollHeight = calloutMainElem.scrollHeight;\n var cardCurrHeight = calloutMainElem.offsetHeight;\n var scrollDiff = cardScrollHeight - cardCurrHeight;\n _this.setState({\n heightOffset: _this.state.heightOffset + scrollDiff,\n });\n if (calloutMainElem.offsetHeight < _this.props.finalHeight) {\n _this._setHeightOffsetEveryFrame();\n }\n else {\n _this._async.cancelAnimationFrame(_this._setHeightOffsetTimer, _this._calloutElement.current);\n }\n }, this._calloutElement.current);\n }\n };\n // Whether or not the current positions should be reset\n CalloutContentBase.prototype._didPositionPropsChange = function (newProps, oldProps) {\n return ((!newProps.hidden && newProps.hidden !== oldProps.hidden) ||\n newProps.directionalHint !== oldProps.directionalHint ||\n newProps.target !== oldProps.target);\n };\n CalloutContentBase.prototype._getTarget = function (props) {\n if (props === void 0) { props = this.props; }\n var target = props.target;\n return target;\n };\n CalloutContentBase.defaultProps = {\n preventDismissOnLostFocus: false,\n preventDismissOnScroll: false,\n preventDismissOnResize: false,\n isBeakVisible: true,\n beakWidth: 16,\n gapSpace: 0,\n minPagePadding: 8,\n directionalHint: DirectionalHint.bottomAutoEdge,\n };\n return CalloutContentBase;\n}(React.Component));\nexport { CalloutContentBase };\n//# sourceMappingURL=CalloutContent.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "index": 131, - "index2": 137, - "size": 304, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent", - "loc": "12:42-56" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent", - "loc": "2:0-33" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CalloutContent", - "loc": "2:0-33" - } - ], - "usedExports": [ - "CalloutContent" - ], - "providedExports": [ - "CalloutContent" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { CalloutContentBase } from './CalloutContent.base';\nimport { getStyles } from './CalloutContent.styles';\nexport var CalloutContent = styled(CalloutContentBase, getStyles, undefined, { scope: 'CalloutContent' });\n//# sourceMappingURL=CalloutContent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "index": 130, - "index2": 154, - "size": 789, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "issuerId": "3Wi1", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "25:36-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "77:251-258" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Callout", - "loc": "131:32-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "558:40-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Callout", - "loc": "558:63-70" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "308:54-61" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "204:68-75" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "3:0-36" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "./Callout", - "loc": "10:32-39" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Callout", - "loc": "13:47-54" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "36:36-43" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "514:82-89" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "316:40-47" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "51:36-43" - } - ], - "usedExports": [ - "Callout" - ], - "providedExports": [ - "Callout" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { CalloutContent } from './CalloutContent';\nimport { Layer } from '../../Layer';\nvar Callout = /** @class */ (function (_super) {\n __extends(Callout, _super);\n function Callout() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Callout.prototype.render = function () {\n var _a = this.props, layerProps = _a.layerProps, rest = __rest(_a, [\"layerProps\"]);\n var content = React.createElement(CalloutContent, __assign({}, rest));\n return this.props.doNotLayer ? content : React.createElement(Layer, __assign({}, layerProps), content);\n };\n return Callout;\n}(React.Component));\nexport { Callout };\n//# sourceMappingURL=Callout.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "index": 148, - "index2": 136, - "size": 3228, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent.styles", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent.styles", - "loc": "4:55-64" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { HighContrastSelector, focusClear, getGlobalClassNames } from '../../Styling';\nfunction getBeakStyle(beakWidth) {\n return {\n height: beakWidth,\n width: beakWidth,\n };\n}\nvar GlobalClassNames = {\n container: 'ms-Callout-container',\n root: 'ms-Callout',\n beak: 'ms-Callout-beak',\n beakCurtain: 'ms-Callout-beakCurtain',\n calloutMain: 'ms-Callout-main',\n};\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, className = props.className, overflowYHidden = props.overflowYHidden, calloutWidth = props.calloutWidth, beakWidth = props.beakWidth, backgroundColor = props.backgroundColor, calloutMaxWidth = props.calloutMaxWidth, calloutMinWidth = props.calloutMinWidth;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var semanticColors = theme.semanticColors, effects = theme.effects;\n return {\n container: [\n classNames.container,\n {\n position: 'relative',\n },\n ],\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n position: 'absolute',\n boxSizing: 'border-box',\n borderRadius: effects.roundedCorner2,\n boxShadow: effects.elevation16,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderWidth: 1,\n borderStyle: 'solid',\n borderColor: 'WindowText',\n },\n _a),\n },\n focusClear(),\n className,\n !!calloutWidth && { width: calloutWidth },\n !!calloutMaxWidth && { maxWidth: calloutMaxWidth },\n !!calloutMinWidth && { minWidth: calloutMinWidth },\n ],\n beak: [\n classNames.beak,\n {\n position: 'absolute',\n backgroundColor: semanticColors.menuBackground,\n boxShadow: 'inherit',\n border: 'inherit',\n boxSizing: 'border-box',\n transform: 'rotate(45deg)',\n },\n getBeakStyle(beakWidth),\n backgroundColor && {\n backgroundColor: backgroundColor,\n },\n ],\n beakCurtain: [\n classNames.beakCurtain,\n {\n position: 'absolute',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n backgroundColor: semanticColors.menuBackground,\n borderRadius: effects.roundedCorner2,\n },\n ],\n calloutMain: [\n classNames.calloutMain,\n {\n backgroundColor: semanticColors.menuBackground,\n overflowX: 'hidden',\n overflowY: 'auto',\n position: 'relative',\n borderRadius: effects.roundedCorner2,\n },\n overflowYHidden && {\n overflowY: 'hidden',\n },\n backgroundColor && {\n backgroundColor: backgroundColor,\n },\n ],\n };\n};\n//# sourceMappingURL=CalloutContent.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "S/Ex", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js efdad6ef20930d716e79e45a0ef73142", - "name": "./node_modules/@uifabric/set-version/lib/index.js + 1 modules", - "index": 100, - "index2": 85, - "size": 1167, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HSFb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "HSFb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Mg3H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "module": "./node_modules/@uifabric/icons/lib/version.js", - "moduleName": "./node_modules/@uifabric/icons/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "Mg3H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "module": "./node_modules/@uifabric/icons/lib/version.js", - "moduleName": "./node_modules/@uifabric/icons/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Qh3U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "module": "./node_modules/@uifabric/foundation/lib/version.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "Qh3U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "module": "./node_modules/@uifabric/foundation/lib/version.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "TL5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "TL5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "eRMf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "eRMf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "gx47", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/version.js", - "module": "./node_modules/@uifabric/react-hooks/lib/version.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "gx47", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/version.js", - "module": "./node_modules/@uifabric/react-hooks/lib/version.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "oRrG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/version.js", - "module": "./node_modules/@fluentui/react-focus/lib/version.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "oRrG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/version.js", - "module": "./node_modules/@fluentui/react-focus/lib/version.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - } - ], - "usedExports": [ - "setVersion" - ], - "providedExports": [ - "setVersion" - ], - "optimizationBailout": [], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "name": "./node_modules/@uifabric/set-version/lib/index.js", - "index": 100, - "index2": 85, - "size": 145, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "issuerId": "HSFb", - "issuerName": "./node_modules/office-ui-fabric-react/lib/version.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "HSFb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "name": "./node_modules/office-ui-fabric-react/lib/version.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HSFb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "HSFb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Mg3H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "module": "./node_modules/@uifabric/icons/lib/version.js", - "moduleName": "./node_modules/@uifabric/icons/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "Mg3H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "module": "./node_modules/@uifabric/icons/lib/version.js", - "moduleName": "./node_modules/@uifabric/icons/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Qh3U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "module": "./node_modules/@uifabric/foundation/lib/version.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "Qh3U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "module": "./node_modules/@uifabric/foundation/lib/version.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "TL5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "TL5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "eRMf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "eRMf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "gx47", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/version.js", - "module": "./node_modules/@uifabric/react-hooks/lib/version.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "gx47", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/version.js", - "module": "./node_modules/@uifabric/react-hooks/lib/version.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "oRrG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/version.js", - "module": "./node_modules/@fluentui/react-focus/lib/version.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "oRrG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/version.js", - "module": "./node_modules/@fluentui/react-focus/lib/version.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - } - ], - "usedExports": [ - "setVersion" - ], - "providedExports": [ - "setVersion" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { setVersion } from './setVersion';\nexport { setVersion };\nsetVersion('@uifabric/set-version', '6.0.0');\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/setVersion.js", - "name": "./node_modules/@uifabric/set-version/lib/setVersion.js", - "index": 101, - "index2": 84, - "size": 1022, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/set-version/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "HSFb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "name": "./node_modules/office-ui-fabric-react/lib/version.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "name": "./node_modules/@uifabric/set-version/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setVersion", - "loc": "1:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setVersion", - "loc": "2:0-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./setVersion", - "loc": "3:0-10" - } - ], - "usedExports": [ - "setVersion" - ], - "providedExports": [ - "setVersion" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// A packages cache that makes sure that we don't inject the same packageName twice in the same bundle -\n// this cache is local to the module closure inside this bundle\nvar packagesCache = {};\n// Cache access to window to avoid IE11 memory leak.\nvar _win = undefined;\ntry {\n _win = window;\n}\ncatch (e) {\n /* no-op */\n}\nexport function setVersion(packageName, packageVersion) {\n if (typeof _win !== 'undefined') {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var packages = (_win.__packages__ = _win.__packages__ || {});\n // We allow either the global packages or local packages caches to invalidate so testing can\n // just clear the global to set this state\n if (!packages[packageName] || !packagesCache[packageName]) {\n packagesCache[packageName] = packageVersion;\n var versions = (packages[packageName] = packages[packageName] || []);\n versions.push(packageVersion);\n }\n }\n}\n//# sourceMappingURL=setVersion.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js", - "index": 553, - "index2": 560, - "size": 580, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_baseUnset", - "loc": "3:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var castPath = require('./_castPath'),\n last = require('./last'),\n parent = require('./_parent'),\n toKey = require('./_toKey');\n\n/**\n * The base implementation of `_.unset`.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {Array|string} path The property path to unset.\n * @returns {boolean} Returns `true` if the property is deleted, else `false`.\n */\nfunction baseUnset(object, path) {\n path = castPath(path, object);\n object = parent(object, path);\n return object == null || delete object[toKey(last(path))];\n}\n\nmodule.exports = baseUnset;\n" - }, - { - "id": "SC5K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "index": 440, - "index2": 436, - "size": 574, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "cjs require", - "userRequest": "./IFrameDialogContent.module.css", - "loc": "2:0-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./IFrameDialogContent.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "SfRM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashClear.js", - "name": "./node_modules/lodash/_hashClear.js", - "index": 478, - "index2": 467, - "size": 281, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "issuerId": "4kuk", - "issuerName": "./node_modules/lodash/_Hash.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4kuk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "module": "./node_modules/lodash/_Hash.js", - "moduleName": "./node_modules/lodash/_Hash.js", - "type": "cjs require", - "userRequest": "./_hashClear", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "var nativeCreate = require('./_nativeCreate');\n\n/**\n * Removes all key-value entries from the hash.\n *\n * @private\n * @name clear\n * @memberOf Hash\n */\nfunction hashClear() {\n this.__data__ = nativeCreate ? nativeCreate(null) : {};\n this.size = 0;\n}\n\nmodule.exports = hashClear;\n" - }, - { - "id": "Sgrz", - "identifier": "external \"ControlStrings\"", - "name": "external \"ControlStrings\"", - "index": 689, - "index2": 684, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "ControlStrings", - "loc": "15:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ControlStrings", - "loc": "51:165-196" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ControlStrings", - "loc": "51:212-237" - } - ], - "usedExports": [ - "WebPartTitleLabel", - "WebPartTitlePlaceholder" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5 - }, - { - "id": "TSYQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/classnames/index.js", - "name": "./node_modules/classnames/index.js", - "index": 356, - "index2": 352, - "size": 1328, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "issuerId": "0fKb", - "issuerName": "./node_modules/react-js-pagination/dist/Pagination.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "classnames", - "loc": "16:41-62" - }, - { - "moduleId": "HBL8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Page.js", - "module": "./node_modules/react-js-pagination/dist/Page.js", - "moduleName": "./node_modules/react-js-pagination/dist/Page.js", - "type": "cjs require", - "userRequest": "classnames", - "loc": "12:41-62" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "/*!\n Copyright (c) 2018 Jed Watson.\n Licensed under the MIT License (MIT), see\n http://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\n\tfunction classNames() {\n\t\tvar classes = [];\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (!arg) continue;\n\n\t\t\tvar argType = typeof arg;\n\n\t\t\tif (argType === 'string' || argType === 'number') {\n\t\t\t\tclasses.push(arg);\n\t\t\t} else if (Array.isArray(arg)) {\n\t\t\t\tif (arg.length) {\n\t\t\t\t\tvar inner = classNames.apply(null, arg);\n\t\t\t\t\tif (inner) {\n\t\t\t\t\t\tclasses.push(inner);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if (argType === 'object') {\n\t\t\t\tif (arg.toString === Object.prototype.toString) {\n\t\t\t\t\tfor (var key in arg) {\n\t\t\t\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\t\t\t\tclasses.push(key);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tclasses.push(arg.toString());\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn classes.join(' ');\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "index": 12, - "index2": 279, - "size": 3693, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldCollectionDataHost", - "loc": "5:0-50" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldCollectionDataHost", - "loc": "5:0-50" - } - ], - "usedExports": [ - "PropertyFieldCollectionDataHost" - ], - "providedExports": [ - "PropertyFieldCollectionDataHost" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as telemetry from '../../common/telemetry';\nimport { DefaultButton } from 'office-ui-fabric-react/lib/components/Button';\nimport { Panel, PanelType } from 'office-ui-fabric-react/lib/components/Panel';\nimport { Label } from 'office-ui-fabric-react/lib/components/Label';\nimport { CollectionDataViewer } from './collectionDataViewer';\nimport FieldErrorMessage from '../errorMessage/FieldErrorMessage';\nimport * as strings from 'PropertyControlStrings';\nvar PropertyFieldCollectionDataHost = /** @class */ (function (_super) {\n __extends(PropertyFieldCollectionDataHost, _super);\n function PropertyFieldCollectionDataHost(props) {\n var _this = _super.call(this, props) || this;\n /**\n * Open the panel\n */\n _this.openPanel = function () {\n _this.setState({\n panelOpen: true\n });\n };\n /**\n * Closes the panel\n */\n _this.closePanel = function () {\n _this.setState({\n panelOpen: false\n });\n };\n /**\n * On save action\n */\n _this.onSave = function (items) {\n _this.props.onChanged(items);\n _this.setState({\n panelOpen: false\n });\n };\n _this.state = {\n panelOpen: false\n };\n telemetry.track('PropertyFieldCollectionData', {});\n return _this;\n }\n PropertyFieldCollectionDataHost.prototype.render = function () {\n return (React.createElement(\"div\", null,\n React.createElement(Label, null, this.props.label),\n React.createElement(DefaultButton, { text: this.props.manageBtnLabel, onClick: this.openPanel, disabled: this.props.fields.length === 0 || this.props.disabled }),\n this.props.fields.length === 0 && React.createElement(FieldErrorMessage, { errorMessage: strings.CollectionDataEmptyFields }),\n React.createElement(Panel, { isOpen: this.state.panelOpen, onDismiss: this.closePanel, type: PanelType.large, headerText: this.props.panelHeader, onOuterClick: function () { }, className: \"PropertyFieldCollectionData__panel \" + (this.props.panelClassName || \"\") },\n this.props.panelDescription && (React.createElement(\"p\", { className: \"PropertyFieldCollectionData__panel__description\" }, this.props.panelDescription)),\n React.createElement(CollectionDataViewer, __assign({}, this.props, { fOnSave: this.onSave, fOnClose: this.closePanel })))));\n };\n return PropertyFieldCollectionDataHost;\n}(React.Component));\nexport { PropertyFieldCollectionDataHost };\n//# sourceMappingURL=PropertyFieldCollectionDataHost.js.map" - }, - { - "id": "TVYz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "index": 13, - "index2": 12, - "size": 1026, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "16:0-52" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "81:8-23" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "27:0-52" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "32:8-23" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "26:0-52" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "65:8-23" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "60:0-52" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "130:8-23" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "28:0-52" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "33:8-23" - } - ], - "usedExports": [ - "track" - ], - "providedExports": [ - "track" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/telemetry-js/dist/index.js (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-core-library\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "index": 13, - "index2": 12, - "size": 951, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "issuerId": "LuZL", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "16:0-52" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "81:8-23" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "27:0-52" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "32:8-23" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "26:0-52" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "65:8-23" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "60:0-52" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "130:8-23" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "28:0-52" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "33:8-23" - } - ], - "usedExports": [ - "track" - ], - "providedExports": [ - "track" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport PnPTelemetry from \"@pnp/telemetry-js\";\nimport { version } from './version';\nimport { Environment, EnvironmentType } from \"@microsoft/sp-core-library\";\nvar CONTROL_TYPE = \"property\";\nexport function track(componentName, properties) {\n if (properties === void 0) { properties = {}; }\n var telemetry = PnPTelemetry.getInstance();\n telemetry.trackEvent(componentName, __assign({ version: version, controlType: CONTROL_TYPE, debug: DEBUG ? \"true\" : \"false\", environment: EnvironmentType[Environment.type] }, properties));\n}\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/version.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/version.js", - "index": 16, - "index2": 11, - "size": 65, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "13:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "type": "harmony import specifier", - "userRequest": "./version", - "loc": "19:60-67" - } - ], - "usedExports": [ - "version" - ], - "providedExports": [ - "version" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var version = \"3.3.0\";\n//# sourceMappingURL=version.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "TYy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/flatten.js", - "name": "./node_modules/lodash/flatten.js", - "index": 570, - "index2": 565, - "size": 489, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "issuerId": "xs/l", - "issuerName": "./node_modules/lodash/_flatRest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "xs/l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "module": "./node_modules/lodash/_flatRest.js", - "moduleName": "./node_modules/lodash/_flatRest.js", - "type": "cjs require", - "userRequest": "./flatten", - "loc": "1:14-34" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseFlatten = require('./_baseFlatten');\n\n/**\n * Flattens `array` a single level deep.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to flatten.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * _.flatten([1, [2, [3, [4]], 5]]);\n * // => [1, 2, [3, [4]], 5]\n */\nfunction flatten(array) {\n var length = array == null ? 0 : array.length;\n return length ? baseFlatten(array, 1) : [];\n}\n\nmodule.exports = flatten;\n" - }, - { - "id": "TkDl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "index": 252, - "index2": 241, - "size": 3132, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "216:43-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "296:60-67" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay", - "loc": "1:0-26" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Overlay" - ], - "providedExports": [ - "Overlay" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/scroll.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "index": 253, - "index2": 239, - "size": 1526, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "RqX7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "hKbd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.base", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "userRequest": "./Overlay.base", - "loc": "4:28-39" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.base", - "loc": "2:0-31" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay.base", - "loc": "2:0-31" - } - ], - "usedExports": [ - "OverlayBase" - ], - "providedExports": [ - "OverlayBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getNativeProps, divProperties, enableBodyScroll, disableBodyScroll, initializeComponentRef, } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar OverlayBase = /** @class */ (function (_super) {\n __extends(OverlayBase, _super);\n function OverlayBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n var _a = _this.props.allowTouchBodyScroll, allowTouchBodyScroll = _a === void 0 ? false : _a;\n _this._allowTouchBodyScroll = allowTouchBodyScroll;\n return _this;\n }\n OverlayBase.prototype.componentDidMount = function () {\n !this._allowTouchBodyScroll && disableBodyScroll();\n };\n OverlayBase.prototype.componentWillUnmount = function () {\n !this._allowTouchBodyScroll && enableBodyScroll();\n };\n OverlayBase.prototype.render = function () {\n var _a = this.props, isDark = _a.isDarkThemed, className = _a.className, theme = _a.theme, styles = _a.styles;\n var divProps = getNativeProps(this.props, divProperties);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n isDark: isDark,\n });\n return React.createElement(\"div\", __assign({}, divProps, { className: classNames.root }));\n };\n return OverlayBase;\n}(React.Component));\nexport { OverlayBase };\n//# sourceMappingURL=Overlay.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "index": 252, - "index2": 241, - "size": 260, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "issuerId": "hKbd", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "RqX7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "hKbd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "216:43-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "296:60-67" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay", - "loc": "1:0-26" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Overlay" - ], - "providedExports": [ - "Overlay" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { OverlayBase } from './Overlay.base';\nimport { getStyles } from './Overlay.styles';\nexport var Overlay = styled(OverlayBase, getStyles, undefined, {\n scope: 'Overlay',\n});\n//# sourceMappingURL=Overlay.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "index": 254, - "index2": 240, - "size": 1306, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "RqX7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "hKbd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.styles", - "loc": "3:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "userRequest": "./Overlay.styles", - "loc": "4:41-50" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { HighContrastSelector, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Overlay',\n rootDark: 'ms-Overlay--dark',\n};\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, theme = props.theme, isNone = props.isNone, isDark = props.isDark;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n backgroundColor: palette.whiteTranslucent40,\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n position: 'absolute',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n border: '1px solid WindowText',\n opacity: 0,\n },\n _a),\n },\n isNone && {\n visibility: 'hidden',\n },\n isDark && [\n classNames.rootDark,\n {\n backgroundColor: palette.blackTranslucent40,\n },\n ],\n className,\n ],\n };\n};\n//# sourceMappingURL=Overlay.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "UC1j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/setVersion.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/setVersion.js", - "index": 429, - "index2": 419, - "size": 872, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "issuerId": "wqNB", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "Zjij", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js" - }, - { - "id": "wqNB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/version.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/version.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/version.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "I4XQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "JZZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Zjij", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "wqNB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setVersion", - "loc": "1:0-42" - }, - { - "moduleId": "wqNB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setVersion", - "loc": "2:0-22" - }, - { - "moduleId": "wqNB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./setVersion", - "loc": "3:0-10" - } - ], - "usedExports": [ - "setVersion" - ], - "providedExports": [ - "setVersion" - ], - "optimizationBailout": [], - "depth": 9, - "source": "// A packages cache that makes sure that we don't inject the same packageName twice in the same bundle -\r\n// this cache is local to the module closure inside this bundle\r\nvar packagesCache = {};\r\nexport function setVersion(packageName, packageVersion) {\r\n if (typeof window !== 'undefined') {\r\n // tslint:disable-next-line:no-any\r\n var packages = (window.__packages__ = window.__packages__ || {});\r\n // We allow either the global packages or local packages caches to invalidate so testing can just clear the global to set this state\r\n if (!packages[packageName] || !packagesCache[packageName]) {\r\n packagesCache[packageName] = packageVersion;\r\n var versions = (packages[packageName] = packages[packageName] || []);\r\n versions.push(packageVersion);\r\n }\r\n }\r\n}\r\n//# sourceMappingURL=setVersion.js.map" - }, - { - "id": "UNi/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseTimes.js", - "name": "./node_modules/lodash/_baseTimes.js", - "index": 498, - "index2": 488, - "size": 504, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "issuerId": "b80T", - "issuerName": "./node_modules/lodash/_arrayLikeKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./_baseTimes", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\nfunction baseTimes(n, iteratee) {\n var index = -1,\n result = Array(n);\n\n while (++index < n) {\n result[index] = iteratee(index);\n }\n return result;\n}\n\nmodule.exports = baseTimes;\n" - }, - { - "id": "UWqr", - "identifier": "external \"@microsoft/sp-core-library\"", - "name": "external \"@microsoft/sp-core-library\"", - "index": 3, - "index2": 2, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "74:0-50" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "534:29-33" - }, - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "14:0-74" - }, - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "19:142-157" - }, - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "19:158-169" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "12:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "14:0-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "16:0-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "22:0-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "22:0-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "26:142-157" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "26:158-169" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "29:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "48:82-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "49:34-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "51:47-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "52:47-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "103:8-11" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "107:8-11" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "108:8-11" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "159:46-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "245:15-22" - } - ], - "usedExports": [ - "DisplayMode", - "Environment", - "EnvironmentType", - "Guid", - "Log", - "Version" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "UlOo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.types.js", - "index": 251, - "index2": 238, - "size": 4835, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "mUw2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/Panel.js" - }, - { - "id": "wF/w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Panel", - "loc": "73:105-114" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.types", - "loc": "3:0-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.types", - "loc": "9:0-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "89:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "92:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "95:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "98:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "101:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "116:502-511" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "119:33-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "119:62-71" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "176:21-30" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "179:21-30" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "184:21-30" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "187:30-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "187:67-76" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "190:41-50" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "190:70-79" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "288:14-23" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.types", - "loc": "3:0-30" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Panel.types", - "loc": "3:0-30" - } - ], - "usedExports": [ - "PanelType" - ], - "providedExports": [ - "PanelType" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * {@docCategory Panel}\n */\nexport var PanelType;\n(function (PanelType) {\n /**\n * Renders the Panel with a `fluid` (full screen) width.\n * Recommended for use on small screen breakpoints.\n * - Small (320-479): full screen width, 16px left/right padding\n * - Medium (480-639): full screen width, 16px left/right padding\n * - Large (640-1023): full screen width, 32px left/right padding\n * - XLarge (1024-1365): full screen width, 32px left/right padding\n * - XXLarge (1366-up): full screen width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFluid\"] = 0] = \"smallFluid\";\n /**\n * Renders the Panel in fixed-width `small` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): 340px width, 16px left/right padding\n * - Large (640-1023): 340px width, 32px left/right padding\n * - XLarge (1024-1365): 340px width, 32px left/right padding\n * - XXLarge (1366-up): 340px width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFixedFar\"] = 1] = \"smallFixedFar\";\n /**\n * Renders the Panel in fixed-width `small` size, anchored to the near side (left in LTR mode).\n * - Small (320-479): 272px width, 16px left/right padding\n * - Medium (480-639): 272px width, 16px left/right padding\n * - Large (640-1023): 272px width, 32px left/right padding\n * - XLarge (1024-1365): 272px width, 32px left/right padding\n * - XXLarge (1366-up): 272px width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFixedNear\"] = 2] = \"smallFixedNear\";\n /**\n * Renders the Panel in `medium` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): 592px width, 32px left/right padding\n * - XLarge (1024-1365): 644px width, 32px left/right padding\n * - XXLarge (1366-up): 644px width, 40px left/right padding\n */\n PanelType[PanelType[\"medium\"] = 3] = \"medium\";\n /**\n * Renders the Panel in `large` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): 48px fixed left margin, fluid width, 32px left/right padding\n * - XXLarge (1366-up): 428px fixed left margin, fluid width, 40px left/right padding\n */\n PanelType[PanelType[\"large\"] = 4] = \"large\";\n /**\n * Renders the Panel in `large` size, anchored to the far side (right in LTR mode), with a fixed width at\n * XX-Large breakpoint.\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): 48px fixed left margin, fluid width, 32px left/right padding\n * - XXLarge (1366-up): 940px width, 40px left/right padding\n */\n PanelType[PanelType[\"largeFixed\"] = 5] = \"largeFixed\";\n /**\n * Renders the Panel in `extra large` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): adapts to `PanelType.large` at this breakpoint\n * - XXLarge (1366-1919): 176px fixed left margin, fluid width, 40px left/right padding\n * - XXXLarge (1920-up): 176px fixed left margin, fluid width, 40px left/right padding\n */\n PanelType[PanelType[\"extraLarge\"] = 6] = \"extraLarge\";\n /**\n * Renders the Panel in `custom` size using `customWidth`, anchored to the far side (right in LTR mode).\n * - Has a fixed width provided by the `customWidth` prop\n * - When screen width reaches the `customWidth` value it will behave like a fluid width Panel\n * taking up 100% of the viewport width\n */\n PanelType[PanelType[\"custom\"] = 7] = \"custom\";\n /**\n * Renders the Panel in `custom` size using `customWidth`, anchored to the near side (left in LTR mode).\n * - Has a fixed width provided by the `customWidth` prop\n * - When screen width reaches the `customWidth` value it will behave like a fluid width Panel\n * taking up 100% of the viewport width\n */\n PanelType[PanelType[\"customNear\"] = 8] = \"customNear\";\n})(PanelType || (PanelType = {}));\n//# sourceMappingURL=Panel.types.js.map" - }, - { - "id": "V6Ve", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nativeKeys.js", - "name": "./node_modules/lodash/_nativeKeys.js", - "index": 514, - "index2": 505, - "size": 204, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "issuerId": "A90E", - "issuerName": "./node_modules/lodash/_baseKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "7GkX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "name": "./node_modules/lodash/keys.js" - }, - { - "id": "A90E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "name": "./node_modules/lodash/_baseKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "A90E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "module": "./node_modules/lodash/_baseKeys.js", - "moduleName": "./node_modules/lodash/_baseKeys.js", - "type": "cjs require", - "userRequest": "./_nativeKeys", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var overArg = require('./_overArg');\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeKeys = overArg(Object.keys, Object);\n\nmodule.exports = nativeKeys;\n" - }, - { - "id": "VCDA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "name": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "index": 37, - "index2": 25, - "size": 3139, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "5:20-34" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony side effect evaluation", - "userRequest": "../GlobalSettings", - "loc": "2:0-51" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony import specifier", - "userRequest": "../GlobalSettings", - "loc": "5:19-33" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GlobalSettings", - "loc": "7:0-33" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GlobalSettings", - "loc": "7:0-33" - } - ], - "usedExports": [ - "GlobalSettings" - ], - "providedExports": [ - "GlobalSettings" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\n/**\n * Storing global state in local module variables has issues when more than one copy\n * if the module gets loaded on the page (due to a bundling error or simply by consuming\n * a prebundled script.)\n *\n * This file contains helpers to deal with the getting and setting local state, and allows\n * callers to get called back when it mutates.\n */\nvar GLOBAL_SETTINGS_PROP_NAME = '__globalSettings__';\nvar CALLBACK_STATE_PROP_NAME = '__callbacks__';\nvar _counter = 0;\n/**\n * Global settings helper, which stores settings in the global (window) namespace.\n * If window is not provided, it will store settings in module scope. Provides a\n * way to observe changes as well when their values change.\n *\n * @public\n * {@docCategory GlobalSettings}\n */\nvar GlobalSettings = /** @class */ (function () {\n function GlobalSettings() {\n }\n GlobalSettings.getValue = function (key, defaultValue) {\n var globalSettings = _getGlobalSettings();\n if (globalSettings[key] === undefined) {\n globalSettings[key] = typeof defaultValue === 'function' ? defaultValue() : defaultValue;\n }\n return globalSettings[key];\n };\n GlobalSettings.setValue = function (key, value) {\n var globalSettings = _getGlobalSettings();\n var callbacks = globalSettings[CALLBACK_STATE_PROP_NAME];\n var oldValue = globalSettings[key];\n if (value !== oldValue) {\n globalSettings[key] = value;\n var changeDescription = {\n oldValue: oldValue,\n value: value,\n key: key,\n };\n for (var id in callbacks) {\n if (callbacks.hasOwnProperty(id)) {\n callbacks[id](changeDescription);\n }\n }\n }\n return value;\n };\n GlobalSettings.addChangeListener = function (cb) {\n // Note: we use generated ids on the callbacks to create a map of the callbacks, which optimizes removal.\n // (It's faster to delete a key than it is to look up the index of an object and splice an array.)\n var id = cb.__id__;\n var callbacks = _getCallbacks();\n if (!id) {\n id = cb.__id__ = String(_counter++);\n }\n callbacks[id] = cb;\n };\n GlobalSettings.removeChangeListener = function (cb) {\n var callbacks = _getCallbacks();\n delete callbacks[cb.__id__];\n };\n return GlobalSettings;\n}());\nexport { GlobalSettings };\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction _getGlobalSettings() {\n var _a;\n var win = getWindow();\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var globalObj = win || {};\n if (!globalObj[GLOBAL_SETTINGS_PROP_NAME]) {\n globalObj[GLOBAL_SETTINGS_PROP_NAME] = (_a = {},\n _a[CALLBACK_STATE_PROP_NAME] = {},\n _a);\n }\n return globalObj[GLOBAL_SETTINGS_PROP_NAME];\n}\nfunction _getCallbacks() {\n var globalSettings = _getGlobalSettings();\n return globalSettings[CALLBACK_STATE_PROP_NAME];\n}\n//# sourceMappingURL=GlobalSettings.js.map" - }, - { - "id": "VOtZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbols.js", - "name": "./node_modules/lodash/_copySymbols.js", - "index": 523, - "index2": 519, - "size": 446, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_copySymbols", - "loc": "8:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var copyObject = require('./_copyObject'),\n getSymbols = require('./_getSymbols');\n\n/**\n * Copies own symbols of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy symbols from.\n * @param {Object} [object={}] The object to copy symbols to.\n * @returns {Object} Returns `object`.\n */\nfunction copySymbols(source, object) {\n return copyObject(source, getSymbols(source), object);\n}\n\nmodule.exports = copySymbols;\n" - }, - { - "id": "VSd+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "index": 861, - "index2": 856, - "size": 582, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "cjs require", - "userRequest": "./PropertyFieldSitePickerHost.module.css", - "loc": "2:0-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldSitePickerHost.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "VaNO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackHas.js", - "name": "./node_modules/lodash/_stackHas.js", - "index": 458, - "index2": 450, - "size": 323, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackHas", - "loc": "5:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Checks if a stack value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Stack\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction stackHas(key) {\n return this.__data__.has(key);\n}\n\nmodule.exports = stackHas;\n" - }, - { - "id": "W+F2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/ICollectionColorFieldProps.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/ICollectionColorFieldProps.js", - "index": 128, - "index2": 119, - "size": 54, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "issuerId": "B2jj", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "B2jj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionColorFieldProps", - "loc": "1:0-45" - }, - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionColorFieldProps", - "loc": "1:0-45" - } - ], - "usedExports": [ - "CollectionColorField" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "//# sourceMappingURL=ICollectionColorFieldProps.js.map" - }, - { - "id": "WDP9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "index": 734, - "index2": 734, - "size": 15698, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/SearchBox", - "loc": "148:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/SearchBox", - "loc": "310:48-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/SearchBox", - "loc": "927:64-73" - }, - { - "moduleId": "Q7R/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SearchBox", - "loc": "1:0-28" - }, - { - "moduleId": "Q7R/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SearchBox", - "loc": "1:0-28" - } - ], - "usedExports": [ - "SearchBox" - ], - "providedExports": [ - "SearchBox" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "index": 735, - "index2": 732, - "size": 7732, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "rR97", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SearchBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/SearchBox.js" - }, - { - "id": "Q7R/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "type": "harmony side effect evaluation", - "userRequest": "./SearchBox.base", - "loc": "2:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "type": "harmony import specifier", - "userRequest": "./SearchBox.base", - "loc": "4:30-43" - }, - { - "moduleId": "Q7R/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SearchBox.base", - "loc": "2:0-33" - }, - { - "moduleId": "Q7R/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SearchBox.base", - "loc": "2:0-33" - } - ], - "usedExports": [ - "SearchBoxBase" - ], - "providedExports": [ - "SearchBoxBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, warnDeprecations, getId, KeyCodes, classNamesFunction, getNativeProps, inputProperties, } from '../../Utilities';\nimport { IconButton } from '../../Button';\nimport { Icon } from '../../Icon';\nvar getClassNames = classNamesFunction();\nvar COMPONENT_NAME = 'SearchBox';\nvar SearchBoxBase = /** @class */ (function (_super) {\n __extends(SearchBoxBase, _super);\n function SearchBoxBase(props) {\n var _this = _super.call(this, props) || this;\n _this._rootElement = React.createRef();\n _this._inputElement = React.createRef();\n _this._onClickFocus = function () {\n var inputElement = _this._inputElement.current;\n if (inputElement) {\n _this.focus();\n inputElement.selectionStart = inputElement.selectionEnd = 0;\n }\n };\n _this._onFocusCapture = function (ev) {\n _this.setState({\n hasFocus: true,\n });\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n };\n _this._onClearClick = function (ev) {\n var clearButtonProps = _this.props.clearButtonProps;\n if (clearButtonProps && clearButtonProps.onClick) {\n clearButtonProps.onClick(ev);\n }\n if (!ev.defaultPrevented) {\n _this._onClear(ev);\n }\n };\n _this._onKeyDown = function (ev) {\n switch (ev.which) {\n case KeyCodes.escape:\n _this.props.onEscape && _this.props.onEscape(ev);\n // Only call onClear if the search box has a value to clear. Otherwise, allow the Esc key\n // to propagate from the empty search box to a parent element such as a dialog, etc.\n if (_this.state.value && !ev.defaultPrevented) {\n _this._onClear(ev);\n }\n break;\n case KeyCodes.enter:\n if (_this.props.onSearch) {\n _this.props.onSearch(_this.state.value);\n ev.preventDefault();\n ev.stopPropagation();\n }\n break;\n default:\n _this.props.onKeyDown && _this.props.onKeyDown(ev);\n if (ev.defaultPrevented) {\n ev.stopPropagation();\n }\n break;\n }\n };\n _this._onBlur = function (ev) {\n _this.setState({\n hasFocus: false,\n });\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n };\n _this._onInputChange = function (ev) {\n var value = ev.target.value;\n if (value === _this._latestValue) {\n return;\n }\n _this._latestValue = value;\n _this.setState({ value: value });\n _this._callOnChange(ev, value);\n };\n initializeComponentRef(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n labelText: 'placeholder',\n defaultValue: 'value',\n });\n _this._latestValue = props.value || '';\n _this._fallbackId = getId(COMPONENT_NAME);\n _this.state = {\n value: _this._latestValue,\n hasFocus: false,\n };\n return _this;\n }\n SearchBoxBase.prototype.UNSAFE_componentWillReceiveProps = function (newProps) {\n if (newProps.value !== undefined) {\n this._latestValue = newProps.value;\n // If the user passes in null, substitute an empty string\n // (passing null is not allowed per typings, but users might do it anyway)\n this.setState({\n value: newProps.value || '',\n });\n }\n };\n SearchBoxBase.prototype.render = function () {\n var _a = this.props, ariaLabel = _a.ariaLabel, placeholder = _a.placeholder, className = _a.className, disabled = _a.disabled, underlined = _a.underlined, styles = _a.styles, \n // eslint-disable-next-line deprecation/deprecation\n labelText = _a.labelText, theme = _a.theme, clearButtonProps = _a.clearButtonProps, disableAnimation = _a.disableAnimation, iconProps = _a.iconProps, role = _a.role, _b = _a.id, id = _b === void 0 ? this._fallbackId : _b;\n var _c = this.state, value = _c.value, hasFocus = _c.hasFocus;\n var placeholderValue = placeholder !== undefined ? placeholder : labelText;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n underlined: underlined,\n hasFocus: hasFocus,\n disabled: disabled,\n hasInput: value.length > 0,\n disableAnimation: disableAnimation,\n });\n var nativeProps = getNativeProps(this.props, inputProperties, [\n 'className',\n 'placeholder',\n 'onFocus',\n 'onBlur',\n 'value',\n 'role',\n ]);\n return (React.createElement(\"div\", { role: role, ref: this._rootElement, className: classNames.root, onFocusCapture: this._onFocusCapture },\n React.createElement(\"div\", { className: classNames.iconContainer, onClick: this._onClickFocus, \"aria-hidden\": true },\n React.createElement(Icon, __assign({ iconName: \"Search\" }, iconProps, { className: classNames.icon }))),\n React.createElement(\"input\", __assign({}, nativeProps, { id: id, className: classNames.field, placeholder: placeholderValue, onChange: this._onInputChange, onInput: this._onInputChange, onBlur: this._onBlur, onKeyDown: this._onKeyDown, value: value, disabled: disabled, role: \"searchbox\", \"aria-label\": ariaLabel, ref: this._inputElement })),\n value.length > 0 && (React.createElement(\"div\", { className: classNames.clearButton },\n React.createElement(IconButton, __assign({ onBlur: this._onBlur, styles: { root: { height: 'auto' }, icon: { fontSize: '12px' } }, iconProps: { iconName: 'Clear' } }, clearButtonProps, { onClick: this._onClearClick }))))));\n };\n /**\n * Sets focus to the search box input field\n */\n SearchBoxBase.prototype.focus = function () {\n if (this._inputElement.current) {\n this._inputElement.current.focus();\n }\n };\n /**\n * Returns whether or not the SearchBox has focus\n */\n SearchBoxBase.prototype.hasFocus = function () {\n return !!this.state.hasFocus;\n };\n SearchBoxBase.prototype._onClear = function (ev) {\n this.props.onClear && this.props.onClear(ev);\n if (!ev.defaultPrevented) {\n this._latestValue = '';\n this.setState({\n value: '',\n });\n this._callOnChange(undefined, '');\n ev.stopPropagation();\n ev.preventDefault();\n this.focus();\n }\n };\n SearchBoxBase.prototype._callOnChange = function (ev, newValue) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, onChange = _a.onChange, onChanged = _a.onChanged;\n // Call @deprecated method.\n if (onChanged) {\n onChanged(newValue);\n }\n if (onChange) {\n onChange(ev, newValue);\n }\n };\n SearchBoxBase.defaultProps = {\n disableAnimation: false,\n clearButtonProps: { ariaLabel: 'Clear text' },\n };\n return SearchBoxBase;\n}(React.Component));\nexport { SearchBoxBase };\n//# sourceMappingURL=SearchBox.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "index": 734, - "index2": 734, - "size": 269, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "issuerId": "Q7R/", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "rR97", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SearchBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/SearchBox.js" - }, - { - "id": "Q7R/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/SearchBox", - "loc": "148:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/SearchBox", - "loc": "310:48-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/SearchBox", - "loc": "927:64-73" - }, - { - "moduleId": "Q7R/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SearchBox", - "loc": "1:0-28" - }, - { - "moduleId": "Q7R/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SearchBox", - "loc": "1:0-28" - } - ], - "usedExports": [ - "SearchBox" - ], - "providedExports": [ - "SearchBox" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { SearchBoxBase } from './SearchBox.base';\nimport { getStyles } from './SearchBox.styles';\nexport var SearchBox = styled(SearchBoxBase, getStyles, undefined, { scope: 'SearchBox' });\n//# sourceMappingURL=SearchBox.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "index": 736, - "index2": 733, - "size": 7632, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "rR97", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SearchBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/SearchBox.js" - }, - { - "id": "Q7R/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "type": "harmony side effect evaluation", - "userRequest": "./SearchBox.styles", - "loc": "3:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "type": "harmony import specifier", - "userRequest": "./SearchBox.styles", - "loc": "4:45-54" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { HighContrastSelector, AnimationVariables, normalize, getPlaceholderStyles, getGlobalClassNames, getInputFocusStyle, } from '../../Styling';\nimport { getRTL } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-SearchBox',\n iconContainer: 'ms-SearchBox-iconContainer',\n icon: 'ms-SearchBox-icon',\n clearButton: 'ms-SearchBox-clearButton',\n field: 'ms-SearchBox-field',\n};\nexport function getStyles(props) {\n var _a, _b, _c, _d;\n var theme = props.theme, underlined = props.underlined, disabled = props.disabled, hasFocus = props.hasFocus, className = props.className, hasInput = props.hasInput, disableAnimation = props.disableAnimation;\n var palette = theme.palette, fonts = theme.fonts, semanticColors = theme.semanticColors, effects = theme.effects;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n // placeholder style constants\n var placeholderStyles = {\n color: semanticColors.inputPlaceholderText,\n opacity: 1,\n };\n var inputIconAlt = palette.neutralSecondary;\n var inputIconAltHovered = palette.neutralPrimary;\n var inputBorderDisabled = palette.neutralLighter;\n var inputBackgroundHovered = palette.neutralLighter;\n var inputBackgroundDisabled = palette.neutralLighter;\n return {\n root: [\n classNames.root,\n fonts.medium,\n normalize,\n {\n color: semanticColors.inputText,\n backgroundColor: semanticColors.inputBackground,\n display: 'flex',\n flexDirection: 'row',\n flexWrap: 'nowrap',\n alignItems: 'stretch',\n // The 1px top and bottom padding ensure the input field does not overlap the border\n padding: '1px 0 1px 4px',\n borderRadius: effects.roundedCorner2,\n border: \"1px solid \" + semanticColors.inputBorder,\n height: 32,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'WindowText',\n },\n _a[':hover'] = {\n borderColor: semanticColors.inputBorderHovered,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _b),\n },\n _a[\":hover .\" + classNames.iconContainer] = {\n color: semanticColors.inputIconHovered,\n },\n _a),\n },\n !hasFocus &&\n hasInput && {\n selectors: (_c = {},\n _c[\":hover .\" + classNames.iconContainer] = {\n width: 4,\n },\n _c[\":hover .\" + classNames.icon] = {\n opacity: 0,\n },\n _c),\n },\n hasFocus && [\n 'is-active',\n {\n position: 'relative',\n },\n getInputFocusStyle(semanticColors.inputFocusBorderAlt, underlined ? 0 : effects.roundedCorner2, underlined ? 'borderBottom' : 'border'),\n ],\n disabled && [\n 'is-disabled',\n {\n borderColor: inputBorderDisabled,\n backgroundColor: inputBackgroundDisabled,\n pointerEvents: 'none',\n cursor: 'default',\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n borderColor: 'GrayText',\n },\n _d),\n },\n ],\n underlined && [\n 'is-underlined',\n {\n borderWidth: '0 0 1px 0',\n borderRadius: 0,\n // Underlined SearchBox has a larger padding left to vertically align with the waffle in product\n padding: '1px 0 1px 8px',\n },\n ],\n underlined &&\n disabled && {\n backgroundColor: 'transparent',\n },\n hasInput && 'can-clear',\n className,\n ],\n iconContainer: [\n classNames.iconContainer,\n {\n display: 'flex',\n flexDirection: 'column',\n justifyContent: 'center',\n flexShrink: 0,\n fontSize: 16,\n width: 32,\n textAlign: 'center',\n color: semanticColors.inputIcon,\n cursor: 'text',\n },\n hasFocus && {\n width: 4,\n },\n disabled && {\n color: semanticColors.inputIconDisabled,\n },\n !disableAnimation && {\n transition: \"width \" + AnimationVariables.durationValue1,\n },\n ],\n icon: [\n classNames.icon,\n {\n opacity: 1,\n },\n hasFocus && {\n opacity: 0,\n },\n !disableAnimation && {\n transition: \"opacity \" + AnimationVariables.durationValue1 + \" 0s\",\n },\n ],\n clearButton: [\n classNames.clearButton,\n {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'stretch',\n cursor: 'pointer',\n flexBasis: '32px',\n flexShrink: 0,\n padding: 0,\n margin: '-1px 0px',\n selectors: {\n '&:hover .ms-Button': {\n backgroundColor: inputBackgroundHovered,\n },\n '&:hover .ms-Button-icon': {\n color: inputIconAltHovered,\n },\n '.ms-Button': {\n borderRadius: getRTL(theme) ? '1px 0 0 1px' : '0 1px 1px 0',\n },\n '.ms-Button-icon': {\n color: inputIconAlt,\n },\n },\n },\n ],\n field: [\n classNames.field,\n normalize,\n getPlaceholderStyles(placeholderStyles),\n {\n backgroundColor: 'transparent',\n border: 'none',\n outline: 'none',\n fontWeight: 'inherit',\n fontFamily: 'inherit',\n fontSize: 'inherit',\n color: semanticColors.inputText,\n flex: '1 1 0px',\n // The default implicit value of 'auto' prevents the input from shrinking. Setting min-width to\n // 0px allows the input element to shrink to fit the container.\n minWidth: '0px',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n // This padding forces the text placement to round up.\n paddingBottom: 0.5,\n // This removes the IE specific clear button in the input since we implimented our own\n selectors: {\n '::-ms-clear': {\n display: 'none',\n },\n },\n },\n disabled && {\n color: semanticColors.disabledText,\n },\n ],\n };\n}\n//# sourceMappingURL=SearchBox.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "WFqU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_freeGlobal.js", - "name": "./node_modules/lodash/_freeGlobal.js", - "index": 467, - "index2": 451, - "size": 173, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_root.js", - "issuerId": "Kz5y", - "issuerName": "./node_modules/lodash/_root.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js" - }, - { - "id": "nmnc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Symbol.js", - "name": "./node_modules/lodash/_Symbol.js" - }, - { - "id": "Kz5y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_root.js", - "name": "./node_modules/lodash/_root.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Kz5y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_root.js", - "module": "./node_modules/lodash/_root.js", - "moduleName": "./node_modules/lodash/_root.js", - "type": "cjs require", - "userRequest": "./_freeGlobal", - "loc": "1:17-41" - }, - { - "moduleId": "mdPL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nodeUtil.js", - "module": "./node_modules/lodash/_nodeUtil.js", - "moduleName": "./node_modules/lodash/_nodeUtil.js", - "type": "cjs require", - "userRequest": "./_freeGlobal", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\n\nmodule.exports = freeGlobal;\n" - }, - { - "id": "WJ1O", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "name": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "index": 102, - "index2": 92, - "size": 1242, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "32:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "35:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "35:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "41:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "56:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "66:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "71:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "76:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "80:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "92:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "98:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "101:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "103:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "118:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "120:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "186:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "280:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "304:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "322:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "370:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "424:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "496:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "516:8-30" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:8-30" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:8-30" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "253:8-30" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "168:8-30" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "130:8-30" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "12:8-30" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "15:8-30" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "13:8-30" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "68:8-30" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "207:8-30" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "15:8-30" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:8-30" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "231:8-30" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "12:8-30" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:8-30" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "203:8-30" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "55:8-30" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:8-30" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "119:8-30" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "140:8-30" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "111:8-30" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "233:8-30" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "73:8-30" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:8-30" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "43:8-30" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "390:8-30" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "198:8-30" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "71:8-30" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "166:8-30" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "22:8-30" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:8-30" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:8-30" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "182:8-30" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./initializeComponentRef", - "loc": "33:0-41" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./initializeComponentRef", - "loc": "33:0-41" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "128:8-30" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:8-30" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "50:8-30" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "140:8-30" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "13:8-30" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "684:8-30" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "99:8-30" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "65:8-30" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "84:8-30" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "28:8-30" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "60:8-30" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "12:8-30" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:8-30" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "68:8-30" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "13:8-30" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:8-30" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "135:8-30" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "15:8-30" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:8-30" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "18:8-30" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "41:8-30" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:8-30" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:8-30" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:8-30" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:8-30" - } - ], - "usedExports": [ - "initializeComponentRef" - ], - "providedExports": [ - "initializeComponentRef" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { extendComponent } from './extendComponent';\n/**\n * Helper to manage componentRef resolution. Internally appends logic to\n * lifetime methods to resolve componentRef to the passed in object.\n *\n * Usage: call initializeComponentRef(this) in the constructor,\n */\nexport function initializeComponentRef(obj) {\n extendComponent(obj, {\n componentDidMount: _onMount,\n componentDidUpdate: _onUpdate,\n componentWillUnmount: _onUnmount,\n });\n}\nfunction _onMount() {\n _setComponentRef(this.props.componentRef, this);\n}\nfunction _onUpdate(prevProps) {\n if (prevProps.componentRef !== this.props.componentRef) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n _setComponentRef(prevProps.componentRef, null);\n _setComponentRef(this.props.componentRef, this);\n }\n}\nfunction _onUnmount() {\n _setComponentRef(this.props.componentRef, null);\n}\nfunction _setComponentRef(componentRef, value) {\n if (componentRef) {\n if (typeof componentRef === 'object') {\n componentRef.current = value;\n }\n else if (typeof componentRef === 'function') {\n componentRef(value);\n }\n }\n}\n//# sourceMappingURL=initializeComponentRef.js.map" - }, - { - "id": "WOvX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "name": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "index": 32, - "index2": 30, - "size": 3995, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:18-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:29-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:29-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:32-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:18-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "44:29-35" - }, - { - "moduleId": "/Mmo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:33-39" - }, - { - "moduleId": "08vz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:33-39" - }, - { - "moduleId": "0s40", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:26-32" - }, - { - "moduleId": "1R2D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:31-37" - }, - { - "moduleId": "1ptM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "module": "./node_modules/@uifabric/foundation/lib/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "5:0-61" - }, - { - "moduleId": "2a+Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "25:23-29" - }, - { - "moduleId": "5YQ7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "62r0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:24-30" - }, - { - "moduleId": "78K9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "7XQV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": "7c8E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": "8X3N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:19-25" - }, - { - "moduleId": "9BiO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:0-6" - }, - { - "moduleId": "9DMD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "AudO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:34-40" - }, - { - "moduleId": "D5CM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:31-37" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "30:30-36" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "19:40-46" - }, - { - "moduleId": "II1S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "JwHi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": "LDcz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:17-23" - }, - { - "moduleId": "Lk5B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "13:28-34" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "18:31-37" - }, - { - "moduleId": "OEkS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:32-38" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:11-17" - }, - { - "moduleId": "Svtm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:33-39" - }, - { - "moduleId": "Ypxj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./styled", - "loc": "56:0-25" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./styled", - "loc": "56:0-25" - }, - { - "moduleId": "aXXY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": "ayV1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:30-36" - }, - { - "moduleId": "cSUL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:34-40" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "21:21-27" - }, - { - "moduleId": "gNJI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:31-37" - }, - { - "moduleId": "gh1x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": "hrfb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": "kL4D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": "lMOM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": "mUnp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:33-39" - }, - { - "moduleId": "oJku", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:24-30" - }, - { - "moduleId": "oave", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": "sGVl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:26-32" - }, - { - "moduleId": "ulwq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "100:32-38" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "103:33-39" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "106:30-36" - }, - { - "moduleId": "xDyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:31-37" - }, - { - "moduleId": "y19T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "ypaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:31-37" - }, - { - "moduleId": "ytt/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:35-41" - } - ], - "usedExports": [ - "styled" - ], - "providedExports": [ - "styled" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/Customizations.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/useCustomizationSettings.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/useCustomizationSettings.js", - "index": 34, - "index2": 27, - "size": 1250, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/useCustomizationSettings", - "loc": "4:0-85" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony import specifier", - "userRequest": "./customizations/useCustomizationSettings", - "loc": "11:23-47" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/useCustomizationSettings", - "loc": "23:0-58" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/useCustomizationSettings", - "loc": "23:0-58" - } - ], - "usedExports": [ - "useCustomizationSettings" - ], - "providedExports": [ - "useCustomizationSettings" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as React from 'react';\nimport { Customizations } from './Customizations';\nimport { CustomizerContext } from './CustomizerContext';\n/**\n * Hook to get Customizations settings from Customizations singleton or CustomizerContext.\n * It will trigger component state update on settings change observed.\n */\nexport function useCustomizationSettings(properties, scopeName) {\n var forceUpdate = useForceUpdate();\n var customizations = React.useContext(CustomizerContext).customizations;\n var inCustomizerContext = customizations.inCustomizerContext;\n React.useEffect(function () {\n if (!inCustomizerContext) {\n Customizations.observe(forceUpdate);\n }\n return function () {\n if (!inCustomizerContext) {\n Customizations.unobserve(forceUpdate);\n }\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps -- exclude forceUpdate\n }, [inCustomizerContext]);\n return Customizations.getSettings(properties, scopeName, customizations);\n}\nfunction useForceUpdate() {\n var _a = React.useState(0), setValue = _a[1];\n return function () { return setValue(function (value) { return ++value; }); };\n}\n//# sourceMappingURL=useCustomizationSettings.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js", - "name": "./node_modules/@uifabric/utilities/lib/styled.js", - "index": 32, - "index2": 30, - "size": 2720, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:18-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:29-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:29-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:32-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:18-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "44:29-35" - }, - { - "moduleId": "/Mmo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:33-39" - }, - { - "moduleId": "08vz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:33-39" - }, - { - "moduleId": "0s40", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:26-32" - }, - { - "moduleId": "1R2D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:31-37" - }, - { - "moduleId": "1ptM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "module": "./node_modules/@uifabric/foundation/lib/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "5:0-61" - }, - { - "moduleId": "2a+Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "25:23-29" - }, - { - "moduleId": "5YQ7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "62r0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:24-30" - }, - { - "moduleId": "78K9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "7XQV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": "7c8E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": "8X3N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:19-25" - }, - { - "moduleId": "9BiO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:0-6" - }, - { - "moduleId": "9DMD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "AudO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:34-40" - }, - { - "moduleId": "D5CM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:31-37" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "30:30-36" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "19:40-46" - }, - { - "moduleId": "II1S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "JwHi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": "LDcz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:17-23" - }, - { - "moduleId": "Lk5B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "13:28-34" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "18:31-37" - }, - { - "moduleId": "OEkS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:32-38" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:11-17" - }, - { - "moduleId": "Svtm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:33-39" - }, - { - "moduleId": "Ypxj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./styled", - "loc": "56:0-25" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./styled", - "loc": "56:0-25" - }, - { - "moduleId": "aXXY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": "ayV1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:30-36" - }, - { - "moduleId": "cSUL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:34-40" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "21:21-27" - }, - { - "moduleId": "gNJI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:31-37" - }, - { - "moduleId": "gh1x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": "hrfb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": "kL4D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:24-30" - }, - { - "moduleId": "lMOM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": "mUnp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:33-39" - }, - { - "moduleId": "oJku", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:24-30" - }, - { - "moduleId": "oave", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:25-31" - }, - { - "moduleId": "sGVl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:26-32" - }, - { - "moduleId": "ulwq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "100:32-38" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "103:33-39" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "106:30-36" - }, - { - "moduleId": "xDyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:31-37" - }, - { - "moduleId": "y19T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:23-29" - }, - { - "moduleId": "ypaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:31-37" - }, - { - "moduleId": "ytt/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:35-41" - } - ], - "usedExports": [ - "styled" - ], - "providedExports": [ - "styled" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { concatStyleSetsWithProps } from '@uifabric/merge-styles';\nimport { useCustomizationSettings } from './customizations/useCustomizationSettings';\nvar DefaultFields = ['theme', 'styles'];\nexport function styled(Component, baseStyles, getProps, customizable, pure) {\n customizable = customizable || { scope: '', fields: undefined };\n var scope = customizable.scope, _a = customizable.fields, fields = _a === void 0 ? DefaultFields : _a;\n var Wrapped = React.forwardRef(function (props, forwardedRef) {\n var styles = React.useRef();\n var settings = useCustomizationSettings(fields, scope);\n var customizedStyles = settings.styles, dir = settings.dir, rest = __rest(settings, [\"styles\", \"dir\"]);\n var additionalProps = getProps ? getProps(props) : undefined;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var cache = (styles.current && styles.current.__cachedInputs__) || [];\n if (!styles.current || customizedStyles !== cache[1] || props.styles !== cache[2]) {\n // Using styled components as the Component arg will result in nested styling arrays.\n var concatenatedStyles = function (styleProps) {\n return concatStyleSetsWithProps(styleProps, baseStyles, customizedStyles, props.styles);\n };\n // The __cachedInputs__ array is attached to the function and consumed by the\n // classNamesFunction as a list of keys to include for memoizing classnames.\n concatenatedStyles.__cachedInputs__ = [\n baseStyles,\n customizedStyles,\n props.styles,\n ];\n concatenatedStyles.__noStyleOverride__ =\n !customizedStyles && !props.styles;\n styles.current = concatenatedStyles;\n }\n return React.createElement(Component, __assign({ ref: forwardedRef }, rest, additionalProps, props, { styles: styles.current }));\n });\n // Function.prototype.name is an ES6 feature, so the cast to any is required until we're\n // able to drop IE 11 support and compile with ES6 libs\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Wrapped.displayName = \"Styled\" + (Component.displayName || Component.name);\n // This preserves backwards compatibility.\n var pureComponent = pure ? React.memo(Wrapped) : Wrapped;\n // Check if the wrapper has a displayName after it has been memoized. Then assign it to the pure component.\n if (Wrapped.displayName) {\n pureComponent.displayName = Wrapped.displayName;\n }\n return pureComponent;\n}\n//# sourceMappingURL=styled.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "WbBG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/lib/ReactPropTypesSecret.js", - "name": "./node_modules/prop-types/lib/ReactPropTypesSecret.js", - "index": 353, - "index2": 348, - "size": 314, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/factoryWithThrowingShims.js", - "issuerId": "16Al", - "issuerName": "./node_modules/prop-types/factoryWithThrowingShims.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - }, - { - "id": "17x9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "name": "./node_modules/prop-types/index.js" - }, - { - "id": "16Al", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/factoryWithThrowingShims.js", - "name": "./node_modules/prop-types/factoryWithThrowingShims.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "16Al", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/factoryWithThrowingShims.js", - "module": "./node_modules/prop-types/factoryWithThrowingShims.js", - "moduleName": "./node_modules/prop-types/factoryWithThrowingShims.js", - "type": "cjs require", - "userRequest": "./lib/ReactPropTypesSecret", - "loc": "10:27-64" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n" - }, - { - "id": "WgWP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "name": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "index": 134, - "index2": 127, - "size": 15582, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "51:22-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "52:22-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "58:24-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "71:43-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "73:72-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "129:30-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "132:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "172:25-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "173:44-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "208:39-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "217:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "218:21-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "234:22-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "235:22-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "269:47-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "281:47-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "362:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "399:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "405:45-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "418:41-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "473:16-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "479:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "491:37-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "523:20-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "535:59-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "571:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "618:12-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "623:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "652:18-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "653:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "683:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "686:41-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "847:18-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "848:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "890:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "892:37-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "919:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "941:36-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "947:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "952:20-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1027:43-58" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "56:16-39" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "51:16-31" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "156:28-43" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./focus", - "loc": "28:0-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./focus", - "loc": "28:0-24" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "73:20-30" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "105:33-48" - } - ], - "usedExports": [ - "doesElementContainFocus", - "focusAsync", - "focusFirstChild", - "getElementIndexPath", - "getFirstFocusable", - "getFirstTabbable", - "getFocusableByIndexPath", - "getLastFocusable", - "getLastTabbable", - "getNextElement", - "getPreviousElement", - "isElementFocusSubZone", - "isElementFocusZone", - "isElementTabbable", - "shouldWrapFocus" - ], - "providedExports": [ - "getFirstFocusable", - "getLastFocusable", - "getFirstTabbable", - "getLastTabbable", - "focusFirstChild", - "getPreviousElement", - "getNextElement", - "isElementVisible", - "isElementTabbable", - "isElementFocusZone", - "isElementFocusSubZone", - "doesElementContainFocus", - "shouldWrapFocus", - "focusAsync", - "getFocusableByIndexPath", - "getElementIndexPath" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/elementContains.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/getParent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js", - "name": "./node_modules/@uifabric/utilities/lib/focus.js", - "index": 134, - "index2": 127, - "size": 14946, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "51:22-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "52:22-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "58:24-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "71:43-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "73:72-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "129:30-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "132:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "172:25-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "173:44-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "208:39-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "217:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "218:21-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "234:22-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "235:22-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "269:47-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "281:47-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "362:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "399:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "405:45-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "418:41-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "473:16-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "479:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "491:37-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "523:20-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "535:59-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "571:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "618:12-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "623:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "652:18-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "653:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "683:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "686:41-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "847:18-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "848:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "890:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "892:37-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "919:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "941:36-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "947:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "952:20-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1027:43-58" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "56:16-39" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "51:16-31" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "156:28-43" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./focus", - "loc": "28:0-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./focus", - "loc": "28:0-24" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "73:20-30" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "105:33-48" - } - ], - "usedExports": [ - "doesElementContainFocus", - "focusAsync", - "focusFirstChild", - "getElementIndexPath", - "getFirstFocusable", - "getFirstTabbable", - "getFocusableByIndexPath", - "getLastFocusable", - "getLastTabbable", - "getNextElement", - "getPreviousElement", - "isElementFocusSubZone", - "isElementFocusZone", - "isElementTabbable", - "shouldWrapFocus" - ], - "providedExports": [ - "getFirstFocusable", - "getLastFocusable", - "getFirstTabbable", - "getLastTabbable", - "focusFirstChild", - "getPreviousElement", - "getNextElement", - "isElementVisible", - "isElementTabbable", - "isElementFocusZone", - "isElementFocusSubZone", - "doesElementContainFocus", - "shouldWrapFocus", - "focusAsync", - "getFocusableByIndexPath", - "getElementIndexPath" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { elementContainsAttribute } from './dom/elementContainsAttribute';\nimport { elementContains } from './dom/elementContains';\nimport { getParent } from './dom/getParent';\nimport { getWindow } from './dom/getWindow';\nimport { getDocument } from './dom/getDocument';\nvar IS_FOCUSABLE_ATTRIBUTE = 'data-is-focusable';\nvar IS_VISIBLE_ATTRIBUTE = 'data-is-visible';\nvar FOCUSZONE_ID_ATTRIBUTE = 'data-focuszone-id';\nvar FOCUSZONE_SUB_ATTRIBUTE = 'data-is-sub-focuszone';\n/**\n * Gets the first focusable element.\n *\n * @public\n */\nexport function getFirstFocusable(rootElement, currentElement, includeElementsInFocusZones) {\n return getNextElement(rootElement, currentElement, true /*checkNode*/, false /*suppressParentTraversal*/, false /*suppressChildTraversal*/, includeElementsInFocusZones);\n}\n/**\n * Gets the last focusable element.\n *\n * @public\n */\nexport function getLastFocusable(rootElement, currentElement, includeElementsInFocusZones) {\n return getPreviousElement(rootElement, currentElement, true /*checkNode*/, false /*suppressParentTraversal*/, true /*traverseChildren*/, includeElementsInFocusZones);\n}\n/**\n * Gets the first tabbable element. (The difference between focusable and tabbable is that tabbable elements are\n * focusable elements that also have tabIndex != -1.)\n * @param rootElement - The parent element to search beneath.\n * @param currentElement - The descendant of rootElement to start the search at. This element is the first one checked,\n * and iteration continues forward. Typical use passes rootElement.firstChild.\n * @param includeElementsInFocusZones - true if traversal should go into FocusZone descendants.\n * @param checkNode - Include currentElement in search when true. Defaults to true.\n * @public\n */\nexport function getFirstTabbable(rootElement, currentElement, includeElementsInFocusZones, checkNode) {\n if (checkNode === void 0) { checkNode = true; }\n return getNextElement(rootElement, currentElement, checkNode, false /*suppressParentTraversal*/, false /*suppressChildTraversal*/, includeElementsInFocusZones, false /*allowFocusRoot*/, true /*tabbable*/);\n}\n/**\n * Gets the last tabbable element. (The difference between focusable and tabbable is that tabbable elements are\n * focusable elements that also have tabIndex != -1.)\n * @param rootElement - The parent element to search beneath.\n * @param currentElement - The descendant of rootElement to start the search at. This element is the first one checked,\n * and iteration continues in reverse. Typical use passes rootElement.lastChild.\n * @param includeElementsInFocusZones - true if traversal should go into FocusZone descendants.\n * @param checkNode - Include currentElement in search when true. Defaults to true.\n * @public\n */\nexport function getLastTabbable(rootElement, currentElement, includeElementsInFocusZones, checkNode) {\n if (checkNode === void 0) { checkNode = true; }\n return getPreviousElement(rootElement, currentElement, checkNode, false /*suppressParentTraversal*/, true /*traverseChildren*/, includeElementsInFocusZones, false /*allowFocusRoot*/, true /*tabbable*/);\n}\n/**\n * Attempts to focus the first focusable element that is a child or child's child of the rootElement.\n *\n * @public\n * @param rootElement - Element to start the search for a focusable child.\n * @returns True if focus was set, false if it was not.\n */\nexport function focusFirstChild(rootElement) {\n var element = getNextElement(rootElement, rootElement, true, false, false, true);\n if (element) {\n focusAsync(element);\n return true;\n }\n return false;\n}\n/**\n * Traverse to find the previous element.\n * If tabbable is true, the element must have tabIndex != -1.\n *\n * @public\n */\nexport function getPreviousElement(rootElement, currentElement, checkNode, suppressParentTraversal, traverseChildren, includeElementsInFocusZones, allowFocusRoot, tabbable) {\n if (!currentElement || (!allowFocusRoot && currentElement === rootElement)) {\n return null;\n }\n var isCurrentElementVisible = isElementVisible(currentElement);\n // Check its children.\n if (traverseChildren &&\n isCurrentElementVisible &&\n (includeElementsInFocusZones || !(isElementFocusZone(currentElement) || isElementFocusSubZone(currentElement)))) {\n var childMatch = getPreviousElement(rootElement, currentElement.lastElementChild, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (childMatch) {\n if ((tabbable && isElementTabbable(childMatch, true)) || !tabbable) {\n return childMatch;\n }\n var childMatchSiblingMatch = getPreviousElement(rootElement, childMatch.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (childMatchSiblingMatch) {\n return childMatchSiblingMatch;\n }\n var childMatchParent = childMatch.parentElement;\n // At this point if we have not found any potential matches\n // start looking at the rest of the subtree under the currentParent.\n // NOTE: We do not want to recurse here because doing so could\n // cause elements to get skipped.\n while (childMatchParent && childMatchParent !== currentElement) {\n var childMatchParentMatch = getPreviousElement(rootElement, childMatchParent.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (childMatchParentMatch) {\n return childMatchParentMatch;\n }\n childMatchParent = childMatchParent.parentElement;\n }\n }\n }\n // Check the current node, if it's not the first traversal.\n if (checkNode && isCurrentElementVisible && isElementTabbable(currentElement, tabbable)) {\n return currentElement;\n }\n // Check its previous sibling.\n var siblingMatch = getPreviousElement(rootElement, currentElement.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (siblingMatch) {\n return siblingMatch;\n }\n // Check its parent.\n if (!suppressParentTraversal) {\n return getPreviousElement(rootElement, currentElement.parentElement, true, false, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\n }\n return null;\n}\n/**\n * Traverse to find the next focusable element.\n * If tabbable is true, the element must have tabIndex != -1.\n *\n * @public\n * @param checkNode - Include currentElement in search when true.\n */\nexport function getNextElement(rootElement, currentElement, checkNode, suppressParentTraversal, suppressChildTraversal, includeElementsInFocusZones, allowFocusRoot, tabbable) {\n if (!currentElement || (currentElement === rootElement && suppressChildTraversal && !allowFocusRoot)) {\n return null;\n }\n var isCurrentElementVisible = isElementVisible(currentElement);\n // Check the current node, if it's not the first traversal.\n if (checkNode && isCurrentElementVisible && isElementTabbable(currentElement, tabbable)) {\n return currentElement;\n }\n // Check its children.\n if (!suppressChildTraversal &&\n isCurrentElementVisible &&\n (includeElementsInFocusZones || !(isElementFocusZone(currentElement) || isElementFocusSubZone(currentElement)))) {\n var childMatch = getNextElement(rootElement, currentElement.firstElementChild, true, true, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (childMatch) {\n return childMatch;\n }\n }\n if (currentElement === rootElement) {\n return null;\n }\n // Check its sibling.\n var siblingMatch = getNextElement(rootElement, currentElement.nextElementSibling, true, true, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (siblingMatch) {\n return siblingMatch;\n }\n if (!suppressParentTraversal) {\n return getNextElement(rootElement, currentElement.parentElement, false, false, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n }\n return null;\n}\n/**\n * Determines if an element is visible.\n *\n * @public\n */\nexport function isElementVisible(element) {\n // If the element is not valid, return false.\n if (!element || !element.getAttribute) {\n return false;\n }\n var visibilityAttribute = element.getAttribute(IS_VISIBLE_ATTRIBUTE);\n // If the element is explicitly marked with the visibility attribute, return that value as boolean.\n if (visibilityAttribute !== null && visibilityAttribute !== undefined) {\n return visibilityAttribute === 'true';\n }\n // Fallback to other methods of determining actual visibility.\n return (element.offsetHeight !== 0 ||\n element.offsetParent !== null ||\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n element.isVisible === true); // used as a workaround for testing.\n}\n/**\n * Determines if an element can receive focus programmatically or via a mouse click.\n * If checkTabIndex is true, additionally checks to ensure the element can be focused with the tab key,\n * meaning tabIndex != -1.\n *\n * @public\n */\nexport function isElementTabbable(element, checkTabIndex) {\n // If this element is null or is disabled, it is not considered tabbable.\n if (!element || element.disabled) {\n return false;\n }\n var tabIndex = 0;\n var tabIndexAttributeValue = null;\n if (element && element.getAttribute) {\n tabIndexAttributeValue = element.getAttribute('tabIndex');\n if (tabIndexAttributeValue) {\n tabIndex = parseInt(tabIndexAttributeValue, 10);\n }\n }\n var isFocusableAttribute = element.getAttribute ? element.getAttribute(IS_FOCUSABLE_ATTRIBUTE) : null;\n var isTabIndexSet = tabIndexAttributeValue !== null && tabIndex >= 0;\n var result = !!element &&\n isFocusableAttribute !== 'false' &&\n (element.tagName === 'A' ||\n element.tagName === 'BUTTON' ||\n element.tagName === 'INPUT' ||\n element.tagName === 'TEXTAREA' ||\n element.tagName === 'SELECT' ||\n isFocusableAttribute === 'true' ||\n isTabIndexSet);\n return checkTabIndex ? tabIndex !== -1 && result : result;\n}\n/**\n * Determines if a given element is a focus zone.\n *\n * @public\n */\nexport function isElementFocusZone(element) {\n return !!(element && element.getAttribute && !!element.getAttribute(FOCUSZONE_ID_ATTRIBUTE));\n}\n/**\n * Determines if a given element is a focus sub zone.\n *\n * @public\n */\nexport function isElementFocusSubZone(element) {\n return !!(element && element.getAttribute && element.getAttribute(FOCUSZONE_SUB_ATTRIBUTE) === 'true');\n}\n/**\n * Determines if an element, or any of its children, contain focus.\n *\n * @public\n */\nexport function doesElementContainFocus(element) {\n var document = getDocument(element);\n var currentActiveElement = document && document.activeElement;\n if (currentActiveElement && elementContains(element, currentActiveElement)) {\n return true;\n }\n return false;\n}\n/**\n * Determines if an, or any of its ancestors, sepcificies that it doesn't want focus to wrap\n * @param element - element to start searching from\n * @param noWrapDataAttribute - the no wrap data attribute to match (either)\n * @returns true if focus should wrap, false otherwise\n */\nexport function shouldWrapFocus(element, noWrapDataAttribute) {\n return elementContainsAttribute(element, noWrapDataAttribute) === 'true' ? false : true;\n}\nvar targetToFocusOnNextRepaint = undefined;\n/**\n * Sets focus to an element asynchronously. The focus will be set at the next browser repaint,\n * meaning it won't cause any extra recalculations. If more than one focusAsync is called during one frame,\n * only the latest called focusAsync element will actually be focused\n * @param element - The element to focus\n */\nexport function focusAsync(element) {\n if (element) {\n // An element was already queued to be focused, so replace that one with the new element\n if (targetToFocusOnNextRepaint) {\n targetToFocusOnNextRepaint = element;\n return;\n }\n targetToFocusOnNextRepaint = element;\n var win = getWindow(element);\n if (win) {\n // element.focus() is a no-op if the element is no longer in the DOM, meaning this is always safe\n win.requestAnimationFrame(function () {\n var focusableElement = targetToFocusOnNextRepaint;\n // We are done focusing for this frame, so reset the queued focus element\n targetToFocusOnNextRepaint = undefined;\n if (focusableElement) {\n if (focusableElement.getAttribute && focusableElement.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true') {\n // Normally, a FocusZone would be responsible for setting the tabindex values on all its descendants.\n // However, even this animation frame callback can pre-empt the rendering of a FocusZone's child elements,\n // so it may be necessary to set the tabindex directly here.\n if (!focusableElement.getAttribute('tabindex')) {\n focusableElement.setAttribute('tabindex', '0');\n }\n }\n focusableElement.focus();\n }\n });\n }\n }\n}\n/**\n * Finds the closest focusable element via an index path from a parent. See\n * `getElementIndexPath` for getting an index path from an element to a child.\n */\nexport function getFocusableByIndexPath(parent, path) {\n var element = parent;\n for (var _i = 0, path_1 = path; _i < path_1.length; _i++) {\n var index = path_1[_i];\n var nextChild = element.children[Math.min(index, element.children.length - 1)];\n if (!nextChild) {\n break;\n }\n element = nextChild;\n }\n element =\n isElementTabbable(element) && isElementVisible(element)\n ? element\n : getNextElement(parent, element, true) || getPreviousElement(parent, element);\n return element;\n}\n/**\n * Finds the element index path from a parent element to a child element.\n *\n * If you had this node structure: \"A has children [B, C] and C has child D\",\n * the index path from A to D would be [1, 0], or `parent.chidren[1].children[0]`.\n */\nexport function getElementIndexPath(fromElement, toElement) {\n var path = [];\n while (toElement && fromElement && toElement !== fromElement) {\n var parent_1 = getParent(toElement, true);\n if (parent_1 === null) {\n return [];\n }\n path.unshift(Array.prototype.indexOf.call(parent_1.children, toElement));\n toElement = parent_1;\n }\n return path;\n}\n//# sourceMappingURL=focus.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/elementContainsAttribute.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/elementContainsAttribute.js", - "index": 139, - "index2": 126, - "size": 611, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./dom/elementContainsAttribute", - "loc": "250:11-35" - }, - { - "moduleId": "MP0q", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-67" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./elementContainsAttribute", - "loc": "2:0-43" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./elementContainsAttribute", - "loc": "2:0-43" - } - ], - "usedExports": [ - "elementContainsAttribute" - ], - "providedExports": [ - "elementContainsAttribute" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { findElementRecursive } from './findElementRecursive';\n/**\n * Determines if an element, or any of its ancestors, contain the given attribute\n * @param element - element to start searching at\n * @param attribute - the attribute to search for\n * @returns the value of the first instance found\n */\nexport function elementContainsAttribute(element, attribute) {\n var elementMatch = findElementRecursive(element, function (testElement) { return testElement.hasAttribute(attribute); });\n return elementMatch && elementMatch.getAttribute(attribute);\n}\n//# sourceMappingURL=elementContainsAttribute.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "WwFo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssign.js", - "name": "./node_modules/lodash/_baseAssign.js", - "index": 494, - "index2": 509, - "size": 470, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_baseAssign", - "loc": "4:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var copyObject = require('./_copyObject'),\n keys = require('./keys');\n\n/**\n * The base implementation of `_.assign` without support for multiple sources\n * or `customizer` functions.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @returns {Object} Returns `object`.\n */\nfunction baseAssign(object, source) {\n return object && copyObject(source, keys(source), object);\n}\n\nmodule.exports = baseAssign;\n" - }, - { - "id": "XGnz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "name": "./node_modules/lodash/_baseFlatten.js", - "index": 571, - "index2": 564, - "size": 1201, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/flatten.js", - "issuerId": "TYy9", - "issuerName": "./node_modules/lodash/flatten.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "TYy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/flatten.js", - "name": "./node_modules/lodash/flatten.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TYy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/flatten.js", - "module": "./node_modules/lodash/flatten.js", - "moduleName": "./node_modules/lodash/flatten.js", - "type": "cjs require", - "userRequest": "./_baseFlatten", - "loc": "1:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var arrayPush = require('./_arrayPush'),\n isFlattenable = require('./_isFlattenable');\n\n/**\n * The base implementation of `_.flatten` with support for restricting flattening.\n *\n * @private\n * @param {Array} array The array to flatten.\n * @param {number} depth The maximum recursion depth.\n * @param {boolean} [predicate=isFlattenable] The function invoked per iteration.\n * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.\n * @param {Array} [result=[]] The initial result value.\n * @returns {Array} Returns the new flattened array.\n */\nfunction baseFlatten(array, depth, predicate, isStrict, result) {\n var index = -1,\n length = array.length;\n\n predicate || (predicate = isFlattenable);\n result || (result = []);\n\n while (++index < length) {\n var value = array[index];\n if (depth > 0 && predicate(value)) {\n if (depth > 1) {\n // Recursively flatten arrays (susceptible to call stack limits).\n baseFlatten(value, depth - 1, predicate, isStrict, result);\n } else {\n arrayPush(result, value);\n }\n } else if (!isStrict) {\n result[result.length] = value;\n }\n }\n return result;\n}\n\nmodule.exports = baseFlatten;\n" - }, - { - "id": "XIMn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "index": 149, - "index2": 153, - "size": 20485, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "13:69-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "218:36-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "293:40-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "506:45-50" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "229:36-41" - }, - { - "moduleId": "Lucz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer", - "loc": "1:0-24" - }, - { - "moduleId": "Lucz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Layer", - "loc": "1:0-24" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Layer", - "loc": "134:69-74" - } - ], - "usedExports": [ - "Layer" - ], - "providedExports": [ - "Layer" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/setPortalAttribute.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/Customizations.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/customizable.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/useFocusRects.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"react-dom\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/mergeSettings.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/mergeSettings.js", - "index": 158, - "index2": 141, - "size": 1748, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeSettings", - "loc": "1:0-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "type": "harmony import specifier", - "userRequest": "./mergeSettings", - "loc": "13:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "type": "harmony import specifier", - "userRequest": "./mergeSettings", - "loc": "14:28-47" - }, - { - "moduleId": "IBIL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/scheme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/scheme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/scheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "35:26-39" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/mergeSettings", - "loc": "25:0-47" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/mergeSettings", - "loc": "25:0-47" - } - ], - "usedExports": [ - "mergeSettings", - "mergeScopedSettings" - ], - "providedExports": [ - "mergeSettings", - "mergeScopedSettings" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\n/**\n * Merge new and old settings, giving priority to new settings.\n * New settings is optional in which case oldSettings is returned as-is.\n * @param oldSettings - Old settings to fall back to.\n * @param newSettings - New settings that will be merged over oldSettings.\n * @returns Merged settings.\n */\nexport function mergeSettings(oldSettings, newSettings) {\n if (oldSettings === void 0) { oldSettings = {}; }\n var mergeSettingsWith = _isSettingsFunction(newSettings) ? newSettings : _settingsMergeWith(newSettings);\n return mergeSettingsWith(oldSettings);\n}\nexport function mergeScopedSettings(oldSettings, newSettings) {\n if (oldSettings === void 0) { oldSettings = {}; }\n var mergeSettingsWith = _isSettingsFunction(newSettings) ? newSettings : _scopedSettingsMergeWith(newSettings);\n return mergeSettingsWith(oldSettings);\n}\nfunction _isSettingsFunction(settings) {\n return typeof settings === 'function';\n}\nfunction _settingsMergeWith(newSettings) {\n return function (settings) { return (newSettings ? __assign(__assign({}, settings), newSettings) : settings); };\n}\nfunction _scopedSettingsMergeWith(scopedSettingsFromProps) {\n if (scopedSettingsFromProps === void 0) { scopedSettingsFromProps = {}; }\n return function (oldScopedSettings) {\n var newScopedSettings = __assign({}, oldScopedSettings);\n for (var scopeName in scopedSettingsFromProps) {\n if (scopedSettingsFromProps.hasOwnProperty(scopeName)) {\n newScopedSettings[scopeName] = __assign(__assign({}, oldScopedSettings[scopeName]), scopedSettingsFromProps[scopeName]);\n }\n }\n return newScopedSettings;\n };\n}\n//# sourceMappingURL=mergeSettings.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "index": 157, - "index2": 142, - "size": 893, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeCustomizations", - "loc": "5:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "./mergeCustomizations", - "loc": "37:29-48" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/mergeCustomizations", - "loc": "24:0-53" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/mergeCustomizations", - "loc": "24:0-53" - } - ], - "usedExports": [ - "mergeCustomizations" - ], - "providedExports": [ - "mergeCustomizations" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { mergeSettings, mergeScopedSettings } from './mergeSettings';\n/**\n * Merge props and customizations giving priority to props over context.\n * NOTE: This function will always perform multiple merge operations. Use with caution.\n * @param props - New settings to merge in.\n * @param parentContext - Context containing current settings.\n * @returns Merged customizations.\n */\nexport function mergeCustomizations(props, parentContext) {\n var _a = (parentContext || {}).customizations, customizations = _a === void 0 ? { settings: {}, scopedSettings: {} } : _a;\n return {\n customizations: {\n settings: mergeSettings(customizations.settings, props.settings),\n scopedSettings: mergeScopedSettings(customizations.scopedSettings, props.scopedSettings),\n inCustomizerContext: true,\n },\n };\n}\n//# sourceMappingURL=mergeCustomizations.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "index": 156, - "index2": 143, - "size": 2078, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:51-61" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "20:31-41" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/Customizer", - "loc": "20:0-44" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/Customizer", - "loc": "20:0-44" - } - ], - "usedExports": [ - "Customizer" - ], - "providedExports": [ - "Customizer" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Customizations } from './Customizations';\nimport { CustomizerContext } from './CustomizerContext';\nimport { mergeCustomizations } from './mergeCustomizations';\n/**\n * The Customizer component allows for default props to be mixed into components which\n * are decorated with the customizable() decorator, or use the styled HOC. This enables\n * injection scenarios like:\n *\n * 1. render svg icons instead of the icon font within all buttons\n * 2. inject a custom theme object into a component\n *\n * Props are provided via the settings prop which should be one of the following:\n * - A json map which contains 1 or more name/value pairs representing injectable props.\n * - A function that receives the current settings and returns the new ones that apply to the scope\n *\n * @public\n */\nvar Customizer = /** @class */ (function (_super) {\n __extends(Customizer, _super);\n function Customizer() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onCustomizationChange = function () { return _this.forceUpdate(); };\n return _this;\n }\n Customizer.prototype.componentDidMount = function () {\n Customizations.observe(this._onCustomizationChange);\n };\n Customizer.prototype.componentWillUnmount = function () {\n Customizations.unobserve(this._onCustomizationChange);\n };\n Customizer.prototype.render = function () {\n var _this = this;\n var contextTransform = this.props.contextTransform;\n return (React.createElement(CustomizerContext.Consumer, null, function (parentContext) {\n var newContext = mergeCustomizations(_this.props, parentContext);\n if (contextTransform) {\n newContext = contextTransform(newContext);\n }\n return React.createElement(CustomizerContext.Provider, { value: newContext }, _this.props.children);\n }));\n };\n return Customizer;\n}(React.Component));\nexport { Customizer };\n//# sourceMappingURL=Customizer.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "index": 155, - "index2": 146, - "size": 3488, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "4aRf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/office-ui-fabric-react/lib/Fabric.js" - }, - { - "id": "44vO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric.base", - "loc": "2:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony import specifier", - "userRequest": "./Fabric.base", - "loc": "4:27-37" - }, - { - "moduleId": "44vO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric.base", - "loc": "2:0-30" - }, - { - "moduleId": "44vO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Fabric.base", - "loc": "2:0-30" - } - ], - "usedExports": [ - "FabricBase" - ], - "providedExports": [ - "FabricBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Customizer, getNativeProps, divProperties, classNamesFunction, getDocument, memoizeFunction, getRTL, FocusRects, } from '../../Utilities';\nimport { createTheme } from '../../Styling';\nvar getClassNames = classNamesFunction();\nvar getFabricTheme = memoizeFunction(function (theme, isRTL) { return createTheme(__assign(__assign({}, theme), { rtl: isRTL })); });\nvar getDir = function (theme, dir) {\n var contextDir = getRTL(theme) ? 'rtl' : 'ltr';\n var pageDir = getRTL() ? 'rtl' : 'ltr';\n var componentDir = dir ? dir : contextDir;\n return {\n // If Fabric dir !== contextDir\n // Or If contextDir !== pageDir\n // Then we need to set dir of the Fabric root\n rootDir: componentDir !== contextDir || componentDir !== pageDir ? componentDir : dir,\n // If dir !== contextDir || pageDir\n // then set contextual theme around content\n needsTheme: componentDir !== contextDir,\n };\n};\nvar FabricBase = /** @class */ (function (_super) {\n __extends(FabricBase, _super);\n function FabricBase() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._rootElement = React.createRef();\n _this._removeClassNameFromBody = undefined;\n return _this;\n }\n FabricBase.prototype.render = function () {\n var _a = this.props, _b = _a.as, Root = _b === void 0 ? 'div' : _b, theme = _a.theme, dir = _a.dir;\n var classNames = this._getClassNames();\n var divProps = getNativeProps(this.props, divProperties, ['dir']);\n var _c = getDir(theme, dir), rootDir = _c.rootDir, needsTheme = _c.needsTheme;\n var renderedContent = React.createElement(Root, __assign({ dir: rootDir }, divProps, { className: classNames.root, ref: this._rootElement }));\n if (needsTheme) {\n renderedContent = (React.createElement(Customizer, { settings: { theme: getFabricTheme(theme, dir === 'rtl') } }, renderedContent));\n }\n return (React.createElement(React.Fragment, null,\n renderedContent,\n React.createElement(FocusRects, { rootRef: this._rootElement })));\n };\n FabricBase.prototype.componentDidMount = function () {\n this._addClassNameToBody();\n };\n FabricBase.prototype.componentWillUnmount = function () {\n if (this._removeClassNameFromBody) {\n this._removeClassNameFromBody();\n }\n };\n FabricBase.prototype._getClassNames = function () {\n var _a = this.props, className = _a.className, theme = _a.theme, applyTheme = _a.applyTheme, styles = _a.styles;\n var classNames = getClassNames(styles, {\n theme: theme,\n applyTheme: applyTheme,\n className: className,\n });\n return classNames;\n };\n FabricBase.prototype._addClassNameToBody = function () {\n if (this.props.applyThemeToBody) {\n var classNames_1 = this._getClassNames();\n var currentDoc_1 = getDocument(this._rootElement.current);\n if (currentDoc_1) {\n currentDoc_1.body.classList.add(classNames_1.bodyThemed);\n this._removeClassNameFromBody = function () {\n currentDoc_1.body.classList.remove(classNames_1.bodyThemed);\n };\n }\n }\n };\n return FabricBase;\n}(React.Component));\nexport { FabricBase };\n//# sourceMappingURL=Fabric.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "index": 154, - "index2": 148, - "size": 253, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "issuerId": "44vO", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "4aRf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/office-ui-fabric-react/lib/Fabric.js" - }, - { - "id": "44vO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Fabric", - "loc": "62:54-60" - }, - { - "moduleId": "44vO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric", - "loc": "1:0-25" - }, - { - "moduleId": "44vO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Fabric", - "loc": "1:0-25" - } - ], - "usedExports": [ - "Fabric" - ], - "providedExports": [ - "Fabric" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { FabricBase } from './Fabric.base';\nimport { getStyles } from './Fabric.styles';\nexport var Fabric = styled(FabricBase, getStyles, undefined, {\n scope: 'Fabric',\n});\n//# sourceMappingURL=Fabric.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "index": 150, - "index2": 151, - "size": 6689, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "/b11", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "Lucz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony import specifier", - "userRequest": "./Layer.base", - "loc": "4:26-35" - }, - { - "moduleId": "Lucz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.base", - "loc": "2:0-29" - }, - { - "moduleId": "Lucz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Layer.base", - "loc": "2:0-29" - } - ], - "usedExports": [ - "LayerBase" - ], - "providedExports": [ - "LayerBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { Fabric } from '../../Fabric';\nimport { classNamesFunction, customizable, getDocument, setPortalAttribute, setVirtualParent, warnDeprecations, } from '../../Utilities';\nimport { registerLayer, getDefaultTarget, unregisterLayer } from './Layer.notification';\nvar getClassNames = classNamesFunction();\nvar LayerBase = /** @class */ (function (_super) {\n __extends(LayerBase, _super);\n function LayerBase(props) {\n var _this = _super.call(this, props) || this;\n _this._rootRef = React.createRef();\n _this._createLayerElement = function () {\n var hostId = _this.props.hostId;\n var doc = getDocument(_this._rootRef.current);\n var host = _this._getHost();\n if (!doc || !host) {\n return;\n }\n // If one was already existing, remove.\n _this._removeLayerElement();\n var layerElement = doc.createElement('div');\n var classNames = _this._getClassNames();\n layerElement.className = classNames.root;\n setPortalAttribute(layerElement);\n setVirtualParent(layerElement, _this._rootRef.current);\n _this.props.insertFirst ? host.insertBefore(layerElement, host.firstChild) : host.appendChild(layerElement);\n _this.setState({\n hostId: hostId,\n layerElement: layerElement,\n }, function () {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, onLayerDidMount = _a.onLayerDidMount, onLayerMounted = _a.onLayerMounted;\n if (onLayerMounted) {\n onLayerMounted();\n }\n if (onLayerDidMount) {\n onLayerDidMount();\n }\n });\n };\n _this.state = {};\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('Layer', props, {\n onLayerMounted: 'onLayerDidMount',\n });\n }\n return _this;\n }\n LayerBase.prototype.componentDidMount = function () {\n var hostId = this.props.hostId;\n this._createLayerElement();\n if (hostId) {\n registerLayer(hostId, this._createLayerElement);\n }\n };\n LayerBase.prototype.render = function () {\n var layerElement = this.state.layerElement;\n var classNames = this._getClassNames();\n var eventBubblingEnabled = this.props.eventBubblingEnabled;\n return (React.createElement(\"span\", { className: \"ms-layer\", ref: this._rootRef }, layerElement &&\n ReactDOM.createPortal(React.createElement(Fabric, __assign({}, (!eventBubblingEnabled && _getFilteredEvents()), { className: classNames.content }), this.props.children), layerElement)));\n };\n LayerBase.prototype.componentDidUpdate = function () {\n if (this.props.hostId !== this.state.hostId) {\n this._createLayerElement();\n }\n };\n LayerBase.prototype.componentWillUnmount = function () {\n var hostId = this.props.hostId;\n this._removeLayerElement();\n if (hostId) {\n unregisterLayer(hostId, this._createLayerElement);\n }\n };\n LayerBase.prototype._removeLayerElement = function () {\n var onLayerWillUnmount = this.props.onLayerWillUnmount;\n var layerElement = this.state.layerElement;\n if (layerElement) {\n setVirtualParent(layerElement, null);\n }\n if (onLayerWillUnmount) {\n onLayerWillUnmount();\n }\n if (layerElement && layerElement.parentNode) {\n var parentNode = layerElement.parentNode;\n if (parentNode) {\n parentNode.removeChild(layerElement);\n }\n }\n };\n LayerBase.prototype._getClassNames = function () {\n var _a = this.props, className = _a.className, styles = _a.styles, theme = _a.theme;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n isNotHost: !this.props.hostId,\n });\n return classNames;\n };\n LayerBase.prototype._getHost = function () {\n var hostId = this.props.hostId;\n var doc = getDocument(this._rootRef.current);\n if (!doc) {\n return undefined;\n }\n if (hostId) {\n return doc.getElementById(hostId);\n }\n else {\n var defaultHostSelector = getDefaultTarget();\n return defaultHostSelector ? doc.querySelector(defaultHostSelector) : doc.body;\n }\n };\n LayerBase.defaultProps = {\n onLayerDidMount: function () { return undefined; },\n onLayerWillUnmount: function () { return undefined; },\n };\n LayerBase = __decorate([\n customizable('Layer', ['theme', 'hostId'])\n ], LayerBase);\n return LayerBase;\n}(React.Component));\nexport { LayerBase };\nvar _onFilterEvent = function (ev) {\n // We should just be able to check ev.bubble here and only stop events that are bubbling up. However, even though\n // mouseenter and mouseleave do NOT bubble up, they are showing up as bubbling. Therefore we stop events based on\n // event name rather than ev.bubble.\n if (ev.eventPhase === Event.BUBBLING_PHASE &&\n ev.type !== 'mouseenter' &&\n ev.type !== 'mouseleave' &&\n ev.type !== 'touchstart' &&\n ev.type !== 'touchend') {\n ev.stopPropagation();\n }\n};\nvar _filteredEventProps;\nfunction _getFilteredEvents() {\n if (!_filteredEventProps) {\n _filteredEventProps = {};\n [\n 'onClick',\n 'onContextMenu',\n 'onDoubleClick',\n 'onDrag',\n 'onDragEnd',\n 'onDragEnter',\n 'onDragExit',\n 'onDragLeave',\n 'onDragOver',\n 'onDragStart',\n 'onDrop',\n 'onMouseDown',\n 'onMouseEnter',\n 'onMouseLeave',\n 'onMouseMove',\n 'onMouseOver',\n 'onMouseOut',\n 'onMouseUp',\n 'onTouchMove',\n 'onTouchStart',\n 'onTouchCancel',\n 'onTouchEnd',\n 'onKeyDown',\n 'onKeyPress',\n 'onKeyUp',\n 'onFocus',\n 'onBlur',\n 'onChange',\n 'onInput',\n 'onInvalid',\n 'onSubmit',\n ].forEach(function (name) { return (_filteredEventProps[name] = _onFilterEvent); });\n }\n return _filteredEventProps;\n}\n//# sourceMappingURL=Layer.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "index": 149, - "index2": 153, - "size": 289, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "issuerId": "Lucz", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "/b11", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "Lucz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "13:69-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "218:36-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "293:40-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "506:45-50" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "229:36-41" - }, - { - "moduleId": "Lucz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer", - "loc": "1:0-24" - }, - { - "moduleId": "Lucz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Layer", - "loc": "1:0-24" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Layer", - "loc": "134:69-74" - } - ], - "usedExports": [ - "Layer" - ], - "providedExports": [ - "Layer" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { LayerBase } from './Layer.base';\nimport { getStyles } from './Layer.styles';\nexport var Layer = styled(LayerBase, getStyles, undefined, {\n scope: 'Layer',\n fields: ['hostId', 'theme', 'styles'],\n});\n//# sourceMappingURL=Layer.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "index": 161, - "index2": 147, - "size": 1184, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "4aRf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/office-ui-fabric-react/lib/Fabric.js" - }, - { - "id": "44vO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric.styles", - "loc": "3:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony import specifier", - "userRequest": "./Fabric.styles", - "loc": "4:39-48" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar inheritFont = { fontFamily: 'inherit' };\nvar GlobalClassNames = {\n root: 'ms-Fabric',\n bodyThemed: 'ms-Fabric-bodyThemed',\n};\nexport var getStyles = function (props) {\n var theme = props.theme, className = props.className, applyTheme = props.applyTheme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n color: theme.palette.neutralPrimary,\n selectors: {\n '& button': inheritFont,\n '& input': inheritFont,\n '& textarea': inheritFont,\n },\n },\n // apply theme to only if applyTheme is true\n applyTheme && {\n color: theme.semanticColors.bodyText,\n backgroundColor: theme.semanticColors.bodyBackground,\n },\n className,\n ],\n bodyThemed: [\n {\n backgroundColor: theme.semanticColors.bodyBackground,\n },\n ],\n };\n};\n//# sourceMappingURL=Fabric.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.notification.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.notification.js", - "index": 153, - "index2": 140, - "size": 1746, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "/b11", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "Lucz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.notification", - "loc": "6:0-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "54:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "73:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "111:38-54" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.notification", - "loc": "4:0-57" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "14:8-25" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "17:8-25" - } - ], - "usedExports": [ - "registerLayer", - "unregisterLayer", - "getDefaultTarget" - ], - "providedExports": [ - "registerLayer", - "unregisterLayer", - "notifyHostChanged", - "setDefaultTarget", - "getDefaultTarget" - ], - "optimizationBailout": [], - "depth": 6, - "source": "var _layersByHostId = {};\nvar _defaultHostSelector;\n/**\n * Register a layer for a given host id\n * @param hostId Id of the layer host\n * @param layer Layer instance\n */\nexport function registerLayer(hostId, callback) {\n if (!_layersByHostId[hostId]) {\n _layersByHostId[hostId] = [];\n }\n _layersByHostId[hostId].push(callback);\n}\n/**\n * Unregister a layer for a given host id\n * @param hostId Id of the layer host\n * @param layer Layer instance\n */\nexport function unregisterLayer(hostId, callback) {\n if (_layersByHostId[hostId]) {\n var idx = _layersByHostId[hostId].indexOf(callback);\n if (idx >= 0) {\n _layersByHostId[hostId].splice(idx, 1);\n if (_layersByHostId[hostId].length === 0) {\n delete _layersByHostId[hostId];\n }\n }\n }\n}\n/**\n * Used for notifying applicable Layers that a host is available/unavailable and to re-evaluate Layers that\n * care about the specific host.\n */\nexport function notifyHostChanged(id) {\n if (_layersByHostId[id]) {\n _layersByHostId[id].forEach(function (callback) { return callback(); });\n }\n}\n/**\n * Sets the default target selector to use when determining the host in which\n * Layered content will be injected into. If not provided, an element will be\n * created at the end of the document body.\n *\n * Passing in a falsey value will clear the default target and reset back to\n * using a created element at the end of document body.\n */\nexport function setDefaultTarget(selector) {\n _defaultHostSelector = selector;\n}\n/**\n * Get the default target selector when determining a host\n */\nexport function getDefaultTarget() {\n return _defaultHostSelector;\n}\n//# sourceMappingURL=Layer.notification.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "index": 164, - "index2": 152, - "size": 1042, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "/b11", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "Lucz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony import specifier", - "userRequest": "./Layer.styles", - "loc": "4:37-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { ZIndexes, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Layer',\n rootNoHost: 'ms-Layer--fixed',\n content: 'ms-Layer-content',\n};\nexport var getStyles = function (props) {\n var className = props.className, isNotHost = props.isNotHost, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n isNotHost && [\n classNames.rootNoHost,\n {\n position: 'fixed',\n zIndex: ZIndexes.Layer,\n top: 0,\n left: 0,\n bottom: 0,\n right: 0,\n visibility: 'hidden',\n },\n ],\n className,\n ],\n content: [\n classNames.content,\n {\n visibility: 'visible',\n },\n ],\n };\n};\n//# sourceMappingURL=Layer.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/setVirtualParent.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/setVirtualParent.js", - "index": 152, - "index2": 139, - "size": 1000, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "26:12-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "80:12-28" - }, - { - "moduleId": "btAd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/setVirtualParent.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/setVirtualParent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/setVirtualParent.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-59" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setVirtualParent", - "loc": "10:0-35" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setVirtualParent", - "loc": "10:0-35" - } - ], - "usedExports": [ - "setVirtualParent" - ], - "providedExports": [ - "setVirtualParent" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Sets the virtual parent of an element.\n * Pass `undefined` as the `parent` to clear the virtual parent.\n *\n * @public\n */\nexport function setVirtualParent(child, parent) {\n var virtualChild = child;\n var virtualParent = parent;\n if (!virtualChild._virtual) {\n virtualChild._virtual = {\n children: [],\n };\n }\n var oldParent = virtualChild._virtual.parent;\n if (oldParent && oldParent !== parent) {\n // Remove the child from its old parent.\n var index = oldParent._virtual.children.indexOf(virtualChild);\n if (index > -1) {\n oldParent._virtual.children.splice(index, 1);\n }\n }\n virtualChild._virtual.parent = virtualParent || undefined;\n if (virtualParent) {\n if (!virtualParent._virtual) {\n virtualParent._virtual = {\n children: [],\n };\n }\n virtualParent._virtual.children.push(virtualChild);\n }\n}\n//# sourceMappingURL=setVirtualParent.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "XN+o", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "index": 300, - "index2": 294, - "size": 9527, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./storage", - "loc": "5:0-26" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./storage", - "loc": "5:0-26" - } - ], - "usedExports": [ - "PnPClientStorage" - ], - "providedExports": [ - "PnPClientStorageWrapper", - "PnPClientStorage" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { dateAdd, getCtxCallback, jsS, objectDefinedNotNull } from \"./util\";\r\nimport { RuntimeConfig } from \"./libconfig\";\r\n/**\r\n * A wrapper class to provide a consistent interface to browser based storage\r\n *\r\n */\r\nvar PnPClientStorageWrapper = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of the PnPClientStorageWrapper class\r\n *\r\n * @constructor\r\n */\r\n function PnPClientStorageWrapper(store, defaultTimeoutMinutes) {\r\n if (defaultTimeoutMinutes === void 0) { defaultTimeoutMinutes = -1; }\r\n this.store = store;\r\n this.defaultTimeoutMinutes = defaultTimeoutMinutes;\r\n this.enabled = this.test();\r\n // if the cache timeout is enabled call the handler\r\n // this will clear any expired items and set the timeout function\r\n if (RuntimeConfig.enableCacheExpiration) {\r\n this.cacheExpirationHandler();\r\n }\r\n }\r\n PnPClientStorageWrapper.bind = function (store) {\r\n return new PnPClientStorageWrapper(typeof (store) === \"undefined\" ? new MemoryStorage() : store);\r\n };\r\n /**\r\n * Get a value from storage, or null if that value does not exist\r\n *\r\n * @param key The key whose value we want to retrieve\r\n */\r\n PnPClientStorageWrapper.prototype.get = function (key) {\r\n if (!this.enabled) {\r\n return null;\r\n }\r\n var o = this.store.getItem(key);\r\n if (!objectDefinedNotNull(o)) {\r\n return null;\r\n }\r\n var persistable = JSON.parse(o);\r\n if (new Date(persistable.expiration) <= new Date()) {\r\n this.delete(key);\r\n return null;\r\n }\r\n else {\r\n return persistable.value;\r\n }\r\n };\r\n /**\r\n * Adds a value to the underlying storage\r\n *\r\n * @param key The key to use when storing the provided value\r\n * @param o The value to store\r\n * @param expire Optional, if provided the expiration of the item, otherwise the default is used\r\n */\r\n PnPClientStorageWrapper.prototype.put = function (key, o, expire) {\r\n if (this.enabled) {\r\n this.store.setItem(key, this.createPersistable(o, expire));\r\n }\r\n };\r\n /**\r\n * Deletes a value from the underlying storage\r\n *\r\n * @param key The key of the pair we want to remove from storage\r\n */\r\n PnPClientStorageWrapper.prototype.delete = function (key) {\r\n if (this.enabled) {\r\n this.store.removeItem(key);\r\n }\r\n };\r\n /**\r\n * Gets an item from the underlying storage, or adds it if it does not exist using the supplied getter function\r\n *\r\n * @param key The key to use when storing the provided value\r\n * @param getter A function which will upon execution provide the desired value\r\n * @param expire Optional, if provided the expiration of the item, otherwise the default is used\r\n */\r\n PnPClientStorageWrapper.prototype.getOrPut = function (key, getter, expire) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var o;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n if (!this.enabled) {\r\n return [2 /*return*/, getter()];\r\n }\r\n o = this.get(key);\r\n if (!(o === null)) return [3 /*break*/, 2];\r\n return [4 /*yield*/, getter()];\r\n case 1:\r\n o = _a.sent();\r\n this.put(key, o, expire);\r\n _a.label = 2;\r\n case 2: return [2 /*return*/, o];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Deletes any expired items placed in the store by the pnp library, leaves other items untouched\r\n */\r\n PnPClientStorageWrapper.prototype.deleteExpired = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var i, key;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n if (!this.enabled) {\r\n return [2 /*return*/];\r\n }\r\n i = 0;\r\n _a.label = 1;\r\n case 1:\r\n if (!(i < this.store.length)) return [3 /*break*/, 4];\r\n key = this.store.key(i);\r\n if (!(key !== null)) return [3 /*break*/, 3];\r\n if (!/[\"|']?pnp[\"|']? ?: ?1/i.test(this.store.getItem(key))) return [3 /*break*/, 3];\r\n // get those items as get will delete from cache if they are expired\r\n return [4 /*yield*/, this.get(key)];\r\n case 2:\r\n // get those items as get will delete from cache if they are expired\r\n _a.sent();\r\n _a.label = 3;\r\n case 3:\r\n i++;\r\n return [3 /*break*/, 1];\r\n case 4: return [2 /*return*/];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Used to determine if the wrapped storage is available currently\r\n */\r\n PnPClientStorageWrapper.prototype.test = function () {\r\n var str = \"t\";\r\n try {\r\n this.store.setItem(str, str);\r\n this.store.removeItem(str);\r\n return true;\r\n }\r\n catch (e) {\r\n return false;\r\n }\r\n };\r\n /**\r\n * Creates the persistable to store\r\n */\r\n PnPClientStorageWrapper.prototype.createPersistable = function (o, expire) {\r\n if (expire === undefined) {\r\n // ensure we are by default inline with the global library setting\r\n var defaultTimeout = RuntimeConfig.defaultCachingTimeoutSeconds;\r\n if (this.defaultTimeoutMinutes > 0) {\r\n defaultTimeout = this.defaultTimeoutMinutes * 60;\r\n }\r\n expire = dateAdd(new Date(), \"second\", defaultTimeout);\r\n }\r\n return jsS({ pnp: 1, expiration: expire, value: o });\r\n };\r\n /**\r\n * Deletes expired items added by this library in this.store and sets a timeout to call itself\r\n */\r\n PnPClientStorageWrapper.prototype.cacheExpirationHandler = function () {\r\n var _this = this;\r\n if (!this.enabled) {\r\n return;\r\n }\r\n this.deleteExpired().then(function (_) {\r\n // call ourself in the future\r\n setTimeout(getCtxCallback(_this, _this.cacheExpirationHandler), RuntimeConfig.cacheExpirationIntervalMilliseconds);\r\n }).catch(console.error);\r\n };\r\n return PnPClientStorageWrapper;\r\n}());\r\nexport { PnPClientStorageWrapper };\r\n/**\r\n * A thin implementation of in-memory storage for use in nodejs\r\n */\r\nvar MemoryStorage = /** @class */ (function () {\r\n function MemoryStorage(_store) {\r\n if (_store === void 0) { _store = new Map(); }\r\n this._store = _store;\r\n }\r\n Object.defineProperty(MemoryStorage.prototype, \"length\", {\r\n get: function () {\r\n return this._store.size;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n MemoryStorage.prototype.clear = function () {\r\n this._store.clear();\r\n };\r\n MemoryStorage.prototype.getItem = function (key) {\r\n return this._store.get(key);\r\n };\r\n MemoryStorage.prototype.key = function (index) {\r\n return Array.from(this._store)[index][0];\r\n };\r\n MemoryStorage.prototype.removeItem = function (key) {\r\n this._store.delete(key);\r\n };\r\n MemoryStorage.prototype.setItem = function (key, data) {\r\n this._store.set(key, data);\r\n };\r\n return MemoryStorage;\r\n}());\r\n/**\r\n * A class that will establish wrappers for both local and session storage\r\n */\r\nvar PnPClientStorage = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of the PnPClientStorage class\r\n *\r\n * @constructor\r\n */\r\n function PnPClientStorage(_local, _session) {\r\n if (_local === void 0) { _local = null; }\r\n if (_session === void 0) { _session = null; }\r\n this._local = _local;\r\n this._session = _session;\r\n }\r\n Object.defineProperty(PnPClientStorage.prototype, \"local\", {\r\n /**\r\n * Provides access to the local storage of the browser\r\n */\r\n get: function () {\r\n if (this._local === null) {\r\n this._local = new PnPClientStorageWrapper(typeof (localStorage) === \"undefined\" ? new MemoryStorage() : localStorage);\r\n }\r\n return this._local;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(PnPClientStorage.prototype, \"session\", {\r\n /**\r\n * Provides access to the session storage of the browser\r\n */\r\n get: function () {\r\n if (this._session === null) {\r\n this._session = new PnPClientStorageWrapper(typeof (sessionStorage) === \"undefined\" ? new MemoryStorage() : sessionStorage);\r\n }\r\n return this._session;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n return PnPClientStorage;\r\n}());\r\nexport { PnPClientStorage };\r\n//# sourceMappingURL=storage.js.map" - }, - { - "id": "XYm9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneDataView.js", - "name": "./node_modules/lodash/_cloneDataView.js", - "index": 543, - "index2": 535, - "size": 507, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "issuerId": "wrZu", - "issuerName": "./node_modules/lodash/_initCloneByTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "wrZu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "module": "./node_modules/lodash/_initCloneByTag.js", - "moduleName": "./node_modules/lodash/_initCloneByTag.js", - "type": "cjs require", - "userRequest": "./_cloneDataView", - "loc": "2:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var cloneArrayBuffer = require('./_cloneArrayBuffer');\n\n/**\n * Creates a clone of `dataView`.\n *\n * @private\n * @param {Object} dataView The data view to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the cloned data view.\n */\nfunction cloneDataView(dataView, isDeep) {\n var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;\n return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);\n}\n\nmodule.exports = cloneDataView;\n" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js", - "index": 447, - "index2": 446, - "size": 869, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0Cz8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "module": "./node_modules/lodash/_stackSet.js", - "moduleName": "./node_modules/lodash/_stackSet.js", - "type": "cjs require", - "userRequest": "./_ListCache", - "loc": "1:16-39" - }, - { - "moduleId": "77Zs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackClear.js", - "module": "./node_modules/lodash/_stackClear.js", - "moduleName": "./node_modules/lodash/_stackClear.js", - "type": "cjs require", - "userRequest": "./_ListCache", - "loc": "1:16-39" - }, - { - "moduleId": "fGT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "module": "./node_modules/lodash/_mapCacheClear.js", - "moduleName": "./node_modules/lodash/_mapCacheClear.js", - "type": "cjs require", - "userRequest": "./_ListCache", - "loc": "2:16-39" - }, - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_ListCache", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var listCacheClear = require('./_listCacheClear'),\n listCacheDelete = require('./_listCacheDelete'),\n listCacheGet = require('./_listCacheGet'),\n listCacheHas = require('./_listCacheHas'),\n listCacheSet = require('./_listCacheSet');\n\n/**\n * Creates an list cache object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction ListCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n// Add methods to `ListCache`.\nListCache.prototype.clear = listCacheClear;\nListCache.prototype['delete'] = listCacheDelete;\nListCache.prototype.get = listCacheGet;\nListCache.prototype.has = listCacheHas;\nListCache.prototype.set = listCacheSet;\n\nmodule.exports = ListCache;\n" - }, - { - "id": "Xpmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "index": 897, - "index2": 893, - "size": 575, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "cjs require", - "userRequest": "./PlaceholderComponent.module.css", - "loc": "2:0-44" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PlaceholderComponent.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "YCuv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "index": 255, - "index2": 243, - "size": 15921, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../FocusTrapZone/index", - "loc": "222:40-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../FocusTrapZone/index", - "loc": "283:48-61" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "309:36-49" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "11:28-41" - }, - { - "moduleId": "GEqb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusTrapZone", - "loc": "1:0-32" - }, - { - "moduleId": "GEqb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusTrapZone", - "loc": "1:0-32" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "239:52-65" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "87:32-45" - } - ], - "usedExports": [ - "FocusTrapZone" - ], - "providedExports": [ - "FocusTrapZone" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/elementContains.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/on.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/focus.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/modalize.js", - "name": "./node_modules/@uifabric/utilities/lib/modalize.js", - "index": 256, - "index2": 242, - "size": 1949, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "110:31-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "130:35-43" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./modalize", - "loc": "43:0-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./modalize", - "loc": "43:0-27" - } - ], - "usedExports": [ - "modalize" - ], - "providedExports": [ - "modalize" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * The helper functions here will make the target element as modal to screen readers, by placing aria-hidden on elements\n * that are siblings to the target element and the target element's ancestors (because aria-hidden gets inherited).\n * That way, all other elements on the page are hidden to the screen reader.\n */\nimport { getDocument } from './dom/getDocument';\n/**\n * Call this on a target element to make it modal to screen readers.\n * Returns a function that undoes the changes it made.\n */\nexport function modalize(target) {\n var _a;\n var affectedNodes = [];\n var targetDocument = getDocument(target) || document;\n // start at target, then recurse and do the same for parent, until we reach \n while (target !== targetDocument.body) {\n // grab all siblings of current element\n for (var _i = 0, _b = target.parentElement.children; _i < _b.length; _i++) {\n var sibling = _b[_i];\n // but ignore elements that are already aria-hidden\n if (sibling !== target && ((_a = sibling.getAttribute('aria-hidden')) === null || _a === void 0 ? void 0 : _a.toLowerCase()) !== 'true') {\n affectedNodes.push(sibling);\n }\n }\n if (!target.parentElement) {\n break;\n }\n target = target.parentElement;\n }\n // take all those elements and set aria-hidden=true on them\n affectedNodes.forEach(function (node) {\n node.setAttribute('aria-hidden', 'true');\n });\n return function () {\n unmodalize(affectedNodes);\n affectedNodes = []; // dispose\n };\n}\n/**\n * Undoes the changes that modalize() did.\n */\nfunction unmodalize(affectedNodes) {\n affectedNodes.forEach(function (node) {\n // set instead of removing in case other components explicitly set aria-hidden and do ==\"true\" or ==\"false\"\n node.setAttribute('aria-hidden', 'false');\n });\n}\n//# sourceMappingURL=modalize.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "index": 255, - "index2": 243, - "size": 13932, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "issuerId": "GEqb", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zK24", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js" - }, - { - "id": "GEqb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../FocusTrapZone/index", - "loc": "222:40-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../FocusTrapZone/index", - "loc": "283:48-61" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "309:36-49" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "11:28-41" - }, - { - "moduleId": "GEqb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusTrapZone", - "loc": "1:0-32" - }, - { - "moduleId": "GEqb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusTrapZone", - "loc": "1:0-32" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "239:52-65" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "87:32-45" - } - ], - "usedExports": [ - "FocusTrapZone" - ], - "providedExports": [ - "FocusTrapZone" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { modalize } from '@uifabric/utilities';\nimport { elementContains, getNativeProps, divProperties, getFirstTabbable, getLastTabbable, getNextElement, getDocument, focusAsync, initializeComponentRef, on, } from '../../Utilities';\nvar FocusTrapZone = /** @class */ (function (_super) {\n __extends(FocusTrapZone, _super);\n function FocusTrapZone(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._firstBumper = React.createRef();\n _this._lastBumper = React.createRef();\n _this._hasFocus = false;\n _this._onRootFocus = function (ev) {\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n _this._hasFocus = true;\n };\n _this._onRootBlur = function (ev) {\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n var relatedTarget = ev.relatedTarget;\n if (ev.relatedTarget === null) {\n // In IE11, due to lack of support, event.relatedTarget is always\n // null making every onBlur call to be \"outside\" of the ComboBox\n // even when it's not. Using document.activeElement is another way\n // for us to be able to get what the relatedTarget without relying\n // on the event\n relatedTarget = _this._getDocument().activeElement;\n }\n if (!elementContains(_this._root.current, relatedTarget)) {\n _this._hasFocus = false;\n }\n };\n _this._onFirstBumperFocus = function () {\n _this._onBumperFocus(true);\n };\n _this._onLastBumperFocus = function () {\n _this._onBumperFocus(false);\n };\n _this._onBumperFocus = function (isFirstBumper) {\n if (_this.props.disabled) {\n return;\n }\n var currentBumper = (isFirstBumper === _this._hasFocus\n ? _this._lastBumper.current\n : _this._firstBumper.current);\n if (_this._root.current) {\n var nextFocusable = isFirstBumper === _this._hasFocus\n ? getLastTabbable(_this._root.current, currentBumper, true, false)\n : getFirstTabbable(_this._root.current, currentBumper, true, false);\n if (nextFocusable) {\n if (_this._isBumper(nextFocusable)) {\n // This can happen when FTZ contains no tabbable elements.\n // focus will take care of finding a focusable element in FTZ.\n _this.focus();\n }\n else {\n nextFocusable.focus();\n }\n }\n }\n };\n _this._onFocusCapture = function (ev) {\n if (_this.props.onFocusCapture) {\n _this.props.onFocusCapture(ev);\n }\n if (ev.target !== ev.currentTarget && !_this._isBumper(ev.target)) {\n // every time focus changes within the trap zone, remember the focused element so that\n // it can be restored if focus leaves the pane and returns via keystroke (i.e. via a call to this.focus(true))\n _this._previouslyFocusedElementInTrapZone = ev.target;\n }\n };\n _this._forceFocusInTrap = function (ev) {\n if (_this.props.disabled) {\n return;\n }\n if (FocusTrapZone._focusStack.length && _this === FocusTrapZone._focusStack[FocusTrapZone._focusStack.length - 1]) {\n var focusedElement = _this._getDocument().activeElement;\n if (!elementContains(_this._root.current, focusedElement)) {\n _this.focus();\n _this._hasFocus = true; // set focus here since we stop event propagation\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n _this._forceClickInTrap = function (ev) {\n if (_this.props.disabled) {\n return;\n }\n if (FocusTrapZone._focusStack.length && _this === FocusTrapZone._focusStack[FocusTrapZone._focusStack.length - 1]) {\n var clickedElement = ev.target;\n if (clickedElement && !elementContains(_this._root.current, clickedElement)) {\n _this.focus();\n _this._hasFocus = true; // set focus here since we stop event propagation\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n initializeComponentRef(_this);\n return _this;\n }\n FocusTrapZone.prototype.componentDidMount = function () {\n this._bringFocusIntoZone();\n this._updateEventHandlers(this.props);\n if (!this.props.disabled && this._root.current && this.props.enableAriaHiddenSiblings) {\n this._unmodalize = modalize(this._root.current);\n }\n };\n FocusTrapZone.prototype.UNSAFE_componentWillReceiveProps = function (nextProps) {\n var elementToFocusOnDismiss = nextProps.elementToFocusOnDismiss;\n if (elementToFocusOnDismiss && this._previouslyFocusedElementOutsideTrapZone !== elementToFocusOnDismiss) {\n this._previouslyFocusedElementOutsideTrapZone = elementToFocusOnDismiss;\n }\n this._updateEventHandlers(nextProps);\n };\n FocusTrapZone.prototype.componentDidUpdate = function (prevProps) {\n var prevForceFocusInsideTrap = prevProps.forceFocusInsideTrap !== undefined ? prevProps.forceFocusInsideTrap : true;\n var newForceFocusInsideTrap = this.props.forceFocusInsideTrap !== undefined ? this.props.forceFocusInsideTrap : true;\n var prevDisabled = prevProps.disabled !== undefined ? prevProps.disabled : false;\n var newDisabled = this.props.disabled !== undefined ? this.props.disabled : false;\n if ((!prevForceFocusInsideTrap && newForceFocusInsideTrap) || (prevDisabled && !newDisabled)) {\n // Transition from forceFocusInsideTrap / FTZ disabled to enabled.\n // Emulate what happens when a FocusTrapZone gets mounted.\n this._bringFocusIntoZone();\n if (!this._unmodalize && this._root.current && this.props.enableAriaHiddenSiblings) {\n this._unmodalize = modalize(this._root.current);\n }\n }\n else if ((prevForceFocusInsideTrap && !newForceFocusInsideTrap) || (!prevDisabled && newDisabled)) {\n // Transition from forceFocusInsideTrap / FTZ enabled to disabled.\n // Emulate what happens when a FocusTrapZone gets unmounted.\n this._returnFocusToInitiator();\n if (this._unmodalize) {\n this._unmodalize();\n }\n }\n };\n FocusTrapZone.prototype.componentWillUnmount = function () {\n // don't handle return focus unless forceFocusInsideTrap is true or focus is still within FocusTrapZone\n if (!this.props.disabled ||\n this.props.forceFocusInsideTrap ||\n !elementContains(this._root.current, this._getDocument().activeElement)) {\n this._returnFocusToInitiator();\n }\n // Dispose of event handlers so their closures can be garbage-collected\n if (this._disposeClickHandler) {\n this._disposeClickHandler();\n this._disposeClickHandler = undefined;\n }\n if (this._disposeFocusHandler) {\n this._disposeFocusHandler();\n this._disposeFocusHandler = undefined;\n }\n if (this._unmodalize) {\n this._unmodalize();\n }\n // Dispose of element references so the DOM Nodes can be garbage-collected\n delete this._previouslyFocusedElementInTrapZone;\n delete this._previouslyFocusedElementOutsideTrapZone;\n };\n FocusTrapZone.prototype.render = function () {\n var _a = this.props, className = _a.className, _b = _a.disabled, disabled = _b === void 0 ? false : _b, ariaLabelledBy = _a.ariaLabelledBy;\n var divProps = getNativeProps(this.props, divProperties);\n var bumperProps = {\n 'aria-hidden': true,\n style: {\n pointerEvents: 'none',\n position: 'fixed',\n },\n tabIndex: disabled ? -1 : 0,\n 'data-is-visible': true,\n };\n return (React.createElement(\"div\", __assign({}, divProps, { className: className, ref: this._root, \"aria-labelledby\": ariaLabelledBy, onFocusCapture: this._onFocusCapture, onFocus: this._onRootFocus, onBlur: this._onRootBlur }),\n React.createElement(\"div\", __assign({}, bumperProps, { ref: this._firstBumper, onFocus: this._onFirstBumperFocus })),\n this.props.children,\n React.createElement(\"div\", __assign({}, bumperProps, { ref: this._lastBumper, onFocus: this._onLastBumperFocus }))));\n };\n FocusTrapZone.prototype.focus = function () {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, focusPreviouslyFocusedInnerElement = _a.focusPreviouslyFocusedInnerElement, firstFocusableSelector = _a.firstFocusableSelector, firstFocusableTarget = _a.firstFocusableTarget;\n if (focusPreviouslyFocusedInnerElement &&\n this._previouslyFocusedElementInTrapZone &&\n elementContains(this._root.current, this._previouslyFocusedElementInTrapZone)) {\n // focus on the last item that had focus in the zone before we left the zone\n this._focusAsync(this._previouslyFocusedElementInTrapZone);\n return;\n }\n var focusSelector = typeof firstFocusableSelector === 'string'\n ? firstFocusableSelector\n : firstFocusableSelector && firstFocusableSelector();\n var _firstFocusableChild = null;\n if (this._root.current) {\n if (typeof firstFocusableTarget === 'string') {\n _firstFocusableChild = this._root.current.querySelector(firstFocusableTarget);\n }\n else if (firstFocusableTarget) {\n _firstFocusableChild = firstFocusableTarget(this._root.current);\n }\n else if (focusSelector) {\n _firstFocusableChild = this._root.current.querySelector('.' + focusSelector);\n }\n // Fall back to first element if query selector did not match any elements.\n if (!_firstFocusableChild) {\n _firstFocusableChild = getNextElement(this._root.current, this._root.current.firstChild, false, false, false, true);\n }\n }\n if (_firstFocusableChild) {\n this._focusAsync(_firstFocusableChild);\n }\n };\n FocusTrapZone.prototype._focusAsync = function (element) {\n if (!this._isBumper(element)) {\n focusAsync(element);\n }\n };\n FocusTrapZone.prototype._bringFocusIntoZone = function () {\n var _a = this.props, elementToFocusOnDismiss = _a.elementToFocusOnDismiss, _b = _a.disabled, disabled = _b === void 0 ? false : _b, _c = _a.disableFirstFocus, disableFirstFocus = _c === void 0 ? false : _c;\n if (disabled) {\n return;\n }\n FocusTrapZone._focusStack.push(this);\n this._previouslyFocusedElementOutsideTrapZone = elementToFocusOnDismiss\n ? elementToFocusOnDismiss\n : this._getDocument().activeElement;\n if (!disableFirstFocus && !elementContains(this._root.current, this._previouslyFocusedElementOutsideTrapZone)) {\n this.focus();\n }\n };\n FocusTrapZone.prototype._returnFocusToInitiator = function () {\n var _this = this;\n var ignoreExternalFocusing = this.props.ignoreExternalFocusing;\n FocusTrapZone._focusStack = FocusTrapZone._focusStack.filter(function (value) {\n return _this !== value;\n });\n var doc = this._getDocument();\n var activeElement = doc.activeElement;\n if (!ignoreExternalFocusing &&\n this._previouslyFocusedElementOutsideTrapZone &&\n typeof this._previouslyFocusedElementOutsideTrapZone.focus === 'function' &&\n (elementContains(this._root.current, activeElement) || activeElement === doc.body)) {\n this._focusAsync(this._previouslyFocusedElementOutsideTrapZone);\n }\n };\n FocusTrapZone.prototype._updateEventHandlers = function (newProps) {\n var _a = newProps.isClickableOutsideFocusTrap, isClickableOutsideFocusTrap = _a === void 0 ? false : _a, _b = newProps.forceFocusInsideTrap, forceFocusInsideTrap = _b === void 0 ? true : _b;\n if (forceFocusInsideTrap && !this._disposeFocusHandler) {\n this._disposeFocusHandler = on(window, 'focus', this._forceFocusInTrap, true);\n }\n else if (!forceFocusInsideTrap && this._disposeFocusHandler) {\n this._disposeFocusHandler();\n this._disposeFocusHandler = undefined;\n }\n if (!isClickableOutsideFocusTrap && !this._disposeClickHandler) {\n this._disposeClickHandler = on(window, 'click', this._forceClickInTrap, true);\n }\n else if (isClickableOutsideFocusTrap && this._disposeClickHandler) {\n this._disposeClickHandler();\n this._disposeClickHandler = undefined;\n }\n };\n FocusTrapZone.prototype._isBumper = function (element) {\n return element === this._firstBumper.current || element === this._lastBumper.current;\n };\n FocusTrapZone.prototype._getDocument = function () {\n return getDocument(this._root.current);\n };\n FocusTrapZone._focusStack = [];\n return FocusTrapZone;\n}(React.Component));\nexport { FocusTrapZone };\n//# sourceMappingURL=FocusTrapZone.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "index": 66, - "index2": 48, - "size": 1006, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../MergeStyles", - "loc": "17:38-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "20:26-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "119:39-50" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "166:27-35" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeStyles", - "loc": "1:0-54" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mergeStyles", - "loc": "1:0-54" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mergeStyles", - "loc": "1:0-54" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "6:30-41" - }, - { - "moduleId": "HhHV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "16:20-31" - }, - { - "moduleId": "itTX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "30:19-30" - } - ], - "usedExports": [ - "mergeStyles" - ], - "providedExports": [ - "mergeStyles", - "mergeCss" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { extractStyleParts } from './extractStyleParts';\nimport { getStyleOptions } from './StyleOptionsState';\nimport { styleToClassName } from './styleToClassName';\n/**\n * Concatenation helper, which can merge class names together. Skips over falsey values.\n *\n * @public\n */\nexport function mergeStyles() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return mergeCss(args, getStyleOptions());\n}\n/**\n * Concatenation helper, which can merge class names together. Skips over falsey values.\n * Accepts a set of options that will be used when calculating styles.\n *\n * @public\n */\nexport function mergeCss(args, options) {\n var styleArgs = args instanceof Array ? args : [args];\n var _a = extractStyleParts(styleArgs), classes = _a.classes, objects = _a.objects;\n if (objects.length) {\n classes.push(styleToClassName(options || {}, objects));\n }\n return classes.join(' ');\n}\n//# sourceMappingURL=mergeStyles.js.map" - }, - { - "id": "YESw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nativeCreate.js", - "name": "./node_modules/lodash/_nativeCreate.js", - "index": 479, - "index2": 466, - "size": 187, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashClear.js", - "issuerId": "SfRM", - "issuerName": "./node_modules/lodash/_hashClear.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - }, - { - "id": "SfRM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashClear.js", - "name": "./node_modules/lodash/_hashClear.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "JSQU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashSet.js", - "module": "./node_modules/lodash/_hashSet.js", - "moduleName": "./node_modules/lodash/_hashSet.js", - "type": "cjs require", - "userRequest": "./_nativeCreate", - "loc": "1:19-45" - }, - { - "moduleId": "SfRM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashClear.js", - "module": "./node_modules/lodash/_hashClear.js", - "moduleName": "./node_modules/lodash/_hashClear.js", - "type": "cjs require", - "userRequest": "./_nativeCreate", - "loc": "1:19-45" - }, - { - "moduleId": "ekgI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashHas.js", - "module": "./node_modules/lodash/_hashHas.js", - "moduleName": "./node_modules/lodash/_hashHas.js", - "type": "cjs require", - "userRequest": "./_nativeCreate", - "loc": "1:19-45" - }, - { - "moduleId": "u8Dt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashGet.js", - "module": "./node_modules/lodash/_hashGet.js", - "moduleName": "./node_modules/lodash/_hashGet.js", - "type": "cjs require", - "userRequest": "./_nativeCreate", - "loc": "1:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 12, - "source": "var getNative = require('./_getNative');\n\n/* Built-in method references that are verified to be native. */\nvar nativeCreate = getNative(Object, 'create');\n\nmodule.exports = nativeCreate;\n" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js", - "index": 568, - "index2": 561, - "size": 1650, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "issuerId": "4Oe1", - "issuerName": "./node_modules/lodash/_customOmitClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4Oe1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "module": "./node_modules/lodash/_customOmitClone.js", - "moduleName": "./node_modules/lodash/_customOmitClone.js", - "type": "cjs require", - "userRequest": "./isPlainObject", - "loc": "1:20-46" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseGetTag = require('./_baseGetTag'),\n getPrototype = require('./_getPrototype'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar objectTag = '[object Object]';\n\n/** Used for built-in method references. */\nvar funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Used to infer the `Object` constructor. */\nvar objectCtorString = funcToString.call(Object);\n\n/**\n * Checks if `value` is a plain object, that is, an object created by the\n * `Object` constructor or one with a `[[Prototype]]` of `null`.\n *\n * @static\n * @memberOf _\n * @since 0.8.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * _.isPlainObject(new Foo);\n * // => false\n *\n * _.isPlainObject([1, 2, 3]);\n * // => false\n *\n * _.isPlainObject({ 'x': 0, 'y': 0 });\n * // => true\n *\n * _.isPlainObject(Object.create(null));\n * // => true\n */\nfunction isPlainObject(value) {\n if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n return false;\n }\n var proto = getPrototype(value);\n if (proto === null) {\n return true;\n }\n var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n return typeof Ctor == 'function' && Ctor instanceof Ctor &&\n funcToString.call(Ctor) == objectCtorString;\n}\n\nmodule.exports = isPlainObject;\n" - }, - { - "id": "YuTi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/webpack/buildin/module.js", - "name": "(webpack)/buildin/module.js", - "index": 504, - "index2": 493, - "size": 497, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "issuerId": "DSRE", - "issuerName": "./node_modules/lodash/isBuffer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - }, - { - "id": "DSRE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "name": "./node_modules/lodash/isBuffer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "5Tg0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneBuffer.js", - "module": "./node_modules/lodash/_cloneBuffer.js", - "moduleName": "./node_modules/lodash/_cloneBuffer.js", - "type": "cjs require", - "userRequest": "module", - "loc": "1:0-41" - }, - { - "moduleId": "DSRE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "module": "./node_modules/lodash/isBuffer.js", - "moduleName": "./node_modules/lodash/isBuffer.js", - "type": "cjs require", - "userRequest": "module", - "loc": "1:0-41" - }, - { - "moduleId": "mdPL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nodeUtil.js", - "module": "./node_modules/lodash/_nodeUtil.js", - "moduleName": "./node_modules/lodash/_nodeUtil.js", - "type": "cjs require", - "userRequest": "module", - "loc": "1:0-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "module.exports = function(module) {\n\tif (!module.webpackPolyfill) {\n\t\tmodule.deprecate = function() {};\n\t\tmodule.paths = [];\n\t\t// module.parent = undefined by default\n\t\tif (!module.children) module.children = [];\n\t\tObject.defineProperty(module, \"loaded\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.l;\n\t\t\t}\n\t\t});\n\t\tObject.defineProperty(module, \"id\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.i;\n\t\t\t}\n\t\t});\n\t\tmodule.webpackPolyfill = 1;\n\t}\n\treturn module;\n};\n" - }, - { - "id": "Z/cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "index": 123, - "index2": 118, - "size": 168, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../collectionNumberField", - "loc": "72:0-65" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../collectionNumberField", - "loc": "485:43-64" - } - ], - "usedExports": [ - "CollectionNumberField" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 8, - "source": "export * from './CollectionNumberField';\nexport * from './ICollectionNumberFieldProps';\nexport * from './ICollectionNumberFieldState';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Z0cm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArray.js", - "name": "./node_modules/lodash/isArray.js", - "index": 502, - "index2": 492, - "size": 488, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "issuerId": "4uTw", - "issuerName": "./node_modules/lodash/_castPath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4uTw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "module": "./node_modules/lodash/_castPath.js", - "moduleName": "./node_modules/lodash/_castPath.js", - "type": "cjs require", - "userRequest": "./isArray", - "loc": "1:14-34" - }, - { - "moduleId": "9ggG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isKey.js", - "module": "./node_modules/lodash/_isKey.js", - "moduleName": "./node_modules/lodash/_isKey.js", - "type": "cjs require", - "userRequest": "./isArray", - "loc": "1:14-34" - }, - { - "moduleId": "BiGR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isFlattenable.js", - "module": "./node_modules/lodash/_isFlattenable.js", - "moduleName": "./node_modules/lodash/_isFlattenable.js", - "type": "cjs require", - "userRequest": "./isArray", - "loc": "3:14-34" - }, - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./isArray", - "loc": "16:14-34" - }, - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./isArray", - "loc": "3:14-34" - }, - { - "moduleId": "fR/l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetAllKeys.js", - "module": "./node_modules/lodash/_baseGetAllKeys.js", - "moduleName": "./node_modules/lodash/_baseGetAllKeys.js", - "type": "cjs require", - "userRequest": "./isArray", - "loc": "2:14-34" - }, - { - "moduleId": "zoYe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseToString.js", - "module": "./node_modules/lodash/_baseToString.js", - "moduleName": "./node_modules/lodash/_baseToString.js", - "type": "cjs require", - "userRequest": "./isArray", - "loc": "3:14-34" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\nvar isArray = Array.isArray;\n\nmodule.exports = isArray;\n" - }, - { - "id": "Z4jB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "index": 162, - "index2": 150, - "size": 3674, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "120:8-20" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:8-20" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "345:8-20" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:8-20" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:8-20" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/customizable", - "loc": "22:0-46" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/customizable", - "loc": "22:0-46" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1662:8-20" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "17:8-20" - } - ], - "usedExports": [ - "customizable" - ], - "providedExports": [ - "customizable" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Customizations } from './Customizations';\nimport { hoistStatics } from '../hoistStatics';\nimport { CustomizerContext } from './CustomizerContext';\nimport { concatStyleSets } from '@uifabric/merge-styles';\nexport function customizable(scope, fields, concatStyles) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return function customizableFactory(ComposedComponent) {\n var _a;\n var resultClass = (_a = /** @class */ (function (_super) {\n __extends(ComponentWithInjectedProps, _super);\n function ComponentWithInjectedProps(props) {\n var _this = _super.call(this, props) || this;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n _this._styleCache = {};\n _this._onSettingChanged = _this._onSettingChanged.bind(_this);\n return _this;\n }\n ComponentWithInjectedProps.prototype.componentDidMount = function () {\n Customizations.observe(this._onSettingChanged);\n };\n ComponentWithInjectedProps.prototype.componentWillUnmount = function () {\n Customizations.unobserve(this._onSettingChanged);\n };\n ComponentWithInjectedProps.prototype.render = function () {\n var _this = this;\n return (React.createElement(CustomizerContext.Consumer, null, function (context) {\n var defaultProps = Customizations.getSettings(fields, scope, context.customizations);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var componentProps = _this.props;\n // If defaultProps.styles is a function, evaluate it before calling concatStyleSets\n if (defaultProps.styles && typeof defaultProps.styles === 'function') {\n defaultProps.styles = defaultProps.styles(__assign(__assign({}, defaultProps), componentProps));\n }\n // If concatStyles is true and custom styles have been defined compute those styles\n if (concatStyles && defaultProps.styles) {\n if (_this._styleCache.default !== defaultProps.styles ||\n _this._styleCache.component !== componentProps.styles) {\n var mergedStyles = concatStyleSets(defaultProps.styles, componentProps.styles);\n _this._styleCache.default = defaultProps.styles;\n _this._styleCache.component = componentProps.styles;\n _this._styleCache.merged = mergedStyles;\n }\n return React.createElement(ComposedComponent, __assign({}, defaultProps, componentProps, { styles: _this._styleCache.merged }));\n }\n return React.createElement(ComposedComponent, __assign({}, defaultProps, componentProps));\n }));\n };\n ComponentWithInjectedProps.prototype._onSettingChanged = function () {\n this.forceUpdate();\n };\n return ComponentWithInjectedProps;\n }(React.Component)),\n _a.displayName = 'Customized' + scope,\n _a);\n return hoistStatics(ComposedComponent, resultClass);\n };\n}\n//# sourceMappingURL=customizable.js.map" - }, - { - "id": "Z8oC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheSet.js", - "name": "./node_modules/lodash/_listCacheSet.js", - "index": 454, - "index2": 445, - "size": 553, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "issuerId": "Xi7e", - "issuerName": "./node_modules/lodash/_ListCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Xi7e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "module": "./node_modules/lodash/_ListCache.js", - "moduleName": "./node_modules/lodash/_ListCache.js", - "type": "cjs require", - "userRequest": "./_listCacheSet", - "loc": "5:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var assocIndexOf = require('./_assocIndexOf');\n\n/**\n * Sets the list cache `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf ListCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the list cache instance.\n */\nfunction listCacheSet(key, value) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n ++this.size;\n data.push([key, value]);\n } else {\n data[index][1] = value;\n }\n return this;\n}\n\nmodule.exports = listCacheSet;\n" - }, - { - "id": "ZBTJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/ICollectionDataViewerProps.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/ICollectionDataViewerProps.js", - "index": 277, - "index2": 272, - "size": 54, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "issuerId": "/x9U", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/x9U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionDataViewerProps", - "loc": "2:0-45" - }, - { - "moduleId": "/x9U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionDataViewerProps", - "loc": "2:0-45" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "//# sourceMappingURL=ICollectionDataViewerProps.js.map" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "index": 887, - "index2": 891, - "size": 94, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldNumber", - "loc": "20:0-90" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldNumber", - "loc": "530:106-125" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldNumber", - "loc": "551:63-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldNumber", - "loc": "923:32-51" - } - ], - "usedExports": [ - "PropertyFieldNumber" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 1, - "source": "export * from './propertyFields/number/index';\n//# sourceMappingURL=PropertyFieldNumber.js.map" - }, - { - "id": "ZWtO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGet.js", - "name": "./node_modules/lodash/_baseGet.js", - "index": 564, - "index2": 557, - "size": 616, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "issuerId": "gpbi", - "issuerName": "./node_modules/lodash/_parent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - }, - { - "id": "gpbi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "name": "./node_modules/lodash/_parent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gpbi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "module": "./node_modules/lodash/_parent.js", - "moduleName": "./node_modules/lodash/_parent.js", - "type": "cjs require", - "userRequest": "./_baseGet", - "loc": "1:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var castPath = require('./_castPath'),\n toKey = require('./_toKey');\n\n/**\n * The base implementation of `_.get` without support for default values.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array|string} path The path of the property to get.\n * @returns {*} Returns the resolved value.\n */\nfunction baseGet(object, path) {\n path = castPath(path, object);\n\n var index = 0,\n length = path.length;\n\n while (object != null && index < length) {\n object = object[toKey(path[index++])];\n }\n return (index && index == length) ? object : undefined;\n}\n\nmodule.exports = baseGet;\n" - }, - { - "id": "ZmSF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ICollectionDataItemProps.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ICollectionDataItemProps.js", - "index": 270, - "index2": 263, - "size": 52, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerId": "kQRI", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionDataItemProps", - "loc": "2:0-43" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionDataItemProps", - "loc": "2:0-43" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "//# sourceMappingURL=ICollectionDataItemProps.js.map" - }, - { - "id": "Zpaa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/aria.js", - "name": "./node_modules/@uifabric/utilities/lib/aria.js", - "index": 234, - "index2": 214, - "size": 615, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "22:490-514" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "52:639-663" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "54:26-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "72:355-379" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "117:572-596" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "529:387-411" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "645:439-463" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "645:530-554" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "296:105-129" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./aria", - "loc": "11:0-23" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./aria", - "loc": "11:0-23" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "132:26-50" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "133:26-50" - } - ], - "usedExports": [ - "mergeAriaAttributeValues" - ], - "providedExports": [ - "mergeAriaAttributeValues" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * ARIA helper to concatenate attributes, returning undefined if all attributes\n * are undefined. (Empty strings are not a valid ARIA attribute value.)\n *\n * @param ariaAttributes - ARIA attributes to merge\n */\nexport function mergeAriaAttributeValues() {\n var ariaAttributes = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n ariaAttributes[_i] = arguments[_i];\n }\n var mergedAttribute = ariaAttributes\n .filter(function (arg) { return arg; })\n .join(' ')\n .trim();\n return mergedAttribute === '' ? undefined : mergedAttribute;\n}\n//# sourceMappingURL=aria.js.map" - }, - { - "id": "a3+T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "index": 441, - "index2": 435, - "size": 292, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "issuerId": "SC5K", - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js" - }, - { - "id": "SC5K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "SC5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./IFrameDialogContent.module.css", - "loc": "1:14-149" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "exports = module.exports = require(\"../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".iFrameDialog_bbda31dc{border:none}.iFrameDialog_bbda31dc .spinnerContainer_bbda31dc{position:absolute;left:50%;top:50%;margin-left:-14px;margin-top:-14px}\", \"\"]);\n" - }, - { - "id": "aOEV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/ICollectionNumberFieldProps.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/ICollectionNumberFieldProps.js", - "index": 125, - "index2": 116, - "size": 55, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "issuerId": "Z/cK", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "Z/cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Z/cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionNumberFieldProps", - "loc": "2:0-46" - }, - { - "moduleId": "Z/cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionNumberFieldProps", - "loc": "2:0-46" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "//# sourceMappingURL=ICollectionNumberFieldProps.js.map" - }, - { - "id": "adU4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheDelete.js", - "name": "./node_modules/lodash/_listCacheDelete.js", - "index": 449, - "index2": 442, - "size": 775, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "issuerId": "Xi7e", - "issuerName": "./node_modules/lodash/_ListCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Xi7e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "module": "./node_modules/lodash/_ListCache.js", - "moduleName": "./node_modules/lodash/_ListCache.js", - "type": "cjs require", - "userRequest": "./_listCacheDelete", - "loc": "2:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var assocIndexOf = require('./_assocIndexOf');\n\n/** Used for built-in method references. */\nvar arrayProto = Array.prototype;\n\n/** Built-in value references. */\nvar splice = arrayProto.splice;\n\n/**\n * Removes `key` and its value from the list cache.\n *\n * @private\n * @name delete\n * @memberOf ListCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction listCacheDelete(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n return false;\n }\n var lastIndex = data.length - 1;\n if (index == lastIndex) {\n data.pop();\n } else {\n splice.call(data, index, 1);\n }\n --this.size;\n return true;\n}\n\nmodule.exports = listCacheDelete;\n" - }, - { - "id": "aupw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js", - "name": "./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js", - "index": 145, - "index2": 131, - "size": 2085, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "issuerId": "Sbs+", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "yI02", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/Coachmark.js" - }, - { - "id": "bATe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js" - }, - { - "id": "y19T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js" - }, - { - "id": "Sbs+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Tooltip", - "loc": "105:133-148" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Callout", - "loc": "131:205-220" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Callout/index", - "loc": "289:124-139" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Callout", - "loc": "558:173-188" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Callout", - "loc": "558:228-243" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "7:0-63" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "308:241-256" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "204:228-243" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "204:283-298" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "5:0-45" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "5:0-45" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../common/DirectionalHint", - "loc": "4:0-66" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "../../../common/DirectionalHint", - "loc": "7:126-141" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "8:0-63" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "96:45-60" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../ContextualMenu", - "loc": "30:102-117" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../ContextualMenu", - "loc": "34:83-98" - }, - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "9:0-45" - }, - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "9:0-45" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "514:264-279" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "514:319-334" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "3:0-63" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "4:0-63" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "16:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "17:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "18:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "19:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "20:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "21:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "22:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "23:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "24:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "25:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "26:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "27:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "28:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "29:7-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "352:56-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "448:25-40" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../common/DirectionalHint", - "loc": "7:0-66" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "../../../common/DirectionalHint", - "loc": "316:25-40" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "9:0-63" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "332:63-78" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "333:66-81" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "421:29-44" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../ContextualMenu", - "loc": "29:232-247" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "8:0-63" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "316:131-146" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "5:0-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "30:25-40" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "7:0-45" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony export imported specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "7:0-45" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "1:0-63" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony export imported specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "1:0-63" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "4:0-63" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "5:0-63" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "105:108-123" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "802:60-75" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "802:90-105" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "876:25-40" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "7:0-63" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "77:371-386" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "6:0-63" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "21:29-44" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "67:29-44" - } - ], - "usedExports": [ - "DirectionalHint" - ], - "providedExports": [ - "DirectionalHint" - ], - "optimizationBailout": [], - "depth": 4, - "source": "export var DirectionalHint = {\n /**\n * Appear above the target element, with the left edges of the callout and target aligning.\n */\n topLeftEdge: 0,\n /**\n * Appear above the target element, with the centers of the callout and target aligning.\n */\n topCenter: 1,\n /**\n * Appear above the target element, with the right edges of the callout and target aligning.\n */\n topRightEdge: 2,\n /**\n * Appear above the target element, aligning with the target element such that the callout tends toward\n * the center of the screen.\n */\n topAutoEdge: 3,\n /**\n * Appear below the target element, with the left edges of the callout and target aligning.\n */\n bottomLeftEdge: 4,\n /**\n * Appear below the target element, with the centers of the callout and target aligning.\n */\n bottomCenter: 5,\n /**\n * Appear below the target element, with the right edges of the callout and target aligning.\n */\n bottomRightEdge: 6,\n /**\n * Appear below the target element, aligning with the target element such that the callout tends toward\n * the center of the screen.\n */\n bottomAutoEdge: 7,\n /**\n * Appear to the left of the target element, with the top edges of the callout and target aligning.\n */\n leftTopEdge: 8,\n /**\n * Appear to the left of the target element, with the centers of the callout and target aligning.\n */\n leftCenter: 9,\n /**\n * Appear to the left of the target element, with the bottom edges of the callout and target aligning.\n */\n leftBottomEdge: 10,\n /**\n * Appear to the right of the target element, with the top edges of the callout and target aligning.\n */\n rightTopEdge: 11,\n /**\n * Appear to the right of the target element, with the centers of the callout and target aligning.\n */\n rightCenter: 12,\n /**\n * Appear to the right of the target element, with the bottom edges of the callout and target aligning.\n */\n rightBottomEdge: 13,\n};\n//# sourceMappingURL=DirectionalHint.js.map" - }, - { - "id": "b2z7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneRegExp.js", - "name": "./node_modules/lodash/_cloneRegExp.js", - "index": 544, - "index2": 536, - "size": 439, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "issuerId": "wrZu", - "issuerName": "./node_modules/lodash/_initCloneByTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "wrZu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "module": "./node_modules/lodash/_initCloneByTag.js", - "moduleName": "./node_modules/lodash/_initCloneByTag.js", - "type": "cjs require", - "userRequest": "./_cloneRegExp", - "loc": "3:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/** Used to match `RegExp` flags from their coerced string values. */\nvar reFlags = /\\w*$/;\n\n/**\n * Creates a clone of `regexp`.\n *\n * @private\n * @param {Object} regexp The regexp to clone.\n * @returns {Object} Returns the cloned regexp.\n */\nfunction cloneRegExp(regexp) {\n var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));\n result.lastIndex = regexp.lastIndex;\n return result;\n}\n\nmodule.exports = cloneRegExp;\n" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js", - "index": 497, - "index2": 502, - "size": 1778, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "issuerId": "mTTR", - "issuerName": "./node_modules/lodash/keysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7GkX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "module": "./node_modules/lodash/keys.js", - "moduleName": "./node_modules/lodash/keys.js", - "type": "cjs require", - "userRequest": "./_arrayLikeKeys", - "loc": "1:20-47" - }, - { - "moduleId": "mTTR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "module": "./node_modules/lodash/keysIn.js", - "moduleName": "./node_modules/lodash/keysIn.js", - "type": "cjs require", - "userRequest": "./_arrayLikeKeys", - "loc": "1:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var baseTimes = require('./_baseTimes'),\n isArguments = require('./isArguments'),\n isArray = require('./isArray'),\n isBuffer = require('./isBuffer'),\n isIndex = require('./_isIndex'),\n isTypedArray = require('./isTypedArray');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Creates an array of the enumerable property names of the array-like `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @param {boolean} inherited Specify returning inherited property names.\n * @returns {Array} Returns the array of property names.\n */\nfunction arrayLikeKeys(value, inherited) {\n var isArr = isArray(value),\n isArg = !isArr && isArguments(value),\n isBuff = !isArr && !isArg && isBuffer(value),\n isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n skipIndexes = isArr || isArg || isBuff || isType,\n result = skipIndexes ? baseTimes(value.length, String) : [],\n length = result.length;\n\n for (var key in value) {\n if ((inherited || hasOwnProperty.call(value, key)) &&\n !(skipIndexes && (\n // Safari 9 has enumerable `arguments.length` in strict mode.\n key == 'length' ||\n // Node.js 0.10 has enumerable non-index properties on buffers.\n (isBuff && (key == 'offset' || key == 'parent')) ||\n // PhantomJS 2 has enumerable non-index properties on typed arrays.\n (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\n // Skip index properties.\n isIndex(key, length)\n ))) {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = arrayLikeKeys;\n" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "index": 912, - "index2": 916, - "size": 111, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation", - "loc": "28:0-112" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation", - "loc": "1012:32-62" - } - ], - "usedExports": [ - "PropertyPaneWebPartInformation" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 1, - "source": "export * from './propertyFields/webPartInformation';\n//# sourceMappingURL=PropertyPaneWebPartInformation.js.map" - }, - { - "id": "bakf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/extendComponent.js a42531e4d18680045b79ae5959e08f92", - "name": "./node_modules/@uifabric/utilities/lib/extendComponent.js + 1 modules", - "index": 103, - "index2": 91, - "size": 1203, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+G3N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "module": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": "+G3N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "module": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "13:12-27" - }, - { - "moduleId": "WJ1O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": "WJ1O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "9:4-19" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "27:0-34" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./extendComponent", - "loc": "27:0-34" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "13:12-27" - } - ], - "usedExports": [ - "extendComponent" - ], - "providedExports": [ - "extendComponent" - ], - "optimizationBailout": [], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/appendFunction.js", - "name": "./node_modules/@uifabric/utilities/lib/appendFunction.js", - "index": 104, - "index2": 90, - "size": 686, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/extendComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/extendComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/extendComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./appendFunction", - "loc": "1:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/extendComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/extendComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/extendComponent.js", - "type": "harmony import specifier", - "userRequest": "./appendFunction", - "loc": "9:29-43" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./appendFunction", - "loc": "10:0-33" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./appendFunction", - "loc": "10:0-33" - } - ], - "usedExports": [ - "appendFunction" - ], - "providedExports": [ - "appendFunction" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/* eslint-disable @typescript-eslint/no-explicit-any */\n/**\n * Returns a single function which will call each of the given functions in the context of the\n * parent.\n */\nexport function appendFunction(parent) {\n var functions = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n functions[_i - 1] = arguments[_i];\n }\n if (functions.length < 2) {\n return functions[0];\n }\n return function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n functions.forEach(function (f) { return f && f.apply(parent, args); });\n };\n}\n//# sourceMappingURL=appendFunction.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/extendComponent.js", - "name": "./node_modules/@uifabric/utilities/lib/extendComponent.js", - "index": 103, - "index2": 91, - "size": 517, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+G3N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "module": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": "+G3N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "module": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "13:12-27" - }, - { - "moduleId": "WJ1O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": "WJ1O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "9:4-19" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "27:0-34" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./extendComponent", - "loc": "27:0-34" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "13:12-27" - } - ], - "usedExports": [ - "extendComponent" - ], - "providedExports": [ - "extendComponent" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { appendFunction } from './appendFunction';\n/**\n * Extends a component's lifetime methods by appending new functions to the existing lifetime functions.\n */\nexport function extendComponent(parent, methods) {\n for (var name_1 in methods) {\n if (methods.hasOwnProperty(name_1)) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n parent[name_1] = appendFunction(parent, parent[name_1], methods[name_1]);\n }\n }\n}\n//# sourceMappingURL=extendComponent.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "br4S", - "identifier": "external \"@microsoft/sp-webpart-base\"", - "name": "external \"@microsoft/sp-webpart-base\"", - "index": 5, - "index2": 4, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "3:0-67" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "7:20-41" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "14:0-67" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "21:20-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "14:0-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "31:47-68" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "4:0-68" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "7:55-76" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "14:0-67" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-webpart-base", - "loc": "20:20-41" - } - ], - "usedExports": [ - "BaseClientSideWebPart", - "PropertyPaneFieldType" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "c6wG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "name": "./node_modules/lodash/isTypedArray.js", - "index": 507, - "index2": 501, - "size": 695, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "issuerId": "b80T", - "issuerName": "./node_modules/lodash/_arrayLikeKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./isTypedArray", - "loc": "6:19-44" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var baseIsTypedArray = require('./_baseIsTypedArray'),\n baseUnary = require('./_baseUnary'),\n nodeUtil = require('./_nodeUtil');\n\n/* Node.js helper references. */\nvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n/**\n * Checks if `value` is classified as a typed array.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n * @example\n *\n * _.isTypedArray(new Uint8Array);\n * // => true\n *\n * _.isTypedArray([]);\n * // => false\n */\nvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\nmodule.exports = isTypedArray;\n" - }, - { - "id": "cDcd", - "identifier": "external \"react\"", - "name": "external \"react\"", - "index": 1, - "index2": 0, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+D8x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "module": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "+D8x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "module": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:13-27" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:26-41" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:22-37" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:20-39" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:16-35" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:2-17" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:12-31" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:8-27" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:12-31" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "85:26-45" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:16-35" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:28-47" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "157:2-17" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:26-41" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:31-46" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:27-42" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "305:16-35" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "306:12-31" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "307:16-35" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "308:34-53" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "309:16-35" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "310:20-39" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "395:2-17" - }, - { - "moduleId": "/sqS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "/sqS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:25-42" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:28-43" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:23-38" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:33-48" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "239:16-35" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "240:22-41" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "241:12-31" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "242:40-59" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "243:16-35" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "244:20-39" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "245:43-62" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "246:35-54" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:24-43" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "248:55-74" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "249:24-43" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "250:24-43" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "251:30-49" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "252:12-31" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "390:2-17" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:23-42" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:23-42" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:23-42" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:39-58" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:33-52" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "80:16-35" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:100-119" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "82:52-71" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:12-31" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:2-17" - }, - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "react", - "loc": "8:37-53" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:23-42" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:23-42" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:23-42" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:23-42" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:23-42" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:21-36" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:35-50" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:16-35" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "204:48-67" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "205:12-31" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "291:2-17" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:15-34" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:2-17" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:22-37" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:20-39" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:20-39" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:2-17" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:19-33" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:15-34" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:41-46" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:12-32" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:23-42" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "79:15-34" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:48-67" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:59-78" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:16-35" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:12-31" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:2-17" - }, - { - "moduleId": "57t7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "57t7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "2:31-50" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:27-42" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:19-38" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:20-39" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "64:20-39" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "85:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:12-31" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:51-70" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "156:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "162:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "176:16-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "286:2-17" - }, - { - "moduleId": "5fkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "module": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "5fkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "module": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:39-53" - }, - { - "moduleId": "5fkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "module": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:2-17" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:22-41" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "243:16-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "246:12-31" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:16-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:199-218" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:550-569" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "248:16-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "249:20-39" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "250:24-43" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "255:28-47" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "256:24-43" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "261:28-47" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "262:44-63" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "263:28-47" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "264:12-31" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "265:16-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "266:20-39" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "267:24-43" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "268:47-66" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "269:82-101" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "270:20-39" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "272:32-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "273:63-82" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "278:32-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "281:36-55" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "285:40-59" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "304:36-55" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "308:40-59" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "547:2-17" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:4-19" - }, - { - "moduleId": "6SDC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConst.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "6SDC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConst.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:14-26" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:16-35" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:12-31" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:43-62" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:2-17" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "196:2-17" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:15-34" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:2-17" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:23-38" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "283:16-35" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "284:74-93" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "285:29-48" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "286:26-45" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "287:12-31" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "287:132-151" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "288:16-35" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "297:16-35" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "298:20-39" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "299:20-39" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "300:74-93" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "301:29-48" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "302:26-45" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "348:2-17" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "16:0-31" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:32-51" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:134-153" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:6-21" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:11-27" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:59-78" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "37:0-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "38:0-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:13-27" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:13-27" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:13-27" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:24-41" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:24-41" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "61:0-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:4-19" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:4-19" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:15-34" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:35-49" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:11-30" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:4-19" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "90:15-34" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "90:35-49" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "92:11-30" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "481:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "483:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "485:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "487:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "489:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "491:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "506:23-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "549:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "550:69-88" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "551:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "552:78-97" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "553:57-76" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "554:12-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "555:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "556:20-39" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "557:24-43" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "558:43-62" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "558:359-378" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "559:20-39" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "560:20-39" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "560:107-126" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "561:24-43" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "564:12-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "566:41-60" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "567:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "567:70-89" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "573:16-35" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "576:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:27-42" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:33-48" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:32-47" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:20-39" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "89:12-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "90:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:12-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "137:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "167:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "170:12-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "181:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "188:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "189:12-31" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "190:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "191:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "194:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:20-39" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "235:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "241:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "250:19-38" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "253:19-38" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "258:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "263:2-17" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "268:25-40" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "276:20-39" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "279:20-39" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "290:16-35" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "305:2-17" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:11-30" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:2-17" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:29-41" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:20-32" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:22-37" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "441:16-35" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "1044:2-17" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:29-44" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:24-43" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:23-42" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "197:16-35" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:12-31" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:16-35" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:76-95" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:33-52" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "206:20-39" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "207:24-43" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "208:28-47" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "209:76-95" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "210:45-64" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "212:33-52" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "213:20-39" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:24-43" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "215:28-47" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "322:15-34" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "326:15-34" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "357:16-35" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "367:16-35" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "416:2-17" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "4:0-31" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-22" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:20-39" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:16-35" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:16-35" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:21-40" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:27-46" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:2-17" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:16-35" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:159-178" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:2-17" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-27" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:12-31" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:32-46" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:67-86" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:27-46" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "12:0-31" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:22-41" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "5:27-46" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:44-60" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:60-76" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:11-30" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:75-94" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:4-19" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:27-42" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:82-101" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:99-118" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:54-73" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "94:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "98:60-79" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "103:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "104:16-35" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "110:24-43" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "113:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:24-43" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "118:20-39" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "152:16-35" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "172:2-17" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:16-35" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:12-31" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:28-47" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "237:27-46" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "574:2-17" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:29-48" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:24-43" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:24-43" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:30-49" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:24-43" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:40-59" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:20-39" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:16-35" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:12-31" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:16-35" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:2-17" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:12-31" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:8-27" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:12-31" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:8-27" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:12-31" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:8-27" - }, - { - "moduleId": "HBL8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Page.js", - "module": "./node_modules/react-js-pagination/dist/Page.js", - "moduleName": "./node_modules/react-js-pagination/dist/Page.js", - "type": "cjs require", - "userRequest": "react", - "loc": "8:37-53" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:29-44" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:16-35" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:2-17" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:22-37" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:16-35" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:2-17" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:12-31" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:8-27" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:12-31" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:8-27" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "125:16-35" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:12-31" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:2-17" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:12-31" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:2-17" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:35-50" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "144:20-39" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "164:16-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "165:12-31" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "166:66-85" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "166:423-442" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "167:16-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "168:20-39" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "169:24-43" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "174:28-47" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "175:24-43" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "180:28-47" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "181:12-31" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "182:16-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "184:28-47" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "194:32-51" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "215:2-17" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:12-31" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:2-17" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "KB00", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "KB00", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:13-27" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "4:13-27" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:19-31" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:22-34" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:4-19" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:4-19" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:23-42" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:19-38" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "12:0-31" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:22-41" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "25:0-31" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:24-43" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:16-35" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:12-31" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:40-59" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:16-35" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:2-17" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "4:0-31" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:8-22" - }, - { - "moduleId": "MZ0x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "MZ0x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:35-54" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:36-51" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:37-52" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:33-48" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:40-59" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "218:16-35" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "219:12-31" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "220:25-44" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:67-86" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:25-44" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "228:62-81" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:26-45" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:102-121" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "302:16-35" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "302:251-270" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "303:12-31" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "306:2-17" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:30-45" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:16-35" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "297:2-17" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "211:29-48" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:22-37" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:34-49" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "228:33-48" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "253:16-35" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "254:12-31" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "255:60-79" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "256:20-39" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "257:16-35" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "318:2-17" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:20-39" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:16-35" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:20-39" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:20-39" - }, - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:2-17" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:30-45" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:37-52" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:33-52" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "124:33-52" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:33-52" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:2-17" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:11-30" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:16-35" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:12-31" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:15-29" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:27-46" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:2-17" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:15-34" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:30-45" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:19-38" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:20-39" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:16-35" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:23-42" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:16-35" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "79:2-17" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:16-35" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:2-17" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "16:0-31" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:31-50" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:125-144" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:6-21" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:11-27" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:60-79" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:23-42" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:2-17" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "21:0-31" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:16-35" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "215:12-31" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "216:16-35" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "217:49-68" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "218:61-80" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:38-57" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:20-39" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "223:20-39" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "224:144-163" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:52-71" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "226:77-96" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "227:12-31" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "228:79-98" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:82-101" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:16-35" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:2-17" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:21-36" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:22-37" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:26-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:34-49" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "498:16-35" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "499:12-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "501:16-35" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "502:20-39" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "503:45-64" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "504:47-66" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "514:62-81" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "515:12-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "681:20-39" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "743:2-17" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "776:16-35" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "777:12-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "779:16-35" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "780:20-39" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "782:12-31" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "783:16-35" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:22-37" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:32-47" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:32-47" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:34-49" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "339:16-35" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "340:12-31" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "341:12-31" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "342:16-35" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "343:12-31" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "344:16-35" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "387:2-17" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:30-45" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:30-45" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "87:16-35" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:12-31" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:2-17" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:19-38" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:2-17" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:22-37" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:22-37" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "50:0-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:30-45" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "106:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "107:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "109:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "110:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "113:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "114:49-68" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "128:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "132:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "133:2-17" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "140:2-17" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "150:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "151:12-31" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "152:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "153:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:20-39" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:24-43" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "158:47-66" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "159:42-61" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:2-17" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:24-43" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "163:16-35" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "164:20-39" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "165:24-43" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "166:28-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "167:28-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "168:28-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "169:28-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "170:50-69" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "171:20-39" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "172:24-43" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "176:36-55" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "177:32-51" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "287:2-17" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "3:0-31" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:22-41" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:49-68" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:2-17" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:29-44" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:32-47" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "213:23-42" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:12-31" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "218:31-50" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "219:31-50" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "220:16-35" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "451:2-17" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:15-34" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "3:0-31" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:32-47" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:29-44" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:23-42" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:12-31" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "134:49-68" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "319:2-17" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "3:0-31" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:28-43" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:40-55" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:45-60" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:36-51" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:35-50" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:38-53" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "226:16-35" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "227:12-31" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "228:34-53" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:16-35" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "230:16-35" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "231:20-39" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "232:24-43" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:102-121" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "234:28-47" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "236:55-74" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "237:56-75" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "239:32-51" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "240:36-55" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "241:40-59" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "425:2-17" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "25:0-31" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:16-35" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:12-31" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:12-31" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:46-65" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:12-31" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:48-67" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:16-35" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:2-17" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:28-43" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:16-35" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:48-67" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:2-17" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:15-34" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:2-17" - }, - { - "moduleId": "UA/s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "UA/s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:15-27" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:16-35" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:28-47" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:24-43" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:26-45" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:2-17" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:24-43" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:30-49" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:16-35" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:12-31" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:16-35" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:16-35" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:85-104" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:108-127" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:12-31" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:16-35" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:8-22" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:2-17" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:29-44" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:30-45" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:16-35" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:12-31" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "128:16-35" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:12-31" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:33-52" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:16-35" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "176:2-17" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:18-34" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:21-33" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:25-41" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:4-19" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:13-27" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:15-34" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:31-41" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:25-40" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:29-44" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:30-49" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:31-50" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:16-35" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:36-50" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:12-31" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:19-38" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:2-17" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:16-35" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:34-53" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:2-17" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:2-17" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:22-37" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:29-44" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:28-43" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "177:16-35" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "178:12-31" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "180:12-31" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "273:2-17" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:27-42" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "210:16-35" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "287:2-17" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "106:16-35" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "107:12-31" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:2-17" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:28-47" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:35-54" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:31-50" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:14-29" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:31-46" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:34-49" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:21-36" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:22-37" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "197:16-35" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:12-31" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "199:16-35" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:20-39" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:47-66" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "212:16-35" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "216:16-35" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "236:2-17" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "4:0-31" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:24-38" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:19-37" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:113-132" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:20-39" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:32-51" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:20-39" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:21-40" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:19-38" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:16-35" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:2-17" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:23-38" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:44-58" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:19-38" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "216:23-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "218:16-35" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "219:12-31" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "220:16-35" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:20-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "223:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "224:24-43" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "227:28-47" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "291:2-17" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:39-54" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:23-42" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:43-57" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:20-39" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:16-35" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:12-31" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:2-17" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:8-27" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:8-27" - }, - { - "moduleId": "fGTi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useId.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "fGTi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useId.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:14-26" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "50:0-31" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:16-35" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:12-31" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:12-31" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:2-17" - }, - { - "moduleId": "gTQK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js bc4d268370d78d06620ded50fe0ebdb7", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "gTQK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js bc4d268370d78d06620ded50fe0ebdb7", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:2-17" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:27-42" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:29-44" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "192:16-35" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "193:12-31" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "194:16-35" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "195:20-39" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "196:24-43" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "197:51-70" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:74-93" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "199:53-72" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:46-65" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "204:12-31" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "239:2-17" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:16-35" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:12-31" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:21-40" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:30-49" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:16-35" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:20-39" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:2-17" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:24-39" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:16-35" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:12-31" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:16-35" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:12-31" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:16-35" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:20-39" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:16-35" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:2-17" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:16-35" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:2-17" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:2-17" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:22-37" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:26-41" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:33-48" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "64:30-45" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "66:33-48" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:20-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "134:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "316:20-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "320:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "332:24-43" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "334:69-88" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "342:20-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "373:51-70" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "377:256-275" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "377:446-465" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "383:20-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "411:19-38" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "830:45-64" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "833:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "840:12-31" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "1230:19-38" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "1236:16-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "1665:2-17" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:20-39" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "66:37-56" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "107:48-67" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-42" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:14-20" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:4-13" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:19-31" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:4-25" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:4-25" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:13-27" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:19-31" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:15-34" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:2-17" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "2:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "6:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "10:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "10:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:26-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:28-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:21-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:24-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:25-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:30-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:49-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "14:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "15:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:30-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:30-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:26-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:31-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:38-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:30-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:15-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:27-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:27-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:90-109" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:68-87" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "25:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "25:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:30-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:21-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:55-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:13-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:30-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:100-119" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:28-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:28-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:4-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:32-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:85-104" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:108-127" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:39-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:30-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:49-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:31-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:31-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:187-206" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "45:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "46:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:29-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:29-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:8-22" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:68-87" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:14-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:87-106" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:42-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:93-112" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "54:167-186" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:209-228" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:39-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:25-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:63-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:39-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:34-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:43-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:30-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "64:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "64:32-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:38-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:32-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:71-90" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:134-153" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:273-292" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:29-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "84:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "85:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "86:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "90:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "91:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "91:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "94:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "96:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "97:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "97:26-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "98:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "98:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "98:148-167" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "99:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "99:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "100:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "100:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "102:56-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "103:62-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "104:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "106:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "106:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "107:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:41-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "109:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "110:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "110:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "111:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "112:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "113:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "115:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "115:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "115:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "116:29-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:102-121" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "118:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "118:41-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "119:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "119:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "119:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "120:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "120:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "120:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "120:43-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "121:417-436" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "122:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "123:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "124:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "124:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "125:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "125:21-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "126:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "127:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "128:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "128:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:36-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "132:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "133:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "134:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "135:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "135:42-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "136:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "139:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "141:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "141:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "141:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "143:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "143:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "143:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "144:11-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "144:20-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "145:20-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "147:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "147:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:42-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:67-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "150:74-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "151:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "152:45-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "153:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:15-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:15-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "156:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "156:366-385" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "159:42-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "161:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "170:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "173:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "174:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "177:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "178:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "178:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "179:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "181:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "187:26-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "187:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "187:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:19-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "199:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "200:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:23-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:34-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "204:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "205:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "208:41-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "213:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "222:26-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "224:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "224:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:26-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:52-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:169-188" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "225:256-275" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "226:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "227:62-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "229:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "231:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:15-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "233:88-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "234:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "235:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "236:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "236:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "237:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "238:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "239:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "242:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "245:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "247:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "251:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "252:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "257:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "266:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "266:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "277:27-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "282:23-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "283:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "284:52-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "284:169-188" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "284:248-267" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "285:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "286:62-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "293:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "294:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "294:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "294:667-686" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "295:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "295:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "296:26-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "296:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "297:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "309:27-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "310:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "316:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "320:4-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "320:23-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "321:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "322:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "323:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "329:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "333:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "353:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "353:157-176" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "360:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "360:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "361:24-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "362:29-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "363:22-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "364:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "364:27-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "365:31-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "367:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "391:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "407:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "407:213-232" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "408:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "418:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "431:22-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "432:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "433:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "434:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "442:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "442:47-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "444:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "444:51-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "445:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "447:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "447:136-155" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "448:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "452:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "452:47-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "453:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "454:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "454:31-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "454:51-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "455:19-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "455:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "455:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "456:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "456:89-108" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "459:45-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "462:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "467:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "470:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "475:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "482:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "485:117-136" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "485:351-370" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "486:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "488:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "488:40-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "488:107-126" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "489:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "490:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "490:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "490:36-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "499:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "499:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "506:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "507:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "515:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "523:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "528:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "533:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "543:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "554:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "562:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "567:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "568:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "573:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "579:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "580:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "581:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "582:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "582:21-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "590:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "591:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "592:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "592:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "596:37-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "602:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "603:37-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "606:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "611:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "611:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "613:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "616:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "618:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "621:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "626:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "627:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "627:37-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "630:37-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "632:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "637:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "638:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "640:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "642:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "643:39-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "645:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "650:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "656:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "659:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "664:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "666:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "669:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "671:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "676:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "681:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "683:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "686:35-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "687:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "688:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "693:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "698:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "701:29-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "713:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "716:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "723:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "726:33-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "731:25-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "818:69-88" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "818:89-103" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "823:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "858:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "911:77-96" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "912:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "913:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "914:12-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "915:16-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "916:20-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "918:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "919:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "921:24-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "921:44-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "922:2-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "923:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "925:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "926:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "927:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "928:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "929:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "930:28-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "931:32-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "933:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "934:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "935:36-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "940:40-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "941:44-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "942:48-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "943:52-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:56-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:140-159" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:248-267" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:357-376" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "944:459-478" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:27-42" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:30-45" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:24-43" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:19-38" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "89:16-35" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "180:2-17" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:15-34" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:2-17" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:22-37" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:34-49" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:37-52" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:34-49" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:29-44" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "201:19-38" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "203:16-35" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "204:34-53" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "205:16-35" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "206:37-56" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "207:16-35" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "208:12-31" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "209:51-70" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "210:16-35" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "301:2-17" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:33-48" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:16-35" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "129:257-276" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "130:12-31" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "140:2-17" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:63-79" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:22-37" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:16-35" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "95:24-43" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "96:25-44" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "97:16-35" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "332:2-17" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "69:16-35" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "70:12-31" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:16-35" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:2-17" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "50:0-31" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "134:16-35" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "135:12-31" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "143:2-17" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "3:48-63" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "5:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "6:12-31" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:20-39" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:24-43" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:20-39" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:24-43" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:20-39" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:24-43" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:16-35" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:20-39" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:24-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:11-30" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:8-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:21-36" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:24-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:11-30" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:38-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:31-46" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:38-53" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:38-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:8-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:38-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:15-34" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:27-46" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "36:27-46" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:27-46" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:15-34" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:2-17" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:24-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:187-206" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "55:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:24-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:209-228" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "74:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:36-55" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "89:38-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "92:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "92:36-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:19-38" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "100:2-17" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "105:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "117:148-167" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "145:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "146:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "146:19-38" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "146:39-53" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "150:15-34" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "176:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "177:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "454:59-78" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "455:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "469:8-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "471:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "475:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "475:36-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "477:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "529:64-83" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "530:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "534:30-49" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "541:19-38" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "556:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "558:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "559:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "560:29-48" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "564:45-64" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "608:2-17" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "671:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "672:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "673:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "685:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "690:20-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "715:8-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "716:12-31" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "723:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "730:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "737:16-35" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "883:2-17" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "27:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:12-31" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "34:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:16-35" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:12-31" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "50:2-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "7:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:8-27" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "9:8-27" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "57:0-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "146:16-35" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "147:32-51" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "148:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "150:16-35" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "152:16-35" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "154:24-43" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:35-54" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "158:24-43" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "160:16-35" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "161:20-39" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "165:20-39" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "166:31-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "168:12-31" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "171:2-17" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "12:0-31" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:22-41" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:27-42" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "48:20-39" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "57:20-39" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:43-62" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:20-39" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:44-63" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:43-62" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "109:16-35" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "138:16-35" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:16-35" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "149:201-215" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "162:8-22" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "162:27-41" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "221:23-37" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "238:2-17" - }, - { - "moduleId": "sNMJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:16-35" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:26-45" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:2-17" - }, - { - "moduleId": "sip3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "sip3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:19-33" - }, - { - "moduleId": "sip3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:6-21" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:20-39" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:177-196" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "56:245-264" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:16-35" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "93:2-21" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:23-42" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:12-31" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:24-43" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "33:28-47" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "37:58-77" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:2-17" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:12-31" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:8-27" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:20-39" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "250:16-35" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "263:2-17" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:27-42" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "192:16-35" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "195:53-72" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "195:130-149" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "220:2-17" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:2-17" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:22-37" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:27-42" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:26-41" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:39-53" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "59:39-53" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:30-49" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:231-250" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "81:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "91:24-43" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "131:39-53" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "161:47-66" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "167:346-365" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "179:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "494:28-47" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "643:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "645:12-31" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "645:132-151" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "646:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "650:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "652:32-51" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "765:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "766:12-31" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "771:19-38" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "778:16-35" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "873:2-17" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:15-34" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:2-17" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:21-38" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:23-42" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:15-34" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:2-17" - }, - { - "moduleId": "v8ot", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "v8ot", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useConstCallback.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "8:14-26" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "15:29-44" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:29-44" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:20-39" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "19:16-35" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:62-81" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "32:24-43" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "49:19-38" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "58:19-38" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "119:16-35" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:2-17" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:16-35" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "17:12-31" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "18:16-35" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:2-17" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-27" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "26:0-31" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "40:20-39" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "41:16-35" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:16-35" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "44:12-31" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:2-17" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "42:48-67" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "43:85-104" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:48-67" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "61:85-104" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:48-67" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "79:85-104" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "12:0-31" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "28:22-41" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:28-47" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "26:42-61" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "29:2-17" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:33-48" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "39:29-44" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:16-35" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "75:51-70" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "196:35-54" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "198:51-70" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "199:16-35" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "206:35-54" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "208:51-70" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "209:16-35" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "214:15-34" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "391:2-17" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:28-43" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "51:16-35" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "52:12-31" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "53:16-35" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "71:2-17" - }, - { - "moduleId": "xjL4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "xjL4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:22-34" - }, - { - "moduleId": "xjL4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "14:4-19" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "10:12-31" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "11:8-27" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "12:28-47" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "47:52-71" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "60:27-46" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:16-35" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "87:12-31" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "112:16-35" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "155:2-17" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "1:0-31" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:4-19" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:16-35" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:25-44" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "30:16-35" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "31:12-31" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "35:15-34" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "38:2-17" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "16:26-41" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "20:20-39" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "21:16-35" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "22:16-35" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "23:16-35" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "24:20-39" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "25:24-43" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "65:28-47" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "108:20-39" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "135:2-17" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "react", - "loc": "2:0-31" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "13:28-43" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "62:28-47" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "63:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "67:29-48" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "68:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "72:27-46" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "73:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "76:29-48" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "77:69-88" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "78:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "79:44-63" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "80:42-61" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "83:27-46" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "85:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "87:12-31" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "88:16-35" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "react", - "loc": "95:2-17" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "cEMg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "index": 205, - "index2": 246, - "size": 28118, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Panel", - "loc": "77:50-55" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Panel", - "loc": "73:32-37" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Panel", - "loc": "1:0-24" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Panel", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Panel" - ], - "providedExports": [ - "Panel" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/elementContains.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/EventGroup.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/css.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/scroll.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.types.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "index": 206, - "index2": 244, - "size": 16477, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "mUw2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/Panel.js" - }, - { - "id": "wF/w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "type": "harmony import specifier", - "userRequest": "./Panel.base", - "loc": "7:26-35" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.base", - "loc": "2:0-29" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Panel.base", - "loc": "2:0-29" - } - ], - "usedExports": [ - "PanelBase" - ], - "providedExports": [ - "PanelBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { IconButton } from '../../Button';\nimport { Layer } from '../../Layer';\nimport { Overlay } from '../../Overlay';\nimport { Popup } from '../../Popup';\nimport { allowScrollOnElement, allowOverscrollOnElement, classNamesFunction, divProperties, elementContains, getId, getNativeProps, getRTL, css, warnDeprecations, Async, EventGroup, initializeComponentRef, } from '../../Utilities';\nimport { FocusTrapZone } from '../FocusTrapZone/index';\nimport { PanelType } from './Panel.types';\nvar getClassNames = classNamesFunction();\nvar COMPONENT_NAME = 'Panel';\nvar PanelVisibilityState;\n(function (PanelVisibilityState) {\n PanelVisibilityState[PanelVisibilityState[\"closed\"] = 0] = \"closed\";\n PanelVisibilityState[PanelVisibilityState[\"animatingOpen\"] = 1] = \"animatingOpen\";\n PanelVisibilityState[PanelVisibilityState[\"open\"] = 2] = \"open\";\n PanelVisibilityState[PanelVisibilityState[\"animatingClosed\"] = 3] = \"animatingClosed\";\n})(PanelVisibilityState || (PanelVisibilityState = {}));\nvar PanelBase = /** @class */ (function (_super) {\n __extends(PanelBase, _super);\n function PanelBase(props) {\n var _this = _super.call(this, props) || this;\n _this._panel = React.createRef();\n _this._animationCallback = null;\n _this._hasCustomNavigation = !!(_this.props.onRenderNavigation || _this.props.onRenderNavigationContent);\n _this.dismiss = function (ev) {\n if (_this.props.onDismiss && _this.isActive) {\n _this.props.onDismiss(ev);\n }\n if (!ev || (ev && !ev.defaultPrevented)) {\n _this.close();\n }\n };\n // Allow the user to scroll within the panel but not on the body\n _this._allowScrollOnPanel = function (elt) {\n if (elt) {\n if (_this._allowTouchBodyScroll) {\n allowOverscrollOnElement(elt, _this._events);\n }\n else {\n allowScrollOnElement(elt, _this._events);\n }\n }\n else {\n _this._events.off(_this._scrollableContent);\n }\n _this._scrollableContent = elt;\n };\n _this._onRenderNavigation = function (props) {\n if (!_this.props.onRenderNavigationContent && !_this.props.onRenderNavigation && !_this.props.hasCloseButton) {\n return null;\n }\n var _a = _this.props.onRenderNavigationContent, onRenderNavigationContent = _a === void 0 ? _this._onRenderNavigationContent : _a;\n return (React.createElement(\"div\", { className: _this._classNames.navigation }, onRenderNavigationContent(props, _this._onRenderNavigationContent)));\n };\n _this._onRenderNavigationContent = function (props) {\n var _a;\n var closeButtonAriaLabel = props.closeButtonAriaLabel, hasCloseButton = props.hasCloseButton, _b = props.onRenderHeader, onRenderHeader = _b === void 0 ? _this._onRenderHeader : _b;\n if (hasCloseButton) {\n var iconButtonStyles = (_a = _this._classNames.subComponentStyles) === null || _a === void 0 ? void 0 : _a.closeButton();\n return (React.createElement(React.Fragment, null,\n !_this._hasCustomNavigation && onRenderHeader(_this.props, _this._onRenderHeader, _this._headerTextId),\n React.createElement(IconButton, { styles: iconButtonStyles, \n // eslint-disable-next-line deprecation/deprecation\n className: _this._classNames.closeButton, onClick: _this._onPanelClick, ariaLabel: closeButtonAriaLabel, title: closeButtonAriaLabel, \"data-is-visible\": true, iconProps: { iconName: 'Cancel' } })));\n }\n return null;\n };\n _this._onRenderHeader = function (props, defaultRender, headerTextId) {\n var headerText = props.headerText, _a = props.headerTextProps, headerTextProps = _a === void 0 ? {} : _a;\n if (headerText) {\n return (React.createElement(\"div\", { className: _this._classNames.header },\n React.createElement(\"div\", __assign({ id: headerTextId, role: \"heading\", \"aria-level\": 1 }, headerTextProps, { className: css(_this._classNames.headerText, headerTextProps.className) }), headerText)));\n }\n return null;\n };\n _this._onRenderBody = function (props) {\n return React.createElement(\"div\", { className: _this._classNames.content }, props.children);\n };\n _this._onRenderFooter = function (props) {\n var _a = _this.props.onRenderFooterContent, onRenderFooterContent = _a === void 0 ? null : _a;\n if (onRenderFooterContent) {\n return (React.createElement(\"div\", { className: _this._classNames.footer },\n React.createElement(\"div\", { className: _this._classNames.footerInner }, onRenderFooterContent())));\n }\n return null;\n };\n _this._animateTo = function (newVisibilityState) {\n if (newVisibilityState === PanelVisibilityState.open && _this.props.onOpen) {\n _this.props.onOpen();\n }\n _this._animationCallback = _this._async.setTimeout(function () {\n _this.setState({ visibility: newVisibilityState });\n _this._onTransitionComplete();\n }, 200);\n };\n _this._clearExistingAnimationTimer = function () {\n if (_this._animationCallback !== null) {\n _this._async.clearTimeout(_this._animationCallback);\n }\n };\n _this._onPanelClick = function (ev) {\n _this.dismiss(ev);\n };\n _this._onTransitionComplete = function () {\n _this._updateFooterPosition();\n if (_this.state.visibility === PanelVisibilityState.open && _this.props.onOpened) {\n _this.props.onOpened();\n }\n if (_this.state.visibility === PanelVisibilityState.closed && _this.props.onDismissed) {\n _this.props.onDismissed();\n }\n };\n var _a = _this.props.allowTouchBodyScroll, allowTouchBodyScroll = _a === void 0 ? false : _a;\n _this._allowTouchBodyScroll = allowTouchBodyScroll;\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n initializeComponentRef(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n ignoreExternalFocusing: 'focusTrapZoneProps',\n forceFocusInsideTrap: 'focusTrapZoneProps',\n firstFocusableSelector: 'focusTrapZoneProps',\n });\n _this.state = {\n isFooterSticky: false,\n // intentionally ignore props so animation takes place during componentDidMount\n visibility: PanelVisibilityState.closed,\n id: getId('Panel'),\n };\n return _this;\n }\n PanelBase.getDerivedStateFromProps = function (nextProps, prevState) {\n if (nextProps.isOpen === undefined) {\n return null; // no state update\n }\n if (nextProps.isOpen &&\n (prevState.visibility === PanelVisibilityState.closed ||\n prevState.visibility === PanelVisibilityState.animatingClosed)) {\n return { visibility: PanelVisibilityState.animatingOpen };\n }\n if (!nextProps.isOpen &&\n (prevState.visibility === PanelVisibilityState.open ||\n prevState.visibility === PanelVisibilityState.animatingOpen)) {\n return { visibility: PanelVisibilityState.animatingClosed };\n }\n return null;\n };\n PanelBase.prototype.componentDidMount = function () {\n this._events.on(window, 'resize', this._updateFooterPosition);\n if (this._shouldListenForOuterClick(this.props)) {\n this._events.on(document.body, 'mousedown', this._dismissOnOuterClick, true);\n }\n if (this.props.isOpen) {\n this.setState({ visibility: PanelVisibilityState.animatingOpen });\n }\n };\n PanelBase.prototype.componentDidUpdate = function (previousProps, previousState) {\n var shouldListenOnOuterClick = this._shouldListenForOuterClick(this.props);\n var previousShouldListenOnOuterClick = this._shouldListenForOuterClick(previousProps);\n if (this.state.visibility !== previousState.visibility) {\n this._clearExistingAnimationTimer();\n if (this.state.visibility === PanelVisibilityState.animatingOpen) {\n this._animateTo(PanelVisibilityState.open);\n }\n else if (this.state.visibility === PanelVisibilityState.animatingClosed) {\n this._animateTo(PanelVisibilityState.closed);\n }\n }\n if (shouldListenOnOuterClick && !previousShouldListenOnOuterClick) {\n this._events.on(document.body, 'mousedown', this._dismissOnOuterClick, true);\n }\n else if (!shouldListenOnOuterClick && previousShouldListenOnOuterClick) {\n this._events.off(document.body, 'mousedown', this._dismissOnOuterClick, true);\n }\n };\n PanelBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n PanelBase.prototype.render = function () {\n var _a = this.props, _b = _a.className, className = _b === void 0 ? '' : _b, elementToFocusOnDismiss = _a.elementToFocusOnDismiss, \n /* eslint-disable deprecation/deprecation */\n firstFocusableSelector = _a.firstFocusableSelector, focusTrapZoneProps = _a.focusTrapZoneProps, forceFocusInsideTrap = _a.forceFocusInsideTrap, hasCloseButton = _a.hasCloseButton, headerText = _a.headerText, _c = _a.headerClassName, headerClassName = _c === void 0 ? '' : _c, ignoreExternalFocusing = _a.ignoreExternalFocusing, \n /* eslint-enable deprecation/deprecation */\n isBlocking = _a.isBlocking, isFooterAtBottom = _a.isFooterAtBottom, isLightDismiss = _a.isLightDismiss, isHiddenOnDismiss = _a.isHiddenOnDismiss, layerProps = _a.layerProps, overlayProps = _a.overlayProps, popupProps = _a.popupProps, type = _a.type, styles = _a.styles, theme = _a.theme, customWidth = _a.customWidth, _d = _a.onLightDismissClick, onLightDismissClick = _d === void 0 ? this._onPanelClick : _d, _e = _a.onRenderNavigation, onRenderNavigation = _e === void 0 ? this._onRenderNavigation : _e, _f = _a.onRenderHeader, onRenderHeader = _f === void 0 ? this._onRenderHeader : _f, _g = _a.onRenderBody, onRenderBody = _g === void 0 ? this._onRenderBody : _g, _h = _a.onRenderFooter, onRenderFooter = _h === void 0 ? this._onRenderFooter : _h;\n var _j = this.state, isFooterSticky = _j.isFooterSticky, visibility = _j.visibility, id = _j.id;\n var isLeft = type === PanelType.smallFixedNear || type === PanelType.customNear ? true : false;\n var isRTL = getRTL(theme);\n var isOnRightSide = isRTL ? isLeft : !isLeft;\n var customWidthStyles = type === PanelType.custom || type === PanelType.customNear ? { width: customWidth } : {};\n var nativeProps = getNativeProps(this.props, divProperties);\n var isOpen = this.isActive;\n var isAnimating = visibility === PanelVisibilityState.animatingClosed || visibility === PanelVisibilityState.animatingOpen;\n this._headerTextId = headerText && id + '-headerText';\n if (!isOpen && !isAnimating && !isHiddenOnDismiss) {\n return null;\n }\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n focusTrapZoneClassName: focusTrapZoneProps ? focusTrapZoneProps.className : undefined,\n hasCloseButton: hasCloseButton,\n headerClassName: headerClassName,\n isAnimating: isAnimating,\n isFooterSticky: isFooterSticky,\n isFooterAtBottom: isFooterAtBottom,\n isOnRightSide: isOnRightSide,\n isOpen: isOpen,\n isHiddenOnDismiss: isHiddenOnDismiss,\n type: type,\n hasCustomNavigation: this._hasCustomNavigation,\n });\n var _k = this, _classNames = _k._classNames, _allowTouchBodyScroll = _k._allowTouchBodyScroll;\n var overlay;\n if (isBlocking && isOpen) {\n overlay = (React.createElement(Overlay, __assign({ className: _classNames.overlay, isDarkThemed: false, onClick: isLightDismiss ? onLightDismissClick : undefined, allowTouchBodyScroll: _allowTouchBodyScroll }, overlayProps)));\n }\n return (React.createElement(Layer, __assign({}, layerProps),\n React.createElement(Popup, __assign({ role: \"dialog\", \"aria-modal\": \"true\", ariaLabelledBy: this._headerTextId ? this._headerTextId : undefined, onDismiss: this.dismiss, className: _classNames.hiddenPanel }, popupProps),\n React.createElement(\"div\", __assign({ \"aria-hidden\": !isOpen && isAnimating }, nativeProps, { ref: this._panel, className: _classNames.root }),\n overlay,\n React.createElement(FocusTrapZone, __assign({ ignoreExternalFocusing: ignoreExternalFocusing, forceFocusInsideTrap: !isBlocking || (isHiddenOnDismiss && !isOpen) ? false : forceFocusInsideTrap, firstFocusableSelector: firstFocusableSelector, isClickableOutsideFocusTrap: true }, focusTrapZoneProps, { className: _classNames.main, style: customWidthStyles, elementToFocusOnDismiss: elementToFocusOnDismiss }),\n React.createElement(\"div\", { className: _classNames.commands, \"data-is-visible\": true }, onRenderNavigation(this.props, this._onRenderNavigation)),\n React.createElement(\"div\", { className: _classNames.contentInner },\n (this._hasCustomNavigation || !hasCloseButton) &&\n onRenderHeader(this.props, this._onRenderHeader, this._headerTextId),\n React.createElement(\"div\", { ref: this._allowScrollOnPanel, className: _classNames.scrollableContent, \"data-is-scrollable\": true }, onRenderBody(this.props, this._onRenderBody)),\n onRenderFooter(this.props, this._onRenderFooter)))))));\n };\n PanelBase.prototype.open = function () {\n if (this.props.isOpen !== undefined) {\n return;\n }\n if (this.isActive) {\n return;\n }\n this.setState({ visibility: PanelVisibilityState.animatingOpen });\n };\n PanelBase.prototype.close = function () {\n if (this.props.isOpen !== undefined) {\n return;\n }\n if (!this.isActive) {\n return;\n }\n this.setState({ visibility: PanelVisibilityState.animatingClosed });\n };\n Object.defineProperty(PanelBase.prototype, \"isActive\", {\n /** isActive is true when panel is open or opening. */\n get: function () {\n return (this.state.visibility === PanelVisibilityState.open ||\n this.state.visibility === PanelVisibilityState.animatingOpen);\n },\n enumerable: true,\n configurable: true\n });\n PanelBase.prototype._shouldListenForOuterClick = function (props) {\n return !!props.isBlocking && !!props.isOpen;\n };\n PanelBase.prototype._updateFooterPosition = function () {\n var scrollableContent = this._scrollableContent;\n if (scrollableContent) {\n var height = scrollableContent.clientHeight;\n var innerHeight_1 = scrollableContent.scrollHeight;\n this.setState({\n isFooterSticky: height < innerHeight_1 ? true : false,\n });\n }\n };\n PanelBase.prototype._dismissOnOuterClick = function (ev) {\n var panel = this._panel.current;\n if (this.isActive && panel && !ev.defaultPrevented) {\n if (!elementContains(panel, ev.target)) {\n if (this.props.onOuterClick) {\n this.props.onOuterClick(ev);\n }\n else {\n this.dismiss(ev);\n }\n }\n }\n };\n PanelBase.defaultProps = {\n isHiddenOnDismiss: false,\n isOpen: undefined,\n isBlocking: true,\n hasCloseButton: true,\n type: PanelType.smallFixedFar,\n };\n return PanelBase;\n}(React.Component));\nexport { PanelBase };\n//# sourceMappingURL=Panel.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "index": 205, - "index2": 246, - "size": 275, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "issuerId": "wF/w", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "mUw2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/Panel.js" - }, - { - "id": "wF/w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Panel", - "loc": "77:50-55" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Panel", - "loc": "73:32-37" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Panel", - "loc": "1:0-24" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Panel", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Panel" - ], - "providedExports": [ - "Panel" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { PanelBase } from './Panel.base';\nimport { getStyles } from './Panel.styles';\n/**\n * Panel description\n */\nexport var Panel = styled(PanelBase, getStyles, undefined, {\n scope: 'Panel',\n});\n//# sourceMappingURL=Panel.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "index": 257, - "index2": 245, - "size": 11261, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "mUw2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/Panel.js" - }, - { - "id": "wF/w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "type": "harmony import specifier", - "userRequest": "./Panel.styles", - "loc": "7:37-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "var _a, _b, _c, _d, _e;\nimport { __assign } from \"tslib\";\nimport { PanelType } from './Panel.types';\nimport { AnimationClassNames, AnimationVariables, getGlobalClassNames, HighContrastSelector, ScreenWidthMinMedium, ScreenWidthMinLarge, ScreenWidthMinXLarge, ScreenWidthMinXXLarge, ScreenWidthMinUhfMobile, IconFontSizes, } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Panel',\n main: 'ms-Panel-main',\n commands: 'ms-Panel-commands',\n contentInner: 'ms-Panel-contentInner',\n scrollableContent: 'ms-Panel-scrollableContent',\n navigation: 'ms-Panel-navigation',\n closeButton: 'ms-Panel-closeButton ms-PanelAction-close',\n header: 'ms-Panel-header',\n headerText: 'ms-Panel-headerText',\n content: 'ms-Panel-content',\n footer: 'ms-Panel-footer',\n footerInner: 'ms-Panel-footerInner',\n isOpen: 'is-open',\n hasCloseButton: 'ms-Panel--hasCloseButton',\n smallFluid: 'ms-Panel--smFluid',\n smallFixedNear: 'ms-Panel--smLeft',\n smallFixedFar: 'ms-Panel--sm',\n medium: 'ms-Panel--md',\n large: 'ms-Panel--lg',\n largeFixed: 'ms-Panel--fixed',\n extraLarge: 'ms-Panel--xl',\n custom: 'ms-Panel--custom',\n customNear: 'ms-Panel--customLeft',\n};\nvar panelWidth = {\n full: '100%',\n auto: 'auto',\n xs: 272,\n sm: 340,\n md1: 592,\n md2: 644,\n lg: 940,\n};\nvar panelMargin = {\n auto: 'auto',\n none: 0,\n md: 48,\n lg: 428,\n xl: 176,\n};\n// Following consts are used below in `getPanelBreakpoints()` function to provide\n// necessary fallbacks for different types of Panel in different breakpoints.\nvar smallPanelSelectors = (_a = {},\n _a[\"@media (min-width: \" + ScreenWidthMinMedium + \"px)\"] = {\n width: panelWidth.sm,\n },\n _a);\nvar mediumPanelSelectors = (_b = {},\n _b[\"@media (min-width: \" + ScreenWidthMinLarge + \"px)\"] = {\n width: panelWidth.md1,\n },\n _b[\"@media (min-width: \" + ScreenWidthMinXLarge + \"px)\"] = {\n width: panelWidth.md2,\n },\n _b);\nvar largePanelSelectors = (_c = {},\n _c[\"@media (min-width: \" + ScreenWidthMinUhfMobile + \"px)\"] = {\n left: panelMargin.md,\n width: panelWidth.auto,\n },\n _c[\"@media (min-width: \" + ScreenWidthMinXXLarge + \"px)\"] = {\n left: panelMargin.lg,\n },\n _c);\nvar largeFixedPanelSelectors = (_d = {},\n _d[\"@media (min-width: \" + ScreenWidthMinXXLarge + \"px)\"] = {\n left: panelMargin.auto,\n width: panelWidth.lg,\n },\n _d);\nvar extraLargePanelSelectors = (_e = {},\n _e[\"@media (min-width: \" + ScreenWidthMinXXLarge + \"px)\"] = {\n left: panelMargin.xl,\n },\n _e);\n// Make sure Panels have fallbacks to different breakpoints by reusing same selectors.\n// This is done in the effort to follow design redlines.\nvar getPanelBreakpoints = function (type) {\n var selectors;\n // Panel types `smallFluid`, `smallFixedNear`, `custom` and `customNear`\n // are not checked in here because they render the same in all the breakpoints\n // and have the checks done separately in the `getStyles` function below.\n switch (type) {\n case PanelType.smallFixedFar:\n selectors = __assign({}, smallPanelSelectors);\n break;\n case PanelType.medium:\n selectors = __assign(__assign({}, smallPanelSelectors), mediumPanelSelectors);\n break;\n case PanelType.large:\n selectors = __assign(__assign(__assign({}, smallPanelSelectors), mediumPanelSelectors), largePanelSelectors);\n break;\n case PanelType.largeFixed:\n selectors = __assign(__assign(__assign(__assign({}, smallPanelSelectors), mediumPanelSelectors), largePanelSelectors), largeFixedPanelSelectors);\n break;\n case PanelType.extraLarge:\n selectors = __assign(__assign(__assign(__assign({}, smallPanelSelectors), mediumPanelSelectors), largePanelSelectors), extraLargePanelSelectors);\n break;\n default:\n break;\n }\n return selectors;\n};\nvar commandBarHeight = '44px';\nvar sharedPaddingStyles = {\n paddingLeft: '24px',\n paddingRight: '24px',\n};\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, focusTrapZoneClassName = props.focusTrapZoneClassName, hasCloseButton = props.hasCloseButton, headerClassName = props.headerClassName, isAnimating = props.isAnimating, isFooterSticky = props.isFooterSticky, isFooterAtBottom = props.isFooterAtBottom, isOnRightSide = props.isOnRightSide, isOpen = props.isOpen, isHiddenOnDismiss = props.isHiddenOnDismiss, hasCustomNavigation = props.hasCustomNavigation, theme = props.theme, _b = props.type, type = _b === void 0 ? PanelType.smallFixedFar : _b;\n var effects = theme.effects, fonts = theme.fonts, semanticColors = theme.semanticColors;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var isCustomPanel = type === PanelType.custom || type === PanelType.customNear;\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n isOpen && classNames.isOpen,\n hasCloseButton && classNames.hasCloseButton,\n {\n pointerEvents: 'none',\n position: 'absolute',\n top: 0,\n left: 0,\n right: 0,\n bottom: 0,\n },\n isCustomPanel && isOnRightSide && classNames.custom,\n isCustomPanel && !isOnRightSide && classNames.customNear,\n className,\n ],\n overlay: [\n {\n pointerEvents: 'auto',\n cursor: 'pointer',\n },\n isOpen && isAnimating && AnimationClassNames.fadeIn100,\n !isOpen && isAnimating && AnimationClassNames.fadeOut100,\n ],\n hiddenPanel: [\n !isOpen &&\n !isAnimating &&\n isHiddenOnDismiss && {\n visibility: 'hidden',\n },\n ],\n main: [\n classNames.main,\n {\n backgroundColor: semanticColors.bodyBackground,\n boxShadow: effects.elevation64,\n pointerEvents: 'auto',\n position: 'absolute',\n display: 'flex',\n flexDirection: 'column',\n overflowX: 'hidden',\n overflowY: 'auto',\n WebkitOverflowScrolling: 'touch',\n bottom: 0,\n top: 0,\n // left, right, width are overridden depending on the type of the Panel and the screen breakpoint.\n left: panelMargin.auto,\n right: panelMargin.none,\n width: panelWidth.full,\n selectors: __assign((_a = {}, _a[HighContrastSelector] = {\n borderLeft: \"3px solid \" + semanticColors.variantBorder,\n borderRight: \"3px solid \" + semanticColors.variantBorder,\n }, _a), getPanelBreakpoints(type)),\n },\n type === PanelType.smallFluid && {\n left: panelMargin.none,\n },\n type === PanelType.smallFixedNear && {\n left: panelMargin.none,\n right: panelMargin.auto,\n width: panelWidth.xs,\n },\n type === PanelType.customNear && {\n right: 'auto',\n left: 0,\n },\n isCustomPanel && {\n maxWidth: '100vw',\n },\n isOpen && isAnimating && !isOnRightSide && AnimationClassNames.slideRightIn40,\n isOpen && isAnimating && isOnRightSide && AnimationClassNames.slideLeftIn40,\n !isOpen && isAnimating && !isOnRightSide && AnimationClassNames.slideLeftOut40,\n !isOpen && isAnimating && isOnRightSide && AnimationClassNames.slideRightOut40,\n focusTrapZoneClassName,\n ],\n commands: [\n classNames.commands,\n {\n marginTop: 18,\n },\n hasCustomNavigation && {\n marginTop: 'inherit',\n },\n ],\n navigation: [\n classNames.navigation,\n {\n display: 'flex',\n justifyContent: 'flex-end',\n },\n hasCustomNavigation && {\n height: commandBarHeight,\n },\n ],\n contentInner: [\n classNames.contentInner,\n {\n display: 'flex',\n flexDirection: 'column',\n flexGrow: 1,\n overflowY: 'hidden',\n },\n ],\n header: [\n classNames.header,\n sharedPaddingStyles,\n {\n alignSelf: 'flex-start',\n },\n hasCloseButton &&\n !hasCustomNavigation && {\n flexGrow: 1,\n },\n hasCustomNavigation && {\n // Ensure that title doesn't shrink if screen is too small\n flexShrink: 0,\n },\n ],\n headerText: [\n classNames.headerText,\n fonts.xLarge,\n {\n color: semanticColors.bodyText,\n lineHeight: '27px',\n overflowWrap: 'break-word',\n wordWrap: 'break-word',\n wordBreak: 'break-word',\n hyphens: 'auto',\n },\n headerClassName,\n ],\n scrollableContent: [\n classNames.scrollableContent,\n {\n overflowY: 'auto',\n },\n isFooterAtBottom && {\n flexGrow: 1,\n },\n ],\n content: [\n classNames.content,\n sharedPaddingStyles,\n {\n paddingBottom: 20,\n },\n ],\n footer: [\n classNames.footer,\n {\n // Ensure that footer doesn't shrink if screen is too small\n flexShrink: 0,\n borderTop: '1px solid transparent',\n transition: \"opacity \" + AnimationVariables.durationValue3 + \" \" + AnimationVariables.easeFunction2,\n },\n isFooterSticky && {\n background: semanticColors.bodyBackground,\n borderTopColor: semanticColors.variantBorder,\n },\n ],\n footerInner: [\n classNames.footerInner,\n sharedPaddingStyles,\n {\n paddingBottom: 16,\n paddingTop: 16,\n },\n ],\n subComponentStyles: {\n closeButton: {\n root: [\n classNames.closeButton,\n {\n marginRight: 14,\n color: theme.palette.neutralSecondary,\n fontSize: IconFontSizes.large,\n },\n hasCustomNavigation && {\n marginRight: 0,\n height: 'auto',\n width: '44px',\n },\n ],\n rootHovered: {\n color: theme.palette.neutralPrimary,\n },\n },\n },\n };\n};\n//# sourceMappingURL=Panel.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "cvCv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/constant.js", - "name": "./node_modules/lodash/constant.js", - "index": 577, - "index2": 568, - "size": 528, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "issuerId": "pFRH", - "issuerName": "./node_modules/lodash/_baseSetToString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "wclG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "name": "./node_modules/lodash/_setToString.js" - }, - { - "id": "pFRH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "name": "./node_modules/lodash/_baseSetToString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "pFRH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "module": "./node_modules/lodash/_baseSetToString.js", - "moduleName": "./node_modules/lodash/_baseSetToString.js", - "type": "cjs require", - "userRequest": "./constant", - "loc": "1:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * Creates a function that returns `value`.\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Util\n * @param {*} value The value to return from the new function.\n * @returns {Function} Returns the new constant function.\n * @example\n *\n * var objects = _.times(2, _.constant({ 'a': 1 }));\n *\n * console.log(objects);\n * // => [{ 'a': 1 }, { 'a': 1 }]\n *\n * console.log(objects[0] === objects[1]);\n * // => true\n */\nfunction constant(value) {\n return function() {\n return value;\n };\n}\n\nmodule.exports = constant;\n" - }, - { - "id": "cwxN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/EventGroup.js", - "name": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "index": 201, - "index2": 189, - "size": 10817, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "22:31-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "57:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "60:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "64:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "83:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "91:16-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "91:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "102:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "108:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "112:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "117:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "122:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "128:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "160:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "185:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "197:16-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "198:16-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "242:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "243:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "257:16-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "282:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "302:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "371:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "423:28-38" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./EventGroup", - "loc": "4:0-42" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./EventGroup", - "loc": "118:36-46" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "204:28-38" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "235:28-38" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "75:28-38" - }, - { - "moduleId": "O2QR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./EventGroup", - "loc": "1:0-42" - }, - { - "moduleId": "O2QR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony import specifier", - "userRequest": "./EventGroup", - "loc": "18:27-37" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:28-38" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "73:28-38" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "165:28-38" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./EventGroup", - "loc": "5:0-29" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./EventGroup", - "loc": "5:0-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "686:28-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../EventGroup", - "loc": "2:0-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../EventGroup", - "loc": "337:12-22" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "62:28-38" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "137:28-38" - } - ], - "usedExports": [ - "EventGroup" - ], - "providedExports": [ - "EventGroup" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { assign } from './object';\n/** An instance of EventGroup allows anything with a handle to it to trigger events on it.\n * If the target is an HTMLElement, the event will be attached to the element and can be\n * triggered as usual (like clicking for onClick).\n * The event can be triggered by calling EventGroup.raise() here. If the target is an\n * HTMLElement, the event gets raised and is handled by the browser. Otherwise, it gets\n * handled here in EventGroup, and the handler is called in the context of the parent\n * (which is passed in in the constructor).\n *\n * @public\n * {@docCategory EventGroup}\n */\nvar EventGroup = /** @class */ (function () {\n /** parent: the context in which events attached to non-HTMLElements are called */\n function EventGroup(parent) {\n this._id = EventGroup._uniqueId++;\n this._parent = parent;\n this._eventRecords = [];\n }\n /** For IE8, bubbleEvent is ignored here and must be dealt with by the handler.\n * Events raised here by default have bubbling set to false and cancelable set to true.\n * This applies also to built-in events being raised manually here on HTMLElements,\n * which may lead to unexpected behavior if it differs from the defaults.\n *\n */\n EventGroup.raise = function (target, eventName, eventArgs, bubbleEvent) {\n var retVal;\n if (EventGroup._isElement(target)) {\n if (typeof document !== 'undefined' && document.createEvent) {\n var ev = document.createEvent('HTMLEvents');\n ev.initEvent(eventName, bubbleEvent || false, true);\n assign(ev, eventArgs);\n retVal = target.dispatchEvent(ev);\n }\n else if (typeof document !== 'undefined' && document.createEventObject) {\n // IE8\n var evObj = document.createEventObject(eventArgs);\n // cannot set cancelBubble on evObj, fireEvent will overwrite it\n target.fireEvent('on' + eventName, evObj);\n }\n }\n else {\n while (target && retVal !== false) {\n var events = target.__events__;\n var eventRecords = events ? events[eventName] : null;\n if (eventRecords) {\n for (var id in eventRecords) {\n if (eventRecords.hasOwnProperty(id)) {\n var eventRecordList = eventRecords[id];\n for (var listIndex = 0; retVal !== false && listIndex < eventRecordList.length; listIndex++) {\n var record = eventRecordList[listIndex];\n if (record.objectCallback) {\n retVal = record.objectCallback.call(record.parent, eventArgs);\n }\n }\n }\n }\n }\n // If the target has a parent, bubble the event up.\n target = bubbleEvent ? target.parent : null;\n }\n }\n return retVal;\n };\n EventGroup.isObserved = function (target, eventName) {\n var events = target && target.__events__;\n return !!events && !!events[eventName];\n };\n /** Check to see if the target has declared support of the given event. */\n EventGroup.isDeclared = function (target, eventName) {\n var declaredEvents = target && target.__declaredEvents;\n return !!declaredEvents && !!declaredEvents[eventName];\n };\n EventGroup.stopPropagation = function (event) {\n if (event.stopPropagation) {\n event.stopPropagation();\n }\n else {\n // IE8\n event.cancelBubble = true;\n }\n };\n EventGroup._isElement = function (target) {\n return (!!target && (!!target.addEventListener || (typeof HTMLElement !== 'undefined' && target instanceof HTMLElement)));\n };\n EventGroup.prototype.dispose = function () {\n if (!this._isDisposed) {\n this._isDisposed = true;\n this.off();\n this._parent = null;\n }\n };\n /** On the target, attach a set of events, where the events object is a name to function mapping. */\n EventGroup.prototype.onAll = function (target, events, useCapture) {\n for (var eventName in events) {\n if (events.hasOwnProperty(eventName)) {\n this.on(target, eventName, events[eventName], useCapture);\n }\n }\n };\n /**\n * On the target, attach an event whose handler will be called in the context of the parent\n * of this instance of EventGroup.\n */\n EventGroup.prototype.on = function (target, eventName, callback, options) {\n var _this = this;\n if (eventName.indexOf(',') > -1) {\n var events = eventName.split(/[ ,]+/);\n for (var i = 0; i < events.length; i++) {\n this.on(target, events[i], callback, options);\n }\n }\n else {\n var parent_1 = this._parent;\n var eventRecord = {\n target: target,\n eventName: eventName,\n parent: parent_1,\n callback: callback,\n options: options,\n };\n // Initialize and wire up the record on the target, so that it can call the callback if the event fires.\n var events = (target.__events__ = target.__events__ || {});\n events[eventName] =\n events[eventName] ||\n {\n count: 0,\n };\n events[eventName][this._id] = events[eventName][this._id] || [];\n events[eventName][this._id].push(eventRecord);\n events[eventName].count++;\n if (EventGroup._isElement(target)) {\n var processElementEvent = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (_this._isDisposed) {\n return;\n }\n var result;\n try {\n result = callback.apply(parent_1, args);\n if (result === false && args[0]) {\n var e = args[0];\n if (e.preventDefault) {\n e.preventDefault();\n }\n if (e.stopPropagation) {\n e.stopPropagation();\n }\n e.cancelBubble = true;\n }\n }\n catch (e) {\n // ignore\n }\n return result;\n };\n eventRecord.elementCallback = processElementEvent;\n if (target.addEventListener) {\n target.addEventListener(eventName, processElementEvent, options);\n }\n else if (target.attachEvent) {\n // IE8\n target.attachEvent('on' + eventName, processElementEvent);\n }\n }\n else {\n var processObjectEvent = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (_this._isDisposed) {\n return;\n }\n return callback.apply(parent_1, args);\n };\n eventRecord.objectCallback = processObjectEvent;\n }\n // Remember the record locally, so that it can be removed.\n this._eventRecords.push(eventRecord);\n }\n };\n EventGroup.prototype.off = function (target, eventName, callback, options) {\n for (var i = 0; i < this._eventRecords.length; i++) {\n var eventRecord = this._eventRecords[i];\n if ((!target || target === eventRecord.target) &&\n (!eventName || eventName === eventRecord.eventName) &&\n (!callback || callback === eventRecord.callback) &&\n (typeof options !== 'boolean' || options === eventRecord.options)) {\n var events = eventRecord.target.__events__;\n var targetArrayLookup = events[eventRecord.eventName];\n var targetArray = targetArrayLookup ? targetArrayLookup[this._id] : null;\n // We may have already target's entries, so check for null.\n if (targetArray) {\n if (targetArray.length === 1 || !callback) {\n targetArrayLookup.count -= targetArray.length;\n delete events[eventRecord.eventName][this._id];\n }\n else {\n targetArrayLookup.count--;\n targetArray.splice(targetArray.indexOf(eventRecord), 1);\n }\n if (!targetArrayLookup.count) {\n delete events[eventRecord.eventName];\n }\n }\n if (eventRecord.elementCallback) {\n if (eventRecord.target.removeEventListener) {\n eventRecord.target.removeEventListener(eventRecord.eventName, eventRecord.elementCallback, eventRecord.options);\n }\n else if (eventRecord.target.detachEvent) {\n // IE8\n eventRecord.target.detachEvent('on' + eventRecord.eventName, eventRecord.elementCallback);\n }\n }\n this._eventRecords.splice(i--, 1);\n }\n }\n };\n /** Trigger the given event in the context of this instance of EventGroup. */\n EventGroup.prototype.raise = function (eventName, eventArgs, bubbleEvent) {\n return EventGroup.raise(this._parent, eventName, eventArgs, bubbleEvent);\n };\n /** Declare an event as being supported by this instance of EventGroup. */\n EventGroup.prototype.declare = function (event) {\n var declaredEvents = (this._parent.__declaredEvents = this._parent.__declaredEvents || {});\n if (typeof event === 'string') {\n declaredEvents[event] = true;\n }\n else {\n for (var i = 0; i < event.length; i++) {\n declaredEvents[event[i]] = true;\n }\n }\n };\n EventGroup._uniqueId = 0;\n return EventGroup;\n}());\nexport { EventGroup };\n//# sourceMappingURL=EventGroup.js.map" - }, - { - "id": "dD9F", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsTypedArray.js", - "name": "./node_modules/lodash/_baseIsTypedArray.js", - "index": 508, - "index2": 498, - "size": 2222, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "issuerId": "c6wG", - "issuerName": "./node_modules/lodash/isTypedArray.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - }, - { - "id": "c6wG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "name": "./node_modules/lodash/isTypedArray.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "c6wG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "module": "./node_modules/lodash/isTypedArray.js", - "moduleName": "./node_modules/lodash/isTypedArray.js", - "type": "cjs require", - "userRequest": "./_baseIsTypedArray", - "loc": "1:23-53" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var baseGetTag = require('./_baseGetTag'),\n isLength = require('./isLength'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n objectTag = '[object Object]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n weakMapTag = '[object WeakMap]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n/** Used to identify `toStringTag` values of typed arrays. */\nvar typedArrayTags = {};\ntypedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\ntypedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\ntypedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\ntypedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\ntypedArrayTags[uint32Tag] = true;\ntypedArrayTags[argsTag] = typedArrayTags[arrayTag] =\ntypedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\ntypedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\ntypedArrayTags[errorTag] = typedArrayTags[funcTag] =\ntypedArrayTags[mapTag] = typedArrayTags[numberTag] =\ntypedArrayTags[objectTag] = typedArrayTags[regexpTag] =\ntypedArrayTags[setTag] = typedArrayTags[stringTag] =\ntypedArrayTags[weakMapTag] = false;\n\n/**\n * The base implementation of `_.isTypedArray` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n */\nfunction baseIsTypedArray(value) {\n return isObjectLike(value) &&\n isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n}\n\nmodule.exports = baseIsTypedArray;\n" - }, - { - "id": "dTAl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseCreate.js", - "name": "./node_modules/lodash/_baseCreate.js", - "index": 548, - "index2": 540, - "size": 686, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "issuerId": "+iFO", - "issuerName": "./node_modules/lodash/_initCloneObject.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "+iFO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "name": "./node_modules/lodash/_initCloneObject.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+iFO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "module": "./node_modules/lodash/_initCloneObject.js", - "moduleName": "./node_modules/lodash/_initCloneObject.js", - "type": "cjs require", - "userRequest": "./_baseCreate", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var isObject = require('./isObject');\n\n/** Built-in value references. */\nvar objectCreate = Object.create;\n\n/**\n * The base implementation of `_.create` without support for assigning\n * properties to the created object.\n *\n * @private\n * @param {Object} proto The object to inherit from.\n * @returns {Object} Returns the new object.\n */\nvar baseCreate = (function() {\n function object() {}\n return function(proto) {\n if (!isObject(proto)) {\n return {};\n }\n if (objectCreate) {\n return objectCreate(proto);\n }\n object.prototype = proto;\n var result = new object;\n object.prototype = undefined;\n return result;\n };\n}());\n\nmodule.exports = baseCreate;\n" - }, - { - "id": "dnZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/ICollectionDataViewerState.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/ICollectionDataViewerState.js", - "index": 278, - "index2": 273, - "size": 54, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "issuerId": "/x9U", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/x9U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionDataViewerState", - "loc": "3:0-45" - }, - { - "moduleId": "/x9U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionDataViewerState", - "loc": "3:0-45" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "//# sourceMappingURL=ICollectionDataViewerState.js.map" - }, - { - "id": "dt0z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/toString.js", - "name": "./node_modules/lodash/toString.js", - "index": 560, - "index2": 553, - "size": 580, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "issuerId": "4uTw", - "issuerName": "./node_modules/lodash/_castPath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4uTw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "module": "./node_modules/lodash/_castPath.js", - "moduleName": "./node_modules/lodash/_castPath.js", - "type": "cjs require", - "userRequest": "./toString", - "loc": "4:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseToString = require('./_baseToString');\n\n/**\n * Converts `value` to a string. An empty string is returned for `null`\n * and `undefined` values. The sign of `-0` is preserved.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n * @example\n *\n * _.toString(null);\n * // => ''\n *\n * _.toString(-0);\n * // => '-0'\n *\n * _.toString([1, 2, 3]);\n * // => '1,2,3'\n */\nfunction toString(value) {\n return value == null ? '' : baseToString(value);\n}\n\nmodule.exports = toString;\n" - }, - { - "id": "e06V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/properties.js", - "name": "./node_modules/@uifabric/utilities/lib/properties.js", - "index": 60, - "index2": 46, - "size": 9363, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "13:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "13:44-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:53-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "22:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "22:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:59-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:86-99" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:175-189" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:202-215" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "32:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "32:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "33:37-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "33:58-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "39:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "39:47-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "47:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "47:53-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "55:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "55:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:25-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:52-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "61:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "61:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "78:32-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "78:59-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:65-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:89-105" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "86:56-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "86:80-96" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "92:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "92:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "93:27-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "93:59-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "94:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "94:53-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "118:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "118:53-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "145:59-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "145:85-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "147:104-118" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "147:131-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "164:48-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "164:74-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "167:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "167:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "181:87-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "181:114-127" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "191:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "191:53-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "214:52-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "214:79-92" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:56-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "322:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "324:109-125" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "324:128-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "355:28-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "355:55-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "356:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "356:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "361:25-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "361:52-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "431:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "431:50-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "524:29-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "621:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "621:45-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "712:45-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "712:71-84" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "29:22-36" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "29:44-65" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:23-37" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:50-63" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "302:26-40" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "302:53-66" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "226:14-28" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "226:42-55" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "132:36-50" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "132:57-70" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:55-69" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:82-95" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "278:26-40" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "278:53-66" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "10:22-36" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "10:44-65" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "8:60-74" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "8:82-95" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:30-44" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:58-79" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "72:17-31" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "72:38-53" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "49:26-40" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "49:53-66" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "83:73-87" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "83:100-113" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:46-60" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:67-88" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:26-40" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:53-68" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "244:23-37" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "244:50-63" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "339:56-70" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "339:83-96" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./properties", - "loc": "47:0-29" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./properties", - "loc": "47:0-29" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony side effect evaluation", - "userRequest": "./properties", - "loc": "1:0-401" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "3:11-26" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "4:11-26" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "5:11-26" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "6:8-20" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "7:8-20" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "8:7-23" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "9:12-28" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "10:11-26" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "11:14-32" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "12:12-28" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "13:12-28" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "14:11-26" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "15:8-20" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "16:8-20" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "17:8-20" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "18:14-32" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "19:9-22" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "20:10-24" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "21:12-28" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "22:9-22" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "33:69-90" - }, - { - "moduleId": "ahHo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "module": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getNativeElementProps.js", - "type": "harmony import specifier", - "userRequest": "./properties", - "loc": "34:11-25" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "29:22-36" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "29:43-64" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "64:26-40" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "64:53-68" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:26-40" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:53-66" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "822:23-37" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "822:50-63" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "82:57-71" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "82:84-97" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "86:66-80" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "86:93-106" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:23-37" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:50-63" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:24-38" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:51-72" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "189:52-66" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "189:79-92" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "118:26-40" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "118:53-66" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:99-113" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:126-139" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:23-37" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:50-63" - } - ], - "usedExports": [ - "anchorProperties", - "buttonProperties", - "divProperties", - "getNativeProps", - "htmlElementProperties", - "imgProperties", - "inputProperties", - "textAreaProperties" - ], - "providedExports": [ - "baseElementEvents", - "baseElementProperties", - "htmlElementProperties", - "labelProperties", - "audioProperties", - "videoProperties", - "olProperties", - "liProperties", - "anchorProperties", - "buttonProperties", - "inputProperties", - "textAreaProperties", - "selectProperties", - "optionProperties", - "tableProperties", - "trProperties", - "thProperties", - "tdProperties", - "colGroupProperties", - "colProperties", - "formProperties", - "iframeProperties", - "imgProperties", - "imageProperties", - "divProperties", - "getNativeProps" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var toObjectMap = function () {\n var items = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n items[_i] = arguments[_i];\n }\n var result = {};\n for (var _a = 0, items_1 = items; _a < items_1.length; _a++) {\n var item = items_1[_a];\n var keys = Array.isArray(item) ? item : Object.keys(item);\n for (var _b = 0, keys_1 = keys; _b < keys_1.length; _b++) {\n var key = keys_1[_b];\n result[key] = 1;\n }\n }\n return result;\n};\n/**\n * An array of events that are allowed on every html element type.\n *\n * @public\n */\nexport var baseElementEvents = toObjectMap([\n 'onCopy',\n 'onCut',\n 'onPaste',\n 'onCompositionEnd',\n 'onCompositionStart',\n 'onCompositionUpdate',\n 'onFocus',\n 'onFocusCapture',\n 'onBlur',\n 'onBlurCapture',\n 'onChange',\n 'onInput',\n 'onSubmit',\n 'onLoad',\n 'onError',\n 'onKeyDown',\n 'onKeyDownCapture',\n 'onKeyPress',\n 'onKeyUp',\n 'onAbort',\n 'onCanPlay',\n 'onCanPlayThrough',\n 'onDurationChange',\n 'onEmptied',\n 'onEncrypted',\n 'onEnded',\n 'onLoadedData',\n 'onLoadedMetadata',\n 'onLoadStart',\n 'onPause',\n 'onPlay',\n 'onPlaying',\n 'onProgress',\n 'onRateChange',\n 'onSeeked',\n 'onSeeking',\n 'onStalled',\n 'onSuspend',\n 'onTimeUpdate',\n 'onVolumeChange',\n 'onWaiting',\n 'onClick',\n 'onClickCapture',\n 'onContextMenu',\n 'onDoubleClick',\n 'onDrag',\n 'onDragEnd',\n 'onDragEnter',\n 'onDragExit',\n 'onDragLeave',\n 'onDragOver',\n 'onDragStart',\n 'onDrop',\n 'onMouseDown',\n 'onMouseDownCapture',\n 'onMouseEnter',\n 'onMouseLeave',\n 'onMouseMove',\n 'onMouseOut',\n 'onMouseOver',\n 'onMouseUp',\n 'onMouseUpCapture',\n 'onSelect',\n 'onTouchCancel',\n 'onTouchEnd',\n 'onTouchMove',\n 'onTouchStart',\n 'onScroll',\n 'onWheel',\n 'onPointerCancel',\n 'onPointerDown',\n 'onPointerEnter',\n 'onPointerLeave',\n 'onPointerMove',\n 'onPointerOut',\n 'onPointerOver',\n 'onPointerUp',\n 'onGotPointerCapture',\n 'onLostPointerCapture',\n]);\n/**\n * An array of element attributes which are allowed on every html element type.\n *\n * @public\n */\nexport var baseElementProperties = toObjectMap([\n 'accessKey',\n 'children',\n 'className',\n 'contentEditable',\n 'dir',\n 'draggable',\n 'hidden',\n 'htmlFor',\n 'id',\n 'lang',\n 'ref',\n 'role',\n 'style',\n 'tabIndex',\n 'title',\n 'translate',\n 'spellCheck',\n 'name',\n]);\n/**\n * An array of HTML element properties and events.\n *\n * @public\n */\nexport var htmlElementProperties = toObjectMap(baseElementProperties, baseElementEvents);\n/**\n * An array of LABEL tag properties and events.\n *\n * @public\n */\nexport var labelProperties = toObjectMap(htmlElementProperties, [\n 'form',\n]);\n/**\n * An array of AUDIO tag properties and events.\n\n * @public\n */\nexport var audioProperties = toObjectMap(htmlElementProperties, [\n 'height',\n 'loop',\n 'muted',\n 'preload',\n 'src',\n 'width',\n]);\n/**\n * An array of VIDEO tag properties and events.\n *\n * @public\n */\nexport var videoProperties = toObjectMap(audioProperties, [\n 'poster',\n]);\n/**\n * An array of OL tag properties and events.\n *\n * @public\n */\nexport var olProperties = toObjectMap(htmlElementProperties, [\n 'start',\n]);\n/**\n * An array of LI tag properties and events.\n *\n * @public\n */\nexport var liProperties = toObjectMap(htmlElementProperties, [\n 'value',\n]);\n/**\n * An array of A tag properties and events.\n *\n * @public\n */\nexport var anchorProperties = toObjectMap(htmlElementProperties, [\n 'download',\n 'href',\n 'hrefLang',\n 'media',\n 'rel',\n 'target',\n 'type',\n]);\n/**\n * An array of BUTTON tag properties and events.\n *\n * @public\n */\nexport var buttonProperties = toObjectMap(htmlElementProperties, [\n 'autoFocus',\n 'disabled',\n 'form',\n 'formAction',\n 'formEncType',\n 'formMethod',\n 'formNoValidate',\n 'formTarget',\n 'type',\n 'value',\n]);\n/**\n * An array of INPUT tag properties and events.\n *\n * @public\n */\nexport var inputProperties = toObjectMap(buttonProperties, [\n 'accept',\n 'alt',\n 'autoCapitalize',\n 'autoComplete',\n 'checked',\n 'dirname',\n 'form',\n 'height',\n 'inputMode',\n 'list',\n 'max',\n 'maxLength',\n 'min',\n 'multiple',\n 'pattern',\n 'placeholder',\n 'readOnly',\n 'required',\n 'src',\n 'step',\n 'size',\n 'type',\n 'value',\n 'width',\n]);\n/**\n * An array of TEXTAREA tag properties and events.\n *\n * @public\n */\nexport var textAreaProperties = toObjectMap(buttonProperties, [\n 'autoCapitalize',\n 'cols',\n 'dirname',\n 'form',\n 'maxLength',\n 'placeholder',\n 'readOnly',\n 'required',\n 'rows',\n 'wrap',\n]);\n/**\n * An array of SELECT tag properties and events.\n *\n * @public\n */\nexport var selectProperties = toObjectMap(buttonProperties, [\n 'form',\n 'multiple',\n 'required',\n]);\nexport var optionProperties = toObjectMap(htmlElementProperties, [\n 'selected',\n 'value',\n]);\n/**\n * An array of TABLE tag properties and events.\n *\n * @public\n */\nexport var tableProperties = toObjectMap(htmlElementProperties, [\n 'cellPadding',\n 'cellSpacing',\n]);\n/**\n * An array of TR tag properties and events.\n *\n * @public\n */\nexport var trProperties = htmlElementProperties;\n/**\n * An array of TH tag properties and events.\n *\n * @public\n */\nexport var thProperties = toObjectMap(htmlElementProperties, [\n 'rowSpan',\n 'scope',\n]);\n/**\n * An array of TD tag properties and events.\n *\n * @public\n */\nexport var tdProperties = toObjectMap(htmlElementProperties, [\n 'colSpan',\n 'headers',\n 'rowSpan',\n 'scope',\n]);\nexport var colGroupProperties = toObjectMap(htmlElementProperties, [\n 'span',\n]);\nexport var colProperties = toObjectMap(htmlElementProperties, [\n 'span',\n]);\n/**\n * An array of FORM tag properties and events.\n *\n * @public\n */\nexport var formProperties = toObjectMap(htmlElementProperties, [\n 'acceptCharset',\n 'action',\n 'encType',\n 'encType',\n 'method',\n 'noValidate',\n 'target',\n]);\n/**\n * An array of IFRAME tag properties and events.\n *\n * @public\n */\nexport var iframeProperties = toObjectMap(htmlElementProperties, [\n 'allow',\n 'allowFullScreen',\n 'allowPaymentRequest',\n 'allowTransparency',\n 'csp',\n 'height',\n 'importance',\n 'referrerPolicy',\n 'sandbox',\n 'src',\n 'srcDoc',\n 'width',\n]);\n/**\n * An array of IMAGE tag properties and events.\n *\n * @public\n */\nexport var imgProperties = toObjectMap(htmlElementProperties, [\n 'alt',\n 'crossOrigin',\n 'height',\n 'src',\n 'srcSet',\n 'useMap',\n 'width',\n]);\n/**\n * @deprecated Use imgProperties for img elements.\n */\nexport var imageProperties = imgProperties;\n/**\n * An array of DIV tag properties and events.\n *\n * @public\n */\nexport var divProperties = htmlElementProperties;\n/**\n * Gets native supported props for an html element provided the allowance set. Use one of the property\n * sets defined (divProperties, buttonPropertes, etc) to filter out supported properties from a given\n * props set. Note that all data- and aria- prefixed attributes will be allowed.\n * NOTE: getNativeProps should always be applied first when adding props to a react component. The\n * non-native props should be applied second. This will prevent getNativeProps from overriding your custom props.\n * For example, if props passed to getNativeProps has an onClick function and getNativeProps is added to\n * the component after an onClick function is added, then the getNativeProps onClick will override it.\n *\n * @public\n * @param props - The unfiltered input props\n * @param allowedPropsNames - The array or record of allowed prop names.\n * @returns The filtered props\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function getNativeProps(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nprops, allowedPropNames, excludedPropNames) {\n // It'd be great to properly type this while allowing 'aria-` and 'data-' attributes like TypeScript does for\n // JSX attributes, but that ability is hardcoded into the TS compiler with no analog in TypeScript typings.\n // Then we'd be able to enforce props extends native props (including aria- and data- attributes), and then\n // return native props.\n // We should be able to do this once this PR is merged: https://github.com/microsoft/TypeScript/pull/26797\n var _a;\n var isArray = Array.isArray(allowedPropNames);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var result = {};\n var keys = Object.keys(props);\n for (var _i = 0, keys_2 = keys; _i < keys_2.length; _i++) {\n var key = keys_2[_i];\n var isNativeProp = (!isArray && allowedPropNames[key]) ||\n (isArray && allowedPropNames.indexOf(key) >= 0) ||\n key.indexOf('data-') === 0 ||\n key.indexOf('aria-') === 0;\n if (isNativeProp && (!excludedPropNames || ((_a = excludedPropNames) === null || _a === void 0 ? void 0 : _a.indexOf(key)) === -1)) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n result[key] = props[key];\n }\n }\n return result;\n}\n//# sourceMappingURL=properties.js.map" - }, - { - "id": "e4+v", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "index": 296, - "index2": 292, - "size": 4479, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./net", - "loc": "3:0-22" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./net", - "loc": "3:0-22" - } - ], - "usedExports": [ - "FetchClient", - "mergeHeaders", - "mergeOptions" - ], - "providedExports": [ - "mergeHeaders", - "mergeOptions", - "getADALResource", - "FetchClient", - "BearerTokenFetchClient", - "SPFxAdalClient" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __awaiter, __extends, __generator } from \"tslib\";\r\nimport { assign, objectDefinedNotNull } from \"./util\";\r\nimport { safeGlobal } from \"./safe-global\";\r\nexport function mergeHeaders(target, source) {\r\n if (objectDefinedNotNull(source)) {\r\n var temp = new Request(\"\", { headers: source });\r\n temp.headers.forEach(function (value, name) {\r\n target.append(name, value);\r\n });\r\n }\r\n}\r\nexport function mergeOptions(target, source) {\r\n if (objectDefinedNotNull(source)) {\r\n var headers = assign(target.headers || {}, source.headers);\r\n target = assign(target, source);\r\n target.headers = headers;\r\n }\r\n}\r\n/**\r\n * Parses out the root of the request url to use as the resource when getting the token\r\n *\r\n * @param url The url to parse\r\n */\r\nexport function getADALResource(url) {\r\n var u = new URL(url);\r\n return u.protocol + \"//\" + u.hostname;\r\n}\r\n/**\r\n * Makes requests using the global/window fetch API\r\n */\r\nvar FetchClient = /** @class */ (function () {\r\n function FetchClient() {\r\n }\r\n FetchClient.prototype.fetch = function (url, options) {\r\n return safeGlobal.fetch(url, options);\r\n };\r\n return FetchClient;\r\n}());\r\nexport { FetchClient };\r\n/**\r\n * Makes requests using the fetch API adding the supplied token to the Authorization header\r\n */\r\nvar BearerTokenFetchClient = /** @class */ (function (_super) {\r\n __extends(BearerTokenFetchClient, _super);\r\n function BearerTokenFetchClient(_token) {\r\n var _this = _super.call(this) || this;\r\n _this._token = _token;\r\n return _this;\r\n }\r\n Object.defineProperty(BearerTokenFetchClient.prototype, \"token\", {\r\n get: function () {\r\n return this._token || \"\";\r\n },\r\n set: function (token) {\r\n this._token = token;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n BearerTokenFetchClient.prototype.fetch = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var headers = new Headers();\r\n mergeHeaders(headers, options.headers);\r\n headers.set(\"Authorization\", \"Bearer \" + this._token);\r\n options.headers = headers;\r\n return _super.prototype.fetch.call(this, url, options);\r\n };\r\n return BearerTokenFetchClient;\r\n}(FetchClient));\r\nexport { BearerTokenFetchClient };\r\n/**\r\n * Client wrapping the aadTokenProvider available from SPFx >= 1.6\r\n */\r\nvar SPFxAdalClient = /** @class */ (function (_super) {\r\n __extends(SPFxAdalClient, _super);\r\n /**\r\n *\r\n * @param context provide the appropriate SPFx Context object\r\n */\r\n function SPFxAdalClient(context) {\r\n var _this = _super.call(this, null) || this;\r\n _this.context = context;\r\n return _this;\r\n }\r\n /**\r\n * Executes a fetch request using the supplied url and options\r\n *\r\n * @param url Absolute url of the request\r\n * @param options Any options\r\n */\r\n SPFxAdalClient.prototype.fetch = function (url, options) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var token;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, this.getToken(getADALResource(url))];\r\n case 1:\r\n token = _a.sent();\r\n this.token = token;\r\n return [2 /*return*/, _super.prototype.fetch.call(this, url, options)];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Gets an AAD token for the provided resource using the SPFx AADTokenProvider\r\n *\r\n * @param resource Resource for which a token is to be requested (ex: https://graph.microsoft.com)\r\n */\r\n SPFxAdalClient.prototype.getToken = function (resource) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var provider;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, this.context.aadTokenProviderFactory.getTokenProvider()];\r\n case 1:\r\n provider = _a.sent();\r\n return [2 /*return*/, provider.getToken(resource)];\r\n }\r\n });\r\n });\r\n };\r\n return SPFxAdalClient;\r\n}(BearerTokenFetchClient));\r\nexport { SPFxAdalClient };\r\n//# sourceMappingURL=net.js.map" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js", - "index": 475, - "index2": 480, - "size": 869, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "issuerId": "0Cz8", - "issuerName": "./node_modules/lodash/_stackSet.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0Cz8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "module": "./node_modules/lodash/_stackSet.js", - "moduleName": "./node_modules/lodash/_stackSet.js", - "type": "cjs require", - "userRequest": "./_MapCache", - "loc": "3:15-37" - }, - { - "moduleId": "44Ds", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/memoize.js", - "module": "./node_modules/lodash/memoize.js", - "moduleName": "./node_modules/lodash/memoize.js", - "type": "cjs require", - "userRequest": "./_MapCache", - "loc": "1:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var mapCacheClear = require('./_mapCacheClear'),\n mapCacheDelete = require('./_mapCacheDelete'),\n mapCacheGet = require('./_mapCacheGet'),\n mapCacheHas = require('./_mapCacheHas'),\n mapCacheSet = require('./_mapCacheSet');\n\n/**\n * Creates a map cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction MapCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n// Add methods to `MapCache`.\nMapCache.prototype.clear = mapCacheClear;\nMapCache.prototype['delete'] = mapCacheDelete;\nMapCache.prototype.get = mapCacheGet;\nMapCache.prototype.has = mapCacheHas;\nMapCache.prototype.set = mapCacheSet;\n\nmodule.exports = MapCache;\n" - }, - { - "id": "eP0N", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/telemetry-js/node_modules/whatwg-fetch/fetch.js", - "name": "./node_modules/@pnp/telemetry-js/node_modules/whatwg-fetch/fetch.js", - "index": 15, - "index2": 9, - "size": 13012, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/telemetry-js/dist/index.js", - "issuerId": "/A2d", - "issuerName": "./node_modules/@pnp/telemetry-js/dist/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js" - }, - { - "id": "/A2d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/telemetry-js/dist/index.js", - "name": "./node_modules/@pnp/telemetry-js/dist/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/A2d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/telemetry-js/dist/index.js", - "module": "./node_modules/@pnp/telemetry-js/dist/index.js", - "moduleName": "./node_modules/@pnp/telemetry-js/dist/index.js", - "type": "cjs require", - "userRequest": "whatwg-fetch", - "loc": "38:0-23" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "(function(self) {\n 'use strict';\n\n if (self.fetch) {\n return\n }\n\n var support = {\n searchParams: 'URLSearchParams' in self,\n iterable: 'Symbol' in self && 'iterator' in Symbol,\n blob: 'FileReader' in self && 'Blob' in self && (function() {\n try {\n new Blob()\n return true\n } catch(e) {\n return false\n }\n })(),\n formData: 'FormData' in self,\n arrayBuffer: 'ArrayBuffer' in self\n }\n\n if (support.arrayBuffer) {\n var viewClasses = [\n '[object Int8Array]',\n '[object Uint8Array]',\n '[object Uint8ClampedArray]',\n '[object Int16Array]',\n '[object Uint16Array]',\n '[object Int32Array]',\n '[object Uint32Array]',\n '[object Float32Array]',\n '[object Float64Array]'\n ]\n\n var isDataView = function(obj) {\n return obj && DataView.prototype.isPrototypeOf(obj)\n }\n\n var isArrayBufferView = ArrayBuffer.isView || function(obj) {\n return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1\n }\n }\n\n function normalizeName(name) {\n if (typeof name !== 'string') {\n name = String(name)\n }\n if (/[^a-z0-9\\-#$%&'*+.\\^_`|~]/i.test(name)) {\n throw new TypeError('Invalid character in header field name')\n }\n return name.toLowerCase()\n }\n\n function normalizeValue(value) {\n if (typeof value !== 'string') {\n value = String(value)\n }\n return value\n }\n\n // Build a destructive iterator for the value list\n function iteratorFor(items) {\n var iterator = {\n next: function() {\n var value = items.shift()\n return {done: value === undefined, value: value}\n }\n }\n\n if (support.iterable) {\n iterator[Symbol.iterator] = function() {\n return iterator\n }\n }\n\n return iterator\n }\n\n function Headers(headers) {\n this.map = {}\n\n if (headers instanceof Headers) {\n headers.forEach(function(value, name) {\n this.append(name, value)\n }, this)\n } else if (Array.isArray(headers)) {\n headers.forEach(function(header) {\n this.append(header[0], header[1])\n }, this)\n } else if (headers) {\n Object.getOwnPropertyNames(headers).forEach(function(name) {\n this.append(name, headers[name])\n }, this)\n }\n }\n\n Headers.prototype.append = function(name, value) {\n name = normalizeName(name)\n value = normalizeValue(value)\n var oldValue = this.map[name]\n this.map[name] = oldValue ? oldValue+','+value : value\n }\n\n Headers.prototype['delete'] = function(name) {\n delete this.map[normalizeName(name)]\n }\n\n Headers.prototype.get = function(name) {\n name = normalizeName(name)\n return this.has(name) ? this.map[name] : null\n }\n\n Headers.prototype.has = function(name) {\n return this.map.hasOwnProperty(normalizeName(name))\n }\n\n Headers.prototype.set = function(name, value) {\n this.map[normalizeName(name)] = normalizeValue(value)\n }\n\n Headers.prototype.forEach = function(callback, thisArg) {\n for (var name in this.map) {\n if (this.map.hasOwnProperty(name)) {\n callback.call(thisArg, this.map[name], name, this)\n }\n }\n }\n\n Headers.prototype.keys = function() {\n var items = []\n this.forEach(function(value, name) { items.push(name) })\n return iteratorFor(items)\n }\n\n Headers.prototype.values = function() {\n var items = []\n this.forEach(function(value) { items.push(value) })\n return iteratorFor(items)\n }\n\n Headers.prototype.entries = function() {\n var items = []\n this.forEach(function(value, name) { items.push([name, value]) })\n return iteratorFor(items)\n }\n\n if (support.iterable) {\n Headers.prototype[Symbol.iterator] = Headers.prototype.entries\n }\n\n function consumed(body) {\n if (body.bodyUsed) {\n return Promise.reject(new TypeError('Already read'))\n }\n body.bodyUsed = true\n }\n\n function fileReaderReady(reader) {\n return new Promise(function(resolve, reject) {\n reader.onload = function() {\n resolve(reader.result)\n }\n reader.onerror = function() {\n reject(reader.error)\n }\n })\n }\n\n function readBlobAsArrayBuffer(blob) {\n var reader = new FileReader()\n var promise = fileReaderReady(reader)\n reader.readAsArrayBuffer(blob)\n return promise\n }\n\n function readBlobAsText(blob) {\n var reader = new FileReader()\n var promise = fileReaderReady(reader)\n reader.readAsText(blob)\n return promise\n }\n\n function readArrayBufferAsText(buf) {\n var view = new Uint8Array(buf)\n var chars = new Array(view.length)\n\n for (var i = 0; i < view.length; i++) {\n chars[i] = String.fromCharCode(view[i])\n }\n return chars.join('')\n }\n\n function bufferClone(buf) {\n if (buf.slice) {\n return buf.slice(0)\n } else {\n var view = new Uint8Array(buf.byteLength)\n view.set(new Uint8Array(buf))\n return view.buffer\n }\n }\n\n function Body() {\n this.bodyUsed = false\n\n this._initBody = function(body) {\n this._bodyInit = body\n if (!body) {\n this._bodyText = ''\n } else if (typeof body === 'string') {\n this._bodyText = body\n } else if (support.blob && Blob.prototype.isPrototypeOf(body)) {\n this._bodyBlob = body\n } else if (support.formData && FormData.prototype.isPrototypeOf(body)) {\n this._bodyFormData = body\n } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n this._bodyText = body.toString()\n } else if (support.arrayBuffer && support.blob && isDataView(body)) {\n this._bodyArrayBuffer = bufferClone(body.buffer)\n // IE 10-11 can't handle a DataView body.\n this._bodyInit = new Blob([this._bodyArrayBuffer])\n } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) {\n this._bodyArrayBuffer = bufferClone(body)\n } else {\n throw new Error('unsupported BodyInit type')\n }\n\n if (!this.headers.get('content-type')) {\n if (typeof body === 'string') {\n this.headers.set('content-type', 'text/plain;charset=UTF-8')\n } else if (this._bodyBlob && this._bodyBlob.type) {\n this.headers.set('content-type', this._bodyBlob.type)\n } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8')\n }\n }\n }\n\n if (support.blob) {\n this.blob = function() {\n var rejected = consumed(this)\n if (rejected) {\n return rejected\n }\n\n if (this._bodyBlob) {\n return Promise.resolve(this._bodyBlob)\n } else if (this._bodyArrayBuffer) {\n return Promise.resolve(new Blob([this._bodyArrayBuffer]))\n } else if (this._bodyFormData) {\n throw new Error('could not read FormData body as blob')\n } else {\n return Promise.resolve(new Blob([this._bodyText]))\n }\n }\n\n this.arrayBuffer = function() {\n if (this._bodyArrayBuffer) {\n return consumed(this) || Promise.resolve(this._bodyArrayBuffer)\n } else {\n return this.blob().then(readBlobAsArrayBuffer)\n }\n }\n }\n\n this.text = function() {\n var rejected = consumed(this)\n if (rejected) {\n return rejected\n }\n\n if (this._bodyBlob) {\n return readBlobAsText(this._bodyBlob)\n } else if (this._bodyArrayBuffer) {\n return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer))\n } else if (this._bodyFormData) {\n throw new Error('could not read FormData body as text')\n } else {\n return Promise.resolve(this._bodyText)\n }\n }\n\n if (support.formData) {\n this.formData = function() {\n return this.text().then(decode)\n }\n }\n\n this.json = function() {\n return this.text().then(JSON.parse)\n }\n\n return this\n }\n\n // HTTP methods whose capitalization should be normalized\n var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT']\n\n function normalizeMethod(method) {\n var upcased = method.toUpperCase()\n return (methods.indexOf(upcased) > -1) ? upcased : method\n }\n\n function Request(input, options) {\n options = options || {}\n var body = options.body\n\n if (input instanceof Request) {\n if (input.bodyUsed) {\n throw new TypeError('Already read')\n }\n this.url = input.url\n this.credentials = input.credentials\n if (!options.headers) {\n this.headers = new Headers(input.headers)\n }\n this.method = input.method\n this.mode = input.mode\n if (!body && input._bodyInit != null) {\n body = input._bodyInit\n input.bodyUsed = true\n }\n } else {\n this.url = String(input)\n }\n\n this.credentials = options.credentials || this.credentials || 'omit'\n if (options.headers || !this.headers) {\n this.headers = new Headers(options.headers)\n }\n this.method = normalizeMethod(options.method || this.method || 'GET')\n this.mode = options.mode || this.mode || null\n this.referrer = null\n\n if ((this.method === 'GET' || this.method === 'HEAD') && body) {\n throw new TypeError('Body not allowed for GET or HEAD requests')\n }\n this._initBody(body)\n }\n\n Request.prototype.clone = function() {\n return new Request(this, { body: this._bodyInit })\n }\n\n function decode(body) {\n var form = new FormData()\n body.trim().split('&').forEach(function(bytes) {\n if (bytes) {\n var split = bytes.split('=')\n var name = split.shift().replace(/\\+/g, ' ')\n var value = split.join('=').replace(/\\+/g, ' ')\n form.append(decodeURIComponent(name), decodeURIComponent(value))\n }\n })\n return form\n }\n\n function parseHeaders(rawHeaders) {\n var headers = new Headers()\n // Replace instances of \\r\\n and \\n followed by at least one space or horizontal tab with a space\n // https://tools.ietf.org/html/rfc7230#section-3.2\n var preProcessedHeaders = rawHeaders.replace(/\\r?\\n[\\t ]+/g, ' ')\n preProcessedHeaders.split(/\\r?\\n/).forEach(function(line) {\n var parts = line.split(':')\n var key = parts.shift().trim()\n if (key) {\n var value = parts.join(':').trim()\n headers.append(key, value)\n }\n })\n return headers\n }\n\n Body.call(Request.prototype)\n\n function Response(bodyInit, options) {\n if (!options) {\n options = {}\n }\n\n this.type = 'default'\n this.status = options.status === undefined ? 200 : options.status\n this.ok = this.status >= 200 && this.status < 300\n this.statusText = 'statusText' in options ? options.statusText : 'OK'\n this.headers = new Headers(options.headers)\n this.url = options.url || ''\n this._initBody(bodyInit)\n }\n\n Body.call(Response.prototype)\n\n Response.prototype.clone = function() {\n return new Response(this._bodyInit, {\n status: this.status,\n statusText: this.statusText,\n headers: new Headers(this.headers),\n url: this.url\n })\n }\n\n Response.error = function() {\n var response = new Response(null, {status: 0, statusText: ''})\n response.type = 'error'\n return response\n }\n\n var redirectStatuses = [301, 302, 303, 307, 308]\n\n Response.redirect = function(url, status) {\n if (redirectStatuses.indexOf(status) === -1) {\n throw new RangeError('Invalid status code')\n }\n\n return new Response(null, {status: status, headers: {location: url}})\n }\n\n self.Headers = Headers\n self.Request = Request\n self.Response = Response\n\n self.fetch = function(input, init) {\n return new Promise(function(resolve, reject) {\n var request = new Request(input, init)\n var xhr = new XMLHttpRequest()\n\n xhr.onload = function() {\n var options = {\n status: xhr.status,\n statusText: xhr.statusText,\n headers: parseHeaders(xhr.getAllResponseHeaders() || '')\n }\n options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL')\n var body = 'response' in xhr ? xhr.response : xhr.responseText\n resolve(new Response(body, options))\n }\n\n xhr.onerror = function() {\n reject(new TypeError('Network request failed'))\n }\n\n xhr.ontimeout = function() {\n reject(new TypeError('Network request failed'))\n }\n\n xhr.open(request.method, request.url, true)\n\n if (request.credentials === 'include') {\n xhr.withCredentials = true\n } else if (request.credentials === 'omit') {\n xhr.withCredentials = false\n }\n\n if ('responseType' in xhr && support.blob) {\n xhr.responseType = 'blob'\n }\n\n request.headers.forEach(function(value, name) {\n xhr.setRequestHeader(name, value)\n })\n\n xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit)\n })\n }\n self.fetch.polyfill = true\n})(typeof self !== 'undefined' ? self : this);\n" - }, - { - "id": "eUgh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayMap.js", - "name": "./node_modules/lodash/_arrayMap.js", - "index": 444, - "index2": 438, - "size": 556, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_arrayMap", - "loc": "1:15-37" - }, - { - "moduleId": "zoYe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseToString.js", - "module": "./node_modules/lodash/_baseToString.js", - "moduleName": "./node_modules/lodash/_baseToString.js", - "type": "cjs require", - "userRequest": "./_arrayMap", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "/**\n * A specialized version of `_.map` for arrays without support for iteratee\n * shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the new mapped array.\n */\nfunction arrayMap(array, iteratee) {\n var index = -1,\n length = array == null ? 0 : array.length,\n result = Array(length);\n\n while (++index < length) {\n result[index] = iteratee(array[index], index, array);\n }\n return result;\n}\n\nmodule.exports = arrayMap;\n" - }, - { - "id": "ebwN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Map.js", - "name": "./node_modules/lodash/_Map.js", - "index": 460, - "index2": 465, - "size": 195, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "issuerId": "0Cz8", - "issuerName": "./node_modules/lodash/_stackSet.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0Cz8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "module": "./node_modules/lodash/_stackSet.js", - "moduleName": "./node_modules/lodash/_stackSet.js", - "type": "cjs require", - "userRequest": "./_Map", - "loc": "2:10-27" - }, - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_Map", - "loc": "2:10-27" - }, - { - "moduleId": "fGT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "module": "./node_modules/lodash/_mapCacheClear.js", - "moduleName": "./node_modules/lodash/_mapCacheClear.js", - "type": "cjs require", - "userRequest": "./_Map", - "loc": "3:10-27" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar Map = getNative(root, 'Map');\n\nmodule.exports = Map;\n" - }, - { - "id": "ekgI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashHas.js", - "name": "./node_modules/lodash/_hashHas.js", - "index": 482, - "index2": 470, - "size": 626, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "issuerId": "4kuk", - "issuerName": "./node_modules/lodash/_Hash.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4kuk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "module": "./node_modules/lodash/_Hash.js", - "moduleName": "./node_modules/lodash/_Hash.js", - "type": "cjs require", - "userRequest": "./_hashHas", - "loc": "4:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "var nativeCreate = require('./_nativeCreate');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Checks if a hash value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Hash\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction hashHas(key) {\n var data = this.__data__;\n return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\n}\n\nmodule.exports = hashHas;\n" - }, - { - "id": "elao", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "name": "./node_modules/@uifabric/utilities/lib/Async.js", - "index": 105, - "index2": 93, - "size": 15648, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "58:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "90:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "93:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "101:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "104:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Utilities", - "loc": "115:26-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "116:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities/lib", - "loc": "139:26-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "184:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "281:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "303:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "422:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "517:27-32" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "167:27-32" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "129:27-32" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./Async", - "loc": "3:0-32" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./Async", - "loc": "101:35-40" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "248:27-32" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "205:27-32" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "42:27-32" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Utilities", - "loc": "103:27-32" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "8:50-55" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "112:27-32" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "234:27-32" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "74:27-32" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "42:27-32" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "391:27-32" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "199:27-32" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "72:27-32" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "164:27-32" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Async", - "loc": "1:0-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Async", - "loc": "1:0-24" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "685:27-32" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "61:27-32" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Utilities", - "loc": "103:26-31" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "202:26-31" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "136:27-32" - } - ], - "usedExports": [ - "Async" - ], - "providedExports": [ - "Async" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\n/**\n * Bugs often appear in async code when stuff gets disposed, but async operations don't get canceled.\n * This Async helper class solves these issues by tying async code to the lifetime of a disposable object.\n *\n * Usage: Anything class extending from BaseModel can access this helper via this.async. Otherwise create a\n * new instance of the class and remember to call dispose() during your code's dispose handler.\n *\n * @public\n */\nvar Async = /** @class */ (function () {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n function Async(parent, onError) {\n this._timeoutIds = null;\n this._immediateIds = null;\n this._intervalIds = null;\n this._animationFrameIds = null;\n this._isDisposed = false;\n this._parent = parent || null;\n this._onErrorHandler = onError;\n this._noop = function () {\n /* do nothing */\n };\n }\n /**\n * Dispose function, clears all async operations.\n */\n Async.prototype.dispose = function () {\n var id;\n this._isDisposed = true;\n this._parent = null;\n // Clear timeouts.\n if (this._timeoutIds) {\n for (id in this._timeoutIds) {\n if (this._timeoutIds.hasOwnProperty(id)) {\n this.clearTimeout(parseInt(id, 10));\n }\n }\n this._timeoutIds = null;\n }\n // Clear immediates.\n if (this._immediateIds) {\n for (id in this._immediateIds) {\n if (this._immediateIds.hasOwnProperty(id)) {\n this.clearImmediate(parseInt(id, 10));\n }\n }\n this._immediateIds = null;\n }\n // Clear intervals.\n if (this._intervalIds) {\n for (id in this._intervalIds) {\n if (this._intervalIds.hasOwnProperty(id)) {\n this.clearInterval(parseInt(id, 10));\n }\n }\n this._intervalIds = null;\n }\n // Clear animation frames.\n if (this._animationFrameIds) {\n for (id in this._animationFrameIds) {\n if (this._animationFrameIds.hasOwnProperty(id)) {\n this.cancelAnimationFrame(parseInt(id, 10));\n }\n }\n this._animationFrameIds = null;\n }\n };\n /**\n * SetTimeout override, which will auto cancel the timeout during dispose.\n * @param callback - Callback to execute.\n * @param duration - Duration in milliseconds.\n * @returns The setTimeout id.\n */\n Async.prototype.setTimeout = function (callback, duration) {\n var _this = this;\n var timeoutId = 0;\n if (!this._isDisposed) {\n if (!this._timeoutIds) {\n this._timeoutIds = {};\n }\n timeoutId = setTimeout(function () {\n // Time to execute the timeout, enqueue it as a foreground task to be executed.\n try {\n // Now delete the record and call the callback.\n if (_this._timeoutIds) {\n delete _this._timeoutIds[timeoutId];\n }\n callback.apply(_this._parent);\n }\n catch (e) {\n if (_this._onErrorHandler) {\n _this._onErrorHandler(e);\n }\n }\n }, duration);\n this._timeoutIds[timeoutId] = true;\n }\n return timeoutId;\n };\n /**\n * Clears the timeout.\n * @param id - Id to cancel.\n */\n Async.prototype.clearTimeout = function (id) {\n if (this._timeoutIds && this._timeoutIds[id]) {\n clearTimeout(id);\n delete this._timeoutIds[id];\n }\n };\n /**\n * SetImmediate override, which will auto cancel the immediate during dispose.\n * @param callback - Callback to execute.\n * @param targetElement - Optional target element to use for identifying the correct window.\n * @returns The setTimeout id.\n */\n Async.prototype.setImmediate = function (callback, targetElement) {\n var _this = this;\n var immediateId = 0;\n var win = getWindow(targetElement);\n if (!this._isDisposed) {\n if (!this._immediateIds) {\n this._immediateIds = {};\n }\n var setImmediateCallback = function () {\n // Time to execute the timeout, enqueue it as a foreground task to be executed.\n try {\n // Now delete the record and call the callback.\n if (_this._immediateIds) {\n delete _this._immediateIds[immediateId];\n }\n callback.apply(_this._parent);\n }\n catch (e) {\n _this._logError(e);\n }\n };\n immediateId = win.setTimeout(setImmediateCallback, 0);\n this._immediateIds[immediateId] = true;\n }\n return immediateId;\n };\n /**\n * Clears the immediate.\n * @param id - Id to cancel.\n * @param targetElement - Optional target element to use for identifying the correct window.\n */\n Async.prototype.clearImmediate = function (id, targetElement) {\n var win = getWindow(targetElement);\n if (this._immediateIds && this._immediateIds[id]) {\n win.clearTimeout(id);\n delete this._immediateIds[id];\n }\n };\n /**\n * SetInterval override, which will auto cancel the timeout during dispose.\n * @param callback - Callback to execute.\n * @param duration - Duration in milliseconds.\n * @returns The setTimeout id.\n */\n Async.prototype.setInterval = function (callback, duration) {\n var _this = this;\n var intervalId = 0;\n if (!this._isDisposed) {\n if (!this._intervalIds) {\n this._intervalIds = {};\n }\n intervalId = setInterval(function () {\n // Time to execute the interval callback, enqueue it as a foreground task to be executed.\n try {\n callback.apply(_this._parent);\n }\n catch (e) {\n _this._logError(e);\n }\n }, duration);\n this._intervalIds[intervalId] = true;\n }\n return intervalId;\n };\n /**\n * Clears the interval.\n * @param id - Id to cancel.\n */\n Async.prototype.clearInterval = function (id) {\n if (this._intervalIds && this._intervalIds[id]) {\n clearInterval(id);\n delete this._intervalIds[id];\n }\n };\n /**\n * Creates a function that, when executed, will only call the func function at most once per\n * every wait milliseconds. Provide an options object to indicate that func should be invoked\n * on the leading and/or trailing edge of the wait timeout. Subsequent calls to the throttled\n * function will return the result of the last func call.\n *\n * Note: If leading and trailing options are true func will be called on the trailing edge of\n * the timeout only if the throttled function is invoked more than once during the wait timeout.\n *\n * @param func - The function to throttle.\n * @param wait - The number of milliseconds to throttle executions to. Defaults to 0.\n * @param options - The options object.\n * @returns The new throttled function.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Async.prototype.throttle = function (func, wait, options) {\n var _this = this;\n if (this._isDisposed) {\n return this._noop;\n }\n var waitMS = wait || 0;\n var leading = true;\n var trailing = true;\n var lastExecuteTime = 0;\n var lastResult;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var lastArgs;\n var timeoutId = null;\n if (options && typeof options.leading === 'boolean') {\n leading = options.leading;\n }\n if (options && typeof options.trailing === 'boolean') {\n trailing = options.trailing;\n }\n var callback = function (userCall) {\n var now = Date.now();\n var delta = now - lastExecuteTime;\n var waitLength = leading ? waitMS - delta : waitMS;\n if (delta >= waitMS && (!userCall || leading)) {\n lastExecuteTime = now;\n if (timeoutId) {\n _this.clearTimeout(timeoutId);\n timeoutId = null;\n }\n lastResult = func.apply(_this._parent, lastArgs);\n }\n else if (timeoutId === null && trailing) {\n timeoutId = _this.setTimeout(callback, waitLength);\n }\n return lastResult;\n };\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var resultFunction = (function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n lastArgs = args;\n return callback(true);\n });\n return resultFunction;\n };\n /**\n * Creates a function that will delay the execution of func until after wait milliseconds have\n * elapsed since the last time it was invoked. Provide an options object to indicate that func\n * should be invoked on the leading and/or trailing edge of the wait timeout. Subsequent calls\n * to the debounced function will return the result of the last func call.\n *\n * Note: If leading and trailing options are true func will be called on the trailing edge of\n * the timeout only if the debounced function is invoked more than once during the wait\n * timeout.\n *\n * @param func - The function to debounce.\n * @param wait - The number of milliseconds to delay.\n * @param options - The options object.\n * @returns The new debounced function.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Async.prototype.debounce = function (func, wait, options) {\n var _this = this;\n if (this._isDisposed) {\n var noOpFunction = (function () {\n /** Do nothing */\n });\n noOpFunction.cancel = function () {\n return;\n };\n noOpFunction.flush = (function () { return null; });\n noOpFunction.pending = function () { return false; };\n return noOpFunction;\n }\n var waitMS = wait || 0;\n var leading = false;\n var trailing = true;\n var maxWait = null;\n var lastCallTime = 0;\n var lastExecuteTime = Date.now();\n var lastResult;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var lastArgs;\n var timeoutId = null;\n if (options && typeof options.leading === 'boolean') {\n leading = options.leading;\n }\n if (options && typeof options.trailing === 'boolean') {\n trailing = options.trailing;\n }\n if (options && typeof options.maxWait === 'number' && !isNaN(options.maxWait)) {\n maxWait = options.maxWait;\n }\n var markExecuted = function (time) {\n if (timeoutId) {\n _this.clearTimeout(timeoutId);\n timeoutId = null;\n }\n lastExecuteTime = time;\n };\n var invokeFunction = function (time) {\n markExecuted(time);\n lastResult = func.apply(_this._parent, lastArgs);\n };\n var callback = function (userCall) {\n var now = Date.now();\n var executeImmediately = false;\n if (userCall) {\n if (leading && now - lastCallTime >= waitMS) {\n executeImmediately = true;\n }\n lastCallTime = now;\n }\n var delta = now - lastCallTime;\n var waitLength = waitMS - delta;\n var maxWaitDelta = now - lastExecuteTime;\n var maxWaitExpired = false;\n if (maxWait !== null) {\n // maxWait only matters when there is a pending callback\n if (maxWaitDelta >= maxWait && timeoutId) {\n maxWaitExpired = true;\n }\n else {\n waitLength = Math.min(waitLength, maxWait - maxWaitDelta);\n }\n }\n if (delta >= waitMS || maxWaitExpired || executeImmediately) {\n invokeFunction(now);\n }\n else if ((timeoutId === null || !userCall) && trailing) {\n timeoutId = _this.setTimeout(callback, waitLength);\n }\n return lastResult;\n };\n var pending = function () {\n return !!timeoutId;\n };\n var cancel = function () {\n if (pending()) {\n // Mark the debounced function as having executed\n markExecuted(Date.now());\n }\n };\n var flush = function () {\n if (pending()) {\n invokeFunction(Date.now());\n }\n return lastResult;\n };\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var resultFunction = (function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n lastArgs = args;\n return callback(true);\n });\n resultFunction.cancel = cancel;\n resultFunction.flush = flush;\n resultFunction.pending = pending;\n return resultFunction;\n };\n Async.prototype.requestAnimationFrame = function (callback, targetElement) {\n var _this = this;\n var animationFrameId = 0;\n var win = getWindow(targetElement);\n if (!this._isDisposed) {\n if (!this._animationFrameIds) {\n this._animationFrameIds = {};\n }\n var animationFrameCallback = function () {\n try {\n // Now delete the record and call the callback.\n if (_this._animationFrameIds) {\n delete _this._animationFrameIds[animationFrameId];\n }\n callback.apply(_this._parent);\n }\n catch (e) {\n _this._logError(e);\n }\n };\n animationFrameId = win.requestAnimationFrame\n ? win.requestAnimationFrame(animationFrameCallback)\n : win.setTimeout(animationFrameCallback, 0);\n this._animationFrameIds[animationFrameId] = true;\n }\n return animationFrameId;\n };\n Async.prototype.cancelAnimationFrame = function (id, targetElement) {\n var win = getWindow(targetElement);\n if (this._animationFrameIds && this._animationFrameIds[id]) {\n win.cancelAnimationFrame ? win.cancelAnimationFrame(id) : win.clearTimeout(id);\n delete this._animationFrameIds[id];\n }\n };\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n Async.prototype._logError = function (e) {\n if (this._onErrorHandler) {\n this._onErrorHandler(e);\n }\n };\n return Async;\n}());\nexport { Async };\n//# sourceMappingURL=Async.js.map" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js", - "index": 476, - "index2": 473, - "size": 393, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "issuerId": "e4Nc", - "issuerName": "./node_modules/lodash/_MapCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "e4Nc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "module": "./node_modules/lodash/_MapCache.js", - "moduleName": "./node_modules/lodash/_MapCache.js", - "type": "cjs require", - "userRequest": "./_mapCacheClear", - "loc": "1:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var Hash = require('./_Hash'),\n ListCache = require('./_ListCache'),\n Map = require('./_Map');\n\n/**\n * Removes all key-value entries from the map.\n *\n * @private\n * @name clear\n * @memberOf MapCache\n */\nfunction mapCacheClear() {\n this.size = 0;\n this.__data__ = {\n 'hash': new Hash,\n 'map': new (Map || ListCache),\n 'string': new Hash\n };\n}\n\nmodule.exports = mapCacheClear;\n" - }, - { - "id": "fJrQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "index": 30, - "index2": 112, - "size": 5168, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "issuerId": "niPH", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "niPH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "niPH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionIconField", - "loc": "2:0-38" - }, - { - "moduleId": "niPH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionIconField", - "loc": "2:0-38" - } - ], - "usedExports": [ - "CollectionIconField" - ], - "providedExports": [ - "CollectionIconField" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { TextField } from 'office-ui-fabric-react/lib/components/TextField';\nimport { Icon } from 'office-ui-fabric-react/lib/components/Icon';\nvar CollectionIconField = /** @class */ (function (_super) {\n __extends(CollectionIconField, _super);\n function CollectionIconField() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n CollectionIconField.prototype.render = function () {\n var _this = this;\n var _a = this.props, field = _a.field, item = _a.item;\n return (React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__icon-field \" + styles.iconField },\n React.createElement(TextField, { placeholder: field.placeholder || field.title, className: styles.collectionDataField, value: item[field.id] ? item[field.id] : \"\", required: field.required, onChange: function (e, value) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.props.fOnValueChange(field.id, value)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }, deferredValidationTime: field.deferredValidationTime || field.deferredValidationTime >= 0 ? field.deferredValidationTime : 200, onGetErrorMessage: function (value) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.props.fValidation(this.props.field, value)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }, disabled: this.props.disableEdit }),\n React.createElement(Icon, { iconName: item[field.id] ? item[field.id] : \"\" })));\n };\n return CollectionIconField;\n}(React.Component));\nexport { CollectionIconField };\n//# sourceMappingURL=CollectionIconField.js.map" - }, - { - "id": "fR/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetAllKeys.js", - "name": "./node_modules/lodash/_baseGetAllKeys.js", - "index": 532, - "index2": 524, - "size": 739, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "issuerId": "G6z8", - "issuerName": "./node_modules/lodash/_getAllKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "G6z8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "module": "./node_modules/lodash/_getAllKeysIn.js", - "moduleName": "./node_modules/lodash/_getAllKeysIn.js", - "type": "cjs require", - "userRequest": "./_baseGetAllKeys", - "loc": "1:21-49" - }, - { - "moduleId": "qZTm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeys.js", - "module": "./node_modules/lodash/_getAllKeys.js", - "moduleName": "./node_modules/lodash/_getAllKeys.js", - "type": "cjs require", - "userRequest": "./_baseGetAllKeys", - "loc": "1:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var arrayPush = require('./_arrayPush'),\n isArray = require('./isArray');\n\n/**\n * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\n * `keysFunc` and `symbolsFunc` to get the enumerable property names and\n * symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @param {Function} symbolsFunc The function to get the symbols of `object`.\n * @returns {Array} Returns the array of property names and symbols.\n */\nfunction baseGetAllKeys(object, keysFunc, symbolsFunc) {\n var result = keysFunc(object);\n return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\n}\n\nmodule.exports = baseGetAllKeys;\n" - }, - { - "id": "faye", - "identifier": "external \"react-dom\"", - "name": "external \"react-dom\"", - "index": 2, - "index2": 1, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "2:0-38" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "33:8-23" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "13:0-38" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "77:8-23" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "13:0-38" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "30:8-23" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "39:8-39" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "3:0-38" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "62:12-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "3:0-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "3:0-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "11:0-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "49:30-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "61:12-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "235:8-23" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "2:0-38" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "14:8-23" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "17:8-39" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "13:0-38" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "27:8-23" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "33:8-39" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "react-dom", - "loc": "13:0-38" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "29:8-23" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "react-dom", - "loc": "35:8-39" - } - ], - "usedExports": [ - "createPortal", - "findDOMNode", - "render", - "unmountComponentAtNode" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js", - "index": 446, - "index2": 482, - "size": 734, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_Stack", - "loc": "1:12-31" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var ListCache = require('./_ListCache'),\n stackClear = require('./_stackClear'),\n stackDelete = require('./_stackDelete'),\n stackGet = require('./_stackGet'),\n stackHas = require('./_stackHas'),\n stackSet = require('./_stackSet');\n\n/**\n * Creates a stack cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Stack(entries) {\n var data = this.__data__ = new ListCache(entries);\n this.size = data.size;\n}\n\n// Add methods to `Stack`.\nStack.prototype.clear = stackClear;\nStack.prototype['delete'] = stackDelete;\nStack.prototype.get = stackGet;\nStack.prototype.has = stackHas;\nStack.prototype.set = stackSet;\n\nmodule.exports = Stack;\n" - }, - { - "id": "g4ht", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "index": 140, - "index2": 125, - "size": 602, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "R1c3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-63" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./findElementRecursive", - "loc": "1:0-62" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./findElementRecursive", - "loc": "9:23-43" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "296:28-48" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./findElementRecursive", - "loc": "3:0-39" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./findElementRecursive", - "loc": "3:0-39" - }, - { - "moduleId": "rgVD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "type": "harmony side effect evaluation", - "userRequest": "./findElementRecursive", - "loc": "1:0-62" - }, - { - "moduleId": "rgVD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "type": "harmony import specifier", - "userRequest": "./findElementRecursive", - "loc": "12:23-43" - } - ], - "usedExports": [ - "findElementRecursive" - ], - "providedExports": [ - "findElementRecursive" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getParent } from './getParent';\n/**\n * Finds the first parent element where the matchFunction returns true\n * @param element - element to start searching at\n * @param matchFunction - the function that determines if the element is a match\n * @returns the matched element or null no match was found\n */\nexport function findElementRecursive(element, matchFunction) {\n if (!element || element === document.body) {\n return null;\n }\n return matchFunction(element) ? element : findElementRecursive(getParent(element), matchFunction);\n}\n//# sourceMappingURL=findElementRecursive.js.map" - }, - { - "id": "gCq4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackGet.js", - "name": "./node_modules/lodash/_stackGet.js", - "index": 457, - "index2": 449, - "size": 271, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackGet", - "loc": "4:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Gets the stack value for `key`.\n *\n * @private\n * @name get\n * @memberOf Stack\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction stackGet(key) {\n return this.__data__.get(key);\n}\n\nmodule.exports = stackGet;\n" - }, - { - "id": "gFfm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayEach.js", - "name": "./node_modules/lodash/_arrayEach.js", - "index": 490, - "index2": 483, - "size": 537, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_arrayEach", - "loc": "2:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/**\n * A specialized version of `_.forEach` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns `array`.\n */\nfunction arrayEach(array, iteratee) {\n var index = -1,\n length = array == null ? 0 : array.length;\n\n while (++index < length) {\n if (iteratee(array[index], index, array) === false) {\n break;\n }\n }\n return array;\n}\n\nmodule.exports = arrayEach;\n" - }, - { - "id": "gKHf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getParent.js 30a48755525d07e3c6ba6abcd8e05ee0", - "name": "./node_modules/@fluentui/dom-utilities/lib/getParent.js + 2 modules", - "index": 136, - "index2": 123, - "size": 1130, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "62:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "64:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "125:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "130:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "180:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:29-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "222:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "298:29-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./dom/getParent", - "loc": "318:23-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "355:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "360:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "366:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "446:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "495:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "512:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "526:26-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "606:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "917:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "922:28-37" - }, - { - "moduleId": "0xmZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "type": "harmony side effect evaluation", - "userRequest": "./getParent", - "loc": "1:0-40" - }, - { - "moduleId": "0xmZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "type": "harmony import specifier", - "userRequest": "./getParent", - "loc": "20:37-46" - }, - { - "moduleId": "g4ht", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "type": "harmony side effect evaluation", - "userRequest": "./getParent", - "loc": "1:0-40" - }, - { - "moduleId": "g4ht", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "type": "harmony import specifier", - "userRequest": "./getParent", - "loc": "12:67-76" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getParent", - "loc": "5:0-28" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getParent", - "loc": "5:0-28" - }, - { - "moduleId": "pzkQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getParent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getParent.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-52" - } - ], - "usedExports": [ - "getParent" - ], - "providedExports": [ - "getParent" - ], - "optimizationBailout": [], - "depth": 8, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/isVirtualElement.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/isVirtualElement.js", - "index": 138, - "index2": 121, - "size": 231, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", - "type": "harmony side effect evaluation", - "userRequest": "./isVirtualElement", - "loc": "1:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", - "type": "harmony import specifier", - "userRequest": "./isVirtualElement", - "loc": "9:17-33" - }, - { - "moduleId": "IbAf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/isVirtualElement.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/isVirtualElement.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/isVirtualElement.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-59" - }, - { - "moduleId": "XxKQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getChildren.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/getChildren.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getChildren.js", - "type": "harmony side effect evaluation", - "userRequest": "./isVirtualElement", - "loc": "1:0-54" - }, - { - "moduleId": "XxKQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getChildren.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/getChildren.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getChildren.js", - "type": "harmony import specifier", - "userRequest": "./isVirtualElement", - "loc": "16:36-52" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./isVirtualElement", - "loc": "7:0-35" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./isVirtualElement", - "loc": "7:0-35" - } - ], - "usedExports": [ - "isVirtualElement" - ], - "providedExports": [ - "isVirtualElement" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Determines whether or not an element has the virtual hierarchy extension.\n *\n * @public\n */\nexport function isVirtualElement(element) {\n return element && !!element._virtual;\n}\n//# sourceMappingURL=isVirtualElement.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/getVirtualParent.js", - "index": 137, - "index2": 122, - "size": 356, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getParent.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/getParent.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getParent.js", - "type": "harmony side effect evaluation", - "userRequest": "./getVirtualParent", - "loc": "1:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getParent.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/getParent.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/getParent.js", - "type": "harmony import specifier", - "userRequest": "./getVirtualParent", - "loc": "12:33-49" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getVirtualParent", - "loc": "6:0-35" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getVirtualParent", - "loc": "6:0-35" - }, - { - "moduleId": "zZ3g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-59" - } - ], - "usedExports": [ - "getVirtualParent" - ], - "providedExports": [ - "getVirtualParent" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { isVirtualElement } from './isVirtualElement';\n/**\n * Gets the virtual parent given the child element, if it exists.\n *\n * @public\n */\nexport function getVirtualParent(child) {\n var parent;\n if (child && isVirtualElement(child)) {\n parent = child._virtual.parent;\n }\n return parent;\n}\n//# sourceMappingURL=getVirtualParent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/getParent.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/getParent.js", - "index": 136, - "index2": 123, - "size": 543, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "62:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "64:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "125:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "130:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "180:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:29-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "222:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "298:29-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./dom/getParent", - "loc": "318:23-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "355:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "360:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "366:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "446:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "495:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "512:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "526:26-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "606:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "917:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "922:28-37" - }, - { - "moduleId": "0xmZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "type": "harmony side effect evaluation", - "userRequest": "./getParent", - "loc": "1:0-40" - }, - { - "moduleId": "0xmZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "type": "harmony import specifier", - "userRequest": "./getParent", - "loc": "20:37-46" - }, - { - "moduleId": "g4ht", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "type": "harmony side effect evaluation", - "userRequest": "./getParent", - "loc": "1:0-40" - }, - { - "moduleId": "g4ht", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/findElementRecursive.js", - "type": "harmony import specifier", - "userRequest": "./getParent", - "loc": "12:67-76" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getParent", - "loc": "5:0-28" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getParent", - "loc": "5:0-28" - }, - { - "moduleId": "pzkQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getParent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getParent.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-52" - } - ], - "usedExports": [ - "getParent" - ], - "providedExports": [ - "getParent" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getVirtualParent } from './getVirtualParent';\n/**\n * Gets the element which is the parent of a given element.\n * If `allowVirtuaParents` is `true`, this method prefers the virtual parent over\n * real DOM parent when present.\n *\n * @public\n */\nexport function getParent(child, allowVirtualParents) {\n if (allowVirtualParents === void 0) { allowVirtualParents = true; }\n return (child &&\n ((allowVirtualParents && getVirtualParent(child)) || (child.parentNode && child.parentNode)));\n}\n//# sourceMappingURL=getParent.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "gTQK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js bc4d268370d78d06620ded50fe0ebdb7", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "index": 202, - "index2": 191, - "size": 3540, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./BaseDecorator", - "loc": "3:0-48" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./BaseDecorator", - "loc": "79:10-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "./BaseDecorator", - "loc": "3:0-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "./BaseDecorator", - "loc": "129:6-19" - } - ], - "usedExports": [ - "BaseDecorator" - ], - "providedExports": [ - "BaseDecorator" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/hoist.js", - "name": "./node_modules/@uifabric/utilities/lib/hoist.js", - "index": 203, - "index2": 190, - "size": 2306, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:28-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:12-26" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hoist", - "loc": "31:0-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hoist", - "loc": "31:0-24" - } - ], - "usedExports": [ - "hoistMethods", - "unhoistMethods" - ], - "providedExports": [ - "hoistMethods", - "unhoistMethods" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var REACT_LIFECYCLE_EXCLUSIONS = [\n 'setState',\n 'render',\n 'componentWillMount',\n 'UNSAFE_componentWillMount',\n 'componentDidMount',\n 'componentWillReceiveProps',\n 'UNSAFE_componentWillReceiveProps',\n 'shouldComponentUpdate',\n 'componentWillUpdate',\n 'getSnapshotBeforeUpdate',\n 'UNSAFE_componentWillUpdate',\n 'componentDidUpdate',\n 'componentWillUnmount',\n];\n/**\n * Allows you to hoist methods, except those in an exclusion set from a source object into a destination object.\n *\n * @public\n * @param destination - The instance of the object to hoist the methods onto.\n * @param source - The instance of the object where the methods are hoisted from.\n * @param exclusions - (Optional) What methods to exclude from being hoisted.\n * @returns An array of names of methods that were hoisted.\n */\nexport function hoistMethods(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ndestination, \n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nsource, exclusions) {\n if (exclusions === void 0) { exclusions = REACT_LIFECYCLE_EXCLUSIONS; }\n var hoisted = [];\n var _loop_1 = function (methodName) {\n if (typeof source[methodName] === 'function' &&\n destination[methodName] === undefined &&\n (!exclusions || exclusions.indexOf(methodName) === -1)) {\n hoisted.push(methodName);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n destination[methodName] = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n source[methodName].apply(source, args);\n };\n }\n };\n for (var methodName in source) {\n _loop_1(methodName);\n }\n return hoisted;\n}\n/**\n * Provides a method for convenience to unhoist hoisted methods.\n *\n * @public\n * @param source - The source object upon which methods were hoisted.\n * @param methodNames - An array of method names to unhoist.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function unhoistMethods(source, methodNames) {\n methodNames.forEach(function (methodName) { return delete source[methodName]; });\n}\n//# sourceMappingURL=hoist.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "index": 202, - "index2": 191, - "size": 1224, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./BaseDecorator", - "loc": "3:0-48" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./BaseDecorator", - "loc": "79:10-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "./BaseDecorator", - "loc": "3:0-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "./BaseDecorator", - "loc": "129:6-19" - } - ], - "usedExports": [ - "BaseDecorator" - ], - "providedExports": [ - "BaseDecorator" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { hoistMethods, unhoistMethods } from '../../Utilities';\nvar BaseDecorator = /** @class */ (function (_super) {\n __extends(BaseDecorator, _super);\n function BaseDecorator(props) {\n var _this = _super.call(this, props) || this;\n _this._updateComposedComponentRef = _this._updateComposedComponentRef.bind(_this);\n return _this;\n }\n /**\n * Updates the ref to the component composed by the decorator, which will also take care of hoisting\n * (and unhoisting as appropriate) methods from said component.\n *\n * Pass this method as the argument to the 'ref' property of the composed component.\n */\n BaseDecorator.prototype._updateComposedComponentRef = function (composedComponentInstance) {\n this._composedComponentInstance = composedComponentInstance;\n if (composedComponentInstance) {\n this._hoisted = hoistMethods(this, composedComponentInstance);\n }\n else if (this._hoisted) {\n unhoistMethods(this, this._hoisted);\n }\n };\n return BaseDecorator;\n}(React.Component));\nexport { BaseDecorator };\n//# sourceMappingURL=BaseDecorator.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "gpbi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "name": "./node_modules/lodash/_parent.js", - "index": 563, - "index2": 559, - "size": 436, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "issuerId": "S7Xf", - "issuerName": "./node_modules/lodash/_baseUnset.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S7Xf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "module": "./node_modules/lodash/_baseUnset.js", - "moduleName": "./node_modules/lodash/_baseUnset.js", - "type": "cjs require", - "userRequest": "./_parent", - "loc": "3:13-33" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseGet = require('./_baseGet'),\n baseSlice = require('./_baseSlice');\n\n/**\n * Gets the parent value at `path` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {Array} path The path to get the parent value of.\n * @returns {*} Returns the parent value.\n */\nfunction parent(object, path) {\n return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1));\n}\n\nmodule.exports = parent;\n" - }, - { - "id": "gtmu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "index": 898, - "index2": 892, - "size": 2458, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "issuerId": "Xpmx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.scss.js" - }, - { - "id": "Xpmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Xpmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PlaceholderComponent.module.css", - "loc": "1:14-150" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "exports = module.exports = require(\"../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".placeholder_3a8f9e2d{display:-webkit-box;display:-ms-flexbox;display:flex}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:\\\"[theme:neutralSecondary, default: #666666]\\\";background-color:\\\"[theme:neutralLighter, default: #f4f4f4]\\\";width:100%;padding:80px 0}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderHead_3a8f9e2d{color:\\\"[theme:neutralPrimary, default: #333333]\\\"}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderHead_3a8f9e2d .placeholderHeadContainer_3a8f9e2d{height:100%;white-space:nowrap;text-align:center}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderHead_3a8f9e2d .placeholderIcon_3a8f9e2d{display:inline-block;vertical-align:middle;white-space:normal;font-size:42px}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderHead_3a8f9e2d .placeholderText_3a8f9e2d{display:inline;vertical-align:middle;white-space:normal;font-weight:100;font-size:28px}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderHead_3a8f9e2d .placeholderText_3a8f9e2d.hide_3a8f9e2d{display:none}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderDescription_3a8f9e2d{width:65%;vertical-align:middle;margin:0 auto;text-align:center}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderDescription_3a8f9e2d .placeholderDescriptionText_3a8f9e2d{color:\\\"[theme:neutralSecondary, default: #666666]\\\";font-size:17px;display:inline-block;margin:24px 0;font-weight:100}.placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderDescription_3a8f9e2d button{font-size:14px;font-weight:400;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;text-align:center;cursor:pointer;vertical-align:top;min-width:80px;height:32px;background-color:\\\"[theme:themePrimary, default: #0078d7]\\\";color:#fff;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:transparent;border:1px solid transparent;-o-border-image:initial;border-image:initial;text-decoration:none}[dir=ltr] .placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderHead_3a8f9e2d .placeholderText_3a8f9e2d,[dir=rtl] .placeholder_3a8f9e2d .placeholderContainer_3a8f9e2d .placeholderHead_3a8f9e2d .placeholderText_3a8f9e2d{padding-left:20px}\", \"\"]);\n" - }, - { - "id": "gwZ5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "index": 825, - "index2": 817, - "size": 6297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Spinner", - "loc": "129:56-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Spinner", - "loc": "150:36-43" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Spinner", - "loc": "222:45-52" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Spinner", - "loc": "229:46-53" - }, - { - "moduleId": "m4DS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner", - "loc": "1:0-26" - }, - { - "moduleId": "m4DS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Spinner", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Spinner" - ], - "providedExports": [ - "Spinner" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/DelayedRender.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.types.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "index": 826, - "index2": 815, - "size": 2459, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": "BlmN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/Spinner.js" - }, - { - "id": "m4DS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.base", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.base", - "loc": "4:28-39" - }, - { - "moduleId": "m4DS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.base", - "loc": "2:0-31" - }, - { - "moduleId": "m4DS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Spinner.base", - "loc": "2:0-31" - } - ], - "usedExports": [ - "SpinnerBase" - ], - "providedExports": [ - "SpinnerBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { SpinnerType, SpinnerSize } from './Spinner.types';\nimport { classNamesFunction, DelayedRender, getNativeProps, divProperties } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar SpinnerBase = /** @class */ (function (_super) {\n __extends(SpinnerBase, _super);\n function SpinnerBase() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n SpinnerBase.prototype.render = function () {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, type = _a.type, size = _a.size, ariaLabel = _a.ariaLabel, ariaLive = _a.ariaLive, styles = _a.styles, label = _a.label, theme = _a.theme, className = _a.className, labelPosition = _a.labelPosition;\n var statusMessage = ariaLabel;\n var nativeProps = getNativeProps(this.props, divProperties, ['size']);\n // SpinnerType is deprecated. If someone is still using this property, rather than putting the SpinnerType into the\n // ISpinnerStyleProps, we'll map SpinnerType to its equivalent SpinnerSize and pass that in. Once SpinnerType\n // finally goes away we should delete this.\n var styleSize = size;\n if (styleSize === undefined && type !== undefined) {\n // eslint-disable-next-line deprecation/deprecation\n styleSize = type === SpinnerType.large ? SpinnerSize.large : SpinnerSize.medium;\n }\n var classNames = getClassNames(styles, {\n theme: theme,\n size: styleSize,\n className: className,\n labelPosition: labelPosition,\n });\n return (React.createElement(\"div\", __assign({}, nativeProps, { className: classNames.root }),\n React.createElement(\"div\", { className: classNames.circle }),\n label && React.createElement(\"div\", { className: classNames.label }, label),\n statusMessage && (React.createElement(\"div\", { role: \"status\", \"aria-live\": ariaLive },\n React.createElement(DelayedRender, null,\n React.createElement(\"div\", { className: classNames.screenReaderText }, statusMessage))))));\n };\n SpinnerBase.defaultProps = {\n size: SpinnerSize.medium,\n ariaLive: 'polite',\n labelPosition: 'bottom',\n };\n return SpinnerBase;\n}(React.Component));\nexport { SpinnerBase };\n//# sourceMappingURL=Spinner.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "index": 825, - "index2": 817, - "size": 255, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "issuerId": "m4DS", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": "BlmN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/Spinner.js" - }, - { - "id": "m4DS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Spinner", - "loc": "129:56-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Spinner", - "loc": "150:36-43" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Spinner", - "loc": "222:45-52" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Spinner", - "loc": "229:46-53" - }, - { - "moduleId": "m4DS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner", - "loc": "1:0-26" - }, - { - "moduleId": "m4DS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Spinner", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Spinner" - ], - "providedExports": [ - "Spinner" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { SpinnerBase } from './Spinner.base';\nimport { getStyles } from './Spinner.styles';\nexport var Spinner = styled(SpinnerBase, getStyles, undefined, { scope: 'Spinner' });\n//# sourceMappingURL=Spinner.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "index": 828, - "index2": 816, - "size": 3538, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": "BlmN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/Spinner.js" - }, - { - "id": "m4DS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.styles", - "loc": "3:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.styles", - "loc": "4:41-50" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { SpinnerSize } from './Spinner.types';\nimport { hiddenContentStyle, keyframes, HighContrastSelector, getGlobalClassNames, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { memoizeFunction } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Spinner',\n circle: 'ms-Spinner-circle',\n label: 'ms-Spinner-label',\n};\nvar spinAnimation = memoizeFunction(function () {\n return keyframes({\n '0%': {\n transform: 'rotate(0deg)',\n },\n '100%': {\n transform: 'rotate(360deg)',\n },\n });\n});\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, size = props.size, className = props.className, labelPosition = props.labelPosition;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n labelPosition === 'top' && {\n flexDirection: 'column-reverse',\n },\n labelPosition === 'right' && {\n flexDirection: 'row',\n },\n labelPosition === 'left' && {\n flexDirection: 'row-reverse',\n },\n className,\n ],\n circle: [\n classNames.circle,\n {\n boxSizing: 'border-box',\n borderRadius: '50%',\n border: '1.5px solid ' + palette.themeLight,\n borderTopColor: palette.themePrimary,\n animationName: spinAnimation(),\n animationDuration: '1.3s',\n animationIterationCount: 'infinite',\n animationTimingFunction: 'cubic-bezier(.53,.21,.29,.67)',\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ borderTopColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _a),\n },\n size === SpinnerSize.xSmall && [\n 'ms-Spinner--xSmall',\n {\n width: 12,\n height: 12,\n },\n ],\n size === SpinnerSize.small && [\n 'ms-Spinner--small',\n {\n width: 16,\n height: 16,\n },\n ],\n size === SpinnerSize.medium && [\n 'ms-Spinner--medium',\n {\n width: 20,\n height: 20,\n },\n ],\n size === SpinnerSize.large && [\n 'ms-Spinner--large',\n {\n width: 28,\n height: 28,\n },\n ],\n ],\n label: [\n classNames.label,\n theme.fonts.small,\n {\n color: palette.themePrimary,\n margin: '8px 0 0',\n textAlign: 'center',\n },\n labelPosition === 'top' && {\n margin: '0 0 8px',\n },\n labelPosition === 'right' && {\n margin: '0 0 0 8px',\n },\n labelPosition === 'left' && {\n margin: '0 8px 0 0',\n },\n ],\n screenReaderText: hiddenContentStyle,\n };\n};\n//# sourceMappingURL=Spinner.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "heNW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_apply.js", - "name": "./node_modules/lodash/_apply.js", - "index": 574, - "index2": 566, - "size": 714, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_overRest.js", - "issuerId": "Ioao", - "issuerName": "./node_modules/lodash/_overRest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "Ioao", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_overRest.js", - "name": "./node_modules/lodash/_overRest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Ioao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_overRest.js", - "module": "./node_modules/lodash/_overRest.js", - "moduleName": "./node_modules/lodash/_overRest.js", - "type": "cjs require", - "userRequest": "./_apply", - "loc": "1:12-31" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * A faster alternative to `Function#apply`, this function invokes `func`\n * with the `this` binding of `thisArg` and the arguments of `args`.\n *\n * @private\n * @param {Function} func The function to invoke.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {Array} args The arguments to invoke `func` with.\n * @returns {*} Returns the result of `func`.\n */\nfunction apply(func, thisArg, args) {\n switch (args.length) {\n case 0: return func.call(thisArg);\n case 1: return func.call(thisArg, args[0]);\n case 2: return func.call(thisArg, args[0], args[1]);\n case 3: return func.call(thisArg, args[0], args[1], args[2]);\n }\n return func.apply(thisArg, args);\n}\n\nmodule.exports = apply;\n" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js", - "index": 492, - "index2": 485, - "size": 625, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "issuerId": "MrPd", - "issuerName": "./node_modules/lodash/_assignValue.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MrPd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "module": "./node_modules/lodash/_assignValue.js", - "moduleName": "./node_modules/lodash/_assignValue.js", - "type": "cjs require", - "userRequest": "./_baseAssignValue", - "loc": "1:22-51" - }, - { - "moduleId": "juv8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "module": "./node_modules/lodash/_copyObject.js", - "moduleName": "./node_modules/lodash/_copyObject.js", - "type": "cjs require", - "userRequest": "./_baseAssignValue", - "loc": "2:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var defineProperty = require('./_defineProperty');\n\n/**\n * The base implementation of `assignValue` and `assignMergeValue` without\n * value checks.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction baseAssignValue(object, key, value) {\n if (key == '__proto__' && defineProperty) {\n defineProperty(object, key, {\n 'configurable': true,\n 'enumerable': true,\n 'value': value,\n 'writable': true\n });\n } else {\n object[key] = value;\n }\n}\n\nmodule.exports = baseAssignValue;\n" - }, - { - "id": "i+8s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/css.js", - "name": "./node_modules/@uifabric/utilities/lib/css.js", - "index": 112, - "index2": 97, - "size": 1058, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:94-97" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "31:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:70-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:75-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:79-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:80-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "46:245-248" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "73:142-145" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "74:207-210" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "90:63-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "105:322-325" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "147:124-127" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "156:262-265" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "203:97-100" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "208:262-265" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "214:130-133" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "218:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "329:56-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "379:68-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "445:23-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "558:383-386" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:120-123" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "307:511-514" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "307:662-665" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "308:302-305" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "234:101-104" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "245:84-87" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "248:96-99" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "249:65-68" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "250:65-68" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:72-75" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "243:56-59" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "246:52-55" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "247:239-242" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "247:590-593" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "248:56-59" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "249:60-63" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "250:67-70" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "256:67-70" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "262:87-90" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "265:58-61" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "268:86-89" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "269:121-124" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "273:102-105" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "278:72-75" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "285:147-150" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "304:158-161" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "39:22-25" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "42:28-31" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "43:29-32" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "50:59-62" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "89:52-55" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:59-62" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "167:59-62" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "188:56-59" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "189:52-55" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "230:60-63" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "235:56-59" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "258:56-59" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "290:56-59" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "75:100-103" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "7:52-55" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "8:179-182" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "164:56-59" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "165:52-55" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "166:106-109" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "166:463-466" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "167:56-59" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "168:60-63" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "169:67-70" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "175:67-70" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "182:56-59" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "194:93-96" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "183:22-25" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "184:23-26" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "185:37-40" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "188:36-39" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "191:38-41" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "192:38-41" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "193:31-34" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "201:27-30" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "47:140-143" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "492:22-25" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "493:22-25" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "495:23-26" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "771:22-25" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "772:22-25" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "773:23-26" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "126:90-93" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:128-131" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./css", - "loc": "18:0-22" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./css", - "loc": "18:0-22" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "197:72-75" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:60-63" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "203:115-118" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "68:60-63" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "192:56-59" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "193:124-127" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "194:56-59" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "195:60-63" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "196:64-67" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:105-108" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "22:75-78" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "24:170-173" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "25:52-55" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "26:56-59" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "28:173-176" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "316:260-263" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:80-83" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "129:56-59" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "138:179-182" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:64-67" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:110-113" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:122-125" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "30:174-177" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "54:189-192" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "24:96-99" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "26:90-93" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "71:56-59" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "196:75-78" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "206:75-78" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "60:79-82" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "83:65-68" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "87:107-110" - } - ], - "usedExports": [ - "css" - ], - "providedExports": [ - "css" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Concatination helper, which can merge class names together. Skips over falsey values.\n *\n * @public\n */\nexport function css() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var classes = [];\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\n var arg = args_1[_a];\n if (arg) {\n if (typeof arg === 'string') {\n classes.push(arg);\n }\n else if (arg.hasOwnProperty('toString') && typeof arg.toString === 'function') {\n classes.push(arg.toString());\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n for (var key in arg) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n if (arg[key]) {\n classes.push(key);\n }\n }\n }\n }\n }\n return classes.join(' ');\n}\n//# sourceMappingURL=css.js.map" - }, - { - "id": "i9Z/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warn.js", - "index": 97, - "index2": 80, - "size": 739, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "72:16-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "76:12-16" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "84:12-16" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "130:16-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "154:16-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "301:12-16" - }, - { - "moduleId": "4iH1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "module": "./node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "1:0-30" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "1:0-30" - }, - { - "moduleId": "GCTM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "module": "./node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "1:0-30" - }, - { - "moduleId": "GCTM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "module": "./node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "type": "harmony import specifier", - "userRequest": "./warn", - "loc": "17:16-20" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "185:16-20" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warn", - "loc": "1:0-28" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warn", - "loc": "1:0-28" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:8-12" - }, - { - "moduleId": "Q9RI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "module": "./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "1:0-30" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "174:16-20" - } - ], - "usedExports": [ - "warn" - ], - "providedExports": [ - "warn", - "setWarningCallback" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/* eslint-disable no-console */\nvar _warningCallback = undefined;\n/**\n * Sends a warning to console, if the api is present.\n *\n * @public\n * @param message - Warning message.\n */\nexport function warn(message) {\n if (_warningCallback && process.env.NODE_ENV !== 'production') {\n _warningCallback(message);\n }\n else if (console && console.warn) {\n console.warn(message);\n }\n}\n/**\n * Configures the warning callback. Passing in undefined will reset it to use the default\n * console.warn function.\n *\n * @public\n * @param warningCallback - Callback to override the generated warnings.\n */\nexport function setWarningCallback(warningCallback) {\n _warningCallback = warningCallback;\n}\n//# sourceMappingURL=warn.js.map" - }, - { - "id": "iMux", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "name": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "index": 58, - "index2": 89, - "size": 3262, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "43:44-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "110:42-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "116:36-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Label", - "loc": "147:52-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Label", - "loc": "158:44-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Label", - "loc": "161:40-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "494:48-53" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "85:46-51" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "240:42-47" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "242:60-65" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "251:50-55" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "286:46-51" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "302:46-51" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Label", - "loc": "70:32-37" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "332:44-49" - }, - { - "moduleId": "k+YB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Label", - "loc": "2:0-24" - }, - { - "moduleId": "k+YB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Label", - "loc": "2:0-24" - } - ], - "usedExports": [ - "Label" - ], - "providedExports": [ - "Label" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "index": 59, - "index2": 47, - "size": 1339, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "issuerId": "k+YB", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "4ApC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Label.js", - "name": "./node_modules/office-ui-fabric-react/lib/Label.js" - }, - { - "id": "k+YB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "type": "harmony side effect evaluation", - "userRequest": "./Label.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "type": "harmony import specifier", - "userRequest": "./Label.base", - "loc": "4:26-35" - }, - { - "moduleId": "k+YB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Label.base", - "loc": "1:0-29" - }, - { - "moduleId": "k+YB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Label.base", - "loc": "1:0-29" - } - ], - "usedExports": [ - "LabelBase" - ], - "providedExports": [ - "LabelBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { divProperties, getNativeProps } from '../../Utilities';\nimport { classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction({\n // Label is used a lot by other components.\n // It's likely to see expected cases which pass different className to the Label.\n // Therefore setting a larger cache size.\n cacheSize: 100,\n});\nvar LabelBase = /** @class */ (function (_super) {\n __extends(LabelBase, _super);\n function LabelBase() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LabelBase.prototype.render = function () {\n var _a = this.props, _b = _a.as, RootType = _b === void 0 ? 'label' : _b, children = _a.children, className = _a.className, disabled = _a.disabled, styles = _a.styles, required = _a.required, theme = _a.theme;\n var classNames = getClassNames(styles, {\n className: className,\n disabled: disabled,\n required: required,\n theme: theme,\n });\n return (React.createElement(RootType, __assign({}, getNativeProps(this.props, divProperties), { className: classNames.root }), children));\n };\n return LabelBase;\n}(React.Component));\nexport { LabelBase };\n//# sourceMappingURL=Label.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "index": 58, - "index2": 89, - "size": 246, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "issuerId": "k+YB", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "4ApC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Label.js", - "name": "./node_modules/office-ui-fabric-react/lib/Label.js" - }, - { - "id": "k+YB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "43:44-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "110:42-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "116:36-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Label", - "loc": "147:52-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Label", - "loc": "158:44-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Label", - "loc": "161:40-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "494:48-53" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "85:46-51" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "240:42-47" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "242:60-65" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "251:50-55" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "286:46-51" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "302:46-51" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Label", - "loc": "70:32-37" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Label", - "loc": "332:44-49" - }, - { - "moduleId": "k+YB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Label", - "loc": "2:0-24" - }, - { - "moduleId": "k+YB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Label", - "loc": "2:0-24" - } - ], - "usedExports": [ - "Label" - ], - "providedExports": [ - "Label" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { LabelBase } from './Label.base';\nimport { getStyles } from './Label.styles';\nexport var Label = styled(LabelBase, getStyles, undefined, {\n scope: 'Label',\n});\n//# sourceMappingURL=Label.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "index": 61, - "index2": 88, - "size": 1647, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "4ApC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Label.js", - "name": "./node_modules/office-ui-fabric-react/lib/Label.js" - }, - { - "id": "k+YB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Label/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "type": "harmony side effect evaluation", - "userRequest": "./Label.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js", - "type": "harmony import specifier", - "userRequest": "./Label.styles", - "loc": "4:37-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, FontWeights, getHighContrastNoAdjustStyle } from '../../Styling';\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, className = props.className, disabled = props.disabled, required = props.required;\n var semanticColors = theme.semanticColors;\n // Tokens\n var labelFontWeight = FontWeights.semibold;\n var labelColor = semanticColors.bodyText;\n var labelDisabledColor = semanticColors.disabledBodyText;\n var labelRequiredStarColor = semanticColors.errorText;\n return {\n root: [\n 'ms-Label',\n theme.fonts.medium,\n {\n fontWeight: labelFontWeight,\n color: labelColor,\n boxSizing: 'border-box',\n boxShadow: 'none',\n margin: 0,\n display: 'block',\n padding: '5px 0',\n wordWrap: 'break-word',\n overflowWrap: 'break-word',\n },\n disabled && {\n color: labelDisabledColor,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _a),\n },\n required && {\n selectors: {\n '::after': {\n content: \"' *'\",\n color: labelRequiredStarColor,\n paddingRight: 12,\n },\n },\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=Label.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "iTXR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/IPropertyFieldMultiSelectHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/IPropertyFieldMultiSelectHost.js", - "index": 910, - "index2": 907, - "size": 57, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerId": "p38f", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldMultiSelectHost", - "loc": "3:0-48" - }, - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldMultiSelectHost", - "loc": "3:0-48" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldMultiSelectHost.js.map" - }, - { - "id": "iqDY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.types.js", - "index": 827, - "index2": 814, - "size": 1244, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": "BlmN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/Spinner.js" - }, - { - "id": "m4DS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Spinner", - "loc": "150:53-64" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.types", - "loc": "2:0-46" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.types", - "loc": "3:0-59" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "22:33-44" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "22:53-64" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "22:73-84" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "38:14-25" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "60:21-32" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "67:21-32" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "74:21-32" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "81:21-32" - }, - { - "moduleId": "m4DS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.types", - "loc": "3:0-32" - }, - { - "moduleId": "m4DS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Spinner.types", - "loc": "3:0-32" - } - ], - "usedExports": [ - "SpinnerSize", - "SpinnerType" - ], - "providedExports": [ - "SpinnerSize", - "SpinnerType" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Possible variations of the spinner circle size.\n * {@docCategory Spinner}\n */\nexport var SpinnerSize;\n(function (SpinnerSize) {\n /**\n * 12px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"xSmall\"] = 0] = \"xSmall\";\n /**\n * 16px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"small\"] = 1] = \"small\";\n /**\n * 20px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"medium\"] = 2] = \"medium\";\n /**\n * 28px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"large\"] = 3] = \"large\";\n})(SpinnerSize || (SpinnerSize = {}));\n/**\n * Deprecated at v2.0.0, use `SpinnerSize` instead.\n * @deprecated Use `SpinnerSize` instead.\n * {@docCategory Spinner}\n */\nexport var SpinnerType;\n(function (SpinnerType) {\n /**\n * Deprecated and will be removed at \\>= 2.0.0. Use `SpinnerSize.medium` instead.\n * @deprecated Use `SpinnerSize.medium` instead.\n */\n SpinnerType[SpinnerType[\"normal\"] = 0] = \"normal\";\n /**\n * Deprecated and will be removed at \\>= 2.0.0. Use `SpinnerSize.large` instead.\n * @deprecated Use `SpinnerSize.large` instead.\n */\n SpinnerType[SpinnerType[\"large\"] = 1] = \"large\";\n})(SpinnerType || (SpinnerType = {}));\n//# sourceMappingURL=Spinner.types.js.map" - }, - { - "id": "j0ZI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "index": 228, - "index2": 217, - "size": 15309, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "40:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "52:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "72:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "108:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "108:61-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "117:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "469:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "534:50-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "645:32-42" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "287:32-42" - }, - { - "moduleId": "YCwI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipData", - "loc": "1:0-29" - }, - { - "moduleId": "YCwI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeytipData", - "loc": "1:0-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "830:65-75" - } - ], - "usedExports": [ - "KeytipData" - ], - "providedExports": [ - "KeytipData" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/react-hooks/lib/useConst.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/EventGroup.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/aria.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/array.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConstants.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConstants.js", - "index": 232, - "index2": 211, - "size": 978, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hgfh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js" - }, - { - "id": "DlPT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js" - }, - { - "id": "2a+Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js" - }, - { - "id": "kVX/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipConstants", - "loc": "2:0-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "3:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "13:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "13:27-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "13:70-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "14:7-17" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "14:11-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "36:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "45:17-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "54:28-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "63:38-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "63:76-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "91:39-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "109:32-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "109:72-84" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "122:31-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "128:31-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "160:31-43" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "11:0-105" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "216:47-59" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "217:47-59" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "218:47-59" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "219:47-59" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "220:47-59" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "221:47-59" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "230:46-58" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "230:119-137" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "233:190-208" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "249:45-57" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "250:45-57" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipConstants", - "loc": "3:0-34" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeytipConstants", - "loc": "3:0-34" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "4:0-71" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "16:16-28" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "14:61-75" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "15:62-84" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "16:59-78" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "17:36-50" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "18:37-59" - } - ], - "usedExports": [ - "DATAKTP_TARGET", - "DATAKTP_EXECUTE_TARGET", - "KTP_SEPARATOR", - "KTP_PREFIX", - "KTP_LAYER_ID", - "KeytipEvents" - ], - "providedExports": [ - "KTP_PREFIX", - "KTP_SEPARATOR", - "KTP_FULL_PREFIX", - "DATAKTP_TARGET", - "DATAKTP_EXECUTE_TARGET", - "DATAKTP_ARIA_TARGET", - "KTP_LAYER_ID", - "KTP_ARIA_SEPARATOR", - "KeytipEvents" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var KTP_PREFIX = 'ktp';\nexport var KTP_SEPARATOR = '-';\nexport var KTP_FULL_PREFIX = KTP_PREFIX + KTP_SEPARATOR;\nexport var DATAKTP_TARGET = 'data-ktp-target';\nexport var DATAKTP_EXECUTE_TARGET = 'data-ktp-execute-target';\nexport var DATAKTP_ARIA_TARGET = 'data-ktp-aria-target';\nexport var KTP_LAYER_ID = 'ktp-layer-id';\nexport var KTP_ARIA_SEPARATOR = ', ';\n// Events\nexport var KeytipEvents;\n(function (KeytipEvents) {\n KeytipEvents.KEYTIP_ADDED = 'keytipAdded';\n KeytipEvents.KEYTIP_REMOVED = 'keytipRemoved';\n KeytipEvents.KEYTIP_UPDATED = 'keytipUpdated';\n KeytipEvents.PERSISTED_KEYTIP_ADDED = 'persistedKeytipAdded';\n KeytipEvents.PERSISTED_KEYTIP_REMOVED = 'persistedKeytipRemoved';\n KeytipEvents.PERSISTED_KEYTIP_EXECUTE = 'persistedKeytipExecute';\n KeytipEvents.ENTER_KEYTIP_MODE = 'enterKeytipMode';\n KeytipEvents.EXIT_KEYTIP_MODE = 'exitKeytipMode';\n})(KeytipEvents || (KeytipEvents = {}));\n//# sourceMappingURL=KeytipConstants.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "index": 231, - "index2": 212, - "size": 7612, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "issuerId": "kVX/", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hgfh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js" - }, - { - "id": "DlPT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js" - }, - { - "id": "2a+Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js" - }, - { - "id": "kVX/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "13:33-46" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipManager", - "loc": "7:0-70" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipManager", - "loc": "32:31-44" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipManager", - "loc": "4:0-32" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeytipManager", - "loc": "4:0-32" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipManager", - "loc": "5:0-70" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipManager", - "loc": "14:31-44" - } - ], - "usedExports": [ - "KeytipManager" - ], - "providedExports": [ - "KeytipManager" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __spreadArrays } from \"tslib\";\nimport { EventGroup, getId } from '../../Utilities';\nimport { KeytipEvents } from '../../utilities/keytips/KeytipConstants';\n/**\n * This class is responsible for handling registering, updating, and unregistering of keytips\n */\nvar KeytipManager = /** @class */ (function () {\n function KeytipManager() {\n this.keytips = {};\n this.persistedKeytips = {};\n this.sequenceMapping = {};\n // This is (and should be) updated and kept in sync\n // with the inKeytipMode in KeytipLayer.\n this.inKeytipMode = false;\n // Boolean that gets checked before entering keytip mode by the KeytipLayer\n // Used for an override in special cases (e.g. Disable entering keytip mode when a modal is shown)\n this.shouldEnterKeytipMode = true;\n // Boolean to indicate whether to delay firing an event to update subscribers of\n // keytip data changed.\n this.delayUpdatingKeytipChange = false;\n }\n /**\n * Static function to get singleton KeytipManager instance\n *\n * @returns Singleton KeytipManager instance\n */\n KeytipManager.getInstance = function () {\n return this._instance;\n };\n /**\n * Initialization code to set set parameters to define\n * how the KeytipManager handles keytip data.\n *\n * @param delayUpdatingKeytipChange - T/F if we should delay notifiying keytip subscribers\n * of keytip changes\n */\n KeytipManager.prototype.init = function (delayUpdatingKeytipChange) {\n this.delayUpdatingKeytipChange = delayUpdatingKeytipChange;\n };\n /**\n * Registers a keytip\n *\n * @param keytipProps - Keytip to register\n * @param persisted - T/F if this keytip should be persisted, default is false\n * @returns Unique ID for this keytip\n */\n KeytipManager.prototype.register = function (keytipProps, persisted) {\n if (persisted === void 0) { persisted = false; }\n var props = keytipProps;\n if (!persisted) {\n // Add the overflowSetSequence if necessary\n props = this.addParentOverflow(keytipProps);\n this.sequenceMapping[props.keySequences.toString()] = props;\n }\n // Create a unique keytip\n var uniqueKeytip = this._getUniqueKtp(props);\n // Add to dictionary\n persisted\n ? (this.persistedKeytips[uniqueKeytip.uniqueID] = uniqueKeytip)\n : (this.keytips[uniqueKeytip.uniqueID] = uniqueKeytip);\n // We only want to add something new if we are currently showing keytip mode\n if (this.inKeytipMode || !this.delayUpdatingKeytipChange) {\n var event_1 = persisted ? KeytipEvents.PERSISTED_KEYTIP_ADDED : KeytipEvents.KEYTIP_ADDED;\n EventGroup.raise(this, event_1, {\n keytip: props,\n uniqueID: uniqueKeytip.uniqueID,\n });\n }\n return uniqueKeytip.uniqueID;\n };\n /**\n * Update a keytip\n *\n * @param keytipProps - Keytip to update\n * @param uniqueID - Unique ID of this keytip\n */\n KeytipManager.prototype.update = function (keytipProps, uniqueID) {\n var newKeytipProps = this.addParentOverflow(keytipProps);\n var uniqueKeytip = this._getUniqueKtp(newKeytipProps, uniqueID);\n var oldKeyTip = this.keytips[uniqueID];\n if (oldKeyTip) {\n // Update everything except 'visible'\n uniqueKeytip.keytip.visible = oldKeyTip.keytip.visible;\n // Update keytip in this.keytips\n this.keytips[uniqueID] = uniqueKeytip;\n // Update the sequence to be up to date\n delete this.sequenceMapping[oldKeyTip.keytip.keySequences.toString()];\n this.sequenceMapping[uniqueKeytip.keytip.keySequences.toString()] = uniqueKeytip.keytip;\n // Raise event only if we are currently in keytip mode\n if (this.inKeytipMode || !this.delayUpdatingKeytipChange) {\n EventGroup.raise(this, KeytipEvents.KEYTIP_UPDATED, {\n keytip: uniqueKeytip.keytip,\n uniqueID: uniqueKeytip.uniqueID,\n });\n }\n }\n };\n /**\n * Unregisters a keytip\n *\n * @param keytipToRemove - IKeytipProps of the keytip to remove\n * @param uniqueID - Unique ID of this keytip\n * @param persisted - T/F if this keytip should be persisted, default is false\n */\n KeytipManager.prototype.unregister = function (keytipToRemove, uniqueID, persisted) {\n if (persisted === void 0) { persisted = false; }\n persisted ? delete this.persistedKeytips[uniqueID] : delete this.keytips[uniqueID];\n !persisted && delete this.sequenceMapping[keytipToRemove.keySequences.toString()];\n var event = persisted ? KeytipEvents.PERSISTED_KEYTIP_REMOVED : KeytipEvents.KEYTIP_REMOVED;\n // Update keytips only if we're in keytip mode\n if (this.inKeytipMode || !this.delayUpdatingKeytipChange) {\n EventGroup.raise(this, event, {\n keytip: keytipToRemove,\n uniqueID: uniqueID,\n });\n }\n };\n /**\n * Manual call to enter keytip mode\n */\n KeytipManager.prototype.enterKeytipMode = function () {\n EventGroup.raise(this, KeytipEvents.ENTER_KEYTIP_MODE);\n };\n /**\n * Manual call to exit keytip mode\n */\n KeytipManager.prototype.exitKeytipMode = function () {\n EventGroup.raise(this, KeytipEvents.EXIT_KEYTIP_MODE);\n };\n /**\n * Gets all IKeytipProps from this.keytips\n *\n * @returns All keytips stored in the manager\n */\n KeytipManager.prototype.getKeytips = function () {\n var _this = this;\n return Object.keys(this.keytips).map(function (key) { return _this.keytips[key].keytip; });\n };\n /**\n * Adds the overflowSetSequence to the keytipProps if its parent keytip also has it\n *\n * @param keytipProps - Keytip props to add overflowSetSequence to if necessary\n * @returns - Modified keytip props, if needed to be modified\n */\n KeytipManager.prototype.addParentOverflow = function (keytipProps) {\n var fullSequence = __spreadArrays(keytipProps.keySequences);\n fullSequence.pop();\n if (fullSequence.length !== 0) {\n var parentKeytip = this.sequenceMapping[fullSequence.toString()];\n if (parentKeytip && parentKeytip.overflowSetSequence) {\n return __assign(__assign({}, keytipProps), { overflowSetSequence: parentKeytip.overflowSetSequence });\n }\n }\n return keytipProps;\n };\n /**\n * Public function to bind for overflow items that have a submenu\n */\n KeytipManager.prototype.menuExecute = function (overflowButtonSequences, keytipSequences) {\n EventGroup.raise(this, KeytipEvents.PERSISTED_KEYTIP_EXECUTE, {\n overflowButtonSequences: overflowButtonSequences,\n keytipSequences: keytipSequences,\n });\n };\n /**\n * Creates an IUniqueKeytip object\n *\n * @param keytipProps - IKeytipProps\n * @param uniqueID - Unique ID, will default to the next unique ID if not passed\n * @returns IUniqueKeytip object\n */\n KeytipManager.prototype._getUniqueKtp = function (keytipProps, uniqueID) {\n if (uniqueID === void 0) { uniqueID = getId(); }\n return { keytip: __assign({}, keytipProps), uniqueID: uniqueID };\n };\n KeytipManager._instance = new KeytipManager();\n return KeytipManager;\n}());\nexport { KeytipManager };\n//# sourceMappingURL=KeytipManager.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "index": 235, - "index2": 215, - "size": 2529, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "issuerId": "Iqpp", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "ZUV6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "name": "./node_modules/office-ui-fabric-react/lib/Keytips.js" - }, - { - "id": "D2C2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js" - }, - { - "id": "Iqpp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "54:71-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "57:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/keytips/index", - "loc": "59:19-32" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "9:0-126" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "101:40-53" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "125:40-53" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "142:37-51" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "144:76-89" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "151:41-54" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "233:74-87" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "237:71-84" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "366:27-40" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "369:27-40" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "369:41-55" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "448:58-71" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "457:27-40" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "460:27-40" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "460:41-55" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "497:29-43" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "500:66-79" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "546:43-58" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "549:43-65" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "3:0-93" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "22:27-49" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "22:50-64" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "25:27-49" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipUtils", - "loc": "5:0-30" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeytipUtils", - "loc": "5:0-30" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "3:0-84" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "32:21-34" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "54:21-34" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "100:21-34" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "206:31-45" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "211:70-83" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "214:50-63" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "222:58-71" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "227:27-41" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "234:27-41" - } - ], - "usedExports": [ - "getAriaDescribedBy", - "mergeOverflows", - "sequencesToID" - ], - "providedExports": [ - "sequencesToID", - "mergeOverflows", - "ktpTargetFromSequences", - "ktpTargetFromId", - "getAriaDescribedBy" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __spreadArrays } from \"tslib\";\nimport { KTP_SEPARATOR, KTP_PREFIX, DATAKTP_TARGET, DATAKTP_EXECUTE_TARGET, KTP_LAYER_ID } from './KeytipConstants';\nimport { addElementAtIndex } from '../../Utilities';\n/**\n * Converts a whole set of KeySequences into one keytip ID, which will be the ID for the last keytip sequence specified\n * keySequences should not include the initial keytip 'start' sequence.\n *\n * @param keySequences - Full path of IKeySequences for one keytip.\n * @returns String to use for the keytip ID.\n */\nexport function sequencesToID(keySequences) {\n return keySequences.reduce(function (prevValue, keySequence) {\n return prevValue + KTP_SEPARATOR + keySequence.split('').join(KTP_SEPARATOR);\n }, KTP_PREFIX);\n}\n/**\n * Merges an overflow sequence with a key sequence.\n *\n * @param keySequences - Full sequence for one keytip.\n * @param overflowKeySequences - Full overflow keytip sequence.\n * @returns Sequence that will be used by the keytip when in the overflow.\n */\nexport function mergeOverflows(keySequences, overflowKeySequences) {\n var overflowSequenceLen = overflowKeySequences.length;\n var overflowSequence = __spreadArrays(overflowKeySequences).pop();\n var newKeySequences = __spreadArrays(keySequences);\n return addElementAtIndex(newKeySequences, overflowSequenceLen - 1, overflowSequence);\n}\n/**\n * Constructs the data-ktp-target attribute selector from a full key sequence.\n *\n * @param keySequences - Full string[] for a Keytip.\n * @returns String selector to use to query for the keytip target.\n */\nexport function ktpTargetFromSequences(keySequences) {\n return '[' + DATAKTP_TARGET + '=\"' + sequencesToID(keySequences) + '\"]';\n}\n/**\n * Constructs the data-ktp-execute-target attribute selector from a keytip ID.\n *\n * @param keytipId - ID of the Keytip.\n * @returns String selector to use to query for the keytip execute target.\n */\nexport function ktpTargetFromId(keytipId) {\n return '[' + DATAKTP_EXECUTE_TARGET + '=\"' + keytipId + '\"]';\n}\n/**\n * Gets the aria-describedby value to put on the component with this keytip.\n *\n * @param keySequences - KeySequences of the keytip.\n * @returns The aria-describedby value to set on the component with this keytip.\n */\nexport function getAriaDescribedBy(keySequences) {\n var describedby = ' ' + KTP_LAYER_ID;\n if (!keySequences.length) {\n // Return just the layer ID\n return describedby;\n }\n return describedby + ' ' + sequencesToID(keySequences);\n}\n//# sourceMappingURL=KeytipUtils.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "index": 228, - "index2": 217, - "size": 771, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "issuerId": "YCwI", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "40:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "52:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "72:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "108:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "108:61-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "117:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "469:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "534:50-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "645:32-42" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "287:32-42" - }, - { - "moduleId": "YCwI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipData", - "loc": "1:0-29" - }, - { - "moduleId": "YCwI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeytipData", - "loc": "1:0-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "830:65-75" - } - ], - "usedExports": [ - "KeytipData" - ], - "providedExports": [ - "KeytipData" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __rest } from \"tslib\";\nimport { DATAKTP_TARGET, DATAKTP_EXECUTE_TARGET } from '../../utilities/keytips/index';\nimport { useKeytipData } from './useKeytipData';\n/**\n * A small element to help the target component correctly read out its aria-describedby for its Keytip\n * {@docCategory Keytips}\n */\nexport var KeytipData = function (props) {\n var _a;\n var children = props.children, keytipDataProps = __rest(props, [\"children\"]);\n var _b = useKeytipData(keytipDataProps), keytipId = _b.keytipId, ariaDescribedBy = _b.ariaDescribedBy;\n return children((_a = {},\n _a[DATAKTP_TARGET] = keytipId,\n _a[DATAKTP_EXECUTE_TARGET] = keytipId,\n _a['aria-describedby'] = ariaDescribedBy,\n _a));\n};\n//# sourceMappingURL=KeytipData.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/usePrevious.js", - "name": "./node_modules/@uifabric/react-hooks/lib/usePrevious.js", - "index": 233, - "index2": 213, - "size": 453, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/react-hooks", - "loc": "14:22-33" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./usePrevious", - "loc": "11:0-30" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./usePrevious", - "loc": "11:0-30" - }, - { - "moduleId": "sNMJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "type": "harmony side effect evaluation", - "userRequest": "./usePrevious", - "loc": "4:0-44" - } - ], - "usedExports": [ - "usePrevious" - ], - "providedExports": [ - "usePrevious" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { useRef, useEffect } from 'react';\n/**\n * Hook keeping track of a given value from a previous execution of the component the Hook is used in.\n *\n * See [React Hooks FAQ](https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state)\n */\nexport function usePrevious(value) {\n var ref = useRef();\n useEffect(function () {\n ref.current = value;\n });\n return ref.current;\n}\n//# sourceMappingURL=usePrevious.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "index": 229, - "index2": 216, - "size": 2931, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony side effect evaluation", - "userRequest": "./useKeytipData", - "loc": "3:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony import specifier", - "userRequest": "./useKeytipData", - "loc": "11:13-26" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony side effect evaluation", - "userRequest": "./useKeytipData", - "loc": "3:0-48" - }, - { - "moduleId": "uwFx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipRef.js", - "type": "harmony import specifier", - "userRequest": "./useKeytipData", - "loc": "9:13-26" - } - ], - "usedExports": [ - "useKeytipData" - ], - "providedExports": [ - "useKeytipData" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign, __spreadArrays } from \"tslib\";\nimport * as React from 'react';\nimport { useConst, usePrevious } from '@uifabric/react-hooks';\nimport { mergeAriaAttributeValues } from '../../Utilities';\nimport { KeytipManager, mergeOverflows, sequencesToID, getAriaDescribedBy } from '../../utilities/keytips/index';\n/**\n * Hook that creates attributes for components which are enabled with Keytip.\n */\nexport function useKeytipData(options) {\n var uniqueId = React.useRef();\n var keytipProps = options.keytipProps\n ? __assign({ disabled: options.disabled }, options.keytipProps) : undefined;\n var keytipManager = useConst(KeytipManager.getInstance());\n var prevOptions = usePrevious(options);\n // useLayoutEffect used to strictly emulate didUpdate/didMount behavior\n React.useLayoutEffect(function () {\n var _a, _b;\n if (uniqueId.current &&\n keytipProps &&\n (((_a = prevOptions) === null || _a === void 0 ? void 0 : _a.keytipProps) !== options.keytipProps || ((_b = prevOptions) === null || _b === void 0 ? void 0 : _b.disabled) !== options.disabled)) {\n keytipManager.update(keytipProps, uniqueId.current);\n }\n });\n React.useLayoutEffect(function () {\n // Register Keytip in KeytipManager\n if (keytipProps) {\n uniqueId.current = keytipManager.register(keytipProps);\n }\n return function () {\n // Unregister Keytip in KeytipManager\n keytipProps && keytipManager.unregister(keytipProps, uniqueId.current);\n };\n // this is meant to run only at mount, and updates are handled separately\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n var nativeKeytipProps = {\n ariaDescribedBy: undefined,\n keytipId: undefined,\n };\n if (keytipProps) {\n nativeKeytipProps = getKeytipData(keytipManager, keytipProps, options.ariaDescribedBy);\n }\n return nativeKeytipProps;\n}\n/**\n * Gets the aria- and data- attributes to attach to the component\n * @param keytipProps - options for Keytip\n * @param describedByPrepend - ariaDescribedBy value to prepend\n */\nfunction getKeytipData(keytipManager, keytipProps, describedByPrepend) {\n // Add the parent overflow sequence if necessary\n var newKeytipProps = keytipManager.addParentOverflow(keytipProps);\n // Construct aria-describedby and data-ktp-id attributes\n var ariaDescribedBy = mergeAriaAttributeValues(describedByPrepend, getAriaDescribedBy(newKeytipProps.keySequences));\n var keySequences = __spreadArrays(newKeytipProps.keySequences);\n if (newKeytipProps.overflowSetSequence) {\n keySequences = mergeOverflows(keySequences, newKeytipProps.overflowSetSequence);\n }\n var keytipId = sequencesToID(keySequences);\n return {\n ariaDescribedBy: ariaDescribedBy,\n keytipId: keytipId,\n };\n}\n//# sourceMappingURL=useKeytipData.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "jP70", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/IPropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/IPropertyFieldNumber.js", - "index": 889, - "index2": 886, - "size": 48, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerId": "LatS", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldNumber", - "loc": "1:0-39" - }, - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldNumber", - "loc": "1:0-39" - } - ], - "usedExports": [ - "PropertyFieldNumber" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldNumber.js.map" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "index": 905, - "index2": 909, - "size": 104, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect", - "loc": "25:0-100" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect", - "loc": "501:92-116" - } - ], - "usedExports": [ - "PropertyFieldMultiSelect" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 1, - "source": "export * from './propertyFields/multiSelect/index';\n//# sourceMappingURL=PropertyFieldMultiSelect.js.map" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js", - "index": 495, - "index2": 487, - "size": 1044, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Dw+G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignIn.js", - "module": "./node_modules/lodash/_baseAssignIn.js", - "moduleName": "./node_modules/lodash/_baseAssignIn.js", - "type": "cjs require", - "userRequest": "./_copyObject", - "loc": "1:17-41" - }, - { - "moduleId": "EEGq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbolsIn.js", - "module": "./node_modules/lodash/_copySymbolsIn.js", - "moduleName": "./node_modules/lodash/_copySymbolsIn.js", - "type": "cjs require", - "userRequest": "./_copyObject", - "loc": "1:17-41" - }, - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_copyObject", - "loc": "5:17-41" - }, - { - "moduleId": "VOtZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbols.js", - "module": "./node_modules/lodash/_copySymbols.js", - "moduleName": "./node_modules/lodash/_copySymbols.js", - "type": "cjs require", - "userRequest": "./_copyObject", - "loc": "1:17-41" - }, - { - "moduleId": "WwFo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssign.js", - "module": "./node_modules/lodash/_baseAssign.js", - "moduleName": "./node_modules/lodash/_baseAssign.js", - "type": "cjs require", - "userRequest": "./_copyObject", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var assignValue = require('./_assignValue'),\n baseAssignValue = require('./_baseAssignValue');\n\n/**\n * Copies properties of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy properties from.\n * @param {Array} props The property identifiers to copy.\n * @param {Object} [object={}] The object to copy properties to.\n * @param {Function} [customizer] The function to customize copied values.\n * @returns {Object} Returns `object`.\n */\nfunction copyObject(source, props, object, customizer) {\n var isNew = !object;\n object || (object = {});\n\n var index = -1,\n length = props.length;\n\n while (++index < length) {\n var key = props[index];\n\n var newValue = customizer\n ? customizer(object[key], source[key], key, object, source)\n : undefined;\n\n if (newValue === undefined) {\n newValue = source[key];\n }\n if (isNew) {\n baseAssignValue(object, key, newValue);\n } else {\n assignValue(object, key, newValue);\n }\n }\n return object;\n}\n\nmodule.exports = copyObject;\n" - }, - { - "id": "jws3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/IPropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/IPropertyFieldCollectionDataHost.js", - "index": 11, - "index2": 8, - "size": 60, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldCollectionDataHost", - "loc": "4:0-51" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldCollectionDataHost", - "loc": "4:0-51" - } - ], - "usedExports": [ - "PropertyFieldCollectionDataHost" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldCollectionDataHost.js.map" - }, - { - "id": "jzxs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/ICollectionNumberFieldState.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/ICollectionNumberFieldState.js", - "index": 126, - "index2": 117, - "size": 55, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "issuerId": "Z/cK", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "Z/cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Z/cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionNumberFieldState", - "loc": "3:0-46" - }, - { - "moduleId": "Z/cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionNumberFieldState", - "loc": "3:0-46" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "//# sourceMappingURL=ICollectionNumberFieldState.js.map" - }, - { - "id": "k+1r", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheDelete.js", - "name": "./node_modules/lodash/_mapCacheDelete.js", - "index": 484, - "index2": 476, - "size": 450, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "issuerId": "e4Nc", - "issuerName": "./node_modules/lodash/_MapCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "e4Nc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "module": "./node_modules/lodash/_MapCache.js", - "moduleName": "./node_modules/lodash/_MapCache.js", - "type": "cjs require", - "userRequest": "./_mapCacheDelete", - "loc": "2:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var getMapData = require('./_getMapData');\n\n/**\n * Removes `key` and its value from the map.\n *\n * @private\n * @name delete\n * @memberOf MapCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction mapCacheDelete(key) {\n var result = getMapData(this, key)['delete'](key);\n this.size -= result ? 1 : 0;\n return result;\n}\n\nmodule.exports = mapCacheDelete;\n" - }, - { - "id": "k5Q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "index": 249, - "index2": 234, - "size": 3644, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "4:0-72" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "10:27-46" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "7:27-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Button/BaseButton.styles", - "loc": "4:0-79" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../Button/BaseButton.styles", - "loc": "6:27-46" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "4:0-72" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "9:27-46" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "9:27-46" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "8:27-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { memoizeFunction } from '../../Utilities';\nimport { HighContrastSelector, getFocusStyle, hiddenContentStyle } from '../../Styling';\nvar noOutline = {\n outline: 0,\n};\nvar iconStyle = function (fontSize) {\n return {\n fontSize: fontSize,\n margin: '0 4px',\n height: '16px',\n lineHeight: '16px',\n textAlign: 'center',\n flexShrink: 0,\n };\n};\n/**\n * Gets the base button styles. Note: because it is a base class to be used with the `mergeRules`\n * helper, it should have values for all class names in the interface. This let `mergeRules` optimize\n * mixing class names together.\n */\nexport var getStyles = memoizeFunction(function (theme) {\n var _a, _b;\n var semanticColors = theme.semanticColors, effects = theme.effects, fonts = theme.fonts;\n var border = semanticColors.buttonBorder;\n var disabledBackground = semanticColors.disabledBackground;\n var disabledText = semanticColors.disabledText;\n var buttonHighContrastFocus = {\n left: -2,\n top: -2,\n bottom: -2,\n right: -2,\n outlineColor: 'ButtonText',\n };\n return {\n root: [\n getFocusStyle(theme, { inset: 1, highContrastStyle: buttonHighContrastFocus, borderColor: 'transparent' }),\n theme.fonts.medium,\n {\n boxSizing: 'border-box',\n border: '1px solid ' + border,\n userSelect: 'none',\n display: 'inline-block',\n textDecoration: 'none',\n textAlign: 'center',\n cursor: 'pointer',\n padding: '0 16px',\n borderRadius: effects.roundedCorner2,\n selectors: {\n // IE11 workaround for preventing shift of child elements of a button when active.\n ':active > *': {\n position: 'relative',\n left: 0,\n top: 0,\n },\n },\n },\n ],\n rootDisabled: [\n getFocusStyle(theme, { inset: 1, highContrastStyle: buttonHighContrastFocus, borderColor: 'transparent' }),\n {\n backgroundColor: disabledBackground,\n borderColor: disabledBackground,\n color: disabledText,\n cursor: 'default',\n selectors: {\n ':hover': noOutline,\n ':focus': noOutline,\n },\n },\n ],\n iconDisabled: {\n color: disabledText,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'GrayText',\n },\n _a),\n },\n menuIconDisabled: {\n color: disabledText,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'GrayText',\n },\n _b),\n },\n flexContainer: {\n display: 'flex',\n height: '100%',\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'center',\n },\n description: {\n display: 'block',\n },\n textContainer: {\n flexGrow: 1,\n display: 'block',\n },\n icon: iconStyle(fonts.mediumPlus.fontSize),\n menuIcon: iconStyle(fonts.small.fontSize),\n label: {\n margin: '0 4px',\n lineHeight: '100%',\n display: 'block',\n },\n screenReaderText: hiddenContentStyle,\n };\n});\n//# sourceMappingURL=BaseButton.styles.js.map" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "index": 25, - "index2": 266, - "size": 187, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "issuerId": "QcW5", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony side effect evaluation", - "userRequest": "../collectionDataItem", - "loc": "23:0-59" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../collectionDataItem", - "loc": "224:164-182" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../collectionDataItem", - "loc": "225:72-90" - } - ], - "usedExports": [ - "CollectionDataItem" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 6, - "source": "export * from './CollectionDataItem';\nexport * from './ICollectionDataItemProps';\nexport * from './ICollectionDataItemState';\nexport * from './ErrorMsg';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "kSaI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "index": 0, - "index2": 917, - "size": 1683333, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": null, - "module": null, - "moduleName": null, - "type": "single entry", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "loc": "list-search-web-part" - } - ], - "usedExports": true, - "providedExports": [ - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/elementContains.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/getParent.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/common/safe-global.js (<- Module uses injected variables (global))", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/sp/node_modules/@pnp/common/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/sp/node_modules/tslib/tslib.es6.js because of ./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/setVersion.js because of ./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/telemetry-js/dist/index.js (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/react-hooks/lib/useConst.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/BaseComponent.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/DelayedRender.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/EventGroup.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/array.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/css.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/customizable.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/on.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/focus.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/object.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/scroll.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/useFocusRects.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/omit.js (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Label/Label.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Link/Link.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/react-js-pagination/dist/Pagination.js (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/react-xml-parser/dist/bundle.js (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-component-base\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-core-library\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-lodash-subset\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-property-pane\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-webpart-base\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"ControlStrings\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"ListSearchWebPartStrings\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"react-dom\" (<- Module is not an ECMAScript module)" - ], - "depth": 0, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js", - "index": 0, - "index2": 917, - "size": 61787, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": null, - "module": null, - "moduleName": null, - "type": "single entry", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "loc": "list-search-web-part" - } - ], - "usedExports": true, - "providedExports": [ - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is an entry point" - ], - "depth": 0, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nimport * as React from 'react';\nimport * as ReactDom from 'react-dom';\nimport { Version } from '@microsoft/sp-core-library';\nimport { PropertyPaneTextField, PropertyPaneDropdown, PropertyPaneToggle, PropertyPaneDynamicFieldSet, PropertyPaneDynamicField } from '@microsoft/sp-property-pane';\nimport { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';\nimport { PropertyFieldCollectionData, CustomCollectionFieldType } from '@pnp/spfx-property-controls/lib/PropertyFieldCollectionData';\nimport ListSearch from './components/ListSearch';\nimport * as strings from 'ListSearchWebPartStrings';\nimport { IDetailListFieldData } from './model/IListConfigProps';\nimport { PropertyFieldSitePicker, } from '@pnp/spfx-property-controls/lib/PropertyFieldSitePicker';\nimport { PropertyFieldNumber } from '@pnp/spfx-property-controls/lib/PropertyFieldNumber';\nimport { Placeholder } from \"@pnp/spfx-controls-react/lib/Placeholder\";\nimport { DisplayMode } from '@microsoft/sp-core-library';\nimport { EmptyPropertyPane } from './custompropertyPane/EmptyPropertyPane';\nimport { ThemeProvider } from '@microsoft/sp-component-base';\nimport { PropertyFieldMultiSelect } from '@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect';\nimport CustomCollectionDataField from './custompropertyPane/CustomCollectionDataField';\nimport ListService from './services/ListService';\nimport { PropertyPaneWebPartInformation } from '@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation';\nimport { SharePointFieldTypes, SharePointType } from './model/ISharePointFieldTypes';\nimport { IModalType } from './model/IModalType';\nexport default class ListSearchWebPart extends BaseClientSideWebPart {\n constructor(props) {\n super();\n this.sitesLists = {};\n this.ListsFields = {};\n this.onSelectedItem = (selectedItem) => {\n this.selectedItem = selectedItem;\n // notify that the value has changed\n this.context.dynamicDataSourceManager.notifyPropertyChanged('selectedItem');\n };\n this.saveSiteCollectionLists = this.saveSiteCollectionLists.bind(this);\n this.saveSiteCollectionListsFields = this.saveSiteCollectionListsFields.bind(this);\n this.setNewListFields = this.setNewListFields.bind(this);\n this.handleSourceSiteChange = this.handleSourceSiteChange.bind(this);\n this.updateFieldType = this.updateFieldType.bind(this);\n this.onMappingColumnChanged = this.onMappingColumnChanged.bind(this);\n }\n onInit() {\n const _super = Object.create(null, {\n onInit: { get: () => super.onInit }\n });\n return __awaiter(this, void 0, void 0, function* () {\n // Consume the new ThemeProvider service\n this._themeProvider = this.context.serviceScope.consume(ThemeProvider.serviceKey);\n // If it exists, get the theme variant\n this._themeVariant = this._themeProvider.tryGetTheme();\n // Register a handler to be notified if the theme variant changes\n this._themeProvider.themeChangedEvent.add(this, this._handleThemeChangedEvent);\n this.context.dynamicDataSourceManager.initializeSource(this);\n this.selectedItem = { webUrl: '', listId: '', itemId: -1 };\n return _super.onInit.call(this);\n });\n }\n get propertiesMetadata() {\n return {\n // Specify the web part properties data type to allow the address\n // information to be serialized by the SharePoint Framework.\n 'dynamicQueryText': {\n dynamicPropertyType: 'string'\n }\n };\n }\n getPropertyDefinitions() {\n return [\n {\n id: 'selectedItem',\n title: 'Selected Item'\n }\n ];\n }\n getPropertyValue(propertyId) {\n switch (propertyId) {\n case 'selectedItem':\n return this.selectedItem;\n }\n throw new Error('Unsupported property id');\n }\n onPropertyPaneConfigurationStart() {\n return __awaiter(this, void 0, void 0, function* () {\n yield this.loadCollectionData();\n });\n }\n _handleThemeChangedEvent(args) {\n this._themeVariant = args.theme;\n this.render();\n }\n loadCollectionData() {\n return __awaiter(this, void 0, void 0, function* () {\n let sitesListsInfo = this.loadSitesLists();\n let listsFieldsInfo = this.loadListsFields();\n yield Promise.all([sitesListsInfo, listsFieldsInfo]);\n });\n }\n loadSitesLists() {\n return __awaiter(this, void 0, void 0, function* () {\n let listsDataPromises = [];\n let sites = [];\n this.properties.sites.map((item, index, array) => {\n if (array.indexOf(item) == index) {\n let service = new ListService(item.url, false);\n listsDataPromises.push(service.getSiteListsTitle());\n sites.push(item.url);\n }\n });\n let listData = yield Promise.all(listsDataPromises);\n listData.map((lists, index) => {\n this.saveSiteCollectionLists(sites[index], lists);\n });\n });\n }\n loadListsFields() {\n return __awaiter(this, void 0, void 0, function* () {\n if (this.properties.listsCollectionData && this.properties.listsCollectionData.length > 0) {\n let siteStructure = {};\n this.properties.listsCollectionData.map(option => {\n if (!siteStructure[option.SiteCollectionSource]) {\n siteStructure[option.SiteCollectionSource] = [];\n }\n siteStructure[option.SiteCollectionSource].push(option.ListSourceField);\n });\n let listsDataPromises = [];\n let lists = [];\n let sites = [];\n Object.keys(siteStructure).map(site => {\n let service = new ListService(site, false);\n siteStructure[site].map((list) => {\n listsDataPromises.push(service.getListFields(list));\n lists.push(list);\n sites.push(site);\n });\n });\n let listData = yield Promise.all(listsDataPromises);\n listData.map((fields, index) => {\n this.saveSiteCollectionListsFields(sites[index], lists[index], fields);\n });\n }\n });\n }\n OrderfieldsCollectionData() {\n if (this.properties.listsCollectionData && this.properties.mappingFieldsCollectionData) {\n this.properties.mappingFieldsCollectionData = this.properties.mappingFieldsCollectionData.map(element => {\n element.Order = this.properties.listsCollectionData.find(source => source.ListSourceField === element.ListSourceField && source.SiteCollectionSource === element.SiteCollectionSource).sortIdx;\n return element;\n });\n }\n }\n render() {\n let renderElement = null;\n let isEditMode = this.displayMode === DisplayMode.Edit;\n if (!this.isConfig()) {\n const placeholder = React.createElement(Placeholder, {\n iconName: 'Edit',\n iconText: 'Configure List Search webpart properties',\n description: 'You need to complete the configuration of the webpart',\n buttonLabel: 'Configure',\n onConfigure: () => this.context.propertyPane.open(),\n hideButton: !isEditMode,\n });\n renderElement = placeholder;\n }\n else {\n if (this.properties.clickEnabled) {\n this.setSelectedOnClickOption(this.properties.onClickSelectedOption);\n }\n let sercheableFields = this.properties.detailListFieldsCollectionData.filter(fieldData => { if (fieldData.Searcheable)\n return fieldData.ColumnTitle; });\n if (this.properties.ShowListName && this.properties.detailListFieldsCollectionData.find(field => field.IsListTitle)) {\n this.properties.ListNameTitle = this.properties.detailListFieldsCollectionData.find(field => field.IsListTitle).ColumnTitle;\n }\n if (this.properties.ShowSiteTitle && this.properties.detailListFieldsCollectionData.find(field => field.IsSiteTitle)) {\n this.properties.SiteNameTitle = this.properties.detailListFieldsCollectionData.find(field => field.IsSiteTitle).ColumnTitle;\n }\n let queryText = \"\";\n if (this.properties.initialQueryEnabled) {\n queryText = this.properties.initialQueryOption === \"simpleText\" ? this.properties.initialQueryText : this.properties.dynamicQueryText.tryGetValue();\n }\n const element = React.createElement(ListSearch, {\n Sites: this.properties.sites,\n detailListFieldsCollectionData: this.properties.detailListFieldsCollectionData,\n mappingFieldsCollectionData: this.properties.mappingFieldsCollectionData.sort((prev, next) => prev.Order - next.Order),\n listsCollectionData: this.properties.listsCollectionData.sort(),\n ShowListName: this.properties.ShowListName,\n ShowFileIcon: this.properties.ShowFileIcon,\n ListNameTitle: this.properties.ListNameTitle,\n ShowSite: this.properties.ShowSiteTitle,\n SiteNameTitle: this.properties.SiteNameTitle,\n SiteNamePropertyToShow: this.properties.SiteNamePropertyToShow,\n Context: this.context,\n GeneralFilter: this.properties.GeneralFilter,\n GeneralFilterPlaceHolderText: this.properties.GeneralFilterPlaceHolderText,\n ShowClearAllFilters: this.properties.ShowClearAllFilters,\n ClearAllFiltersBtnColor: this.properties.ClearAllFiltersBtnColor,\n ClearAllFiltersBtnText: this.properties.ClearAllFiltersBtnText,\n GeneralSearcheableFields: sercheableFields,\n IndividualColumnFilter: this.properties.IndividualColumnFilter,\n IndividualFilterPosition: this.properties.IndividualFilterPosition,\n ShowItemCount: this.properties.ShowItemCount,\n ItemCountText: this.properties.ItemCountText,\n ItemLimit: this.properties.ItemLimit,\n ShowPagination: this.properties.ShowPagination,\n ItemsInPage: this.properties.ItemsInPage,\n themeVariant: this._themeVariant,\n UseCache: this.properties.UseCache,\n minutesToCache: this.properties.minutesToCache,\n clickEnabled: this.properties.clickEnabled,\n ModalType: this.properties.ModalType,\n completeModalFields: this.properties.completeModalFields,\n redirectData: this.properties.redirectData,\n onRedirectIdQuery: this.properties.onRedirectIdQuery,\n onSelectedItem: this.onSelectedItem.bind(this),\n oneClickOption: this.properties.onClickNumberOfClicksOption == \"oneClick\",\n groupByField: this.properties.groupByField,\n AnyCamlQuery: (this.properties.listsCollectionData.findIndex(listConfig => !this.isEmpty(listConfig.Query) || !this.isEmpty(listConfig.ListView)) > -1),\n groupByFieldType: this.properties.groupByFieldType,\n CacheType: this.properties.CacheType,\n generalFilterText: queryText,\n title: this.properties.title,\n updateTitle: (value) => {\n this.properties.title = value;\n },\n displayMode: this.displayMode,\n });\n renderElement = element;\n }\n ReactDom.render(renderElement, this.domElement);\n }\n isEmpty(str) {\n return (!str || 0 === str.length);\n }\n isConfig() {\n return this.properties.sites && this.properties.sites.length > 0 && this.properties.mappingFieldsCollectionData && this.properties.mappingFieldsCollectionData.length > 0 &&\n this.properties.listsCollectionData && this.properties.listsCollectionData.length > 0 && this.properties.detailListFieldsCollectionData && this.properties.detailListFieldsCollectionData.length > 0;\n }\n get dataVersion() {\n return Version.parse(this.context.manifest.version);\n }\n get disableReactivePropertyChanges() {\n return true;\n }\n onPropertyPaneFieldChanged(propertyPath, oldValue, newValue) {\n const _super = Object.create(null, {\n onPropertyPaneFieldChanged: { get: () => super.onPropertyPaneFieldChanged }\n });\n return __awaiter(this, void 0, void 0, function* () {\n _super.onPropertyPaneFieldChanged.call(this, propertyPath, oldValue, newValue);\n switch (propertyPath) {\n case \"listsCollectionData\":\n {\n this.properties.completeModalFields = this.properties.completeModalFields && this.properties.completeModalFields.filter(modalField => {\n return newValue.filter((option) => option.SiteCollectionSource === modalField.SiteCollectionSource && option.ListSourceField === modalField.ListSourceField).length > 0;\n });\n this.properties.redirectData = this.properties.redirectData && this.properties.redirectData.filter(modalField => {\n return newValue.filter((option) => option.SiteCollectionSource === modalField.SiteCollectionSource && option.ListSourceField === modalField.ListSourceField).length > 0;\n });\n this.properties.mappingFieldsCollectionData = this.properties.mappingFieldsCollectionData && this.properties.mappingFieldsCollectionData.filter(modalField => {\n return newValue.filter((option) => option.SiteCollectionSource === modalField.SiteCollectionSource && option.ListSourceField === modalField.ListSourceField).length > 0;\n });\n this.OrderfieldsCollectionData();\n break;\n }\n case \"ShowListName\":\n {\n if (!newValue) {\n this.properties.ListNameTitle = '';\n this.properties.detailListFieldsCollectionData = this.properties.detailListFieldsCollectionData.filter(field => !field.IsListTitle);\n }\n else {\n if (this.properties.detailListFieldsCollectionData == undefined) {\n this.properties.detailListFieldsCollectionData = [];\n }\n if (!this.properties.detailListFieldsCollectionData.some(field => field.IsListTitle)) {\n this.properties.detailListFieldsCollectionData.push(IDetailListFieldData.CreateListColumn(0, 0, true));\n }\n }\n break;\n }\n case \"ShowSiteTitle\":\n {\n if (!newValue) {\n this.properties.SiteNameTitle = '';\n this.properties.detailListFieldsCollectionData = this.properties.detailListFieldsCollectionData.filter(field => !field.IsSiteTitle);\n }\n else {\n if (this.properties.detailListFieldsCollectionData == undefined) {\n this.properties.detailListFieldsCollectionData = [];\n }\n if (!this.properties.detailListFieldsCollectionData.some(field => field.IsSiteTitle)) {\n this.properties.detailListFieldsCollectionData.push(IDetailListFieldData.CreateSiteColumn(0, 0, true));\n }\n }\n break;\n }\n case \"ShowFileIcon\":\n {\n if (!newValue) {\n this.properties.detailListFieldsCollectionData = this.properties.detailListFieldsCollectionData.filter(field => !field.IsFileIcon);\n }\n else {\n if (this.properties.detailListFieldsCollectionData == undefined) {\n this.properties.detailListFieldsCollectionData = [];\n }\n if (!this.properties.detailListFieldsCollectionData.some(field => field.IsFileIcon)) {\n this.properties.detailListFieldsCollectionData.push(IDetailListFieldData.CreateFileColumn());\n }\n }\n break;\n }\n case \"displayFieldsCollectionData\":\n {\n if (newValue && newValue.length > 0) {\n this.properties.ShowSiteTitle = newValue.some(field => field.IsSiteTitle);\n this.properties.ShowListName = newValue.some(field => field.IsListTitle);\n }\n break;\n }\n case \"sites\":\n {\n if (newValue && oldValue) {\n if (newValue.length > 0 && oldValue.length < newValue.length) {\n yield newValue.map((site) => __awaiter(this, void 0, void 0, function* () {\n if (oldValue.indexOf(site) < 0) {\n let service = new ListService(site.url, false);\n let lists = yield service.getSiteListsTitle();\n this.saveSiteCollectionLists(site.url, lists);\n }\n }));\n }\n else {\n let difference = oldValue.filter(x => newValue.indexOf(x) === -1);\n difference.map(site => {\n this.properties.listsCollectionData = this.properties.listsCollectionData.filter(item => item.SiteCollectionSource != site.url);\n this.properties.mappingFieldsCollectionData = this.properties.mappingFieldsCollectionData.filter(item => item.SiteCollectionSource != site.url);\n });\n }\n }\n break;\n }\n case \"onClickSelectedOption\":\n {\n this.setSelectedOnClickOption(newValue);\n break;\n }\n case \"clickEnabled\":\n {\n if (newValue) {\n this.properties.onClickSelectedOption = \"simpleModal\";\n this.setSelectedOnClickOption(\"simpleModal\");\n }\n break;\n }\n case \"fieldCollectionData\":\n {\n if (newValue) {\n this.OrderfieldsCollectionData();\n }\n break;\n }\n case \"groupByField\":\n {\n if (newValue) {\n this.properties.ShowPagination = false;\n this.context.propertyPane.refresh();\n }\n break;\n }\n case \"groupedByField\":\n {\n if (newValue) {\n this.properties.ShowPagination = false;\n this.properties.groupByField = \"\";\n this.context.propertyPane.refresh();\n }\n else {\n this.properties.groupByField = \"\";\n this.context.propertyPane.refresh();\n }\n break;\n }\n case \"ShowPagination\":\n {\n if (newValue) {\n this.properties.groupedByField = false;\n this.properties.groupByField = \"\";\n this.context.propertyPane.refresh();\n }\n break;\n }\n }\n });\n }\n setSelectedOnClickOption(newValue) {\n switch (newValue) {\n case \"simpleModal\":\n {\n this.properties.ModalType = IModalType.Simple;\n break;\n }\n case \"completeModal\":\n {\n this.properties.ModalType = IModalType.Complete;\n this.properties.redirectData = undefined;\n break;\n }\n case \"redirect\":\n {\n this.properties.ModalType = IModalType.Redirect;\n this.properties.completeModalFields = undefined;\n break;\n }\n case \"dynamicData\":\n {\n this.properties.ModalType = IModalType.DynamicData;\n this.properties.redirectData = undefined;\n this.properties.completeModalFields = undefined;\n break;\n }\n case \"documentIframePreview\":\n {\n this.properties.ModalType = IModalType.DocumentIframePreview;\n this.properties.redirectData = undefined;\n this.properties.completeModalFields = undefined;\n break;\n }\n case \"documentNewTabPreview\":\n {\n this.properties.ModalType = IModalType.DocumentNewTabPreview;\n this.properties.redirectData = undefined;\n this.properties.completeModalFields = undefined;\n break;\n }\n }\n }\n getDistinctSiteCollectionSourceOptions() {\n let options = [];\n let siteOptions = this.properties.listsCollectionData && this.properties.listsCollectionData.map(option => option.SiteCollectionSource);\n if (siteOptions) {\n siteOptions.map((item, index, array) => {\n if (array.indexOf(item) == index) {\n options.push({\n key: item,\n text: item\n });\n }\n });\n }\n return options;\n }\n getCustomsOptions() {\n return [{ Key: \"SiteUrl\", Option: \"Site information\", CustomData: \"String\" }, { Key: \"ListName\", Option: \"List Name\", CustomData: \"String\" }];\n }\n getPropertyPaneConfiguration() {\n let SiteTitleOptions = [];\n SiteTitleOptions.push({ key: \"id\", text: \"Id\" });\n SiteTitleOptions.push({ key: \"title\", text: \"Title\" });\n SiteTitleOptions.push({ key: \"url\", text: \"Url\" });\n let emptyProperty = new EmptyPropertyPane();\n let SiteNamePropertyToShowPropertyPane = this.properties.ShowSiteTitle ? PropertyPaneDropdown('SiteNamePropertyToShow', {\n label: strings.GeneralFieldsPropertiesSiteProperty,\n disabled: !this.properties.ShowSiteTitle,\n options: SiteTitleOptions\n }) : emptyProperty;\n let GeneralFilterPlaceHolderPropertyPane = this.properties.GeneralFilter ? PropertyPaneTextField('GeneralFilterPlaceHolderText', {\n label: strings.FilterPropertiesGeneralFilterPlaceHolder,\n }) : emptyProperty;\n let GeneralFilterInitialQueryEnabled = this.properties.GeneralFilter ? PropertyPaneToggle('initialQueryEnabled', {\n label: strings.GeneralFilterInitialQueryEnabled,\n checked: this.properties.initialQueryEnabled,\n }) : emptyProperty;\n let GeneralFilterInitialQueryOption = this.properties.initialQueryEnabled ? PropertyPaneDropdown('initialQueryOption', {\n label: strings.GeneralFilterInitialQueryOption,\n options: [\n {\n key: \"simpleText\", text: \"Text\"\n },\n {\n key: \"dynamicData\", text: \"Dynamic data\"\n }\n ]\n }) : emptyProperty;\n let GeneralFilterInitialQueryText = this.properties.initialQueryEnabled && this.properties.initialQueryOption === \"simpleText\" ? PropertyPaneTextField('initialQueryText', {\n label: strings.GeneralFilterInitialQueryTextValue,\n }) : emptyProperty;\n let GeneralFilterConnection = this.properties.initialQueryEnabled && this.properties.initialQueryOption === \"dynamicData\" && this.properties.GeneralFilter ? PropertyPaneDynamicFieldSet({\n label: strings.GeneralFilterConnection,\n fields: [\n PropertyPaneDynamicField('dynamicQueryText', {\n label: strings.InitialSearchText\n })\n ]\n }) : emptyProperty;\n let IndividualFilterPositionPropertyPane = this.properties.IndividualColumnFilter ? PropertyFieldMultiSelect('IndividualFilterPosition', {\n key: 'multiSelect',\n label: strings.FilterPropertiesIndividualFilterPostion,\n options: [\n {\n key: \"header\",\n text: \"Header\"\n },\n {\n key: \"footer\",\n text: \"Footer\"\n },\n ],\n selectedKeys: this.properties.IndividualFilterPosition\n }) : emptyProperty;\n let ClearAlFiltersBtnTextPropertyPane = this.properties.ShowClearAllFilters ? PropertyPaneTextField('ClearAllFiltersBtnText', {\n label: strings.FilterPropertiesClearAllBtnText,\n }) : emptyProperty;\n let clearAllFiltersBtnColorOptions = [];\n clearAllFiltersBtnColorOptions.push({ key: \"white\", text: \"White\" });\n clearAllFiltersBtnColorOptions.push({ key: \"theme\", text: \"Theme\" });\n let ClearAlFiltersBtnColorPropertyPane = this.properties.ShowClearAllFilters ? PropertyPaneDropdown('ClearAllFiltersBtnColor', {\n label: strings.FilterPropertiesClearAllBtnColor,\n options: clearAllFiltersBtnColorOptions\n }) : emptyProperty;\n let ItemCountTextFieldPropertyPane = this.properties.ShowItemCount ? PropertyPaneTextField('ItemCountText', {\n label: strings.GeneralPropertiesItemCountText,\n placeholder: strings.GeneralPropertiesItemCountPlaceholder\n }) : emptyProperty;\n let ItemsInPagePropertyPane = this.properties.ShowPagination && !this.properties.groupedByField ? PropertyFieldNumber(\"ItemsInPage\", {\n key: \"ItemsInPage\",\n label: strings.GeneralPropertiesItemPerPage,\n value: this.properties.ItemsInPage || null,\n onGetErrorMessage: (value) => {\n if (!value) {\n return \"If pagination are enabled, items per page are required\";\n }\n if (value < 0) {\n return 'Only positive values are allowed';\n }\n return '';\n }\n }) : emptyProperty;\n let groupByFieldPropertyPane = this.properties.groupedByField ? PropertyPaneDropdown('groupByField', {\n label: strings.GroupFieldOptionsToSelect,\n selectedKey: this.properties.groupByField,\n options: this.properties.detailListFieldsCollectionData.filter(field => !field.IsFileIcon).map(field => {\n return { key: field.ColumnTitle, text: field.ColumnTitle };\n }),\n }) : emptyProperty;\n let cacheTimePropertyPane = this.properties.UseCache ? PropertyFieldNumber(\"minutesToCache\", {\n key: \"minutesToCache\",\n label: strings.MinutesToCacheData,\n value: this.properties.minutesToCache || null,\n }) : emptyProperty;\n let CacheTypePropertyPane = this.properties.UseCache ? PropertyPaneDropdown('CacheType', {\n label: strings.LblCacheType,\n selectedKey: \"local\",\n options: [{ key: \"local\", text: \"Local\" }, { key: \"session\", text: \"Session\" }]\n }) : emptyProperty;\n let onclickEventOptionPropertyPane = this.properties.clickEnabled ? PropertyPaneDropdown('onClickSelectedOption', {\n label: strings.OnClickOptionsToSelect,\n selectedKey: this.properties.onClickSelectedOption || \"simpleModal\",\n options: [\n {\n key: \"simpleModal\",\n text: strings.OnClickSimpleModalText\n },\n {\n key: \"completeModal\",\n text: strings.OnClickCompleteModalText\n },\n {\n key: \"redirect\",\n text: strings.OnClickRedirectText\n },\n {\n key: \"dynamicData\",\n text: strings.OnClickDynamicText\n },\n {\n key: \"documentIframePreview\",\n text: strings.OnDocumentIframePreviewText\n },\n {\n key: \"documentNewTabPreview\",\n text: strings.OnDocumentNewTabPreviewText\n }\n ],\n }) : emptyProperty;\n let onClickNumberOfClicksOptionPropertyPane = this.properties.clickEnabled ? PropertyPaneDropdown('onClickNumberOfClicksOption', {\n label: strings.OnClickNumberOfClickOptionsToSelect,\n selectedKey: this.properties.onClickNumberOfClicksOption || \"twoClicks\",\n options: [\n {\n key: \"oneClick\",\n text: strings.OneClickTriggerText\n },\n {\n key: \"twoClicks\",\n text: strings.TwoClickTriggerText\n }\n ],\n }) : emptyProperty;\n let onClickCompleteModalPropertyPane = this.properties.clickEnabled && this.properties.ModalType === IModalType.Complete ? PropertyFieldCollectionData(\"completeModalFields\", {\n key: \"completeModalFields\",\n label: strings.CompleteModalFieldSelector,\n panelHeader: strings.CompleteModalHeaderSelector,\n manageBtnLabel: strings.CompleteModalButton,\n enableSorting: true,\n value: this.properties.completeModalFields,\n fields: [\n {\n id: \"SiteCollectionSource\",\n title: strings.CompleteModalFieldsSiteCollection,\n type: CustomCollectionFieldType.dropdown,\n options: this.getDistinctSiteCollectionSourceOptions(),\n required: true\n },\n {\n id: \"ListSourceField\",\n title: strings.CompleteModalFieldsList,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n return (CustomCollectionDataField.getListPickerBySiteOptions(this.properties.listsCollectionData, field, item, onUpdate));\n }\n },\n {\n id: \"SourceField\",\n title: strings.CompleteModalFieldsListField,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n if (item.SiteCollectionSource && item.ListSourceField) {\n return (CustomCollectionDataField.getFieldPickerByList(this.ListsFields[item.SiteCollectionSource][item.ListSourceField], field, item, onUpdate, this.updateFieldType, this.getCustomsOptions()));\n }\n }\n },\n {\n id: \"TargetField\",\n title: strings.CompleteModalFieldsTargetField,\n type: CustomCollectionFieldType.string,\n required: true\n },\n {\n id: \"SPFieldType\",\n title: strings.CollectionDataFieldsRenderType,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n if (item.SiteCollectionSource && item.ListSourceField && item.SourceField) {\n return (CustomCollectionDataField.getPickerByStringOptions(this.GetRenderOptionsByType(item.SPFieldType), field, item, onUpdate, undefined));\n }\n }\n }\n ]\n }) : emptyProperty;\n let onclickRedirectPropertyPane = this.properties.clickEnabled && this.properties.ModalType === IModalType.Redirect ? PropertyFieldCollectionData(\"redirectData\", {\n key: \"redirectData\",\n label: strings.redirectDataFieldSelector,\n panelHeader: strings.redirectDataHeaderSelector,\n manageBtnLabel: strings.redirectDataButton,\n value: this.properties.redirectData,\n fields: [\n {\n id: \"SiteCollectionSource\",\n title: strings.redirectDataFieldsSiteCollection,\n type: CustomCollectionFieldType.dropdown,\n options: this.getDistinctSiteCollectionSourceOptions(),\n required: true\n },\n {\n id: \"ListSourceField\",\n title: strings.redirectDataFieldsList,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n return (CustomCollectionDataField.getListPickerBySiteOptions(this.properties.listsCollectionData, field, item, onUpdate));\n }\n },\n {\n id: \"Url\",\n title: strings.redirectDataUrl,\n type: CustomCollectionFieldType.string,\n required: true\n }\n ]\n }) : emptyProperty;\n let onClickRedirectIdQueryParamProperyPane = this.properties.clickEnabled && this.properties.ModalType === IModalType.Redirect ? PropertyPaneTextField('onRedirectIdQuery', {\n label: strings.OnclickRedirectIdText,\n }) : emptyProperty;\n return {\n pages: [\n {\n header: {\n description: strings.PropertyPaneDescription\n },\n displayGroupsAsAccordion: true,\n groups: [\n {\n groupName: strings.SourceSelectorGroup,\n isCollapsed: true,\n groupFields: [\n PropertyFieldSitePicker('sites', {\n label: strings.SitesSelector,\n initialSites: this.properties.sites || [],\n context: this.context,\n multiSelect: true,\n onPropertyChange: (propertyPath, oldValue, newValue) => this.onPropertyPaneFieldChanged(propertyPath, oldValue, newValue),\n properties: this.properties,\n key: 'sitesFieldId',\n }),\n PropertyFieldCollectionData(\"listsCollectionData\", {\n key: \"listsCollectionData\",\n label: strings.ListSelector,\n panelHeader: strings.ListSelectorPanelHeader,\n manageBtnLabel: strings.ListSelectorLabel,\n enableSorting: true,\n value: this.properties.listsCollectionData,\n fields: [\n {\n id: \"SiteCollectionSource\",\n title: strings.CollectionDataSiteCollectionTitle,\n type: CustomCollectionFieldType.custom,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n let sites = this.properties.sites.map(site => { return site.url; });\n return (CustomCollectionDataField.getPickerByStringOptions(sites, field, item, onUpdate, this.handleSourceSiteChange));\n },\n required: true,\n },\n {\n id: \"ListSourceField\",\n title: strings.CollectionDataListTitle,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n if (item.SiteCollectionSource) {\n return (CustomCollectionDataField.getListPicker(this.sitesLists[item.SiteCollectionSource], field, item, onUpdate, this.setNewListFields));\n }\n }\n },\n {\n id: \"ListView\",\n title: strings.CollectionDataListViewNameTitle,\n type: CustomCollectionFieldType.string,\n },\n {\n id: \"Query\",\n title: strings.CollectionDataListCamlQueryTitle,\n placeholder: strings.CollectionDataListCamlQueryPlaceHolder,\n type: CustomCollectionFieldType.string,\n },\n {\n id: \"AudienceEnabled\",\n title: strings.ModerAudienceEnabledTitle,\n type: CustomCollectionFieldType.boolean,\n }\n ],\n disabled: !this.properties.sites || this.properties.sites.length == 0,\n })\n ]\n },\n {\n groupName: strings.DisplayFieldsPropertiesGroup,\n isCollapsed: true,\n groupFields: [\n PropertyPaneToggle('ShowFileIcon', {\n label: strings.GeneralFieldsPropertiesShowFileIcon,\n disabled: !this.properties.sites || this.properties.sites.length == 0,\n checked: !!this.properties.sites && this.properties.sites.length > 0 && this.properties.ShowFileIcon,\n }),\n PropertyPaneToggle('ShowListName', {\n label: strings.GeneralFieldsPropertiesShowListName,\n disabled: !this.properties.sites || this.properties.sites.length == 0,\n checked: !!this.properties.sites && this.properties.sites.length > 0 && this.properties.ShowListName,\n }),\n PropertyPaneToggle('ShowSiteTitle', {\n label: strings.GeneralFieldsPropertiesShowSiteInformation,\n disabled: !this.properties.sites || this.properties.sites.length == 0,\n checked: !!this.properties.sites && this.properties.sites.length > 0 && this.properties.ShowSiteTitle\n }),\n SiteNamePropertyToShowPropertyPane,\n PropertyFieldCollectionData(\"detailListFieldsCollectionData\", {\n enableSorting: true,\n key: \"detailListFieldsCollectionData\",\n label: strings.CollectionDataFieldTitle,\n panelHeader: strings.CollectionDataFieldHeader,\n manageBtnLabel: strings.CollectionDataFieldsButton,\n value: this.properties.detailListFieldsCollectionData,\n fields: [\n {\n id: \"ColumnTitle\",\n title: strings.detailListFieldsColumnTitle,\n type: CustomCollectionFieldType.string,\n required: true,\n },\n {\n id: \"MinColumnWidth\",\n title: strings.detailListFieldsColumnMinWidth,\n type: CustomCollectionFieldType.number,\n },\n {\n id: \"MaxColumnWidth\",\n title: strings.detailListFieldsColumnMaxWidth,\n type: CustomCollectionFieldType.number,\n },\n {\n id: \"IsSiteTitle\",\n title: strings.detailListFieldsIsSiteColumn,\n type: CustomCollectionFieldType.custom,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n return (CustomCollectionDataField.getDisabledCheckBoxField(field, item, onUpdate));\n }\n },\n {\n id: \"IsListTitle\",\n title: strings.detailListFieldsIsListColumn,\n type: CustomCollectionFieldType.custom,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n return (CustomCollectionDataField.getDisabledCheckBoxField(field, item, onUpdate));\n }\n },\n {\n id: \"IsFileIcon\",\n title: strings.detailListFieldsIsFileIconColumn,\n type: CustomCollectionFieldType.custom,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n return (CustomCollectionDataField.getDisabledCheckBoxField(field, item, onUpdate));\n }\n },\n {\n id: \"Searcheable\",\n title: strings.CollectionDataFieldsSearchable,\n type: CustomCollectionFieldType.boolean,\n defaultValue: true\n }\n ],\n })\n ]\n },\n {\n groupName: strings.CollectionDataFieldsProperties,\n isCollapsed: true,\n groupFields: [\n PropertyFieldCollectionData(\"mappingFieldsCollectionData\", {\n key: \"mappingFieldsCollectionData\",\n label: strings.CollectionDataFieldsToRetreive,\n panelHeader: strings.CollectionDataFieldsHeader,\n manageBtnLabel: strings.CollectionDataFieldsSelectBtn,\n value: this.properties.mappingFieldsCollectionData,\n fields: [\n {\n id: \"SiteCollectionSource\",\n title: strings.CollectionDataFieldsSiteCollection,\n type: CustomCollectionFieldType.dropdown,\n options: this.getDistinctSiteCollectionSourceOptions(),\n required: true\n },\n {\n id: \"ListSourceField\",\n title: strings.CollectionDataFieldsList,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n return (CustomCollectionDataField.getListPickerBySiteOptions(this.properties.listsCollectionData, field, item, onUpdate, this.UpdateListNameById));\n }\n },\n {\n id: \"SourceField\",\n title: strings.CollectionDataFieldsListField,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n if (item.SiteCollectionSource && item.ListSourceField) {\n return (CustomCollectionDataField.getFieldPickerByList(this.ListsFields[item.SiteCollectionSource][item.ListSourceField], field, item, onUpdate, this.updateFieldType));\n }\n }\n },\n {\n id: \"TargetField\",\n title: strings.CollectionDataFieldsTargetField,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n if (item.SiteCollectionSource && item.ListSourceField && item.SourceField) {\n return (CustomCollectionDataField.getPickerByStringOptions(this.properties.detailListFieldsCollectionData.filter(column => IDetailListFieldData.IsGeneralColumn(column)).map(option => { return option.ColumnTitle; }), field, item, onUpdate, this.onMappingColumnChanged, onError));\n }\n }\n },\n {\n id: \"SPFieldType\",\n title: strings.CollectionDataFieldsRenderType,\n type: CustomCollectionFieldType.custom,\n required: true,\n onCustomRender: (field, value, onUpdate, item, itemId, onError) => {\n if (item.SiteCollectionSource && item.ListSourceField && item.SourceField) {\n return (CustomCollectionDataField.getPickerByStringOptions(this.GetRenderOptionsByType(item.SPFieldType), field, item, onUpdate, undefined));\n }\n }\n },\n ],\n disabled: !this.properties.sites || this.properties.sites.length == 0 || !this.properties.detailListFieldsCollectionData || this.properties.detailListFieldsCollectionData.length == 0\n })\n ]\n }\n ]\n },\n {\n header: {\n description: strings.FieldPropertiesGroup\n },\n displayGroupsAsAccordion: true,\n groups: [\n {\n groupName: strings.GeneralPropertiesGroup,\n isCollapsed: true,\n groupFields: [\n PropertyPaneToggle('ShowItemCount', {\n label: strings.GeneralPropertiesShowItemCount,\n }),\n ItemCountTextFieldPropertyPane,\n PropertyFieldNumber(\"ItemLimit\", {\n key: \"ItemLimit\",\n label: strings.GeneralPropertiesRowLimitLabel,\n description: strings.GeneralPropertiesRowLimitDescription,\n value: this.properties.ItemLimit || null,\n }),\n PropertyPaneToggle('ShowPagination', {\n label: strings.GeneralPropertiesShowPagination,\n checked: this.properties.ShowPagination && !this.properties.groupedByField,\n }),\n ItemsInPagePropertyPane,\n PropertyPaneToggle('groupedByField', {\n label: strings.GeneralPropertiesGroupByField,\n checked: this.properties.detailListFieldsCollectionData && this.properties.detailListFieldsCollectionData.length > 0 && this.properties.groupedByField && !this.properties.ShowPagination,\n disabled: !(this.properties.detailListFieldsCollectionData && this.properties.detailListFieldsCollectionData.length)\n }),\n groupByFieldPropertyPane,\n ]\n },\n {\n groupName: strings.OnClickPropertiesGroup,\n isCollapsed: true,\n groupFields: [\n PropertyPaneToggle('clickEnabled', {\n label: strings.OnClickEvent,\n }),\n onClickNumberOfClicksOptionPropertyPane,\n onclickEventOptionPropertyPane,\n onClickCompleteModalPropertyPane,\n onclickRedirectPropertyPane,\n onClickRedirectIdQueryParamProperyPane\n ]\n },\n ]\n },\n {\n header: {\n description: strings.FilterPropertiesGroup\n },\n displayGroupsAsAccordion: true,\n groups: [\n {\n groupName: strings.FilterPropertiesGroupName,\n isCollapsed: true,\n groupFields: [\n PropertyPaneToggle('GeneralFilter', {\n label: strings.FilterPropertiesGeneralFilter,\n checked: this.properties.GeneralFilter\n }),\n GeneralFilterInitialQueryEnabled,\n GeneralFilterInitialQueryOption,\n GeneralFilterInitialQueryText,\n GeneralFilterConnection,\n GeneralFilterPlaceHolderPropertyPane,\n PropertyPaneToggle('IndividualColumnFilter', {\n label: strings.FilterPropertiesIndividualFilter,\n checked: this.properties.IndividualColumnFilter\n }),\n IndividualFilterPositionPropertyPane,\n PropertyPaneToggle('ShowClearAllFilters', {\n label: strings.FilterPropertiesClearAllBtn,\n checked: this.properties.ShowClearAllFilters\n }),\n ClearAlFiltersBtnColorPropertyPane,\n ClearAlFiltersBtnTextPropertyPane\n ],\n },\n {\n groupName: strings.StoragePropertiesGroupName,\n isCollapsed: true,\n groupFields: [\n PropertyPaneToggle('UseCache', {\n label: strings.UseLocalStorage,\n checked: this.properties.UseCache\n }),\n CacheTypePropertyPane,\n cacheTimePropertyPane\n ],\n }\n ]\n },\n {\n header: {\n description: strings.InformationPropertiesGroupName\n },\n groups: [\n {\n groupName: strings.AboutPropertiesGroupName,\n groupFields: [\n PropertyPaneWebPartInformation({\n description: `Version: ${this.dataVersion}`,\n key: 'webPartInfoId'\n })\n ],\n }\n ]\n }\n ]\n };\n }\n GetRenderOptionsByType(SPFieldType) {\n let result = [SPFieldType];\n switch (SPFieldType) {\n case SharePointType.Text:\n case SharePointType.Note:\n case SharePointType.NoteFullHtml:\n {\n result = [SharePointType.Text, SharePointType.Note, SharePointType.NoteFullHtml];\n break;\n }\n case SharePointType.Url:\n case SharePointType.Image:\n {\n result = [SharePointType.Url, SharePointType.Image];\n break;\n }\n case SharePointType.User:\n case SharePointType.UserEmail:\n case SharePointType.UserName:\n {\n result = [SharePointType.UserEmail, SharePointType.UserName, SharePointType.User];\n break;\n }\n case SharePointType.DateTime:\n case SharePointType.Date:\n case SharePointType.DateLongMonth:\n {\n result = [SharePointType.Date, SharePointType.DateTime, SharePointType.DateLongMonth];\n break;\n }\n }\n return result;\n }\n onMappingColumnChanged(item, fieldId, option, updateFunction, errorFunction) {\n let errorMsg = \"\";\n let alreadyMapped = this.properties.mappingFieldsCollectionData && this.properties.mappingFieldsCollectionData.filter(element => element.TargetField === option.key);\n if (alreadyMapped && alreadyMapped.length > 0) {\n let sameType = alreadyMapped.filter(element => element.SPFieldType == item.SPFieldType);\n if (sameType && sameType.length === alreadyMapped.length) {\n let sameOrigin = alreadyMapped.filter(element => element.SiteCollectionSource == item.SiteCollectionSource && element.ListSourceField == item.ListSourceField);\n if (sameOrigin && sameOrigin.length > 0) {\n errorMsg = strings.LblErrorSameColumn;\n }\n }\n else {\n errorMsg = strings.LblErrorDiferentRender;\n }\n }\n updateFunction(fieldId, option.key);\n errorFunction(fieldId, errorMsg);\n }\n saveSiteCollectionLists(site, Lists) {\n this.sitesLists[site] = Lists;\n }\n saveSiteCollectionListsFields(site, listId, fields) {\n if (this.ListsFields[site] == undefined) {\n this.ListsFields[site] = [];\n }\n this.ListsFields[site][listId] = fields;\n }\n setNewListFields(row, fieldId, option, updateFunction, errorFunction) {\n return __awaiter(this, void 0, void 0, function* () {\n updateFunction(fieldId, option.key);\n row.ListSourceFieldName = option.text;\n if (this.ListsFields[row.SiteCollectionSource] == undefined) {\n this.ListsFields[row.SiteCollectionSource] = [];\n }\n let service = new ListService(row.SiteCollectionSource, false);\n let fields = yield service.getListFields(option.key.toString());\n this.ListsFields[row.SiteCollectionSource][option.key] = fields;\n });\n }\n updateFieldType(row, fieldId, option, updateFunction) {\n updateFunction(fieldId, option.key);\n row.SPFieldType = SharePointFieldTypes.GetSPFieldTypeByString(option.FieldType);\n }\n handleSourceSiteChange(row, fieldId, option, updateFunction, errorFunction) {\n updateFunction(fieldId, option.key);\n if (row && this.properties.listsCollectionData) {\n let savedValue = this.properties.listsCollectionData.find(element => element.uniqueId === row.uniqueId);\n if (savedValue && savedValue.SiteCollectionSource != option.key) {\n row.ListSourceField = undefined;\n }\n }\n }\n UpdateListNameById(row, fieldId, option, updateFunction, errorFunction) {\n updateFunction(fieldId, option.key);\n row.ListSourceFieldName = option.text;\n }\n}\n//# sourceMappingURL=ListSearchWebPart.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/model/ISharePointFieldTypes.js", - "name": "./lib/webparts/listSearch/model/ISharePointFieldTypes.js", - "index": 349, - "index2": 346, - "size": 4540, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony side effect evaluation", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "18:0-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "24:0-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "29:0-85" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "139:21-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "140:21-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "141:21-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "142:21-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "153:21-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "154:21-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "160:267-281" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "160:293-307" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "164:21-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "200:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "201:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "212:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "213:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "214:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "227:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "240:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "254:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "309:89-103" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "310:318-332" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "498:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "584:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "589:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "608:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "635:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "654:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "662:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "679:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "696:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "704:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "720:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "740:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "745:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "752:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "765:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "766:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "774:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "784:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "794:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "810:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "820:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "830:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "840:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "852:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "857:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "866:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/ISharePointFieldTypes", - "loc": "878:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1026:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1027:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1028:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1030:30-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1030:51-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1030:72-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1033:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1034:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1036:30-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1036:50-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1039:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1040:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1041:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1043:30-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1043:56-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1043:81-95" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1046:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1047:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1048:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1050:30-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1050:51-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1050:76-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/ISharePointFieldTypes", - "loc": "1097:26-46" - } - ], - "usedExports": [ - "SharePointType", - "SharePointFieldTypes" - ], - "providedExports": [ - "SharePointFieldTypes", - "SharePointType" - ], - "optimizationBailout": [], - "depth": 1, - "source": "export class SharePointFieldTypes {\n static GetSPFieldTypeByString(fieldTypeAsString) {\n let result = SharePointType.Text;\n switch (fieldTypeAsString) {\n case 'Text': {\n result = SharePointType.Text;\n break;\n }\n case 'Note': {\n result = SharePointType.Note;\n break;\n }\n case 'NoteFullHtml': {\n result = SharePointType.NoteFullHtml;\n break;\n }\n case 'Choice': {\n result = SharePointType.Choice;\n break;\n }\n case 'MultiChoice': {\n result = SharePointType.ChoiceMulti;\n break;\n }\n case 'Integer': {\n result = SharePointType.Integer;\n break;\n }\n case 'Number': {\n result = SharePointType.Number;\n break;\n }\n case 'Currency': {\n result = SharePointType.Currency;\n break;\n }\n case 'DateTime': {\n result = SharePointType.DateTime;\n break;\n }\n case 'Lookup': {\n result = SharePointType.Lookup;\n break;\n }\n case 'LookupMulti': {\n result = SharePointType.LookupMulti;\n break;\n }\n case 'Boolean': {\n result = SharePointType.Boolean;\n break;\n }\n case 'User': {\n result = SharePointType.User;\n break;\n }\n case 'UserMulti': {\n result = SharePointType.UserMulti;\n break;\n }\n case 'URL': {\n result = SharePointType.Url;\n break;\n }\n case 'Calculated': {\n result = SharePointType.Computed;\n break;\n }\n case 'Image': {\n result = SharePointType.Image;\n break;\n }\n case 'TaxonomyFieldType': {\n result = SharePointType.Taxonomy;\n break;\n }\n case 'TaxonomyFieldTypeMulti': {\n result = SharePointType.TaxonomyMulti;\n break;\n }\n case 'Attachments': {\n result = SharePointType.Attachments;\n break;\n }\n case 'Counter': {\n result = SharePointType.Counter;\n break;\n }\n case 'ContentTypeId': {\n result = SharePointType.ContentTypeId;\n break;\n }\n case 'Guid': {\n result = SharePointType.Guid;\n break;\n }\n default: {\n result = SharePointType.Text;\n }\n }\n return result;\n }\n static GetSharePointTypesAsArray() {\n return Object.keys(SharePointType).filter(element => element != 'FileIcon');\n }\n}\nexport var SharePointType;\n(function (SharePointType) {\n SharePointType[\"Text\"] = \"Text\";\n SharePointType[\"Note\"] = \"Note\";\n SharePointType[\"NoteFullHtml\"] = \"NoteFullHtml\";\n SharePointType[\"Choice\"] = \"Choice\";\n SharePointType[\"ChoiceMulti\"] = \"ChoiceMulti\";\n SharePointType[\"Integer\"] = \"Integer\";\n SharePointType[\"Number\"] = \"Number\";\n SharePointType[\"Currency\"] = \"Currency\";\n SharePointType[\"DateTime\"] = \"DateTime\";\n SharePointType[\"Date\"] = \"Date\";\n SharePointType[\"DateLongMonth\"] = \"DateLongMonth\";\n SharePointType[\"Lookup\"] = \"Lookup\";\n SharePointType[\"LookupMulti\"] = \"LookupMulti\";\n SharePointType[\"Boolean\"] = \"Boolean\";\n SharePointType[\"User\"] = \"User\";\n SharePointType[\"UserEmail\"] = \"User-Email\";\n SharePointType[\"UserName\"] = \"User-Name\";\n SharePointType[\"UserMulti\"] = \"UserMulti\";\n SharePointType[\"Url\"] = \"Url\";\n SharePointType[\"Image\"] = \"Image\";\n SharePointType[\"Taxonomy\"] = \"Taxonomy\";\n SharePointType[\"TaxonomyMulti\"] = \"TaxonomyMulti\";\n SharePointType[\"Computed\"] = \"Computed\";\n SharePointType[\"Attachments\"] = \"Attachments\";\n SharePointType[\"Counter\"] = \"Counter\";\n SharePointType[\"ContentTypeId\"] = \"ContentTypeId\";\n SharePointType[\"Guid\"] = \"Guid\";\n SharePointType[\"FileIcon\"] = \"FileIcon\";\n})(SharePointType || (SharePointType = {}));\n//# sourceMappingURL=ISharePointFieldTypes.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js", - "index": 289, - "index2": 347, - "size": 14869, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "../services/ListService", - "loc": "13:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./services/ListService", - "loc": "27:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./services/ListService", - "loc": "110:38-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./services/ListService", - "loc": "135:38-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../services/ListService", - "loc": "142:38-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./services/ListService", - "loc": "332:58-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../services/ListService", - "loc": "356:34-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./services/ListService", - "loc": "1090:30-41" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 1, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nimport { sp } from '@pnp/sp';\nimport '@pnp/sp/webs';\nimport \"@pnp/sp/lists\";\nimport \"@pnp/sp/items\";\nimport \"@pnp/sp/views\";\nimport \"@pnp/sp/fields\";\nimport XMLParser from 'react-xml-parser';\nimport { Web } from '@pnp/sp/webs';\nimport { SharePointType } from '../model/ISharePointFieldTypes';\nimport { intersection, isEmpty } from '@microsoft/sp-lodash-subset';\nexport default class ListService {\n constructor(siteUrl, useCache, cacheTime, cacheType) {\n sp.setup({\n defaultCachingStore: useCache ? cacheType : undefined,\n defaultCachingTimeoutSeconds: useCache ? (cacheTime * 60) : undefined,\n sp: {\n headers: {\n Accept: 'application/json;odata=nometadata'\n },\n baseUrl: siteUrl\n },\n });\n this.web = Web(siteUrl);\n this.baseUrl = siteUrl;\n }\n getListItems(listQueryOptions, listPropertyName, sitePropertyName, sitePropertyValue, rowLimit, graphService) {\n return __awaiter(this, void 0, void 0, function* () {\n try {\n let camlQuery = false;\n let items = undefined;\n let queryConfig = this.GetViewFieldsWithId(listQueryOptions, !isEmpty(listQueryOptions.camlQuery) || !isEmpty(listQueryOptions.viewName), false);\n if (listQueryOptions.camlQuery) {\n let query = this.getCamlQueryWithViewFieldsAndRowLimit(listQueryOptions.camlQuery, queryConfig, rowLimit);\n items = yield this.getListItemsByCamlQuery(listQueryOptions.list.Id, query, queryConfig);\n items = items.map(m => m.FieldValuesAsText);\n }\n else {\n if (listQueryOptions.viewName) {\n let viewInfo = yield this.web.lists.getById(listQueryOptions.list.Id).views.getByTitle(listQueryOptions.viewName).select(\"ViewQuery\").get();\n let query = this.getCamlQueryWithViewFieldsAndRowLimit(`${viewInfo.ViewQuery}`, queryConfig, rowLimit);\n items = yield this.getListItemsByCamlQuery(listQueryOptions.list.Id, query, queryConfig);\n items = items.map(m => m.FieldValuesAsText);\n }\n else {\n items = yield sp.web.lists.getById(listQueryOptions.list.Id).items\n .select(queryConfig.viewFields.join(','))\n .top(rowLimit || ListService.MAX_TOP)\n .expand(queryConfig.expandFields.join(',')).usingCaching().get();\n }\n }\n if (listQueryOptions.audienceEnabled && graphService) {\n let userGroups = yield graphService.getTransitiveMemberOf();\n items = this.getAudienceItems(items, userGroups);\n }\n let mappedItems = items.map((i) => {\n i.FileExtension = this.GetFileExtension(i.FileLeafRef);\n i.SiteUrl = this.baseUrl;\n i.ListName = listQueryOptions.list.Title;\n i.List = listQueryOptions.list;\n listQueryOptions.fields.map(field => {\n i = this.GetItemValue(i, field, camlQuery);\n });\n if (listPropertyName) {\n i[listPropertyName] = listQueryOptions.list.Title;\n }\n if (sitePropertyName) {\n i[sitePropertyName] = sitePropertyValue;\n }\n return i;\n });\n return mappedItems;\n }\n catch (error) {\n return Promise.reject(error);\n }\n });\n }\n getListItemById(listQueryOptions, itemId) {\n return __awaiter(this, void 0, void 0, function* () {\n try {\n let queryConfig = this.GetViewFieldsWithId(listQueryOptions, false, true);\n return this.web.lists.getById(listQueryOptions.list.Id).items.getById(itemId).select(queryConfig.viewFields.join(',')).expand(queryConfig.expandFields.join(',')).usingCaching().get();\n }\n catch (error) {\n return Promise.reject(error);\n }\n });\n }\n getSiteListsTitle() {\n return __awaiter(this, void 0, void 0, function* () {\n try {\n return this.web.lists.filter('Hidden eq false').select('Title,Id').get();\n }\n catch (error) {\n return Promise.reject(error);\n }\n });\n }\n getListFields(listId) {\n return __awaiter(this, void 0, void 0, function* () {\n try {\n return this.web.lists.getById(listId).fields.select('EntityPropertyName,Title,InternalName,TypeAsString').get();\n }\n catch (error) {\n return Promise.reject(error);\n }\n });\n }\n getAudienceItems(itemsToFilter, userGroups) {\n let results = [];\n userGroups && itemsToFilter.map(item => {\n let itemAudiencesIds = item.OData__ModernAudienceTargetUserField && item.OData__ModernAudienceTargetUserField.map(audience => { return audience.Name.split(\"|\")[2]; });\n if (itemAudiencesIds) {\n let matches = intersection(itemAudiencesIds, userGroups);\n if (matches && matches.length > 0) {\n results.push(item);\n }\n }\n else {\n results.push(item);\n }\n });\n return results;\n }\n GetViewFieldsWithId(listQueryOptions, isCamlQuery, isItemId) {\n let result = { expandFields: [], viewFields: ['ServerUrl', 'FileLeafRef', 'Id', 'UniqueId'] };\n let hasToAddFieldsAsText = false;\n listQueryOptions.fields.map(field => {\n switch (field.fieldType) {\n case SharePointType.User:\n case SharePointType.UserEmail:\n case SharePointType.UserName:\n case SharePointType.UserMulti:\n if (isCamlQuery) {\n hasToAddFieldsAsText = true;\n result.viewFields.push(field.originalField);\n }\n else {\n result.viewFields.push(`${field.originalField}/Title`);\n result.viewFields.push(`${field.originalField}/Name`);\n result.expandFields.push(`${field.originalField}`);\n }\n break;\n case SharePointType.Lookup:\n case SharePointType.LookupMulti:\n if (isCamlQuery) {\n hasToAddFieldsAsText = true;\n result.viewFields.push(field.originalField);\n }\n else {\n result.viewFields.push(`${field.originalField}/Title`);\n result.expandFields.push(`${field.originalField}`);\n }\n break;\n case SharePointType.Taxonomy:\n if (isCamlQuery) {\n hasToAddFieldsAsText = true;\n result.viewFields.push(field.originalField);\n }\n else {\n if (!result.viewFields.find(e => e === \"TaxCatchAll/Term\")) {\n result.viewFields.push(\"TaxCatchAll/Term\");\n }\n if (!result.viewFields.find(e => e === \"TaxCatchAll/ID\")) {\n result.viewFields.push(\"TaxCatchAll/ID\");\n }\n result.viewFields.push(field.originalField);\n result.expandFields.push(\"TaxCatchAll\");\n }\n break;\n default:\n {\n if (field.originalField != \"ListName\" && field.originalField != \"SiteUrl\") {\n result.viewFields.push(field.originalField);\n }\n break;\n }\n }\n });\n if (hasToAddFieldsAsText) {\n result.expandFields.push('FieldValuesAsText');\n }\n if (listQueryOptions.audienceEnabled && !isItemId) {\n result.expandFields.push(ListService.SharePointOnlineAudienceOOTBFieldName);\n result.viewFields.push(`${ListService.SharePointOnlineAudienceOOTBFieldName}/Name`);\n }\n return result;\n }\n GetItemValue(item, field, fromCamlQuery) {\n switch (field.fieldType) {\n case SharePointType.Lookup:\n case SharePointType.LookupMulti:\n if (fromCamlQuery) {\n item[field.newField] = item['FieldValuesAsText'][field.originalField];\n }\n else {\n item[field.newField] = item[field.originalField];\n if (field.newField !== field.originalField) {\n delete item[field.originalField];\n }\n }\n break;\n case SharePointType.User:\n case SharePointType.UserEmail:\n case SharePointType.UserName:\n {\n if (fromCamlQuery) {\n item[field.newField] = item['FieldValuesAsText'][field.originalField];\n }\n else {\n item[field.newField] = item[field.originalField];\n if (field.newField !== field.originalField) {\n delete item[field.originalField];\n }\n }\n break;\n }\n case SharePointType.UserMulti:\n {\n if (fromCamlQuery) {\n item[field.newField] = item['FieldValuesAsText'][field.originalField];\n }\n else {\n item[field.newField] = item[field.originalField];\n if (field.newField !== field.originalField) {\n delete item[field.originalField];\n }\n }\n break;\n }\n case SharePointType.Taxonomy:\n {\n if (fromCamlQuery) {\n item[field.newField] = item['FieldValuesAsText'][field.originalField];\n }\n else {\n let taxonomyValues = item[\"TaxCatchAll\"];\n let taxonomyTerm = taxonomyValues.find(t => t.ID === item[field.originalField].WssId);\n if (taxonomyTerm) {\n item[field.newField] = taxonomyTerm;\n }\n }\n break;\n }\n case SharePointType.Boolean:\n {\n if (item[field.originalField] != undefined) {\n item[field.newField] = item[field.originalField] ? \"true\" : \"false\";\n }\n else {\n item[field.newField] = item[field.originalField];\n }\n if (field.newField !== field.originalField) {\n delete item[field.originalField];\n }\n break;\n }\n default:\n {\n item[field.newField] = item[field.originalField];\n if (field.newField !== field.originalField) {\n delete item[field.originalField];\n }\n break;\n }\n }\n return item;\n }\n getListItemsByCamlQuery(listId, camlQuery, queryConfig) {\n return __awaiter(this, void 0, void 0, function* () {\n try {\n const caml = {\n ViewXml: camlQuery,\n };\n return this.web.lists.getById(listId).usingCaching().getItemsByCAMLQuery(caml, queryConfig.expandFields.join(','));\n }\n catch (error) {\n return Promise.reject(error);\n }\n });\n }\n getCamlQueryWithViewFieldsAndRowLimit(camlQuery, queryConfig, rowLimit) {\n try {\n let XmlParser = new XMLParser();\n let xml = XmlParser.parseFromString(camlQuery);\n let rowLimitXml = { name: \"RowLimit\", value: rowLimit ? rowLimit.toString() : \"0\", attributes: undefined, children: [] };\n let viewFieldsChildren = queryConfig.viewFields.map(viewField => {\n return { name: \"FieldRef\", attributes: { Name: viewField }, value: \"\", children: [] };\n });\n let viewFieldsXml = { name: \"ViewFields\", value: \"\", children: viewFieldsChildren, attributes: undefined };\n let queryXml;\n xml.children.map(child => {\n if (child.name == \"Query\") {\n queryXml = child;\n }\n if (child.name == \"RowLimit\") { //If the user set a camlquery with row limit or the view has row limit, it is not override\n rowLimitXml = child;\n }\n });\n if (queryXml) {\n xml.children = [viewFieldsXml, rowLimitXml, queryXml];\n }\n let result = XmlParser.toString(xml);\n return result.replace(\"\", \"\");\n }\n catch (error) {\n return `getCamlQueryWithViewFieldsAndRowLimit -> ${error.message}`;\n }\n }\n GetFileExtension(filename) {\n var re = /(?:\\.([^.]+))?$/;\n return re.exec(filename)[1] ? re.exec(filename)[1].toLowerCase() : undefined;\n }\n}\nListService.SharePointOnlineAudienceOOTBFieldName = \"OData__ModernAudienceTargetUserField\";\nListService.MAX_TOP = 5000;\n//# sourceMappingURL=ListService.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/model/IModalType.js", - "name": "./lib/webparts/listSearch/model/IModalType.js", - "index": 685, - "index2": 683, - "size": 423, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./model/IModalType", - "loc": "30:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "../model/IModalType", - "loc": "32:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "43:41-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "46:111-121" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "374:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "375:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "376:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "381:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "396:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "405:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "405:48-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "410:48-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "416:48-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "422:48-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "429:48-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "436:48-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "440:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "450:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../model/IModalType", - "loc": "460:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "605:109-119" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "659:104-114" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IModalType", - "loc": "690:115-125" - } - ], - "usedExports": [ - "IModalType" - ], - "providedExports": [ - "IModalType" - ], - "optimizationBailout": [], - "depth": 1, - "source": "export var IModalType;\n(function (IModalType) {\n IModalType[\"Simple\"] = \"Simple\";\n IModalType[\"Complete\"] = \"Complete\";\n IModalType[\"Redirect\"] = \"Redirect\";\n IModalType[\"DynamicData\"] = \"DynamicData\";\n IModalType[\"DocumentIframePreview\"] = \"DocumentIframePreview\";\n IModalType[\"DocumentNewTabPreview\"] = \"DocumentNewTabPreview\";\n})(IModalType || (IModalType = {}));\n//# sourceMappingURL=IModalType.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js", - "index": 284, - "index2": 843, - "size": 49317, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/ListSearch", - "loc": "16:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./components/ListSearch", - "loc": "187:48-58" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 1, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nimport * as React from 'react';\nimport styles from '../ListSearchWebPart.module.scss';\nimport * as strings from 'ListSearchWebPartStrings';\nimport ListService from '../services/ListService';\nimport { DetailsRow, SelectionMode, DetailsHeader, DetailsListLayoutMode, } from 'office-ui-fabric-react/lib/DetailsList';\nimport { getTheme, IconButton, MessageBar, MessageBarType, ShimmeredDetailsList } from 'office-ui-fabric-react';\nimport { SearchBox } from 'office-ui-fabric-react/lib/SearchBox';\nimport Pagination from \"react-js-pagination\";\nimport { DefaultButton, PrimaryButton } from 'office-ui-fabric-react';\nimport { Icon } from 'office-ui-fabric-react';\nimport { Shimmer } from 'office-ui-fabric-react/lib/Shimmer';\nimport { Modal } from 'office-ui-fabric-react/lib/Modal';\nimport { Log } from '@microsoft/sp-core-library';\nimport { Toggle } from 'office-ui-fabric-react/lib/Toggle';\nimport { SharePointType } from '../model/ISharePointFieldTypes';\nimport { Persona, PersonaSize } from 'office-ui-fabric-react/lib/Persona';\nimport { Facepile, OverflowButtonType } from 'office-ui-fabric-react/lib/Facepile';\nimport StringUtils from '../services/Utils';\nimport { Image, ImageFit } from 'office-ui-fabric-react/lib/Image';\nimport { Link } from 'office-ui-fabric-react';\nimport { FileTypeIcon, ApplicationType, IconType, ImageSize } from \"@pnp/spfx-controls-react/lib/FileTypeIcon\";\nimport { IFrameDialog } from \"@pnp/spfx-controls-react/lib/IFrameDialog\";\nimport { IModalType } from '../model/IModalType';\nimport { find, groupBy, isEmpty } from '@microsoft/sp-lodash-subset';\nimport { WebPartTitle } from \"@pnp/spfx-controls-react/lib/WebPartTitle\";\nimport GraphService from '../services/GraphService';\nconst LOG_SOURCE = \"IListdSearchWebPart\";\nconst filterIcon = { iconName: 'Filter' };\nexport default class IListdSearchWebPart extends React.Component {\n constructor(props, state) {\n super(props);\n this.keymapQuerys = {};\n this._onItemInvoked = (item) => {\n if (this.props.ModalType === IModalType.Complete) {\n this.GetCompleteItemData(item);\n }\n this.setState({ isModalHidden: false, selectedItem: item, isModalLoading: this.props.ModalType === IModalType.Complete });\n };\n this._closeModal = () => {\n this.setState({ isModalHidden: true, selectedItem: null });\n };\n this._onColumnClick = (ev, column) => {\n const newColumns = this.state.columns.slice();\n const currColumn = newColumns.filter(currCol => column.key === currCol.key)[0];\n newColumns.forEach((newCol) => {\n if (newCol === currColumn) {\n currColumn.isSortedDescending = !currColumn.isSortedDescending;\n currColumn.isSorted = true;\n }\n else {\n newCol.isSorted = false;\n newCol.isSortedDescending = true;\n }\n });\n if (this.props.groupByField) {\n const newGroupedElements = this.state.groupedItems.map(group => { return { GroupName: group.GroupName, Items: this._copyAndSort(group.Items, currColumn.fieldName, currColumn.isSortedDescending) }; });\n this.setState({ columns: newColumns, groupedItems: newGroupedElements });\n }\n else {\n const newItems = this._copyAndSort(this.state.filterItems, currColumn.fieldName, currColumn.isSortedDescending);\n this.setState({ columns: newColumns, filterItems: newItems });\n }\n };\n this.state = {\n activePage: 1,\n items: null,\n filterItems: null,\n isLoading: true,\n errorMsg: \"\",\n errorHeader: \"\",\n columnFilters: [],\n generalFilter: this.props.generalFilterText,\n isModalHidden: true,\n isModalLoading: false,\n selectedItem: null,\n completeModalItemData: null,\n columns: this.AddColumnsToDisplay(),\n groupedItems: []\n };\n this.GetJSXElementByType = this.GetJSXElementByType.bind(this);\n this._renderItemColumn = this._renderItemColumn.bind(this);\n this._graphService = new GraphService(this.props.Context);\n }\n componentDidUpdate(prevProps, prevState, snapshot) {\n if (prevProps != this.props) {\n this.setState({ items: null, filterItems: null, isLoading: true, columns: [] });\n this.getData();\n }\n }\n componentDidMount() {\n this.getData();\n }\n componentDidCatch(error, info) {\n Log.warn(LOG_SOURCE, `Component throw exception ${info}`, this.props.Context.serviceScope);\n this.SetError(error, \"ComponentDidCatch\");\n }\n SetError(error, methodName) {\n Log.warn(LOG_SOURCE, `${methodName} set an error`, this.props.Context.serviceScope);\n Log.error(LOG_SOURCE, error, this.props.Context.serviceScope);\n this.setState({\n errorHeader: `${methodName} throw an exception. `,\n errorMsg: `Error ${error.message}`,\n isLoading: false,\n });\n }\n getData() {\n return __awaiter(this, void 0, void 0, function* () {\n try {\n let result = yield this.readListsItems();\n if (this.props.ItemLimit) {\n result = result.slice(0, this.props.ItemLimit);\n }\n let groupedItems = [];\n if (this.props.groupByField) {\n groupedItems = this._groupBy(result, this.props.groupByField, this.props.groupByFieldType);\n }\n let filteredItems = result;\n if (this.props.generalFilterText) {\n filteredItems = this.filterListItemsByGeneralFilter(this.props.generalFilterText, false, false, result, filteredItems);\n }\n this.setState({ items: result, filterItems: filteredItems, isLoading: false, groupedItems });\n }\n catch (error) {\n this.SetError(error, \"getData\");\n }\n });\n }\n readListsItems() {\n return __awaiter(this, void 0, void 0, function* () {\n this.generateKeymap();\n let itemPromise = [];\n Object.keys(this.keymapQuerys).map(site => {\n let listService = new ListService(site, this.props.UseCache, this.props.minutesToCache, this.props.CacheType);\n let siteProperties = this.props.Sites.filter(siteInformation => siteInformation.url === site);\n Object.keys(this.keymapQuerys[site]).map(listQuery => {\n itemPromise.push(listService.getListItems(this.keymapQuerys[site][listQuery], this.props.ListNameTitle, this.props.SiteNameTitle, siteProperties[0][this.props.SiteNamePropertyToShow], this.props.ItemLimit, this._graphService));\n });\n });\n let items = yield Promise.all(itemPromise);\n let result = [];\n items.map(partialResult => {\n result.push(...partialResult);\n });\n return result;\n });\n }\n AddColumnsToDisplay() {\n let columns = [];\n this.props.detailListFieldsCollectionData.sort().map(column => {\n let mappingType = this.props.mappingFieldsCollectionData.find(e => e.TargetField === column.ColumnTitle);\n columns.push({ key: column.ColumnTitle, name: column.ColumnTitle, fieldName: column.ColumnTitle, minWidth: column.MinColumnWidth || 50, maxWidth: column.MaxColumnWidth, isResizable: true, data: mappingType ? mappingType.SPFieldType : (column.IsFileIcon ? SharePointType.FileIcon : SharePointType.Text), onColumnClick: this._onColumnClick, isIconOnly: column.IsFileIcon });\n });\n return columns;\n }\n setNewFilterState(items, generalFilter, collapseAllGroups, columnFilters) {\n if (this.props.groupByField) {\n let groupedItems = this._groupBy(items, this.props.groupByField, this.props.groupByFieldType);\n if (collapseAllGroups) {\n this.groups.map(group => group.isCollapsed = true);\n }\n this.setState({ filterItems: items, generalFilter, groupedItems, columnFilters });\n }\n else {\n this.setState({ filterItems: items, generalFilter, columnFilters });\n }\n }\n _getDetailListGroups(groupedItems) {\n let groupedElements = 0;\n this.groups = this.props.groupByField && groupedItems && groupedItems.map(group => {\n let result = { key: group.GroupName, name: group.GroupName, startIndex: groupedElements, count: group.Items.length, level: 0 };\n groupedElements += group.Items.length;\n return result;\n });\n }\n generateKeymap() {\n this.keymapQuerys = {};\n this.props.mappingFieldsCollectionData.map(item => {\n if (this.keymapQuerys[item.SiteCollectionSource] != undefined) {\n if (this.keymapQuerys[item.SiteCollectionSource][item.ListSourceField] != undefined) {\n if (this.keymapQuerys[item.SiteCollectionSource][item.ListSourceField].fields.filter(field => field.originalField === item.SourceField).length == 0) {\n this.keymapQuerys[item.SiteCollectionSource][item.ListSourceField].fields.push({ originalField: item.SourceField, newField: item.TargetField, fieldType: item.SPFieldType });\n }\n }\n else {\n let listQueryInfo = find(this.props.listsCollectionData, list => list.SiteCollectionSource == item.SiteCollectionSource && list.ListSourceField == item.ListSourceField);\n let newQueryListItem = {\n list: { Id: item.ListSourceField, Title: item.ListSourceFieldName },\n audienceEnabled: listQueryInfo.AudienceEnabled,\n fields: [{ originalField: item.SourceField, newField: item.TargetField, fieldType: item.SPFieldType }],\n camlQuery: listQueryInfo && listQueryInfo.Query,\n viewName: listQueryInfo && listQueryInfo.ListView\n };\n this.keymapQuerys[item.SiteCollectionSource][item.ListSourceField] = newQueryListItem;\n }\n }\n else {\n let listQueryInfo = find(this.props.listsCollectionData, list => list.SiteCollectionSource == item.SiteCollectionSource && list.ListSourceField == item.ListSourceField);\n let newQueryListItem = {\n list: { Id: item.ListSourceField, Title: item.ListSourceFieldName },\n audienceEnabled: listQueryInfo.AudienceEnabled,\n fields: [{ originalField: item.SourceField, newField: item.TargetField, fieldType: item.SPFieldType }],\n camlQuery: listQueryInfo && listQueryInfo.Query,\n viewName: listQueryInfo && listQueryInfo.ListView\n };\n this.keymapQuerys[item.SiteCollectionSource] = [];\n this.keymapQuerys[item.SiteCollectionSource][item.ListSourceField] = newQueryListItem;\n }\n });\n }\n filterColumnListItems(propertyName, propertyValue, columnType) {\n try {\n let isNewFilter = true;\n let clearFilter = false;\n let isMoreRestricted = false;\n let newFitlers = this.state.columnFilters.filter(filter => {\n if (filter.columnName === propertyName) {\n isMoreRestricted = filter.filterToApply.length < propertyValue.length;\n filter.filterToApply = propertyValue;\n isNewFilter = false;\n }\n if (filter.filterToApply && filter.filterToApply.length > 0) { //Remove empty filters\n return filter;\n }\n else {\n clearFilter = true;\n }\n });\n if (isNewFilter)\n newFitlers.push({ columnName: propertyName, filterToApply: propertyValue, columnType });\n let itemsToRefine = (clearFilter || this.state.generalFilter) ? this.filterListItemsByGeneralFilter(this.state.generalFilter, true, false, this.state.items, this.state.filterItems)\n : (isMoreRestricted ? this.state.filterItems : this.state.items);\n this.filterListItemsByColumnsFilter(itemsToRefine, newFitlers, false);\n }\n catch (error) {\n this.SetError(error, \"filterColumnListItems\");\n }\n }\n filterListItemsByColumnsFilter(itemsToRefine, newFilters, isFromClearGeneralFilter) {\n if (this.props.IndividualColumnFilter) {\n let newItems = [];\n itemsToRefine.map(item => {\n let itemFounded = true;\n newFilters.map(filter => {\n let value = this.GetItemValueFieldByFieldType(item, filter.columnName, filter.columnType);\n if (value == undefined || value == \"\" || value.toString().toLowerCase().indexOf(filter.filterToApply.toLowerCase()) < 0) {\n itemFounded = false;\n }\n });\n if (itemFounded)\n newItems.push(item);\n });\n this.setNewFilterState(newItems, isFromClearGeneralFilter ? \"\" : this.state.generalFilter, !newFilters || newFilters.length === 0, newFilters);\n }\n else {\n this.setNewFilterState(itemsToRefine, isFromClearGeneralFilter ? \"\" : this.state.generalFilter, isFromClearGeneralFilter, newFilters);\n }\n }\n filterListItemsByGeneralFilter(valueToFilter, isClearFilter, reloadComponents, allItems, filteredItems) {\n if (valueToFilter && valueToFilter.length > 0) {\n let filterItems = [];\n let itemsToFilter = (isClearFilter || valueToFilter.length < this.state.generalFilter.length) ? allItems : filteredItems;\n itemsToFilter.map(item => {\n this.props.GeneralSearcheableFields.map(field => {\n if (filterItems.indexOf(item) < 0) {\n if (item[field.ColumnTitle] && item[field.ColumnTitle].toString().toLowerCase().indexOf(valueToFilter.toLowerCase()) > -1) {\n filterItems.push(item);\n return item;\n }\n }\n });\n });\n if (reloadComponents) {\n this.setNewFilterState(filterItems, valueToFilter, isClearFilter, this.state.columnFilters);\n }\n else {\n return filterItems;\n }\n }\n else {\n if (reloadComponents) {\n this.clearGeneralFilter();\n }\n else {\n return allItems;\n }\n }\n }\n clearGeneralFilter() {\n try {\n this.filterListItemsByColumnsFilter(this.state.items, this.state.columnFilters, true);\n }\n catch (error) {\n this.SetError(error, \"clearGeneralFilter\");\n }\n }\n _onRenderDetails(detailsFooterProps, showSearchBox, isHeader) {\n if (this.props.IndividualColumnFilter) {\n let _renderDetailsFooterItemColumn = (item, index, column) => {\n let filter = this.state.columnFilters.find(colFilter => colFilter.columnName == column.name);\n if (this.props.IndividualColumnFilter && showSearchBox && column.data != SharePointType.FileIcon) {\n return (React.createElement(SearchBox, { placeholder: column.name, iconProps: filterIcon, value: filter ? filter.filterToApply : \"\", underlined: true, onChange: (ev, value) => this.filterColumnListItems(column.name, value, column.data), onClear: (ev) => this.filterColumnListItems(column.name, \"\", SharePointType.Text) }));\n }\n else {\n return undefined;\n }\n };\n return (React.createElement(DetailsRow, Object.assign({}, detailsFooterProps, { item: {}, itemIndex: -1, onRenderItemColumn: _renderDetailsFooterItemColumn })));\n }\n else {\n if (isHeader) {\n return React.createElement(DetailsHeader, Object.assign({}, detailsFooterProps, { layoutMode: DetailsListLayoutMode.justified, styles: { root: { backgroundColor: 'transparent' } } }));\n }\n else {\n return undefined;\n }\n }\n }\n handlePageChange(pageNumber) {\n this.setState({ activePage: pageNumber });\n }\n _clearAllFilters() {\n this.setNewFilterState(this.state.items, \"\", true, []);\n }\n _checkIndividualFilter(position) {\n return this.props.IndividualColumnFilter && this.props.IndividualFilterPosition && this.props.IndividualFilterPosition.indexOf(position) > -1;\n }\n _getItems() {\n let result = [];\n if (this.state.filterItems) {\n if (this.props.groupByField) {\n this.state.groupedItems.map(group => { result = [...result, ...group.Items]; });\n }\n else {\n if (this.props.ShowPagination) {\n let start = this.props.ItemsInPage * (this.state.activePage - 1);\n result = this.state.filterItems.slice(start, start + this.props.ItemsInPage);\n }\n else {\n result = this.state.filterItems;\n }\n }\n }\n return result;\n }\n GetCompleteItemData(item) {\n return __awaiter(this, void 0, void 0, function* () {\n let listService = new ListService(item.SiteUrl, this.props.UseCache, this.props.minutesToCache, this.props.CacheType);\n let completeItemQueryOptions = {\n list: item.List,\n audienceEnabled: true,\n fields: this.props.completeModalFields && this.props.completeModalFields.filter(field => field.SiteCollectionSource == item.SiteUrl &&\n field.ListSourceField == item.List.Id).map(field => { return { originalField: field.SourceField, newField: field.TargetField, fieldType: field.SPFieldType }; })\n };\n let completeItem = yield listService.getListItemById(completeItemQueryOptions, item.Id);\n if (completeItem) {\n completeItem.SiteUrl = item.SiteUrl;\n completeItem.ListName = item.ListName;\n }\n this.setState({ completeModalItemData: completeItem, isModalLoading: false });\n });\n }\n GetOnClickAction() {\n try {\n switch (this.props.ModalType) {\n case IModalType.Simple:\n case IModalType.Complete:\n case IModalType.DocumentIframePreview:\n {\n return this.GetModal();\n break;\n }\n case IModalType.Redirect:\n {\n let config = this.props.redirectData.filter(f => f.SiteCollectionSource == this.state.selectedItem.SiteUrl && f.ListSourceField == this.state.selectedItem.List.Id);\n if (config && config.length > 0) {\n if (this.props.onRedirectIdQuery) {\n var url = new URL(config[0].Url);\n url.searchParams.append(this.props.onRedirectIdQuery, this.state.selectedItem.Id.toString());\n window.location.replace(url.toString());\n }\n else {\n window.location.replace(`${config[0].Url}`);\n }\n }\n break;\n }\n case IModalType.DynamicData:\n {\n this.props.onSelectedItem({\n webUrl: this.state.selectedItem.SiteUrl,\n listId: this.state.selectedItem.List.Id,\n itemId: this.state.selectedItem.Id\n });\n break;\n }\n case IModalType.DocumentNewTabPreview:\n {\n window.open(this.GetDocumentPreviewUrl(), '_blank');\n break;\n }\n }\n }\n catch (error) {\n this.SetError(error, \"GetOnClickAction\");\n }\n }\n GetModal() {\n const cancelIcon = { iconName: 'Cancel' };\n const theme = getTheme();\n const iconButtonStyles = {\n root: {\n color: theme.palette.neutralPrimary,\n marginLeft: 'auto',\n marginTop: '4px',\n marginRight: '2px',\n float: 'right'\n },\n rootHovered: {\n color: theme.palette.neutralDark,\n },\n };\n const modal = React.createElement(Modal, { isOpen: !this.state.isModalHidden, onDismiss: this._closeModal, isBlocking: false, containerClassName: styles.containerModal },\n React.createElement(\"div\", { className: styles.headerModal }, this.state.selectedItem &&\n React.createElement(IconButton, { styles: iconButtonStyles, iconProps: cancelIcon, onClick: this._closeModal })),\n React.createElement(\"div\", { className: styles.bodyModal }, this.getBodyModal()));\n return modal;\n }\n getBodyModal() {\n let body;\n switch (this.props.ModalType) {\n case IModalType.Simple:\n {\n body = React.createElement(React.Fragment, null, this.props.mappingFieldsCollectionData.filter(f => f.SiteCollectionSource == this.state.selectedItem.SiteUrl &&\n f.ListSourceField === this.state.selectedItem.List.Id).map(val => {\n return React.createElement(React.Fragment, null,\n React.createElement(\"div\", { className: styles.propertyModal }, val.TargetField),\n this.GetModalBodyRenderByFieldType(this.state.selectedItem, val.TargetField, val.SPFieldType));\n }));\n break;\n }\n case IModalType.Complete:\n {\n body = React.createElement(React.Fragment, null, this.props.completeModalFields && this.props.completeModalFields.filter(field => field.SiteCollectionSource == this.state.selectedItem.SiteUrl &&\n field.ListSourceField == this.state.selectedItem.List.Id).map(val => {\n return React.createElement(React.Fragment, null,\n React.createElement(\"div\", { className: styles.propertyModal }, val.TargetField),\n React.createElement(\"div\", null, this.state.isModalLoading ? React.createElement(Shimmer, null) : this.GetModalBodyRenderByFieldType(this.state.completeModalItemData, val.SourceField, val.SPFieldType)));\n }));\n break;\n }\n case IModalType.DocumentIframePreview:\n {\n body = React.createElement(IFrameDialog, { url: this.GetDocumentPreviewUrl(), hidden: this.state.isModalHidden, onDismiss: this._closeModal.bind(this), width: `${window.innerWidth * 0.75}px`, height: `${window.innerHeight * 0.75}px` });\n break;\n }\n }\n return body;\n }\n GetDocumentPreviewUrl() {\n let result;\n //Pdf is office extension but has to be with serverUrl\n const officeExtensions = [\"aspx\", \"doc\", \"docm\", \"docx\", \"dotx\", \"odp\", \"ods\", \"odt\", \"pot\", \"potm\", \"potx\", \"pps\", \"ppsx\", \"ppt\", \"pptm\", \"pptx\", \"rtf\", \"xls\", \"xlsb\", \"xlsm\", \"xlsx\", \"eml\", \"msg\", \"vsd\", \"vsdx\"];\n const documentsWithPreview = [\"csv\"];\n const isOfficeDoc = !isEmpty(this.state.selectedItem.FileExtension) && officeExtensions.indexOf(this.state.selectedItem.FileExtension.toLocaleLowerCase()) !== -1;\n const isDocumentWithPreview = isOfficeDoc || (!isEmpty(this.state.selectedItem.FileExtension) && documentsWithPreview.indexOf(this.state.selectedItem.FileExtension.toLocaleLowerCase()) !== -1);\n if (isDocumentWithPreview) {\n result = `${this.state.selectedItem.SiteUrl}/_layouts/15/WopiFrame.aspx?sourcedoc={${this.state.selectedItem.UniqueId}}&action=interactivepreview`;\n }\n else {\n result = `${this.state.selectedItem.ServerUrl}`;\n }\n return result;\n }\n getOnRowClickRender(detailrow, defaultRender) {\n return this.props.clickEnabled ?\n this.props.oneClickOption ?\n React.createElement(\"div\", { onClick: () => this._onItemInvoked(detailrow.item) }, defaultRender(Object.assign(Object.assign({}, detailrow), { styles: { root: { cursor: 'pointer', backgroundColor: 'transparent' } } })))\n :\n React.createElement(React.Fragment, null, defaultRender(Object.assign(Object.assign({}, detailrow), { styles: { root: { cursor: 'pointer', backgroundColor: 'transparent' } } })))\n :\n React.createElement(React.Fragment, null, defaultRender(Object.assign(Object.assign({}, detailrow), { styles: { root: { backgroundColor: 'transparent' } } })));\n }\n _renderItemColumn(item, index, column) {\n return this.GetJSXElementByType(item, column.fieldName, column.data);\n }\n GetModalBodyRenderByFieldType(item, propertyName, fieldType) {\n let result = this.GetJSXElementByType(item, propertyName, fieldType, true);\n switch (fieldType) {\n case SharePointType.Boolean:\n result = React.createElement(Toggle, { checked: item[propertyName] });\n break;\n }\n return result;\n }\n GetFileIconByFileType(extesion) {\n let result;\n let size = ImageSize.small;\n let type = IconType.image;\n switch (extesion) {\n case \"doc\":\n case \"docm\":\n case \"docx\":\n case \"dotx\":\n case \"rtf\":\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.Word });\n break;\n }\n case \"xlsx\":\n case \"xls\":\n case \"xlsm\":\n case \"xlsb\":\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.Excel });\n break;\n }\n case \"pdf\":\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.PDF });\n break;\n }\n case \"csv\":\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.CSV });\n break;\n }\n case \"email\":\n case \"msg\":\n case \"oft\":\n case \"ost\":\n case \"pst\":\n case \"eml\":\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.Mail });\n break;\n }\n case \"ppt\":\n case \"pptx\":\n case \"potm\":\n case \"potx\":\n case \"pps\":\n case \"ppsx\":\n case \"pptm\":\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.PowerPoint });\n break;\n }\n case \"gif\":\n case \"jpeg\":\n case \"jpg\":\n case \"png\":\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.Image });\n break;\n }\n case \"vsd\":\n case \"vsdx\":\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.Visio });\n break;\n }\n default:\n {\n result = React.createElement(FileTypeIcon, { type: type, size: size, application: ApplicationType.ASPX });\n break;\n }\n }\n return result;\n }\n GetJSXElementByType(item, fieldName, fieldType, ommitCamlQuery = false) {\n const value = this.GetItemValueFieldByFieldType(item, fieldName, fieldType, ommitCamlQuery);\n const { semanticColors } = this.props.themeVariant;\n let result = React.createElement(\"span\", null);\n switch (fieldType) {\n case SharePointType.FileIcon:\n {\n result = this.GetFileIconByFileType(value);\n break;\n }\n case SharePointType.User:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery) {\n result = React.createElement(\"span\", { style: { color: semanticColors.bodyText } }, value);\n }\n else {\n if (value && value.Name) {\n result = React.createElement(Persona, Object.assign({}, {\n imageUrl: value.Email ? `/_layouts/15/userphoto.aspx?UserName=${value.Email}` : undefined,\n imageInitials: StringUtils.GetUserInitials(value.Name),\n text: value.Name\n }, { size: PersonaSize.size32, hidePersonaDetails: false }));\n }\n else {\n result = React.createElement(\"span\", null);\n }\n }\n break;\n }\n case SharePointType.UserMulti:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery && value && value.length > 0) {\n result = React.createElement(\"span\", null, value.map((val, index) => {\n if (index + 1 == value.length) {\n return React.createElement(\"span\", { style: { color: semanticColors.bodyText } }, val);\n }\n else {\n return React.createElement(\"span\", { style: { color: semanticColors.bodyText } },\n val,\n React.createElement(\"br\", null));\n }\n }));\n }\n else {\n if (value) {\n const overflowButtonProps = {\n ariaLabel: 'More users',\n };\n result = React.createElement(Facepile, { personaSize: PersonaSize.size32, personas: value, maxDisplayablePersonas: 3, overflowButtonType: OverflowButtonType.descriptive, overflowButtonProps: overflowButtonProps });\n }\n else {\n result = React.createElement(\"span\", null);\n }\n }\n break;\n }\n case SharePointType.TaxonomyMulti:\n {\n if (value) {\n result = React.createElement(\"span\", null, value.map((val, index) => {\n if (index + 1 == value.length) {\n return React.createElement(\"span\", { style: { color: semanticColors.bodyText } }, val);\n }\n else {\n return React.createElement(\"span\", { style: { color: semanticColors.bodyText } },\n val,\n React.createElement(\"br\", null));\n }\n }));\n }\n else {\n result = React.createElement(\"span\", null);\n }\n break;\n }\n case SharePointType.Lookup:\n if (value) {\n result = React.createElement(Link, { style: { color: semanticColors.bodyText }, href: \"#\" }, value);\n }\n else {\n result = React.createElement(\"span\", null);\n }\n break;\n case SharePointType.ChoiceMulti:\n if (value) {\n result = React.createElement(\"span\", null, value.map((val, index) => {\n if (index + 1 == value.length) {\n return React.createElement(\"span\", { style: { color: semanticColors.bodyText } }, val);\n }\n else {\n return React.createElement(\"span\", { style: { color: semanticColors.bodyText } },\n val,\n React.createElement(\"br\", null));\n }\n }));\n }\n else {\n result = React.createElement(\"span\", null);\n }\n break;\n case SharePointType.LookupMulti:\n if (value) {\n result = React.createElement(\"span\", null, value.map((val, index) => {\n if (index + 1 == value.length) {\n return React.createElement(Link, { style: { color: semanticColors.bodyText }, href: \"#\" }, val);\n }\n else {\n return React.createElement(\"span\", null,\n React.createElement(Link, { style: { color: semanticColors.bodyText }, href: \"#\" }, val),\n React.createElement(\"br\", null));\n }\n }));\n }\n else {\n result = React.createElement(\"span\", null);\n }\n break;\n case SharePointType.Url:\n if (value && value.Url) {\n result = React.createElement(Link, { href: value.Url, style: { color: semanticColors.bodyText } }, value.Description);\n }\n else {\n result = React.createElement(\"span\", null);\n }\n break;\n case SharePointType.Image:\n {\n if (value && value.Url) {\n const imageProps = {\n src: value.Url,\n imageFit: ImageFit.contain,\n width: 100,\n height: 100,\n };\n result = React.createElement(Image, Object.assign({}, imageProps, { src: value.Url, alt: value.Description }));\n }\n else {\n result = React.createElement(\"span\", null);\n }\n break;\n }\n case SharePointType.NoteFullHtml:\n {\n if (value) {\n result = React.createElement(\"span\", { dangerouslySetInnerHTML: { __html: value } });\n }\n else {\n result = React.createElement(\"span\", null);\n }\n break;\n }\n default:\n result = React.createElement(\"span\", { style: { color: semanticColors.bodyText } }, value);\n break;\n }\n return result;\n }\n GetItemValueFieldByFieldType(item, field, type, ommitCamlQuery = false, setGroupByEmptyValue = false) {\n let result;\n let value = item[field];\n switch (type) {\n case SharePointType.FileIcon:\n {\n result = item.FileExtension;\n break;\n }\n case SharePointType.Boolean:\n {\n if (value) {\n result = value.toString();\n }\n break;\n }\n case SharePointType.User:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery) {\n result = value;\n }\n else {\n if (!isEmpty(value)) {\n let user = { Name: value.Title, Email: StringUtils.GetUserEmail(value.Name) };\n result = user;\n }\n }\n break;\n }\n case SharePointType.Url:\n case SharePointType.Image:\n {\n if (!isEmpty(value)) {\n let url = { Url: value.Url, Description: value.Description };\n result = url;\n }\n break;\n }\n case SharePointType.UserName:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery) {\n result = value;\n }\n else {\n result = value && value.Title;\n }\n break;\n }\n case SharePointType.UserEmail:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery) {\n result = value;\n }\n else {\n result = value && StringUtils.GetUserEmail(value.Name);\n }\n break;\n }\n case SharePointType.UserMulti:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery) {\n result = value ? value.split(';') : \"\";\n }\n else {\n if (value && value.length > 0) {\n let personas = value.map(user => {\n let email = StringUtils.GetUserEmail(user.Name);\n return { imageUrl: email ? `/_layouts/15/userphoto.aspx?UserName=${email}` : undefined, personaName: user.Title, imageInitials: StringUtils.GetUserInitials(user.Title), };\n });\n result = personas;\n }\n }\n break;\n }\n case SharePointType.Lookup:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery) {\n result = value;\n }\n else {\n result = value && value.Title;\n }\n break;\n }\n case SharePointType.ChoiceMulti:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery && value) {\n result = value ? value.split(',') : \"\";\n }\n else {\n result = value;\n }\n break;\n }\n case SharePointType.LookupMulti:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery && value) {\n result = value ? value.split(';') : \"\";\n }\n else {\n result = value && value.map(val => { return val.Title; });\n }\n break;\n }\n case SharePointType.DateTime:\n {\n result = value && new Date(value).toLocaleDateString(this.props.Context.pageContext.cultureInfo.currentCultureName, {\n year: \"numeric\",\n month: \"numeric\",\n day: \"2-digit\",\n hour: \"2-digit\",\n minute: \"2-digit\",\n second: \"2-digit\",\n });\n break;\n }\n case SharePointType.Date:\n {\n result = value && new Date(value).toLocaleDateString(this.props.Context.pageContext.cultureInfo.currentCultureName);\n break;\n }\n case SharePointType.DateLongMonth:\n {\n result = value && new Date(value).toLocaleDateString(this.props.Context.pageContext.cultureInfo.currentCultureName, {\n year: \"numeric\",\n month: \"long\",\n day: \"2-digit\"\n });\n break;\n }\n case SharePointType.Taxonomy:\n {\n if (this.props.AnyCamlQuery && !ommitCamlQuery) {\n result = value;\n }\n else {\n if (value && value.Term) {\n result = value.Term;\n }\n }\n break;\n }\n case SharePointType.TaxonomyMulti:\n {\n result = value && value.map(tax => { return tax.Label; });\n break;\n }\n default:\n {\n result = value;\n break;\n }\n }\n return result || (setGroupByEmptyValue ? strings.GroupByEmptyValue : result);\n }\n _groupBy(array, groupByField, groupByFieldType) {\n let resArray = [];\n try {\n let elementsInGroups = groupBy(array, item => this.GetItemValueFieldByFieldType(item, groupByField, groupByFieldType, false, true));\n resArray = Object.keys(elementsInGroups).sort().map(group => {\n return { GroupName: group, Items: elementsInGroups[group] };\n });\n this._getDetailListGroups(resArray);\n }\n catch (error) {\n this.SetError(error, '_groupBy');\n }\n return resArray;\n }\n _copyAndSort(items, columnKey, isSortedDescending) {\n const key = columnKey;\n return items.slice(0).sort((a, b) => ((isSortedDescending ? a[key] < b[key] : a[key] > b[key]) ? 1 : -1));\n }\n render() {\n const { semanticColors } = this.props.themeVariant;\n let clearAllButton = this.props.ClearAllFiltersBtnColor == \"white\" ? React.createElement(DefaultButton, { text: this.props.ClearAllFiltersBtnText, className: styles.btn, onClick: (ev) => this._clearAllFilters() }) :\n React.createElement(PrimaryButton, { text: this.props.ClearAllFiltersBtnText, className: styles.btn, onClick: (ev) => this._clearAllFilters() });\n return (React.createElement(\"div\", { className: styles.listSearch, style: { backgroundColor: semanticColors.bodyBackground, color: semanticColors.bodyText } },\n React.createElement(\"div\", { className: styles.row },\n React.createElement(\"div\", { className: styles.column },\n React.createElement(WebPartTitle, { title: this.props.title, updateProperty: (value) => this.props.updateTitle(value), displayMode: this.props.displayMode, placeholder: strings.WebPartTitlePlaceHolder }),\n this.state.errorMsg ?\n React.createElement(MessageBar, { messageBarType: MessageBarType.error, isMultiline: false, truncated: true },\n React.createElement(\"b\", null, this.state.errorHeader),\n this.state.errorMsg) :\n React.createElement(React.Fragment, null,\n this.props.clickEnabled && !this.state.isModalHidden && this.state.selectedItem && this.GetOnClickAction(),\n React.createElement(\"div\", { className: styles.rowTopInformation },\n this.props.GeneralFilter &&\n React.createElement(\"div\", { className: this.props.ShowClearAllFilters ? styles.ColGeneralFilterWithBtn : styles.ColGeneralFilterOnly },\n React.createElement(Shimmer, { isDataLoaded: !this.state.isLoading, height: 37 },\n React.createElement(SearchBox, { value: this.state.generalFilter, placeholder: this.props.GeneralFilterPlaceHolderText, onClear: () => this.clearGeneralFilter(), onChange: (ev, newValue) => this.filterListItemsByGeneralFilter(newValue, false, true, this.state.items, this.state.filterItems) }))),\n React.createElement(\"div\", { className: styles.ColClearAll },\n React.createElement(Shimmer, { isDataLoaded: !this.state.isLoading }, this.props.ShowClearAllFilters && clearAllButton))),\n React.createElement(\"div\", { className: styles.rowData },\n React.createElement(\"div\", { className: styles.colData },\n this.props.ShowItemCount &&\n React.createElement(Shimmer, { isDataLoaded: !this.state.isLoading, width: \"25%\" },\n React.createElement(\"div\", { className: styles.template_resultCount }, this.props.ItemCountText.replace(\"{itemCount}\", `${this.state.filterItems ? this.state.filterItems.length : 0}`))),\n React.createElement(ShimmeredDetailsList, { enableShimmer: this.state.isLoading, items: this._getItems(), columns: this.state.columns, groups: !this.state.isLoading && this.props.groupByField && this.groups, groupProps: {\n showEmptyGroups: true,\n isAllGroupsCollapsed: true,\n }, onRenderDetailsFooter: (detailsFooterProps) => this._onRenderDetails(detailsFooterProps, this._checkIndividualFilter(\"footer\"), false), onRenderDetailsHeader: (detailsHeaderProps) => this._onRenderDetails(detailsHeaderProps, this._checkIndividualFilter(\"header\"), true), selectionMode: SelectionMode.none, onItemInvoked: this.props.clickEnabled && !this.props.oneClickOption ? this._onItemInvoked : null, onRenderRow: (props, defaultRender) => this.getOnRowClickRender(props, defaultRender), onRenderItemColumn: this._renderItemColumn, shimmerLines: this.props.ShowPagination ? this.props.ItemsInPage : 10 }),\n this.props.ShowPagination &&\n React.createElement(\"div\", { className: styles.paginationContainer },\n React.createElement(\"div\", { className: styles.paginationContainer__paginationContainer },\n React.createElement(\"div\", { className: `${styles.paginationContainer__paginationContainer__pagination}` },\n React.createElement(\"div\", { className: styles.standard },\n React.createElement(Pagination, { activePage: this.state.activePage, firstPageText: React.createElement(Icon, { theme: this.props.themeVariant, iconName: 'DoubleChevronLeft' }), lastPageText: React.createElement(Icon, { theme: this.props.themeVariant, iconName: 'DoubleChevronRight' }), prevPageText: React.createElement(Icon, { theme: this.props.themeVariant, iconName: 'ChevronLeft' }), nextPageText: React.createElement(Icon, { theme: this.props.themeVariant, iconName: 'ChevronRight' }), activeLinkClass: styles.active, itemsCountPerPage: this.props.ItemsInPage, totalItemsCount: this.state.filterItems ? this.state.filterItems.length : 0, pageRangeDisplayed: 5, onChange: this.handlePageChange.bind(this) }))))))))))));\n }\n}\n//# sourceMappingURL=ListSearch.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/model/IListConfigProps.js", - "name": "./lib/webparts/listSearch/model/IListConfigProps.js", - "index": 845, - "index2": 844, - "size": 1204, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./model/IListConfigProps", - "loc": "18:0-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IListConfigProps", - "loc": "282:84-104" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IListConfigProps", - "loc": "298:84-104" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IListConfigProps", - "loc": "313:84-104" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./model/IListConfigProps", - "loc": "887:175-195" - } - ], - "usedExports": [ - "IDetailListFieldData" - ], - "providedExports": [ - "IDetailListFieldData" - ], - "optimizationBailout": [], - "depth": 1, - "source": "export class IDetailListFieldData {\n constructor(IsSiteTitle, IsListTitle, IsFileIcon, ColumnTitle, MinColumnWidth, MaxColumnWidth, Searcheable) {\n this.IsSiteTitle = IsSiteTitle;\n this.IsListTitle = IsListTitle;\n this.IsFileIcon = IsFileIcon;\n this.ColumnTitle = ColumnTitle;\n this.MinColumnWidth = MinColumnWidth;\n this.MaxColumnWidth = MaxColumnWidth;\n this.Searcheable = Searcheable;\n }\n static CreateListColumn(MinColumnWidth, MaxColumnWidth, Searcheable) {\n return new IDetailListFieldData(false, true, false, \"ListName\", MinColumnWidth, MaxColumnWidth, Searcheable);\n }\n static CreateSiteColumn(MinColumnWidth, MaxColumnWidth, Searcheable) {\n return new IDetailListFieldData(true, false, false, \"Site\", MinColumnWidth, MaxColumnWidth, Searcheable);\n }\n static CreateFileColumn() {\n return new IDetailListFieldData(false, false, true, \"FileIcon\", 30, 30, false);\n }\n static IsGeneralColumn(object) {\n return object.IsSiteTitle != false && object.IsListTitle != false && object.IsFileIcon != false; //undefined values are also general columns\n }\n}\n//# sourceMappingURL=IListConfigProps.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "index": 893, - "index2": 901, - "size": 85, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-controls-react/lib/Placeholder", - "loc": "21:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/Placeholder", - "loc": "161:52-63" - } - ], - "usedExports": [ - "Placeholder" - ], - "providedExports": [ - "Placeholder" - ], - "optimizationBailout": [], - "depth": 1, - "source": "export * from './controls/placeholder/index';\n//# sourceMappingURL=Placeholder.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/EmptyPropertyPane.js", - "name": "./lib/webparts/listSearch/custompropertyPane/EmptyPropertyPane.js", - "index": 903, - "index2": 902, - "size": 548, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./custompropertyPane/EmptyPropertyPane", - "loc": "23:0-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/EmptyPropertyPane", - "loc": "466:32-49" - } - ], - "usedExports": [ - "EmptyPropertyPane" - ], - "providedExports": [ - "EmptyPropertyPane" - ], - "optimizationBailout": [], - "depth": 1, - "source": "//Code from https://kaboodlesoftware.com/2019/10/04/a-rather-useful-empty-spfx-property-pane-control/\nimport { PropertyPaneFieldType } from \"@microsoft/sp-property-pane\";\nexport class EmptyPropertyPane {\n constructor() {\n this.type = PropertyPaneFieldType.Custom;\n this.properties = {\n onRender: this.onRender.bind(this),\n key: \"EmptyKey\"\n };\n // ...\n }\n onRender(elem) {\n elem.innerHTML = `
`;\n }\n}\n//# sourceMappingURL=EmptyPropertyPane.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "index": 911, - "index2": 910, - "size": 4044, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony side effect evaluation", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "26:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "626:32-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "636:36-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "653:36-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "679:32-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "728:56-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "739:60-85" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "813:56-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "821:56-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "829:56-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "866:56-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "876:60-85" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "887:60-85" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "type": "harmony import specifier", - "userRequest": "./custompropertyPane/CustomCollectionDataField", - "loc": "898:60-85" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 1, - "source": "import * as React from 'react';\nimport { Dropdown } from 'office-ui-fabric-react/lib/components/Dropdown';\nimport { TextField } from 'office-ui-fabric-react/lib/components/TextField';\nimport styles from '../ListSearchWebPart.module.scss';\nimport { Checkbox } from 'office-ui-fabric-react/lib/components/Checkbox';\nexport default class CustomCollectionDataField {\n static getCustomCollectionDropDown(options, field, row, updateFunction, errorFunction, customOnchangeFunction) {\n return (React.createElement(Dropdown, { placeholder: field.placeholder || field.title, options: options.sort((a, b) => { return a.text.localeCompare(b.text); }), selectedKey: row[field.id] || null, required: field.required, onChange: (evt, option, index) => customOnchangeFunction ? customOnchangeFunction(row, field.id, option, updateFunction, errorFunction) : updateFunction(field.id, option.key), onRenderOption: field.onRenderOption, className: \"PropertyFieldCollectionData__panel__dropdown-field\" }));\n }\n static getListPickerBySiteOptions(possibleOptions, field, row, updateFunction, customOnChange) {\n let currentOptions = [];\n possibleOptions.filter(option => {\n if (row.SiteCollectionSource && option.SiteCollectionSource == row.SiteCollectionSource) {\n currentOptions.push({\n key: option.ListSourceField,\n text: option.ListSourceFieldName\n });\n }\n });\n return this.getCustomCollectionDropDown(currentOptions, field, row, updateFunction, null, customOnChange);\n }\n static getListPicker(possibleOptions, field, row, updateFunction, customOnChange, customError) {\n let options = [];\n if (possibleOptions) {\n options = possibleOptions.map(option => { return { key: option.Id, text: option.Title }; });\n }\n return this.getCustomCollectionDropDown(options, field, row, updateFunction, customError, customOnChange);\n }\n static getPickerByStringOptions(possibleOptions, field, row, updateFunction, customOnChange, customError) {\n let options = [];\n if (possibleOptions) {\n options = possibleOptions.map(option => { return { key: option, text: option }; });\n }\n return this.getCustomCollectionDropDown(options, field, row, updateFunction, customError, customOnChange);\n }\n static getFieldPickerByList(possibleOptions, field, row, updateFunction, customOnchangeFunction, customOptions) {\n let options = [];\n if (possibleOptions) {\n options = possibleOptions.map(option => { return { key: option.InternalName, text: option.Title, title: option.InternalName, FieldType: option.TypeAsString }; });\n }\n if (customOptions) {\n customOptions.map(option => {\n options.push({\n key: option.Key,\n text: option.Option,\n FieldType: option.CustomData\n });\n });\n }\n return this.getCustomCollectionDropDown(options, field, row, updateFunction, null, customOnchangeFunction);\n }\n static getDisabledTextField(field, item, updateFunction) {\n return React.createElement(TextField, { placeholder: field.placeholder || field.title, className: styles.collectionDataField, value: item[field.id] ? item[field.id] : \"\", required: field.required, disabled: true, onChange: (value) => updateFunction(field.id, value), deferredValidationTime: field.deferredValidationTime || field.deferredValidationTime >= 0 ? field.deferredValidationTime : 200, inputClassName: \"PropertyFieldCollectionData__panel__string-field\" });\n }\n static getDisabledCheckBoxField(field, item, updateFunction) {\n return React.createElement(Checkbox, { checked: item[field.id] ? item[field.id] : false, onChange: (ev, value) => updateFunction(field.id, value), disabled: true, className: \"PropertyFieldCollectionData__panel__boolean-field\" });\n }\n}\n//# sourceMappingURL=CustomCollectionDataField.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "index": 285, - "index2": 285, - "size": 1340, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony side effect evaluation", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "11:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "53:106-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "431:154-160" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "432:52-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "434:52-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "445:68-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "455:68-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "911:166-172" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "912:101-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "913:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "914:52-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "915:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "923:68-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "925:109-115" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "925:142-148" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "928:72-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "930:68-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "931:72-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "934:84-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "940:80-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "941:84-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "942:91-97" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "943:92-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../ListSearchWebPart.module.scss", - "loc": "944:565-571" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 2, - "source": "/* tslint:disable */\nrequire(\"./ListSearchWebPart.module.css\");\nconst styles = {\n listSearch: 'listSearch_3d392993',\n row: 'row_3d392993',\n column: 'column_3d392993',\n 'ms-Grid': 'ms-Grid_3d392993',\n rowTopInformation: 'rowTopInformation_3d392993',\n ColGeneralFilterWithBtn: 'ColGeneralFilterWithBtn_3d392993',\n ColGeneralFilterOnly: 'ColGeneralFilterOnly_3d392993',\n ColClearAll: 'ColClearAll_3d392993',\n btn: 'btn_3d392993',\n rowData: 'rowData_3d392993',\n colData: 'colData_3d392993',\n template_resultCount: 'template_resultCount_3d392993',\n paginationContainer: 'paginationContainer_3d392993',\n paginationContainer__paginationContainer: 'paginationContainer__paginationContainer_3d392993',\n paginationContainer__paginationContainer__pagination: 'paginationContainer__paginationContainer__pagination_3d392993',\n inverted: 'inverted_3d392993',\n standard: 'standard_3d392993',\n active: 'active_3d392993',\n active__inverted: 'active__inverted_3d392993',\n containerModal: 'containerModal_3d392993',\n headerModal: 'headerModal_3d392993',\n bodyModal: 'bodyModal_3d392993',\n propertyModal: 'propertyModal_3d392993',\n collectionDataField: 'collectionDataField_3d392993'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=ListSearchWebPart.module.scss.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "name": "./node_modules/@pnp/sp/index.js", - "index": 290, - "index2": 324, - "size": 690, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/ListService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/sp", - "loc": "10:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "@pnp/sp", - "loc": "22:8-10" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "@pnp/sp", - "loc": "54:38-40" - } - ], - "usedExports": [ - "sp" - ], - "providedExports": [ - "SharePointQueryableInstance", - "SharePointQueryableCollection", - "SharePointQueryable", - "spInvokableFactory", - "SPBatch", - "defaultPath", - "registerCustomRequestClientFactory", - "spGet", - "spPost", - "spDelete", - "spPatch", - "spPostDelete", - "spPostDeleteETag", - "SPHttpClient", - "SPRest", - "sp", - "PrincipalType", - "PrincipalSource", - "PageType", - "toAbsoluteUrl", - "extractWebUrl", - "objectToSPKeyValueCollection", - "stripInvalidFileFolderChars", - "containsInvalidFileFolderChars" - ], - "optimizationBailout": [], - "depth": 2, - "source": "export { SharePointQueryableInstance, SharePointQueryableCollection, SharePointQueryable, spInvokableFactory, } from \"./sharepointqueryable\";\r\nexport { SPBatch, } from \"./batch\";\r\nexport * from \"./decorators\";\r\nexport * from \"./operations\";\r\nexport { SPHttpClient, } from \"./sphttpclient\";\r\nexport { SPRest, sp, } from \"./rest\";\r\nexport * from \"./types\";\r\nexport { toAbsoluteUrl, } from \"./utils/toabsoluteurl\";\r\nexport { extractWebUrl, } from \"./utils/extractweburl\";\r\nexport { objectToSPKeyValueCollection, } from \"./utils/objectToSPKeyValueCollection\";\r\nexport { stripInvalidFileFolderChars, containsInvalidFileFolderChars, } from \"./utils/file-names\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js", - "index": 328, - "index2": 330, - "size": 422, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/ListService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/sp/webs", - "loc": "11:0-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/sp/webs", - "loc": "17:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony import specifier", - "userRequest": "@pnp/sp/webs", - "loc": "32:19-22" - } - ], - "usedExports": [ - "Web" - ], - "providedExports": [ - "Web", - "Webs" - ], - "optimizationBailout": [], - "depth": 2, - "source": "import { Web } from \"./types\";\r\nimport { SPRest } from \"../rest\";\r\nexport { Web, Webs, } from \"./types\";\r\nReflect.defineProperty(SPRest.prototype, \"web\", {\r\n configurable: true,\r\n enumerable: true,\r\n get: function () {\r\n return Web(this._baseUrl).configure(this._options);\r\n },\r\n});\r\nSPRest.prototype.createBatch = function () {\r\n return this.web.createBatch();\r\n};\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "name": "./node_modules/@pnp/sp/lists/index.js", - "index": 334, - "index2": 334, - "size": 127, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/ListService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/sp/lists", - "loc": "12:0-23" - } - ], - "usedExports": false, - "providedExports": [ - "List", - "Lists", - "ControlMode", - "RenderListDataOptions" - ], - "optimizationBailout": [], - "depth": 2, - "source": "import \"./web\";\r\nexport { List, Lists, ControlMode, RenderListDataOptions, } from \"./types\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js", - "index": 338, - "index2": 337, - "size": 140, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/ListService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/sp/items", - "loc": "13:0-23" - } - ], - "usedExports": false, - "providedExports": [ - "Item", - "Items", - "ItemVersion", - "ItemVersions", - "PagedItemCollection" - ], - "optimizationBailout": [], - "depth": 2, - "source": "import \"./list\";\r\nexport { Item, Items, ItemVersion, ItemVersions, PagedItemCollection, } from \"./types\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "name": "./node_modules/@pnp/sp/views/index.js", - "index": 341, - "index2": 340, - "size": 115, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/ListService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/sp/views", - "loc": "14:0-23" - } - ], - "usedExports": false, - "providedExports": [ - "View", - "ViewFields", - "Views", - "ViewScope" - ], - "optimizationBailout": [], - "depth": 2, - "source": "import \"./list\";\r\nexport { View, ViewFields, Views, ViewScope, } from \"./types\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "name": "./node_modules/@pnp/sp/fields/index.js", - "index": 344, - "index2": 344, - "size": 296, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/ListService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "module": "./lib/webparts/listSearch/services/ListService.js", - "moduleName": "./lib/webparts/listSearch/services/ListService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/sp/fields", - "loc": "15:0-24" - } - ], - "usedExports": false, - "providedExports": [ - "Fields", - "Field", - "AddFieldOptions", - "CalendarType", - "ChoiceFieldFormatType", - "DateTimeFieldFormatType", - "DateTimeFieldFriendlyFormatType", - "FieldTypes", - "FieldUserSelectionMode", - "UrlFieldFormatType" - ], - "optimizationBailout": [], - "depth": 2, - "source": "import \"./web\";\r\nimport \"./list\";\r\nimport \"./web\";\r\nexport { Fields, Field, AddFieldOptions, CalendarType, ChoiceFieldFormatType, DateTimeFieldFormatType, DateTimeFieldFriendlyFormatType, FieldTypes, FieldUserSelectionMode, UrlFieldFormatType, } from \"./types\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/Utils.js", - "name": "./lib/webparts/listSearch/services/Utils.js", - "index": 357, - "index2": 355, - "size": 586, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "../services/Utils", - "loc": "27:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../services/Utils", - "loc": "598:47-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../services/Utils", - "loc": "759:67-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../services/Utils", - "loc": "790:42-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../services/Utils", - "loc": "802:44-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../services/Utils", - "loc": "803:160-171" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 2, - "source": "export default class StringUtils {\n static GetUserInitials(text) {\n if (text) {\n let initials = text.match(/\\b\\w/g) || [];\n text = ((initials.shift() || '') + (initials.pop() || '')).toUpperCase();\n }\n return text;\n }\n static GetUserEmail(text) {\n let result = \"\";\n if (text && text.indexOf('|') > 0) {\n let splited = text.split('|');\n if (splited && splited.length > 1) {\n result = splited[2];\n }\n }\n return result;\n }\n}\n//# sourceMappingURL=Utils.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "index": 358, - "index2": 434, - "size": 87, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "30:0-111" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "506:19-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "507:19-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "515:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "515:102-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "523:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "523:102-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "528:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "528:102-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "533:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "533:102-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "543:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "543:102-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "554:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "554:102-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "562:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "562:102-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "568:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "568:102-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "573:49-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/FileTypeIcon", - "loc": "573:102-117" - } - ], - "usedExports": [ - "ImageSize", - "IconType", - "FileTypeIcon", - "ApplicationType" - ], - "providedExports": [ - "IconType", - "ApplicationType", - "ImageSize", - "ApplicationIconList", - "IconSizes", - "ICON_GENERIC_16", - "ICON_GENERIC_48", - "ICON_GENERIC_96", - "FileTypeIcon" - ], - "optimizationBailout": [], - "depth": 2, - "source": "export * from './controls/fileTypeIcon/index';\n//# sourceMappingURL=FileTypeIcon.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "index": 437, - "index2": 682, - "size": 87, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-controls-react/lib/IFrameDialog", - "loc": "31:0-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/IFrameDialog", - "loc": "462:47-59" - } - ], - "usedExports": [ - "IFrameDialog" - ], - "providedExports": [ - "IFrameDialogContent", - "IFrameDialog" - ], - "optimizationBailout": [], - "depth": 2, - "source": "export * from './controls/iFrameDialog/index';\n//# sourceMappingURL=IFrameDialog.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "index": 686, - "index2": 690, - "size": 87, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-controls-react/lib/WebPartTitle", - "loc": "34:0-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-controls-react/lib/WebPartTitle", - "loc": "916:40-52" - } - ], - "usedExports": [ - "WebPartTitle" - ], - "providedExports": [ - "WebPartTitle" - ], - "optimizationBailout": [], - "depth": 2, - "source": "export * from './controls/webPartTitle/index';\n//# sourceMappingURL=WebPartTitle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js", - "index": 693, - "index2": 731, - "size": 1814, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony side effect evaluation", - "userRequest": "../services/GraphService", - "loc": "35:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "userRequest": "../services/GraphService", - "loc": "91:33-45" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 2, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nimport { graph } from \"@pnp/graph\";\nimport \"@pnp/graph/users\";\nimport \"@pnp/graph/groups\";\nimport { PnPClientStorage } from \"@pnp/common\";\nexport default class GraphService {\n constructor(spfxContext) {\n this._localStorageKey = 'userGroups';\n // 1 day\n this._expiredTimeMillisecons = 8.64e+7;\n graph.setup({\n spfxContext\n });\n this._storage = new PnPClientStorage();\n }\n getTransitiveMemberOf() {\n return __awaiter(this, void 0, void 0, function* () {\n try {\n this._storage.local.deleteExpired();\n let userGroups = this._storage.local.get(this._localStorageKey);\n if (!userGroups) {\n userGroups = yield graph.me.getMemberGroups();\n this._storage.local.put(this._localStorageKey, userGroups, new Date(new Date().getTime() + this._expiredTimeMillisecons));\n }\n return userGroups;\n }\n catch (error) {\n return Promise.reject(error);\n }\n });\n }\n}\n//# sourceMappingURL=GraphService.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "index": 894, - "index2": 900, - "size": 73, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "type": "harmony side effect evaluation", - "userRequest": "./controls/placeholder/index", - "loc": "1:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "type": "harmony export imported specifier", - "userRequest": "./controls/placeholder/index", - "loc": "1:0-45" - } - ], - "usedExports": [ - "Placeholder" - ], - "providedExports": [ - "Placeholder" - ], - "optimizationBailout": [], - "depth": 2, - "source": "export * from './PlaceholderComponent';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/extractweburl.js", - "name": "./node_modules/@pnp/sp/utils/extractweburl.js", - "index": 319, - "index2": 312, - "size": 512, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/odata.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "name": "./node_modules/@pnp/sp/lists/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "name": "./node_modules/@pnp/sp/lists/web.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "name": "./node_modules/@pnp/sp/odata.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/extractweburl", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "module": "./node_modules/@pnp/sp/odata.js", - "moduleName": "./node_modules/@pnp/sp/odata.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/extractweburl", - "loc": "5:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/extractweburl", - "loc": "9:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./utils/extractweburl", - "loc": "9:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/extractweburl", - "loc": "13:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "module": "./node_modules/@pnp/sp/odata.js", - "moduleName": "./node_modules/@pnp/sp/odata.js", - "type": "harmony import specifier", - "userRequest": "./utils/extractweburl", - "loc": "25:23-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony import specifier", - "userRequest": "./utils/extractweburl", - "loc": "43:63-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/extractweburl", - "loc": "164:41-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/extractweburl", - "loc": "223:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/extractweburl", - "loc": "238:57-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/extractweburl", - "loc": "304:50-63" - } - ], - "usedExports": [ - "extractWebUrl" - ], - "providedExports": [ - "extractWebUrl" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { stringIsNullOrEmpty } from \"@pnp/common\";\r\nexport function extractWebUrl(candidateUrl) {\r\n if (stringIsNullOrEmpty(candidateUrl)) {\r\n return \"\";\r\n }\r\n var index = candidateUrl.indexOf(\"_api/\");\r\n if (index < 0) {\r\n index = candidateUrl.indexOf(\"_vti_bin/\");\r\n }\r\n if (index > -1) {\r\n return candidateUrl.substr(0, index);\r\n }\r\n // if all else fails just give them what they gave us back\r\n return candidateUrl;\r\n}\r\n//# sourceMappingURL=extractweburl.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "name": "./node_modules/@pnp/sp/sphttpclient.js", - "index": 317, - "index2": 314, - "size": 8620, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/operations.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "name": "./node_modules/@pnp/sp/operations.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony side effect evaluation", - "userRequest": "./sphttpclient", - "loc": "3:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./sphttpclient", - "loc": "5:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "./sphttpclient", - "loc": "5:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./sphttpclient", - "loc": "5:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony import specifier", - "userRequest": "./sphttpclient", - "loc": "7:93-105" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony import specifier", - "userRequest": "./sphttpclient", - "loc": "9:39-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "./sphttpclient", - "loc": "89:37-49" - } - ], - "usedExports": [ - "SPHttpClient" - ], - "providedExports": [ - "SPHttpClient" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { assign, mergeHeaders, getCtxCallback, combine, dateAdd, } from \"@pnp/common\";\r\nimport { SPRuntimeConfig } from \"./splibconfig\";\r\nimport { extractWebUrl } from \"./utils/extractweburl\";\r\nimport { tag } from \"./telemetry\";\r\nimport { ODataParser } from \"@pnp/odata\";\r\nvar SPHttpClient = /** @class */ (function () {\r\n function SPHttpClient(_impl) {\r\n if (_impl === void 0) { _impl = SPRuntimeConfig.fetchClientFactory(); }\r\n this._impl = _impl;\r\n this._digestCache = getDigestFactory(this);\r\n }\r\n SPHttpClient.prototype.fetch = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var opts, headers, methodName, clientTag, digest;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n opts = assign(options, { cache: \"no-cache\", credentials: \"same-origin\" }, true);\r\n headers = new Headers();\r\n // first we add the global headers so they can be overwritten by any passed in locally to this call\r\n mergeHeaders(headers, SPRuntimeConfig.headers);\r\n // second we add the local options so we can overwrite the globals\r\n mergeHeaders(headers, options.headers);\r\n // lastly we apply any default headers we need that may not exist\r\n if (!headers.has(\"Accept\")) {\r\n headers.append(\"Accept\", \"application/json\");\r\n }\r\n if (!headers.has(\"Content-Type\")) {\r\n headers.append(\"Content-Type\", \"application/json;odata=verbose;charset=utf-8\");\r\n }\r\n if (!headers.has(\"X-ClientService-ClientTag\")) {\r\n methodName = tag.getClientTag(headers);\r\n clientTag = \"PnPCoreJS:2.0.8:\" + methodName;\r\n if (clientTag.length > 32) {\r\n clientTag = clientTag.substr(0, 32);\r\n }\r\n headers.append(\"X-ClientService-ClientTag\", clientTag);\r\n }\r\n opts = assign(opts, { headers: headers });\r\n if (!(opts.method && opts.method.toUpperCase() !== \"GET\" && !headers.has(\"X-RequestDigest\") && !headers.has(\"Authorization\"))) return [3 /*break*/, 2];\r\n return [4 /*yield*/, this._digestCache(extractWebUrl(url))];\r\n case 1:\r\n digest = _a.sent();\r\n headers.append(\"X-RequestDigest\", digest);\r\n _a.label = 2;\r\n case 2: return [2 /*return*/, this.fetchRaw(url, opts)];\r\n }\r\n });\r\n });\r\n };\r\n SPHttpClient.prototype.fetchRaw = function (url, options) {\r\n var _this = this;\r\n if (options === void 0) { options = {}; }\r\n // here we need to normalize the headers\r\n var rawHeaders = new Headers();\r\n mergeHeaders(rawHeaders, options.headers);\r\n options = assign(options, { headers: rawHeaders });\r\n var retry = function (ctx) {\r\n // handles setting the proper timeout for a retry\r\n var setRetry = function (response) {\r\n var delay;\r\n if (response.headers.has(\"Retry-After\")) {\r\n // if we have gotten a header, use that value as the delay value in seconds\r\n delay = parseInt(response.headers.get(\"Retry-After\"), 10) * 1000;\r\n }\r\n else {\r\n // grab our current delay\r\n delay = ctx.delay;\r\n // Increment our counters.\r\n ctx.delay *= 2;\r\n }\r\n ctx.attempts++;\r\n // If we have exceeded the retry count, reject.\r\n if (ctx.retryCount <= ctx.attempts) {\r\n ctx.reject(Error(\"Retry count exceeded (\" + ctx.retryCount + \") for request. Response status: [\" + response.status + \"] \" + response.statusText));\r\n }\r\n else {\r\n // Set our retry timeout for {delay} milliseconds.\r\n setTimeout(getCtxCallback(_this, retry, ctx), delay);\r\n }\r\n };\r\n // send the actual request\r\n _this._impl.fetch(url, options).then(function (response) {\r\n if (response.status === 429) {\r\n // we have been throttled\r\n setRetry(response);\r\n }\r\n else {\r\n ctx.resolve(response);\r\n }\r\n }).catch(function (response) {\r\n if (response.status === 503 || response.status === 504) {\r\n // http status code 503 or 504, we can retry this\r\n setRetry(response);\r\n }\r\n else {\r\n ctx.reject(response);\r\n }\r\n });\r\n };\r\n return new Promise(function (resolve, reject) {\r\n retry.call(_this, {\r\n attempts: 0,\r\n delay: 100,\r\n reject: reject,\r\n resolve: resolve,\r\n retryCount: 7,\r\n });\r\n });\r\n };\r\n SPHttpClient.prototype.get = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var opts = assign(options, { method: \"GET\" });\r\n return this.fetch(url, opts);\r\n };\r\n SPHttpClient.prototype.post = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var opts = assign(options, { method: \"POST\" });\r\n return this.fetch(url, opts);\r\n };\r\n SPHttpClient.prototype.patch = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var opts = assign(options, { method: \"PATCH\" });\r\n return this.fetch(url, opts);\r\n };\r\n SPHttpClient.prototype.delete = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var opts = assign(options, { method: \"DELETE\" });\r\n return this.fetch(url, opts);\r\n };\r\n return SPHttpClient;\r\n}());\r\nexport { SPHttpClient };\r\n// allows for the caching of digests across all HttpClient's which each have their own DigestCache wrapper.\r\nvar digests = new Map();\r\nfunction getDigestFactory(client) {\r\n var _this = this;\r\n return function (webUrl) { return __awaiter(_this, void 0, void 0, function () {\r\n var cachedDigest, now, url, headers, resp, parsed, newCachedDigest;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n cachedDigest = digests.get(webUrl);\r\n if (cachedDigest !== undefined) {\r\n now = new Date();\r\n if (now < cachedDigest.expiration) {\r\n return [2 /*return*/, cachedDigest.value];\r\n }\r\n }\r\n url = combine(webUrl, \"/_api/contextinfo\");\r\n headers = {\r\n \"Accept\": \"application/json;odata=verbose\",\r\n \"Content-Type\": \"application/json;odata=verbose;charset=utf-8\",\r\n };\r\n return [4 /*yield*/, client.fetchRaw(url, {\r\n cache: \"no-cache\",\r\n credentials: \"same-origin\",\r\n headers: assign(headers, SPRuntimeConfig.headers, true),\r\n method: \"POST\",\r\n })];\r\n case 1:\r\n resp = _a.sent();\r\n return [4 /*yield*/, (new ODataParser()).parse(resp).then(function (r) { return r.GetContextWebInformation; })];\r\n case 2:\r\n parsed = _a.sent();\r\n newCachedDigest = {\r\n expiration: dateAdd(new Date(), \"second\", parsed.FormDigestTimeoutSeconds),\r\n value: parsed.FormDigestValue,\r\n };\r\n digests.set(webUrl, newCachedDigest);\r\n return [2 /*return*/, newCachedDigest.value];\r\n }\r\n });\r\n }); };\r\n}\r\n//# sourceMappingURL=sphttpclient.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/toabsoluteurl.js", - "name": "./node_modules/@pnp/sp/utils/toabsoluteurl.js", - "index": 321, - "index2": 315, - "size": 2123, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/operations.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "name": "./node_modules/@pnp/sp/operations.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/toabsoluteurl", - "loc": "5:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/toabsoluteurl", - "loc": "7:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/toabsoluteurl", - "loc": "8:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./utils/toabsoluteurl", - "loc": "8:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony import specifier", - "userRequest": "./utils/toabsoluteurl", - "loc": "20:45-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "./utils/toabsoluteurl", - "loc": "90:45-58" - } - ], - "usedExports": [ - "toAbsoluteUrl" - ], - "providedExports": [ - "toAbsoluteUrl" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { combine, isUrlAbsolute, hOP, safeGlobal } from \"@pnp/common\";\r\nimport { SPRuntimeConfig } from \"../splibconfig\";\r\n/**\r\n * Ensures that a given url is absolute for the current web based on context\r\n *\r\n * @param candidateUrl The url to make absolute\r\n *\r\n */\r\nexport function toAbsoluteUrl(candidateUrl) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var baseUrl_1;\r\n return __generator(this, function (_a) {\r\n if (isUrlAbsolute(candidateUrl)) {\r\n // if we are already absolute, then just return the url\r\n return [2 /*return*/, candidateUrl];\r\n }\r\n if (SPRuntimeConfig.baseUrl !== null) {\r\n // base url specified either with baseUrl of spfxContext config property\r\n return [2 /*return*/, combine(SPRuntimeConfig.baseUrl, candidateUrl)];\r\n }\r\n if (safeGlobal._spPageContextInfo !== undefined) {\r\n // operating in classic pages\r\n if (hOP(safeGlobal._spPageContextInfo, \"webAbsoluteUrl\")) {\r\n return [2 /*return*/, combine(safeGlobal._spPageContextInfo.webAbsoluteUrl, candidateUrl)];\r\n }\r\n else if (hOP(safeGlobal._spPageContextInfo, \"webServerRelativeUrl\")) {\r\n return [2 /*return*/, combine(safeGlobal._spPageContextInfo.webServerRelativeUrl, candidateUrl)];\r\n }\r\n }\r\n // does window.location exist and have a certain path part in it?\r\n if (safeGlobal.location !== undefined) {\r\n baseUrl_1 = safeGlobal.location.toString().toLowerCase();\r\n [\"/_layouts/\", \"/siteassets/\"].forEach(function (s) {\r\n var index = baseUrl_1.indexOf(s);\r\n if (index > 0) {\r\n return combine(baseUrl_1.substr(0, index), candidateUrl);\r\n }\r\n });\r\n }\r\n return [2 /*return*/, candidateUrl];\r\n });\r\n });\r\n}\r\n//# sourceMappingURL=toabsoluteurl.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "name": "./node_modules/@pnp/sp/operations.js", - "index": 316, - "index2": 316, - "size": 3043, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/webs/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./operations", - "loc": "4:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./operations", - "loc": "4:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "./operations", - "loc": "6:0-77" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../operations", - "loc": "6:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../operations", - "loc": "7:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../operations", - "loc": "8:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../operations", - "loc": "8:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../operations", - "loc": "9:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../operations", - "loc": "10:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "48:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "48:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "55:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "58:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "59:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "85:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "90:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "100:49-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "102:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./operations", - "loc": "103:15-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "122:49-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "126:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "131:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "138:49-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "140:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "146:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./operations", - "loc": "147:15-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "147:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "154:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "159:49-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "160:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "183:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "193:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "214:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "223:38-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "226:15-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "233:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "234:15-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "238:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./operations", - "loc": "241:41-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "247:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "253:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./operations", - "loc": "257:15-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "260:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./operations", - "loc": "263:15-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "266:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "270:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "272:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "274:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "284:49-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "287:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "304:38-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "304:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "304:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "324:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "331:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "344:49-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "346:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "361:49-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "402:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "450:45-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "465:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "471:15-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../operations", - "loc": "477:15-21" - } - ], - "usedExports": [ - "spPost", - "spGet", - "spPostDelete", - "spPostDeleteETag" - ], - "providedExports": [ - "registerCustomRequestClientFactory", - "spGet", - "spPost", - "spDelete", - "spPatch", - "spPostDelete", - "spPostDeleteETag" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { defaultPipelineBinder, cloneQueryableData, headers } from \"@pnp/odata\";\r\nimport { SPHttpClient } from \"./sphttpclient\";\r\nimport { mergeOptions, objectDefinedNotNull, isFunc } from \"@pnp/common\";\r\nimport { toAbsoluteUrl } from \"./utils/toabsoluteurl\";\r\nexport function registerCustomRequestClientFactory(requestClientFactory) {\r\n factory = isFunc(requestClientFactory) ? requestClientFactory : function () { return new SPHttpClient(); };\r\n}\r\nvar factory = function () { return new SPHttpClient(); };\r\nvar send = function (method) {\r\n var operation = defaultPipelineBinder(factory)(method);\r\n return function (o, options) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var data, batchDependency, url;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n data = cloneQueryableData(o.data);\r\n batchDependency = objectDefinedNotNull(data.batch) ? data.batch.addDependency() : function () { return; };\r\n return [4 /*yield*/, toAbsoluteUrl(o.toUrlAndQuery())];\r\n case 1:\r\n url = _a.sent();\r\n mergeOptions(data.options, options);\r\n return [2 /*return*/, operation(Object.assign({}, data, {\r\n batchDependency: batchDependency,\r\n url: url,\r\n }))];\r\n }\r\n });\r\n });\r\n };\r\n};\r\nexport var spGet = function (o, options) {\r\n // Fix for #304 - when we clone objects we in some cases then execute a get request\r\n // in these cases the caching settings were getting dropped from the request\r\n // this tracks if the object from which this was cloned was caching and applies that to an immediate get request\r\n // does not affect objects cloned from this as we are using different fields to track the settings so it won't\r\n // be triggered\r\n if (o.data.cloneParentWasCaching) {\r\n o.usingCaching(o.data.cloneParentCacheOptions);\r\n }\r\n // if we are forcing caching set that in the data here\r\n if (o._forceCaching) {\r\n o.data.useCaching = true;\r\n }\r\n return send(\"GET\")(o, options);\r\n};\r\nexport var spPost = function (o, options) { return send(\"POST\")(o, options); };\r\nexport var spDelete = function (o, options) { return send(\"DELETE\")(o, options); };\r\nexport var spPatch = function (o, options) { return send(\"PATCH\")(o, options); };\r\nexport var spPostDelete = function (o, options) {\r\n var opts = Object.assign(headers({ \"X-HTTP-Method\": \"DELETE\" }), options);\r\n return spPost(o, opts);\r\n};\r\nexport var spPostDeleteETag = function (o, options, eTag) {\r\n if (eTag === void 0) { eTag = \"*\"; }\r\n var opts = Object.assign(headers({ \"X-HTTP-Method\": \"DELETE\", \"IF-Match\": eTag }), options);\r\n return spPost(o, opts);\r\n};\r\n//# sourceMappingURL=operations.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "name": "./node_modules/@pnp/sp/sharepointqueryable.js", - "index": 291, - "index2": 317, - "size": 10333, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "name": "./node_modules/@pnp/sp/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./sharepointqueryable", - "loc": "1:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./sharepointqueryable", - "loc": "1:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./sharepointqueryable", - "loc": "1:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./sharepointqueryable", - "loc": "1:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./sharepointqueryable", - "loc": "1:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../sharepointqueryable", - "loc": "2:0-135" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../sharepointqueryable", - "loc": "2:0-193" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../sharepointqueryable", - "loc": "2:0-111" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../sharepointqueryable", - "loc": "3:0-135" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../sharepointqueryable", - "loc": "4:0-195" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../sharepointqueryable", - "loc": "4:0-195" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony side effect evaluation", - "userRequest": "../sharepointqueryable", - "loc": "6:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "11:37-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "66:2-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "66:2-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "68:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "68:19-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "73:23-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "77:23-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "109:42-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "111:2-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "113:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "125:44-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "130:42-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "136:33-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "161:2-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "162:2-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "163:19-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "164:19-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "169:23-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "172:23-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "175:2-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "177:24-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "178:33-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "181:33-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "189:33-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "192:33-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "200:33-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "203:33-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "205:29-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "211:33-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "214:33-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "225:33-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "293:2-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "295:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "318:2-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "320:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "346:2-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "348:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "370:2-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "372:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "381:23-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "385:2-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "387:25-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "416:2-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "418:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "423:23-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "449:2-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "451:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "492:2-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../sharepointqueryable", - "loc": "494:19-37" - } - ], - "usedExports": [ - "_SharePointQueryableCollection", - "spInvokableFactory", - "deleteable", - "SharePointQueryableInstance", - "SharePointQueryableCollection", - "_SharePointQueryableInstance", - "SharePointQueryable", - "deleteableWithETag" - ], - "providedExports": [ - "spInvokableFactory", - "_SharePointQueryable", - "SharePointQueryable", - "_SharePointQueryableCollection", - "SharePointQueryableCollection", - "_SharePointQueryableInstance", - "SharePointQueryableInstance", - "deleteable", - "deleteableWithETag" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __extends } from \"tslib\";\r\nimport { combine, isUrlAbsolute, assign, jsS } from \"@pnp/common\";\r\nimport { Queryable, invokableFactory } from \"@pnp/odata\";\r\nimport { Logger } from \"@pnp/logging\";\r\nimport { metadata } from \"./utils/metadata\";\r\nimport { spGet, spPost, spPostDelete, spPostDeleteETag } from \"./operations\";\r\nimport { tag } from \"./telemetry\";\r\nexport var spInvokableFactory = function (f) {\r\n return invokableFactory(f);\r\n};\r\n/**\r\n * SharePointQueryable Base Class\r\n *\r\n */\r\nvar _SharePointQueryable = /** @class */ (function (_super) {\r\n __extends(_SharePointQueryable, _super);\r\n /**\r\n * Creates a new instance of the SharePointQueryable class\r\n *\r\n * @constructor\r\n * @param baseUrl A string or SharePointQueryable that should form the base part of the url\r\n *\r\n */\r\n function _SharePointQueryable(baseUrl, path) {\r\n var _this = this;\r\n var url = \"\";\r\n var parentUrl = \"\";\r\n var query = new Map();\r\n if (typeof baseUrl === \"string\") {\r\n // we need to do some extra parsing to get the parent url correct if we are\r\n // being created from just a string.\r\n if (isUrlAbsolute(baseUrl) || baseUrl.lastIndexOf(\"/\") < 0) {\r\n parentUrl = baseUrl;\r\n url = combine(baseUrl, path);\r\n }\r\n else if (baseUrl.lastIndexOf(\"/\") > baseUrl.lastIndexOf(\"(\")) {\r\n // .../items(19)/fields\r\n var index = baseUrl.lastIndexOf(\"/\");\r\n parentUrl = baseUrl.slice(0, index);\r\n path = combine(baseUrl.slice(index), path);\r\n url = combine(parentUrl, path);\r\n }\r\n else {\r\n // .../items(19)\r\n var index = baseUrl.lastIndexOf(\"(\");\r\n parentUrl = baseUrl.slice(0, index);\r\n url = combine(baseUrl, path);\r\n }\r\n }\r\n else {\r\n parentUrl = baseUrl.toUrl();\r\n url = combine(parentUrl, path || \"\");\r\n var target = baseUrl.query.get(\"@target\");\r\n if (target !== undefined) {\r\n query.set(\"@target\", target);\r\n }\r\n }\r\n // init base with correct values for data seed\r\n _this = _super.call(this, {\r\n parentUrl: parentUrl,\r\n query: query,\r\n url: url,\r\n }) || this;\r\n // post init actions\r\n if (typeof baseUrl !== \"string\") {\r\n _this.configureFrom(baseUrl);\r\n }\r\n _this._forceCaching = false;\r\n return _this;\r\n }\r\n /**\r\n * Gets the full url with query information\r\n */\r\n _SharePointQueryable.prototype.toUrlAndQuery = function () {\r\n var aliasedParams = new Map(this.query);\r\n var url = this.toUrl().replace(/'!(@.*?)::(.*?)'/ig, function (match, labelName, value) {\r\n Logger.write(\"Rewriting aliased parameter from match \" + match + \" to label: \" + labelName + \" value: \" + value, 0 /* Verbose */);\r\n aliasedParams.set(labelName, \"'\" + value + \"'\");\r\n return labelName;\r\n });\r\n if (aliasedParams.size > 0) {\r\n var char = url.indexOf(\"?\") > -1 ? \"&\" : \"?\";\r\n url += \"\" + char + Array.from(aliasedParams).map(function (v) { return v[0] + \"=\" + v[1]; }).join(\"&\");\r\n }\r\n return url;\r\n };\r\n /**\r\n * Choose which fields to return\r\n *\r\n * @param selects One or more fields to return\r\n */\r\n _SharePointQueryable.prototype.select = function () {\r\n var selects = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n selects[_i] = arguments[_i];\r\n }\r\n if (selects.length > 0) {\r\n this.query.set(\"$select\", selects.map(encodeURIComponent).join(\",\"));\r\n }\r\n return this;\r\n };\r\n _SharePointQueryable.prototype.get = function (options) {\r\n return spGet(this, options);\r\n };\r\n /**\r\n * Expands fields such as lookups to get additional data\r\n *\r\n * @param expands The Fields for which to expand the values\r\n */\r\n _SharePointQueryable.prototype.expand = function () {\r\n var expands = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n expands[_i] = arguments[_i];\r\n }\r\n if (expands.length > 0) {\r\n this.query.set(\"$expand\", expands.map(encodeURIComponent).join(\",\"));\r\n }\r\n return this;\r\n };\r\n /**\r\n * Clones this SharePointQueryable into a new SharePointQueryable instance of T\r\n * @param factory Constructor used to create the new instance\r\n * @param additionalPath Any additional path to include in the clone\r\n * @param includeBatch If true this instance's batch will be added to the cloned instance\r\n * @param includeQuery If true all of the query values will be copied to the cloned instance\r\n */\r\n _SharePointQueryable.prototype.clone = function (factory, additionalPath, includeBatch, includeQuery) {\r\n if (includeBatch === void 0) { includeBatch = true; }\r\n if (includeQuery === void 0) { includeQuery = false; }\r\n var clone = _super.prototype.cloneTo.call(this, factory(this, additionalPath), { includeBatch: includeBatch, includeQuery: includeQuery });\r\n // handle sp specific clone actions\r\n if (!includeQuery) {\r\n // we would have already copied this over if we got the entire query\r\n var t = \"@target\";\r\n if (this.query.has(t)) {\r\n clone.query.set(t, this.query.get(t));\r\n }\r\n }\r\n return clone;\r\n };\r\n /**\r\n * The default action for this object (unless overridden spGet)\r\n *\r\n * @param options optional request options\r\n */\r\n _SharePointQueryable.prototype.defaultAction = function (options) {\r\n return spGet(this, options);\r\n };\r\n /**\r\n * Gets a parent for this instance as specified\r\n *\r\n * @param factory The contructor for the class to create\r\n */\r\n _SharePointQueryable.prototype.getParent = function (factory, baseUrl, path, batch) {\r\n if (baseUrl === void 0) { baseUrl = this.parentUrl; }\r\n var parent = factory(baseUrl, path).configureFrom(this);\r\n var t = \"@target\";\r\n if (this.query.has(t)) {\r\n parent.query.set(t, this.query.get(t));\r\n }\r\n if (batch !== undefined) {\r\n parent = parent.inBatch(batch);\r\n }\r\n return parent;\r\n };\r\n return _SharePointQueryable;\r\n}(Queryable));\r\nexport { _SharePointQueryable };\r\nexport var SharePointQueryable = spInvokableFactory(_SharePointQueryable);\r\n/**\r\n * Represents a REST collection which can be filtered, paged, and selected\r\n *\r\n */\r\nvar _SharePointQueryableCollection = /** @class */ (function (_super) {\r\n __extends(_SharePointQueryableCollection, _super);\r\n function _SharePointQueryableCollection() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Filters the returned collection (https://msdn.microsoft.com/en-us/library/office/fp142385.aspx#bk_supported)\r\n *\r\n * @param filter The string representing the filter query\r\n */\r\n _SharePointQueryableCollection.prototype.filter = function (filter) {\r\n this.query.set(\"$filter\", encodeURIComponent(filter));\r\n return this;\r\n };\r\n /**\r\n * Orders based on the supplied fields\r\n *\r\n * @param orderby The name of the field on which to sort\r\n * @param ascending If false DESC is appended, otherwise ASC (default)\r\n */\r\n _SharePointQueryableCollection.prototype.orderBy = function (orderBy, ascending) {\r\n if (ascending === void 0) { ascending = true; }\r\n var o = \"$orderby\";\r\n var query = this.query.has(o) ? this.query.get(o).split(\",\") : [];\r\n query.push(encodeURIComponent(orderBy) + \" \" + (ascending ? \"asc\" : \"desc\"));\r\n this.query.set(o, query.join(\",\"));\r\n return this;\r\n };\r\n /**\r\n * Skips the specified number of items\r\n *\r\n * @param skip The number of items to skip\r\n */\r\n _SharePointQueryableCollection.prototype.skip = function (skip) {\r\n this.query.set(\"$skip\", skip.toString());\r\n return this;\r\n };\r\n /**\r\n * Limits the query to only return the specified number of items\r\n *\r\n * @param top The query row limit\r\n */\r\n _SharePointQueryableCollection.prototype.top = function (top) {\r\n this.query.set(\"$top\", top.toString());\r\n return this;\r\n };\r\n return _SharePointQueryableCollection;\r\n}(_SharePointQueryable));\r\nexport { _SharePointQueryableCollection };\r\nexport var SharePointQueryableCollection = spInvokableFactory(_SharePointQueryableCollection);\r\n/**\r\n * Represents an instance that can be selected\r\n *\r\n */\r\nvar _SharePointQueryableInstance = /** @class */ (function (_super) {\r\n __extends(_SharePointQueryableInstance, _super);\r\n function _SharePointQueryableInstance() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Curries the update function into the common pieces\r\n *\r\n * @param type\r\n * @param mapper\r\n */\r\n _SharePointQueryableInstance.prototype._update = function (type, mapper) {\r\n var _this = this;\r\n return function (props) { return spPost(tag.configure(_this, type + \".Update\"), {\r\n body: jsS(assign(metadata(type), props)),\r\n headers: {\r\n \"X-HTTP-Method\": \"MERGE\",\r\n },\r\n }).then(function (d) { return mapper(d, props); }); };\r\n };\r\n return _SharePointQueryableInstance;\r\n}(_SharePointQueryable));\r\nexport { _SharePointQueryableInstance };\r\nexport var SharePointQueryableInstance = spInvokableFactory(_SharePointQueryableInstance);\r\n/**\r\n * Adds the a delete method to the tagged class taking no parameters and calling spPostDelete\r\n */\r\nexport function deleteable(t) {\r\n return function () {\r\n return spPostDelete(tag.configure(this, t + \".delete\"));\r\n };\r\n}\r\nexport function deleteableWithETag(t) {\r\n return function (eTag) {\r\n if (eTag === void 0) { eTag = \"*\"; }\r\n return spPostDeleteETag(tag.configure(this, t + \".delete\"), {}, eTag);\r\n };\r\n}\r\n//# sourceMappingURL=sharepointqueryable.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "name": "./node_modules/@pnp/sp/batch.js", - "index": 322, - "index2": 318, - "size": 12091, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/webs/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./batch", - "loc": "2:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./batch", - "loc": "2:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../batch", - "loc": "7:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../batch", - "loc": "9:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../batch", - "loc": "75:19-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../batch", - "loc": "146:19-26" - } - ], - "usedExports": [ - "SPBatch" - ], - "providedExports": [ - "SPBatch" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __extends, __generator } from \"tslib\";\r\nimport { Batch } from \"@pnp/odata\";\r\nimport { getGUID, isUrlAbsolute, combine, mergeHeaders, hOP } from \"@pnp/common\";\r\nimport { Logger } from \"@pnp/logging\";\r\nimport { SPHttpClient } from \"./sphttpclient\";\r\nimport { SPRuntimeConfig } from \"./splibconfig\";\r\nimport { toAbsoluteUrl } from \"./utils/toabsoluteurl\";\r\n/**\r\n * Manages a batch of OData operations\r\n */\r\nvar SPBatch = /** @class */ (function (_super) {\r\n __extends(SPBatch, _super);\r\n function SPBatch(baseUrl) {\r\n var _this = _super.call(this) || this;\r\n _this.baseUrl = baseUrl;\r\n return _this;\r\n }\r\n /**\r\n * Parses the response from a batch request into an array of Response instances\r\n *\r\n * @param body Text body of the response from the batch request\r\n */\r\n SPBatch.ParseResponse = function (body) {\r\n var responses = [];\r\n var header = \"--batchresponse_\";\r\n // Ex. \"HTTP/1.1 500 Internal Server Error\"\r\n var statusRegExp = new RegExp(\"^HTTP/[0-9.]+ +([0-9]+) +(.*)\", \"i\");\r\n var lines = body.split(\"\\n\");\r\n var state = \"batch\";\r\n var status;\r\n var statusText;\r\n for (var i = 0; i < lines.length; ++i) {\r\n var line = lines[i];\r\n switch (state) {\r\n case \"batch\":\r\n if (line.substr(0, header.length) === header) {\r\n state = \"batchHeaders\";\r\n }\r\n else {\r\n if (line.trim() !== \"\") {\r\n throw Error(\"Invalid response, line \" + i);\r\n }\r\n }\r\n break;\r\n case \"batchHeaders\":\r\n if (line.trim() === \"\") {\r\n state = \"status\";\r\n }\r\n break;\r\n case \"status\":\r\n var parts = statusRegExp.exec(line);\r\n if (parts.length !== 3) {\r\n throw Error(\"Invalid status, line \" + i);\r\n }\r\n status = parseInt(parts[1], 10);\r\n statusText = parts[2];\r\n state = \"statusHeaders\";\r\n break;\r\n case \"statusHeaders\":\r\n if (line.trim() === \"\") {\r\n state = \"body\";\r\n }\r\n break;\r\n case \"body\":\r\n responses.push((status === 204) ? new Response() : new Response(line, { status: status, statusText: statusText }));\r\n state = \"batch\";\r\n break;\r\n }\r\n }\r\n if (state !== \"status\") {\r\n throw Error(\"Unexpected end of input\");\r\n }\r\n return responses;\r\n };\r\n SPBatch.prototype.executeImpl = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var client, absoluteRequestUrl, batchBody, currentChangeSetId, i, reqInfo, headers, url, method, castHeaders, batchOptions, fetchResponse, text, responses;\r\n var _this = this;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n Logger.write(\"[\" + this.batchId + \"] (\" + (new Date()).getTime() + \") Executing batch with \" + this.requests.length + \" requests.\", 1 /* Info */);\r\n // if we don't have any requests, don't bother sending anything\r\n // this could be due to caching further upstream, or just an empty batch\r\n if (this.requests.length < 1) {\r\n Logger.write(\"Resolving empty batch.\", 1 /* Info */);\r\n return [2 /*return*/];\r\n }\r\n client = new SPHttpClient();\r\n return [4 /*yield*/, toAbsoluteUrl(this.baseUrl)];\r\n case 1:\r\n absoluteRequestUrl = _a.sent();\r\n batchBody = [];\r\n currentChangeSetId = \"\";\r\n for (i = 0; i < this.requests.length; i++) {\r\n reqInfo = this.requests[i];\r\n if (reqInfo.method === \"GET\") {\r\n if (currentChangeSetId.length > 0) {\r\n // end an existing change set\r\n batchBody.push(\"--changeset_\" + currentChangeSetId + \"--\\n\\n\");\r\n currentChangeSetId = \"\";\r\n }\r\n batchBody.push(\"--batch_\" + this.batchId + \"\\n\");\r\n }\r\n else {\r\n if (currentChangeSetId.length < 1) {\r\n // start new change set\r\n currentChangeSetId = getGUID();\r\n batchBody.push(\"--batch_\" + this.batchId + \"\\n\");\r\n batchBody.push(\"Content-Type: multipart/mixed; boundary=\\\"changeset_\" + currentChangeSetId + \"\\\"\\n\\n\");\r\n }\r\n batchBody.push(\"--changeset_\" + currentChangeSetId + \"\\n\");\r\n }\r\n // common batch part prefix\r\n batchBody.push(\"Content-Type: application/http\\n\");\r\n batchBody.push(\"Content-Transfer-Encoding: binary\\n\\n\");\r\n headers = new Headers();\r\n url = isUrlAbsolute(reqInfo.url) ? reqInfo.url : combine(absoluteRequestUrl, reqInfo.url);\r\n Logger.write(\"[\" + this.batchId + \"] (\" + (new Date()).getTime() + \") Adding request \" + reqInfo.method + \" \" + url + \" to batch.\", 0 /* Verbose */);\r\n if (reqInfo.method !== \"GET\") {\r\n method = reqInfo.method;\r\n castHeaders = reqInfo.options.headers;\r\n if (hOP(reqInfo, \"options\") && hOP(reqInfo.options, \"headers\") && castHeaders[\"X-HTTP-Method\"] !== undefined) {\r\n method = castHeaders[\"X-HTTP-Method\"];\r\n delete castHeaders[\"X-HTTP-Method\"];\r\n }\r\n batchBody.push(method + \" \" + url + \" HTTP/1.1\\n\");\r\n headers.set(\"Content-Type\", \"application/json;odata=verbose;charset=utf-8\");\r\n }\r\n else {\r\n batchBody.push(reqInfo.method + \" \" + url + \" HTTP/1.1\\n\");\r\n }\r\n // merge global config headers\r\n mergeHeaders(headers, SPRuntimeConfig.headers);\r\n // merge per-request headers\r\n if (reqInfo.options) {\r\n mergeHeaders(headers, reqInfo.options.headers);\r\n }\r\n // lastly we apply any default headers we need that may not exist\r\n if (!headers.has(\"Accept\")) {\r\n headers.append(\"Accept\", \"application/json\");\r\n }\r\n if (!headers.has(\"Content-Type\")) {\r\n headers.append(\"Content-Type\", \"application/json;odata=verbose;charset=utf-8\");\r\n }\r\n if (!headers.has(\"X-ClientService-ClientTag\")) {\r\n headers.append(\"X-ClientService-ClientTag\", \"PnPCoreJS:@pnp-2.0.8:batch\");\r\n }\r\n // write headers into batch body\r\n headers.forEach(function (value, name) {\r\n batchBody.push(name + \": \" + value + \"\\n\");\r\n });\r\n batchBody.push(\"\\n\");\r\n if (reqInfo.options.body) {\r\n batchBody.push(reqInfo.options.body + \"\\n\\n\");\r\n }\r\n }\r\n if (currentChangeSetId.length > 0) {\r\n // Close the changeset\r\n batchBody.push(\"--changeset_\" + currentChangeSetId + \"--\\n\\n\");\r\n currentChangeSetId = \"\";\r\n }\r\n batchBody.push(\"--batch_\" + this.batchId + \"--\\n\");\r\n batchOptions = {\r\n \"body\": batchBody.join(\"\"),\r\n \"headers\": {\r\n \"Content-Type\": \"multipart/mixed; boundary=batch_\" + this.batchId,\r\n },\r\n \"method\": \"POST\",\r\n };\r\n Logger.write(\"[\" + this.batchId + \"] (\" + (new Date()).getTime() + \") Sending batch request.\", 1 /* Info */);\r\n return [4 /*yield*/, client.fetch(combine(absoluteRequestUrl, \"/_api/$batch\"), batchOptions)];\r\n case 2:\r\n fetchResponse = _a.sent();\r\n return [4 /*yield*/, fetchResponse.text()];\r\n case 3:\r\n text = _a.sent();\r\n responses = SPBatch.ParseResponse(text);\r\n if (responses.length !== this.requests.length) {\r\n throw Error(\"Could not properly parse responses to match requests in batch.\");\r\n }\r\n Logger.write(\"[\" + this.batchId + \"] (\" + (new Date()).getTime() + \") Resolving batched requests.\", 1 /* Info */);\r\n // this structure ensures that we resolve the batched requests in the order we expect\r\n // using async this is not guaranteed depending on the requests\r\n return [2 /*return*/, responses.reduce(function (p, response, index) { return p.then(function (_) { return __awaiter(_this, void 0, void 0, function () {\r\n var request, _a, _b, e_1;\r\n return __generator(this, function (_c) {\r\n switch (_c.label) {\r\n case 0:\r\n request = this.requests[index];\r\n Logger.write(\"[\" + request.id + \"] (\" + (new Date()).getTime() + \") Resolving request in batch \" + this.batchId + \".\", 1 /* Info */);\r\n _c.label = 1;\r\n case 1:\r\n _c.trys.push([1, 3, , 4]);\r\n _b = (_a = request).resolve;\r\n return [4 /*yield*/, request.parser.parse(response)];\r\n case 2:\r\n _b.apply(_a, [_c.sent()]);\r\n return [3 /*break*/, 4];\r\n case 3:\r\n e_1 = _c.sent();\r\n request.reject(e_1);\r\n return [3 /*break*/, 4];\r\n case 4: return [2 /*return*/];\r\n }\r\n });\r\n }); }); }, Promise.resolve(void (0)))];\r\n }\r\n });\r\n });\r\n };\r\n return SPBatch;\r\n}(Batch));\r\nexport { SPBatch };\r\n//# sourceMappingURL=batch.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/decorators.js", - "name": "./node_modules/@pnp/sp/decorators.js", - "index": 323, - "index2": 319, - "size": 847, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/webs/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./decorators", - "loc": "3:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./decorators", - "loc": "3:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators", - "loc": "3:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators", - "loc": "5:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators", - "loc": "5:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators", - "loc": "6:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators", - "loc": "7:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators", - "loc": "8:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "63:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "63:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "158:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "159:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "172:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "290:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "315:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "367:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators", - "loc": "413:8-19" - } - ], - "usedExports": [ - "defaultPath" - ], - "providedExports": [ - "defaultPath" - ], - "optimizationBailout": [], - "depth": 3, - "source": "/**\r\n * Class Decorators\r\n */\r\nimport { __extends } from \"tslib\";\r\n/**\r\n * Decorator used to specify the default path for SharePointQueryable objects\r\n *\r\n * @param path\r\n */\r\nexport function defaultPath(path) {\r\n return function (target) {\r\n return /** @class */ (function (_super) {\r\n __extends(class_1, _super);\r\n function class_1() {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n return _super.call(this, args[0], args.length > 1 && args[1] !== undefined ? args[1] : path) || this;\r\n }\r\n return class_1;\r\n }(target));\r\n };\r\n}\r\n// TODO::?\r\n// performance tracking method decorator\r\n// redirect to graph api\r\n//# sourceMappingURL=decorators.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/rest.js", - "name": "./node_modules/@pnp/sp/rest.js", - "index": 324, - "index2": 320, - "size": 1483, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/webs/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "module": "./node_modules/@pnp/sp/sites/index.js", - "moduleName": "./node_modules/@pnp/sp/sites/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../rest", - "loc": "1:0-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "module": "./node_modules/@pnp/sp/webs/index.js", - "moduleName": "./node_modules/@pnp/sp/webs/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../rest", - "loc": "2:0-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "module": "./node_modules/@pnp/sp/webs/index.js", - "moduleName": "./node_modules/@pnp/sp/webs/index.js", - "type": "harmony import specifier", - "userRequest": "../rest", - "loc": "4:23-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "module": "./node_modules/@pnp/sp/sites/index.js", - "moduleName": "./node_modules/@pnp/sp/sites/index.js", - "type": "harmony import specifier", - "userRequest": "../rest", - "loc": "4:23-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rest", - "loc": "6:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rest", - "loc": "6:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rest", - "loc": "6:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "module": "./node_modules/@pnp/sp/webs/index.js", - "moduleName": "./node_modules/@pnp/sp/webs/index.js", - "type": "harmony import specifier", - "userRequest": "../rest", - "loc": "11:0-6" - } - ], - "usedExports": [ - "SPRest", - "sp" - ], - "providedExports": [ - "SPRest", - "sp" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { setup as _setup, } from \"./splibconfig\";\r\n/**\r\n * Root of the SharePoint REST module\r\n */\r\nvar SPRest = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of the SPRest class\r\n *\r\n * @param options Additional options\r\n * @param baseUrl A string that should form the base part of the url\r\n */\r\n function SPRest(_options, _baseUrl) {\r\n if (_options === void 0) { _options = {}; }\r\n if (_baseUrl === void 0) { _baseUrl = \"\"; }\r\n this._options = _options;\r\n this._baseUrl = _baseUrl;\r\n }\r\n /**\r\n * Configures instance with additional options and baseUrl.\r\n * Provided configuration used by other objects in a chain\r\n *\r\n * @param options Additional options\r\n * @param baseUrl A string that should form the base part of the url\r\n */\r\n SPRest.prototype.configure = function (options, baseUrl) {\r\n if (baseUrl === void 0) { baseUrl = \"\"; }\r\n return new SPRest(options, baseUrl);\r\n };\r\n /**\r\n * Global SharePoint configuration options\r\n *\r\n * @param config The SharePoint configuration to apply\r\n */\r\n SPRest.prototype.setup = function (config) {\r\n if (config.pageContext) {\r\n _setup({\r\n spfxContext: config,\r\n });\r\n }\r\n else {\r\n _setup(config);\r\n }\r\n };\r\n return SPRest;\r\n}());\r\nexport { SPRest };\r\nexport var sp = new SPRest();\r\n//# sourceMappingURL=rest.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/types.js", - "name": "./node_modules/@pnp/sp/types.js", - "index": 325, - "index2": 321, - "size": 3336, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "name": "./node_modules/@pnp/sp/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "7:0-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "7:0-24" - } - ], - "usedExports": false, - "providedExports": [ - "PrincipalType", - "PrincipalSource", - "PageType" - ], - "optimizationBailout": [], - "depth": 3, - "source": "// reference: https://msdn.microsoft.com/en-us/library/office/dn600183.aspx\r\n/**\r\n * Specifies the type of a principal.\r\n */\r\n/* tslint:disable:no-bitwise */\r\nexport var PrincipalType;\r\n(function (PrincipalType) {\r\n /**\r\n * Enumeration whose value specifies no principal type.\r\n */\r\n PrincipalType[PrincipalType[\"None\"] = 0] = \"None\";\r\n /**\r\n * Enumeration whose value specifies a user as the principal type.\r\n */\r\n PrincipalType[PrincipalType[\"User\"] = 1] = \"User\";\r\n /**\r\n * Enumeration whose value specifies a distribution list as the principal type.\r\n */\r\n PrincipalType[PrincipalType[\"DistributionList\"] = 2] = \"DistributionList\";\r\n /**\r\n * Enumeration whose value specifies a security group as the principal type.\r\n */\r\n PrincipalType[PrincipalType[\"SecurityGroup\"] = 4] = \"SecurityGroup\";\r\n /**\r\n * Enumeration whose value specifies a group as the principal type.\r\n */\r\n PrincipalType[PrincipalType[\"SharePointGroup\"] = 8] = \"SharePointGroup\";\r\n /**\r\n * Enumeration whose value specifies all principal types.\r\n */\r\n PrincipalType[PrincipalType[\"All\"] = 15] = \"All\";\r\n})(PrincipalType || (PrincipalType = {}));\r\n/* tslint:enable:no-bitwise */\r\n/**\r\n * Specifies the source of a principal.\r\n */\r\n/* tslint:disable:no-bitwise */\r\nexport var PrincipalSource;\r\n(function (PrincipalSource) {\r\n /**\r\n * Enumeration whose value specifies no principal source.\r\n */\r\n PrincipalSource[PrincipalSource[\"None\"] = 0] = \"None\";\r\n /**\r\n * Enumeration whose value specifies user information list as the principal source.\r\n */\r\n PrincipalSource[PrincipalSource[\"UserInfoList\"] = 1] = \"UserInfoList\";\r\n /**\r\n * Enumeration whose value specifies Active Directory as the principal source.\r\n */\r\n PrincipalSource[PrincipalSource[\"Windows\"] = 2] = \"Windows\";\r\n /**\r\n * Enumeration whose value specifies the current membership provider as the principal source.\r\n */\r\n PrincipalSource[PrincipalSource[\"MembershipProvider\"] = 4] = \"MembershipProvider\";\r\n /**\r\n * Enumeration whose value specifies the current role provider as the principal source.\r\n */\r\n PrincipalSource[PrincipalSource[\"RoleProvider\"] = 8] = \"RoleProvider\";\r\n /**\r\n * Enumeration whose value specifies all principal sources.\r\n */\r\n PrincipalSource[PrincipalSource[\"All\"] = 15] = \"All\";\r\n})(PrincipalSource || (PrincipalSource = {}));\r\nexport var PageType;\r\n(function (PageType) {\r\n PageType[PageType[\"Invalid\"] = -1] = \"Invalid\";\r\n PageType[PageType[\"DefaultView\"] = 0] = \"DefaultView\";\r\n PageType[PageType[\"NormalView\"] = 1] = \"NormalView\";\r\n PageType[PageType[\"DialogView\"] = 2] = \"DialogView\";\r\n PageType[PageType[\"View\"] = 3] = \"View\";\r\n PageType[PageType[\"DisplayForm\"] = 4] = \"DisplayForm\";\r\n PageType[PageType[\"DisplayFormDialog\"] = 5] = \"DisplayFormDialog\";\r\n PageType[PageType[\"EditForm\"] = 6] = \"EditForm\";\r\n PageType[PageType[\"EditFormDialog\"] = 7] = \"EditFormDialog\";\r\n PageType[PageType[\"NewForm\"] = 8] = \"NewForm\";\r\n PageType[PageType[\"NewFormDialog\"] = 9] = \"NewFormDialog\";\r\n PageType[PageType[\"SolutionForm\"] = 10] = \"SolutionForm\";\r\n PageType[PageType[\"PAGE_MAXITEMS\"] = 11] = \"PAGE_MAXITEMS\";\r\n})(PageType || (PageType = {}));\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "name": "./node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "index": 326, - "index2": 322, - "size": 618, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "name": "./node_modules/@pnp/sp/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/objectToSPKeyValueCollection", - "loc": "10:0-85" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./utils/objectToSPKeyValueCollection", - "loc": "10:0-85" - } - ], - "usedExports": false, - "providedExports": [ - "objectToSPKeyValueCollection" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { metadata } from \"./metadata\";\r\nimport { assign } from \"@pnp/common\";\r\n/**\r\n * Creates an object representing a SharePoint Collection(SP.KeyValue)\r\n *\r\n * @param obj The plain object defining the properties\r\n */\r\nexport function objectToSPKeyValueCollection(obj) {\r\n return assign(metadata(\"Collection(SP.KeyValue)\"), {\r\n results: Object.keys(obj).map(function (key) { return assign(metadata(\"SP.KeyValue\"), {\r\n Key: key,\r\n Value: Reflect.get(obj, key),\r\n ValueType: \"Edm.String\",\r\n }); }),\r\n });\r\n}\r\n//# sourceMappingURL=objectToSPKeyValueCollection.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/file-names.js", - "name": "./node_modules/@pnp/sp/utils/file-names.js", - "index": 327, - "index2": 323, - "size": 1442, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "name": "./node_modules/@pnp/sp/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/file-names", - "loc": "11:0-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./utils/file-names", - "loc": "11:0-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "module": "./node_modules/@pnp/sp/index.js", - "moduleName": "./node_modules/@pnp/sp/index.js", - "type": "harmony export imported specifier", - "userRequest": "./utils/file-names", - "loc": "11:0-98" - } - ], - "usedExports": false, - "providedExports": [ - "containsInvalidFileFolderChars", - "stripInvalidFileFolderChars" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var InvalidFileFolderNameCharsOnlineRegex = /[\"*:<>?/\\\\|\\x00-\\x1f\\x7f-\\x9f]/g;\r\nvar InvalidFileFolderNameCharsOnPremiseRegex = /[\"#%*:<>?/\\\\|\\x00-\\x1f\\x7f-\\x9f]/g;\r\n/**\r\n * Checks if file or folder name contains invalid characters\r\n *\r\n * @param input File or folder name to check\r\n * @param onPremise Set to true for SharePoint On-Premise\r\n * @returns True if contains invalid chars, false otherwise\r\n */\r\nexport function containsInvalidFileFolderChars(input, onPremise) {\r\n if (onPremise === void 0) { onPremise = false; }\r\n if (onPremise) {\r\n return InvalidFileFolderNameCharsOnPremiseRegex.test(input);\r\n }\r\n else {\r\n return InvalidFileFolderNameCharsOnlineRegex.test(input);\r\n }\r\n}\r\n/**\r\n * Removes invalid characters from file or folder name\r\n *\r\n * @param input File or folder name\r\n * @param replacer Value that will replace invalid characters\r\n * @param onPremise Set to true for SharePoint On-Premise\r\n * @returns File or folder name with replaced invalid characters\r\n */\r\nexport function stripInvalidFileFolderChars(input, replacer, onPremise) {\r\n if (replacer === void 0) { replacer = \"\"; }\r\n if (onPremise === void 0) { onPremise = false; }\r\n if (onPremise) {\r\n return input.replace(InvalidFileFolderNameCharsOnPremiseRegex, replacer);\r\n }\r\n else {\r\n return input.replace(InvalidFileFolderNameCharsOnlineRegex, replacer);\r\n }\r\n}\r\n//# sourceMappingURL=file-names.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js", - "index": 329, - "index2": 329, - "size": 12924, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/webs/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "module": "./node_modules/@pnp/sp/webs/index.js", - "moduleName": "./node_modules/@pnp/sp/webs/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "1:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony side effect evaluation", - "userRequest": "../webs/types", - "loc": "2:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "module": "./node_modules/@pnp/sp/webs/index.js", - "moduleName": "./node_modules/@pnp/sp/webs/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "3:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "module": "./node_modules/@pnp/sp/webs/index.js", - "moduleName": "./node_modules/@pnp/sp/webs/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "3:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "module": "./node_modules/@pnp/sp/webs/index.js", - "moduleName": "./node_modules/@pnp/sp/webs/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "3:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony side effect evaluation", - "userRequest": "../webs/types", - "loc": "3:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../webs/types", - "loc": "4:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "4:8-12" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "5:8-12" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "8:8-12" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "module": "./node_modules/@pnp/sp/webs/index.js", - "moduleName": "./node_modules/@pnp/sp/webs/index.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "8:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "9:8-12" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "10:8-12" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "11:8-12" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "12:0-4" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "15:0-4" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "20:56-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "26:33-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "43:60-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "147:33-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../webs/types", - "loc": "164:37-40" - } - ], - "usedExports": [ - "Web", - "_Web" - ], - "providedExports": [ - "_Webs", - "Webs", - "_Web", - "Web" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __decorate, __extends, __generator } from \"tslib\";\r\nimport { assign } from \"@pnp/common\";\r\nimport { body, headers } from \"@pnp/odata\";\r\nimport { _SharePointQueryableInstance, SharePointQueryableCollection, _SharePointQueryableCollection, spInvokableFactory, SharePointQueryableInstance, deleteable, } from \"../sharepointqueryable\";\r\nimport { defaultPath } from \"../decorators\";\r\nimport { odataUrlFrom } from \"../odata\";\r\nimport { SPBatch } from \"../batch\";\r\nimport { metadata } from \"../utils/metadata\";\r\nimport { Site } from \"../sites\";\r\nimport { spPost, spGet } from \"../operations\";\r\nimport { escapeQueryStrValue } from \"../utils/escapeQueryStrValue\";\r\nimport { tag } from \"../telemetry\";\r\nvar _Webs = /** @class */ (function (_super) {\r\n __extends(_Webs, _super);\r\n function _Webs() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Adds a new web to the collection\r\n *\r\n * @param title The new web's title\r\n * @param url The new web's relative url\r\n * @param description The new web's description\r\n * @param template The new web's template internal name (default = STS)\r\n * @param language The locale id that specifies the new web's language (default = 1033 [English, US])\r\n * @param inheritPermissions When true, permissions will be inherited from the new web's parent (default = true)\r\n */\r\n _Webs.prototype.add = function (title, url, description, template, language, inheritPermissions) {\r\n if (description === void 0) { description = \"\"; }\r\n if (template === void 0) { template = \"STS\"; }\r\n if (language === void 0) { language = 1033; }\r\n if (inheritPermissions === void 0) { inheritPermissions = true; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var postBody, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n postBody = body({\r\n \"parameters\": assign(metadata(\"SP.WebCreationInformation\"), {\r\n Description: description,\r\n Language: language,\r\n Title: title,\r\n Url: url,\r\n UseSamePermissionsAsParentSite: inheritPermissions,\r\n WebTemplate: template,\r\n }),\r\n });\r\n return [4 /*yield*/, spPost(this.clone(Webs, \"add\"), postBody)];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n web: Web(odataUrlFrom(data).replace(/_api\\/web\\/?/i, \"\")),\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n __decorate([\r\n tag(\"ws.add\")\r\n ], _Webs.prototype, \"add\", null);\r\n _Webs = __decorate([\r\n defaultPath(\"webs\")\r\n ], _Webs);\r\n return _Webs;\r\n}(_SharePointQueryableCollection));\r\nexport { _Webs };\r\nexport var Webs = spInvokableFactory(_Webs);\r\n/**\r\n * Describes a web\r\n *\r\n */\r\nvar _Web = /** @class */ (function (_super) {\r\n __extends(_Web, _super);\r\n function _Web() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this.delete = deleteable(\"w\");\r\n return _this;\r\n }\r\n Object.defineProperty(_Web.prototype, \"webs\", {\r\n /**\r\n * Gets this web's subwebs\r\n *\r\n */\r\n get: function () {\r\n return Webs(this);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Gets this web's parent web and data\r\n *\r\n */\r\n _Web.prototype.getParentWeb = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var ParentWeb;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, spGet(this.select(\"ParentWeb/Id\").expand(\"ParentWeb\"))];\r\n case 1:\r\n ParentWeb = (_a.sent()).ParentWeb;\r\n return [2 /*return*/, ParentWeb ? Site(this.parentUrl).openWebById(ParentWeb.Id) : null];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Returns a collection of objects that contain metadata about subsites of the current site in which the current user is a member.\r\n *\r\n * @param nWebTemplateFilter Specifies the site definition (default = -1)\r\n * @param nConfigurationFilter A 16-bit integer that specifies the identifier of a configuration (default = -1)\r\n */\r\n _Web.prototype.getSubwebsFilteredForCurrentUser = function (nWebTemplateFilter, nConfigurationFilter) {\r\n if (nWebTemplateFilter === void 0) { nWebTemplateFilter = -1; }\r\n if (nConfigurationFilter === void 0) { nConfigurationFilter = -1; }\r\n var o = this.clone(Webs, \"getSubwebsFilteredForCurrentUser(nWebTemplateFilter=\" + nWebTemplateFilter + \",nConfigurationFilter=\" + nConfigurationFilter + \")\");\r\n return tag.configure(o, \"w.getSubwebsFilteredForCurrentUser\");\r\n };\r\n Object.defineProperty(_Web.prototype, \"allProperties\", {\r\n /**\r\n * Allows access to the web's all properties collection\r\n */\r\n get: function () {\r\n return tag.configure(this.clone(SharePointQueryableInstance, \"allproperties\"), \"w.allprops\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_Web.prototype, \"webinfos\", {\r\n /**\r\n * Gets a collection of WebInfos for this web's subwebs\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryableCollection(this, \"webinfos\"), \"w.webinfos\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Creates a new batch for requests within the context of this web\r\n *\r\n */\r\n _Web.prototype.createBatch = function () {\r\n return new SPBatch(this.parentUrl);\r\n };\r\n /**\r\n * Updates this web instance with the supplied properties\r\n *\r\n * @param properties A plain object hash of values to update for the web\r\n */\r\n _Web.prototype.update = function (properties) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var postBody, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n postBody = body(assign(metadata(\"SP.Web\"), properties), headers({ \"X-HTTP-Method\": \"MERGE\" }));\r\n return [4 /*yield*/, spPost(this, postBody)];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, { data: data, web: this }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Applies the theme specified by the contents of each of the files specified in the arguments to the site\r\n *\r\n * @param colorPaletteUrl The server-relative URL of the color palette file\r\n * @param fontSchemeUrl The server-relative URL of the font scheme\r\n * @param backgroundImageUrl The server-relative URL of the background image\r\n * @param shareGenerated When true, the generated theme files are stored in the root site. When false, they are stored in this web\r\n */\r\n _Web.prototype.applyTheme = function (colorPaletteUrl, fontSchemeUrl, backgroundImageUrl, shareGenerated) {\r\n var postBody = body({\r\n backgroundImageUrl: backgroundImageUrl,\r\n colorPaletteUrl: colorPaletteUrl,\r\n fontSchemeUrl: fontSchemeUrl,\r\n shareGenerated: shareGenerated,\r\n });\r\n return spPost(this.clone(Web, \"applytheme\"), postBody);\r\n };\r\n /**\r\n * Applies the specified site definition or site template to the Web site that has no template applied to it\r\n *\r\n * @param template Name of the site definition or the name of the site template\r\n */\r\n _Web.prototype.applyWebTemplate = function (template) {\r\n var q = this.clone(Web, \"applywebtemplate\");\r\n q.concat(\"(webTemplate='\" + escapeQueryStrValue(template) + \"')\");\r\n return spPost(q);\r\n };\r\n /**\r\n * Returns a collection of site templates available for the site\r\n *\r\n * @param language The locale id of the site templates to retrieve (default = 1033 [English, US])\r\n * @param includeCrossLanguage When true, includes language-neutral site templates; otherwise false (default = true)\r\n */\r\n _Web.prototype.availableWebTemplates = function (language, includeCrossLanugage) {\r\n if (language === void 0) { language = 1033; }\r\n if (includeCrossLanugage === void 0) { includeCrossLanugage = true; }\r\n var path = \"getavailablewebtemplates(lcid=\" + language + \", doincludecrosslanguage=\" + includeCrossLanugage + \")\";\r\n return tag.configure(SharePointQueryableCollection(this, path), \"w.availableWebTemplates\");\r\n };\r\n /**\r\n * Returns the collection of changes from the change log that have occurred within the list, based on the specified query\r\n *\r\n * @param query The change query\r\n */\r\n _Web.prototype.getChanges = function (query) {\r\n var postBody = body({ \"query\": assign(metadata(\"SP.ChangeQuery\"), query) });\r\n return spPost(this.clone(Web, \"getchanges\"), postBody);\r\n };\r\n /**\r\n * Returns the name of the image file for the icon that is used to represent the specified file\r\n *\r\n * @param filename The file name. If this parameter is empty, the server returns an empty string\r\n * @param size The size of the icon: 16x16 pixels = 0, 32x32 pixels = 1 (default = 0)\r\n * @param progId The ProgID of the application that was used to create the file, in the form OLEServerName.ObjectName\r\n */\r\n _Web.prototype.mapToIcon = function (filename, size, progId) {\r\n if (size === void 0) { size = 0; }\r\n if (progId === void 0) { progId = \"\"; }\r\n return spGet(this.clone(Web, \"maptoicon(filename='\" + escapeQueryStrValue(filename) + \"', progid='\" + escapeQueryStrValue(progId) + \"', size=\" + size + \")\"));\r\n };\r\n /**\r\n * Returns the tenant property corresponding to the specified key in the app catalog site\r\n *\r\n * @param key Id of storage entity to be set\r\n */\r\n _Web.prototype.getStorageEntity = function (key) {\r\n return spGet(this.clone(Web, \"getStorageEntity('\" + escapeQueryStrValue(key) + \"')\"));\r\n };\r\n /**\r\n * This will set the storage entity identified by the given key (MUST be called in the context of the app catalog)\r\n *\r\n * @param key Id of storage entity to be set\r\n * @param value Value of storage entity to be set\r\n * @param description Description of storage entity to be set\r\n * @param comments Comments of storage entity to be set\r\n */\r\n _Web.prototype.setStorageEntity = function (key, value, description, comments) {\r\n if (description === void 0) { description = \"\"; }\r\n if (comments === void 0) { comments = \"\"; }\r\n return spPost(this.clone(Web, \"setStorageEntity\"), body({\r\n comments: comments,\r\n description: description,\r\n key: key,\r\n value: value,\r\n }));\r\n };\r\n /**\r\n * This will remove the storage entity identified by the given key\r\n *\r\n * @param key Id of storage entity to be removed\r\n */\r\n _Web.prototype.removeStorageEntity = function (key) {\r\n return spPost(this.clone(Web, \"removeStorageEntity('\" + escapeQueryStrValue(key) + \"')\"));\r\n };\r\n __decorate([\r\n tag(\"w.getParentWeb\")\r\n ], _Web.prototype, \"getParentWeb\", null);\r\n __decorate([\r\n tag(\"w.update\")\r\n ], _Web.prototype, \"update\", null);\r\n __decorate([\r\n tag(\"w.applyTheme\")\r\n ], _Web.prototype, \"applyTheme\", null);\r\n __decorate([\r\n tag(\"w.applyWebTemplate\")\r\n ], _Web.prototype, \"applyWebTemplate\", null);\r\n __decorate([\r\n tag(\"w.getChanges\")\r\n ], _Web.prototype, \"getChanges\", null);\r\n __decorate([\r\n tag(\"w.mapToIcon\")\r\n ], _Web.prototype, \"mapToIcon\", null);\r\n __decorate([\r\n tag(\"w.getStorageEntity\")\r\n ], _Web.prototype, \"getStorageEntity\", null);\r\n __decorate([\r\n tag(\"w.setStorageEntity\")\r\n ], _Web.prototype, \"setStorageEntity\", null);\r\n __decorate([\r\n tag(\"w.removeStorageEntity\")\r\n ], _Web.prototype, \"removeStorageEntity\", null);\r\n _Web = __decorate([\r\n defaultPath(\"_api/web\")\r\n ], _Web);\r\n return _Web;\r\n}(_SharePointQueryableInstance));\r\nexport { _Web };\r\nexport var Web = spInvokableFactory(_Web);\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "name": "./node_modules/@pnp/sp/lists/types.js", - "index": 336, - "index2": 332, - "size": 23262, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/views/list.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "name": "./node_modules/@pnp/sp/views/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "name": "./node_modules/@pnp/sp/views/list.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "module": "./node_modules/@pnp/sp/lists/index.js", - "moduleName": "./node_modules/@pnp/sp/lists/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony side effect evaluation", - "userRequest": "../lists/types", - "loc": "2:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "module": "./node_modules/@pnp/sp/items/list.js", - "moduleName": "./node_modules/@pnp/sp/items/list.js", - "type": "harmony side effect evaluation", - "userRequest": "../lists/types", - "loc": "2:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "module": "./node_modules/@pnp/sp/lists/index.js", - "moduleName": "./node_modules/@pnp/sp/lists/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "2:0-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "module": "./node_modules/@pnp/sp/lists/index.js", - "moduleName": "./node_modules/@pnp/sp/lists/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "module": "./node_modules/@pnp/sp/lists/index.js", - "moduleName": "./node_modules/@pnp/sp/lists/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "module": "./node_modules/@pnp/sp/lists/index.js", - "moduleName": "./node_modules/@pnp/sp/lists/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/list.js", - "module": "./node_modules/@pnp/sp/fields/list.js", - "moduleName": "./node_modules/@pnp/sp/fields/list.js", - "type": "harmony side effect evaluation", - "userRequest": "../lists/types", - "loc": "2:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "4:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../lists/types", - "loc": "4:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony import specifier", - "userRequest": "../lists/types", - "loc": "4:8-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "module": "./node_modules/@pnp/sp/items/list.js", - "moduleName": "./node_modules/@pnp/sp/items/list.js", - "type": "harmony import specifier", - "userRequest": "../lists/types", - "loc": "4:8-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/list.js", - "module": "./node_modules/@pnp/sp/fields/list.js", - "moduleName": "./node_modules/@pnp/sp/fields/list.js", - "type": "harmony import specifier", - "userRequest": "../lists/types", - "loc": "4:8-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony import specifier", - "userRequest": "../lists/types", - "loc": "5:8-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony import specifier", - "userRequest": "../lists/types", - "loc": "6:0-5" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "8:23-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "9:34-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "10:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "13:11-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "23:42-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../lists/types", - "loc": "146:27-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../lists/types", - "loc": "242:34-38" - } - ], - "usedExports": [ - "_List", - "List", - "Lists" - ], - "providedExports": [ - "_Lists", - "Lists", - "_List", - "List", - "RenderListDataOptions", - "ControlMode" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __decorate, __extends, __generator } from \"tslib\";\r\nimport { assign, hOP, isArray, objectDefinedNotNull } from \"@pnp/common\";\r\nimport { body, headers } from \"@pnp/odata\";\r\nimport { SharePointQueryable, SharePointQueryableCollection, _SharePointQueryableInstance, _SharePointQueryableCollection, spInvokableFactory, deleteableWithETag, } from \"../sharepointqueryable\";\r\nimport { odataUrlFrom } from \"../odata\";\r\nimport { metadata } from \"../utils/metadata\";\r\nimport { defaultPath } from \"../decorators\";\r\nimport { spPost } from \"../operations\";\r\nimport { escapeQueryStrValue } from \"../utils/escapeQueryStrValue\";\r\nimport { tag } from \"../telemetry\";\r\nimport { toResourcePath } from \"../utils/toResourcePath\";\r\nvar _Lists = /** @class */ (function (_super) {\r\n __extends(_Lists, _super);\r\n function _Lists() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Gets a list from the collection by guid id\r\n *\r\n * @param id The Id of the list (GUID)\r\n */\r\n _Lists.prototype.getById = function (id) {\r\n return tag.configure(List(this).concat(\"('\" + id + \"')\"), \"ls.getById\");\r\n };\r\n /**\r\n * Gets a list from the collection by title\r\n *\r\n * @param title The title of the list\r\n */\r\n _Lists.prototype.getByTitle = function (title) {\r\n return tag.configure(List(this, \"getByTitle('\" + escapeQueryStrValue(title) + \"')\"), \"ls.getByTitle\");\r\n };\r\n /**\r\n * Adds a new list to the collection\r\n *\r\n * @param title The new list's title\r\n * @param description The new list's description\r\n * @param template The list template value\r\n * @param enableContentTypes If true content types will be allowed and enabled, otherwise they will be disallowed and not enabled\r\n * @param additionalSettings Will be passed as part of the list creation body\r\n */\r\n _Lists.prototype.add = function (title, desc, template, enableContentTypes, additionalSettings) {\r\n if (desc === void 0) { desc = \"\"; }\r\n if (template === void 0) { template = 100; }\r\n if (enableContentTypes === void 0) { enableContentTypes = false; }\r\n if (additionalSettings === void 0) { additionalSettings = {}; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var addSettings, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n addSettings = Object.assign({\r\n \"AllowContentTypes\": enableContentTypes,\r\n \"BaseTemplate\": template,\r\n \"ContentTypesEnabled\": enableContentTypes,\r\n \"Description\": desc,\r\n \"Title\": title,\r\n }, metadata(\"SP.List\"), additionalSettings);\r\n return [4 /*yield*/, spPost(this, body(addSettings))];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, { data: data, list: this.getByTitle(addSettings.Title) }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Ensures that the specified list exists in the collection (note: this method not supported for batching)\r\n *\r\n * @param title The new list's title\r\n * @param desc The new list's description\r\n * @param template The list template value\r\n * @param enableContentTypes If true content types will be allowed and enabled, otherwise they will be disallowed and not enabled\r\n * @param additionalSettings Will be passed as part of the list creation body or used to update an existing list\r\n */\r\n _Lists.prototype.ensure = function (title, desc, template, enableContentTypes, additionalSettings) {\r\n if (desc === void 0) { desc = \"\"; }\r\n if (template === void 0) { template = 100; }\r\n if (enableContentTypes === void 0) { enableContentTypes = false; }\r\n if (additionalSettings === void 0) { additionalSettings = {}; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var addOrUpdateSettings, list, data, e_1, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n if (this.hasBatch) {\r\n throw Error(\"The ensure list method is not supported for use in a batch.\");\r\n }\r\n addOrUpdateSettings = assign(additionalSettings, { Title: title, Description: desc, ContentTypesEnabled: enableContentTypes }, true);\r\n list = this.getByTitle(addOrUpdateSettings.Title);\r\n _a.label = 1;\r\n case 1:\r\n _a.trys.push([1, 4, , 6]);\r\n // this will throw if the list doesn't exist\r\n return [4 /*yield*/, list.select(\"Title\")()];\r\n case 2:\r\n // this will throw if the list doesn't exist\r\n _a.sent();\r\n return [4 /*yield*/, list.update(addOrUpdateSettings).then(function (r) { return r.data; })];\r\n case 3:\r\n data = _a.sent();\r\n return [2 /*return*/, { created: false, data: data, list: this.getByTitle(addOrUpdateSettings.Title) }];\r\n case 4:\r\n e_1 = _a.sent();\r\n return [4 /*yield*/, this.add(title, desc, template, enableContentTypes, addOrUpdateSettings).then(function (r) { return r.data; })];\r\n case 5:\r\n data = _a.sent();\r\n return [2 /*return*/, { created: true, data: data, list: this.getByTitle(addOrUpdateSettings.Title) }];\r\n case 6: return [2 /*return*/];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Gets a list that is the default asset location for images or other files, which the users upload to their wiki pages.\r\n */\r\n _Lists.prototype.ensureSiteAssetsLibrary = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var json;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, spPost(this.clone(Lists, \"ensuresiteassetslibrary\"))];\r\n case 1:\r\n json = _a.sent();\r\n return [2 /*return*/, List(odataUrlFrom(json))];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Gets a list that is the default location for wiki pages.\r\n */\r\n _Lists.prototype.ensureSitePagesLibrary = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var json;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, spPost(this.clone(Lists, \"ensuresitepageslibrary\"))];\r\n case 1:\r\n json = _a.sent();\r\n return [2 /*return*/, List(odataUrlFrom(json))];\r\n }\r\n });\r\n });\r\n };\r\n __decorate([\r\n tag(\"ls.add\")\r\n ], _Lists.prototype, \"add\", null);\r\n __decorate([\r\n tag(\"ls.ensure\")\r\n ], _Lists.prototype, \"ensure\", null);\r\n __decorate([\r\n tag(\"ls.ensureSiteAssetsLibrary\")\r\n ], _Lists.prototype, \"ensureSiteAssetsLibrary\", null);\r\n __decorate([\r\n tag(\"ls.ensureSitePagesLibrary\")\r\n ], _Lists.prototype, \"ensureSitePagesLibrary\", null);\r\n _Lists = __decorate([\r\n defaultPath(\"lists\")\r\n ], _Lists);\r\n return _Lists;\r\n}(_SharePointQueryableCollection));\r\nexport { _Lists };\r\nexport var Lists = spInvokableFactory(_Lists);\r\nvar _List = /** @class */ (function (_super) {\r\n __extends(_List, _super);\r\n function _List() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this.delete = deleteableWithETag(\"l\");\r\n return _this;\r\n }\r\n Object.defineProperty(_List.prototype, \"effectiveBasePermissions\", {\r\n /**\r\n * Gets the effective base permissions of this list\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryable(this, \"EffectiveBasePermissions\"), \"l.effectiveBasePermissions\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_List.prototype, \"eventReceivers\", {\r\n /**\r\n * Gets the event receivers attached to this list\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryableCollection(this, \"EventReceivers\"), \"l.eventReceivers\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_List.prototype, \"relatedFields\", {\r\n /**\r\n * Gets the related fields of this list\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryable(this, \"getRelatedFields\"), \"l.relatedFields\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_List.prototype, \"informationRightsManagementSettings\", {\r\n /**\r\n * Gets the IRM settings for this list\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryable(this, \"InformationRightsManagementSettings\"), \"l.informationRightsManagementSettings\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Updates this list intance with the supplied properties\r\n *\r\n * @param properties A plain object hash of values to update for the list\r\n * @param eTag Value used in the IF-Match header, by default \"*\"\r\n */\r\n _List.prototype.update = function (properties, eTag) {\r\n if (eTag === void 0) { eTag = \"*\"; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var postBody, data, list;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n postBody = body(assign(metadata(\"SP.List\"), properties), headers({\r\n \"IF-Match\": eTag,\r\n \"X-HTTP-Method\": \"MERGE\",\r\n }));\r\n return [4 /*yield*/, spPost(this, postBody)];\r\n case 1:\r\n data = _a.sent();\r\n list = this;\r\n if (hOP(properties, \"Title\")) {\r\n list = this.getParent(List, this.parentUrl, \"getByTitle('\" + properties.Title + \"')\");\r\n }\r\n return [2 /*return*/, {\r\n data: data,\r\n list: list,\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Returns the collection of changes from the change log that have occurred within the list, based on the specified query.\r\n * @param query A query that is performed against the change log.\r\n */\r\n _List.prototype.getChanges = function (query) {\r\n return spPost(this.clone(List, \"getchanges\"), body({ query: assign(metadata(\"SP.ChangeQuery\"), query) }));\r\n };\r\n /**\r\n * Returns the collection of items in the list based on the provided CamlQuery\r\n * @param query A query that is performed against the list\r\n * @param expands An expanded array of n items that contains fields to expand in the CamlQuery\r\n */\r\n _List.prototype.getItemsByCAMLQuery = function (query) {\r\n var expands = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n expands[_i - 1] = arguments[_i];\r\n }\r\n var q = this.clone(List, \"getitems\");\r\n return spPost(q.expand.apply(q, expands), body({ query: assign(metadata(\"SP.CamlQuery\"), query) }));\r\n };\r\n /**\r\n * See: https://msdn.microsoft.com/en-us/library/office/dn292554.aspx\r\n * @param query An object that defines the change log item query\r\n */\r\n _List.prototype.getListItemChangesSinceToken = function (query) {\r\n var o = this.clone(List, \"getlistitemchangessincetoken\").usingParser({ parse: function (r) { return r.text(); } });\r\n return spPost(o, body({ \"query\": assign(metadata(\"SP.ChangeLogItemQuery\"), query) }));\r\n };\r\n /**\r\n * Moves the list to the Recycle Bin and returns the identifier of the new Recycle Bin item.\r\n */\r\n _List.prototype.recycle = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, spPost(this.clone(List, \"recycle\"))];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, hOP(data, \"Recycle\") ? data.Recycle : data];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Renders list data based on the view xml provided\r\n * @param viewXml A string object representing a view xml\r\n */\r\n _List.prototype.renderListData = function (viewXml) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var q, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n q = this.clone(List, \"renderlistdata(@viewXml)\");\r\n q.query.set(\"@viewXml\", \"'\" + viewXml + \"'\");\r\n return [4 /*yield*/, spPost(q)];\r\n case 1:\r\n data = _a.sent();\r\n // data will be a string, so we parse it again\r\n return [2 /*return*/, JSON.parse(hOP(data, \"RenderListData\") ? data.RenderListData : data)];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Returns the data for the specified query view\r\n *\r\n * @param parameters The parameters to be used to render list data as JSON string.\r\n * @param overrideParameters The parameters that are used to override and extend the regular SPRenderListDataParameters.\r\n * @param queryParams Allows setting of query parameters\r\n */\r\n _List.prototype.renderListDataAsStream = function (parameters, overrideParameters, queryParams) {\r\n if (overrideParameters === void 0) { overrideParameters = null; }\r\n if (queryParams === void 0) { queryParams = new Map(); }\r\n if (hOP(parameters, \"RenderOptions\") && isArray(parameters.RenderOptions)) {\r\n parameters.RenderOptions = parameters.RenderOptions.reduce(function (v, c) { return v + c; });\r\n }\r\n var bodyOptions = { parameters: assign(metadata(\"SP.RenderListDataParameters\"), parameters) };\r\n if (objectDefinedNotNull(overrideParameters)) {\r\n bodyOptions = assign(bodyOptions, { overrideParameters: assign(metadata(\"SP.RenderListDataOverrideParameters\"), overrideParameters) });\r\n }\r\n var clone = this.clone(List, \"RenderListDataAsStream\", true, true);\r\n return spPost(clone, body(bodyOptions));\r\n };\r\n /**\r\n * Gets the field values and field schema attributes for a list item.\r\n * @param itemId Item id of the item to render form data for\r\n * @param formId The id of the form\r\n * @param mode Enum representing the control mode of the form (Display, Edit, New)\r\n */\r\n _List.prototype.renderListFormData = function (itemId, formId, mode) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, spPost(this.clone(List, \"renderlistformdata(itemid=\" + itemId + \", formid='\" + formId + \"', mode='\" + mode + \"')\"))];\r\n case 1:\r\n data = _a.sent();\r\n // data will be a string, so we parse it again\r\n return [2 /*return*/, JSON.parse(hOP(data, \"RenderListFormData\") ? data.RenderListFormData : data)];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Reserves a list item ID for idempotent list item creation.\r\n */\r\n _List.prototype.reserveListItemId = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, spPost(this.clone(List, \"reservelistitemid\"))];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, hOP(data, \"ReserveListItemId\") ? data.ReserveListItemId : data];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Returns the ListItemEntityTypeFullName for this list, used when adding/updating list items. Does not support batching.\r\n */\r\n _List.prototype.getListItemEntityTypeFullName = function () {\r\n return this.clone(List, null, false).select(\"ListItemEntityTypeFullName\").get().then(function (o) { return o.ListItemEntityTypeFullName; });\r\n };\r\n /**\r\n * Creates an item using path (in a folder), validates and sets its field values.\r\n *\r\n * @param formValues The fields to change and their new values.\r\n * @param decodedUrl Path decoded url; folder's server relative path.\r\n * @param bNewDocumentUpdate true if the list item is a document being updated after upload; otherwise false.\r\n * @param checkInComment Optional check in comment.\r\n * @param additionalProps Optional set of additional properties LeafName new document file name,\r\n */\r\n _List.prototype.addValidateUpdateItemUsingPath = function (formValues, decodedUrl, bNewDocumentUpdate, checkInComment, additionalProps) {\r\n if (bNewDocumentUpdate === void 0) { bNewDocumentUpdate = false; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var addProps, res;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n addProps = {\r\n FolderPath: toResourcePath(decodedUrl),\r\n };\r\n if (objectDefinedNotNull(additionalProps)) {\r\n if (additionalProps.leafName) {\r\n addProps.LeafName = toResourcePath(additionalProps.leafName);\r\n }\r\n if (additionalProps.objectType) {\r\n addProps.UnderlyingObjectType = additionalProps.objectType;\r\n }\r\n }\r\n return [4 /*yield*/, spPost(this.clone(List, \"AddValidateUpdateItemUsingPath()\"), body({\r\n bNewDocumentUpdate: bNewDocumentUpdate,\r\n checkInComment: checkInComment,\r\n formValues: formValues,\r\n listItemCreateInfo: assign(metadata(\"SP.ListItemCreationInformationUsingPath\"), addProps),\r\n }))];\r\n case 1:\r\n res = _a.sent();\r\n return [2 /*return*/, hOP(res, \"AddValidateUpdateItemUsingPath\") ? res.AddValidateUpdateItemUsingPath : res];\r\n }\r\n });\r\n });\r\n };\r\n __decorate([\r\n tag(\"l.update\")\r\n ], _List.prototype, \"update\", null);\r\n __decorate([\r\n tag(\"l.getChanges\")\r\n ], _List.prototype, \"getChanges\", null);\r\n __decorate([\r\n tag(\"l.CAMLQuery\")\r\n ], _List.prototype, \"getItemsByCAMLQuery\", null);\r\n __decorate([\r\n tag(\"l.ChangesSinceToken\")\r\n ], _List.prototype, \"getListItemChangesSinceToken\", null);\r\n __decorate([\r\n tag(\"l.recycle\")\r\n ], _List.prototype, \"recycle\", null);\r\n __decorate([\r\n tag(\"l.renderListData\")\r\n ], _List.prototype, \"renderListData\", null);\r\n __decorate([\r\n tag(\"l.AsStream\")\r\n ], _List.prototype, \"renderListDataAsStream\", null);\r\n __decorate([\r\n tag(\"l.renderListFormData\")\r\n ], _List.prototype, \"renderListFormData\", null);\r\n __decorate([\r\n tag(\"l.reserveListItemId\")\r\n ], _List.prototype, \"reserveListItemId\", null);\r\n __decorate([\r\n tag(\"l.getListItemEntityTypeFullName\")\r\n ], _List.prototype, \"getListItemEntityTypeFullName\", null);\r\n __decorate([\r\n tag(\"l.addValidateUpdateItemUsingPath\")\r\n ], _List.prototype, \"addValidateUpdateItemUsingPath\", null);\r\n return _List;\r\n}(_SharePointQueryableInstance));\r\nexport { _List };\r\nexport var List = spInvokableFactory(_List);\r\n/**\r\n * Enum representing the options of the RenderOptions property on IRenderListDataParameters interface\r\n */\r\nexport var RenderListDataOptions;\r\n(function (RenderListDataOptions) {\r\n RenderListDataOptions[RenderListDataOptions[\"None\"] = 0] = \"None\";\r\n RenderListDataOptions[RenderListDataOptions[\"ContextInfo\"] = 1] = \"ContextInfo\";\r\n RenderListDataOptions[RenderListDataOptions[\"ListData\"] = 2] = \"ListData\";\r\n RenderListDataOptions[RenderListDataOptions[\"ListSchema\"] = 4] = \"ListSchema\";\r\n RenderListDataOptions[RenderListDataOptions[\"MenuView\"] = 8] = \"MenuView\";\r\n RenderListDataOptions[RenderListDataOptions[\"ListContentType\"] = 16] = \"ListContentType\";\r\n RenderListDataOptions[RenderListDataOptions[\"FileSystemItemId\"] = 32] = \"FileSystemItemId\";\r\n RenderListDataOptions[RenderListDataOptions[\"ClientFormSchema\"] = 64] = \"ClientFormSchema\";\r\n RenderListDataOptions[RenderListDataOptions[\"QuickLaunch\"] = 128] = \"QuickLaunch\";\r\n RenderListDataOptions[RenderListDataOptions[\"Spotlight\"] = 256] = \"Spotlight\";\r\n RenderListDataOptions[RenderListDataOptions[\"Visualization\"] = 512] = \"Visualization\";\r\n RenderListDataOptions[RenderListDataOptions[\"ViewMetadata\"] = 1024] = \"ViewMetadata\";\r\n RenderListDataOptions[RenderListDataOptions[\"DisableAutoHyperlink\"] = 2048] = \"DisableAutoHyperlink\";\r\n RenderListDataOptions[RenderListDataOptions[\"EnableMediaTAUrls\"] = 4096] = \"EnableMediaTAUrls\";\r\n RenderListDataOptions[RenderListDataOptions[\"ParentInfo\"] = 8192] = \"ParentInfo\";\r\n RenderListDataOptions[RenderListDataOptions[\"PageContextInfo\"] = 16384] = \"PageContextInfo\";\r\n RenderListDataOptions[RenderListDataOptions[\"ClientSideComponentManifest\"] = 32768] = \"ClientSideComponentManifest\";\r\n})(RenderListDataOptions || (RenderListDataOptions = {}));\r\n/**\r\n * Determines the display mode of the given control or view\r\n */\r\nexport var ControlMode;\r\n(function (ControlMode) {\r\n ControlMode[ControlMode[\"Display\"] = 1] = \"Display\";\r\n ControlMode[ControlMode[\"Edit\"] = 2] = \"Edit\";\r\n ControlMode[ControlMode[\"New\"] = 3] = \"New\";\r\n})(ControlMode || (ControlMode = {}));\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "name": "./node_modules/@pnp/sp/lists/web.js", - "index": 335, - "index2": 333, - "size": 1286, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/lists/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "name": "./node_modules/@pnp/sp/lists/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "module": "./node_modules/@pnp/sp/lists/index.js", - "moduleName": "./node_modules/@pnp/sp/lists/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./web", - "loc": "1:0-15" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { addProp } from \"@pnp/odata\";\r\nimport { _Web, Web } from \"../webs/types\";\r\nimport { Lists, List } from \"./types\";\r\nimport { odataUrlFrom } from \"../odata\";\r\nimport { SharePointQueryableCollection } from \"../sharepointqueryable\";\r\nimport { escapeQueryStrValue } from \"../utils/escapeQueryStrValue\";\r\naddProp(_Web, \"lists\", Lists);\r\naddProp(_Web, \"siteUserInfoList\", List, \"siteuserinfolist\");\r\naddProp(_Web, \"defaultDocumentLibrary\", List, \"DefaultDocumentLibrary\");\r\naddProp(_Web, \"customListTemplates\", SharePointQueryableCollection, \"getcustomlisttemplates\");\r\n_Web.prototype.getList = function (listRelativeUrl) {\r\n return List(this, \"getList('\" + escapeQueryStrValue(listRelativeUrl) + \"')\");\r\n};\r\n_Web.prototype.getCatalog = function (type) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, this.clone(Web, \"getcatalog(\" + type + \")\").select(\"Id\").get()];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, List(odataUrlFrom(data))];\r\n }\r\n });\r\n });\r\n};\r\n//# sourceMappingURL=web.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "name": "./node_modules/@pnp/sp/items/types.js", - "index": 340, - "index2": 335, - "size": 18919, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/items/list.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "module": "./node_modules/@pnp/sp/items/index.js", - "moduleName": "./node_modules/@pnp/sp/items/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "2:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "module": "./node_modules/@pnp/sp/items/index.js", - "moduleName": "./node_modules/@pnp/sp/items/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "module": "./node_modules/@pnp/sp/items/index.js", - "moduleName": "./node_modules/@pnp/sp/items/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "module": "./node_modules/@pnp/sp/items/index.js", - "moduleName": "./node_modules/@pnp/sp/items/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "module": "./node_modules/@pnp/sp/items/index.js", - "moduleName": "./node_modules/@pnp/sp/items/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "module": "./node_modules/@pnp/sp/items/index.js", - "moduleName": "./node_modules/@pnp/sp/items/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "module": "./node_modules/@pnp/sp/items/list.js", - "moduleName": "./node_modules/@pnp/sp/items/list.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "3:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "module": "./node_modules/@pnp/sp/items/list.js", - "moduleName": "./node_modules/@pnp/sp/items/list.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "4:24-29" - } - ], - "usedExports": [ - "Items" - ], - "providedExports": [ - "_Items", - "Items", - "_Item", - "Item", - "_ItemVersions", - "ItemVersions", - "_ItemVersion", - "ItemVersion", - "PagedItemCollection" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __decorate, __extends, __generator } from \"tslib\";\r\nimport { SharePointQueryable, _SharePointQueryableInstance, _SharePointQueryableCollection, SharePointQueryableInstance, spInvokableFactory, deleteableWithETag, } from \"../sharepointqueryable\";\r\nimport { assign, hOP } from \"@pnp/common\";\r\nimport { List } from \"../lists/types\";\r\nimport { ODataParser, body, headers } from \"@pnp/odata\";\r\nimport { Logger } from \"@pnp/logging\";\r\nimport { metadata } from \"../utils/metadata\";\r\nimport { defaultPath } from \"../decorators\";\r\nimport { spPost } from \"../operations\";\r\nimport { tag } from \"../telemetry\";\r\n/**\r\n * Describes a collection of Item objects\r\n *\r\n */\r\nvar _Items = /** @class */ (function (_super) {\r\n __extends(_Items, _super);\r\n function _Items() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Gets an Item by id\r\n *\r\n * @param id The integer id of the item to retrieve\r\n */\r\n _Items.prototype.getById = function (id) {\r\n return tag.configure(Item(this).concat(\"(\" + id + \")\"), \"is.getById\");\r\n };\r\n /**\r\n * Gets BCS Item by string id\r\n *\r\n * @param stringId The string id of the BCS item to retrieve\r\n */\r\n _Items.prototype.getItemByStringId = function (stringId) {\r\n // creates an item with the parent list path and append out method call\r\n return tag.configure(Item(this.parentUrl, \"getItemByStringId('\" + stringId + \"')\"), \"is.getItemByStringId\");\r\n };\r\n /**\r\n * Skips the specified number of items (https://msdn.microsoft.com/en-us/library/office/fp142385.aspx#sectionSection6)\r\n *\r\n * @param skip The starting id where the page should start, use with top to specify pages\r\n * @param reverse It true the PagedPrev=true parameter is added allowing backwards navigation in the collection\r\n */\r\n _Items.prototype.skip = function (skip, reverse) {\r\n if (reverse === void 0) { reverse = false; }\r\n if (reverse) {\r\n this.query.set(\"$skiptoken\", encodeURIComponent(\"Paged=TRUE&PagedPrev=TRUE&p_ID=\" + skip));\r\n }\r\n else {\r\n this.query.set(\"$skiptoken\", encodeURIComponent(\"Paged=TRUE&p_ID=\" + skip));\r\n }\r\n return this;\r\n };\r\n /**\r\n * Gets a collection designed to aid in paging through data\r\n *\r\n */\r\n _Items.prototype.getPaged = function () {\r\n return this.usingParser(new PagedItemCollectionParser(this))();\r\n };\r\n /**\r\n * Gets all the items in a list, regardless of count. Does not support batching or caching\r\n *\r\n * @param requestSize Number of items to return in each request (Default: 2000)\r\n * @param acceptHeader Allows for setting the value of the Accept header for SP 2013 support\r\n */\r\n _Items.prototype.getAll = function (requestSize, acceptHeader) {\r\n if (requestSize === void 0) { requestSize = 2000; }\r\n if (acceptHeader === void 0) { acceptHeader = \"application/json;odata=nometadata\"; }\r\n Logger.write(\"Calling items.getAll should be done sparingly. Ensure this is the correct choice. If you are unsure, it is not.\", 2 /* Warning */);\r\n // this will be used for the actual query\r\n // and we set no metadata here to try and reduce traffic\r\n var items = Items(this, \"\").top(requestSize).configure({\r\n headers: {\r\n \"Accept\": acceptHeader,\r\n },\r\n });\r\n // let's copy over the odata query params that can be applied\r\n // $top - allow setting the page size this way (override what we did above)\r\n // $select - allow picking the return fields (good behavior)\r\n // $filter - allow setting a filter, though this may fail due for large lists\r\n this.query.forEach(function (v, k) {\r\n if (/^\\$select|filter|top|expand$/i.test(k)) {\r\n items.query.set(k, v);\r\n }\r\n });\r\n // give back the promise\r\n return new Promise(function (resolve, reject) {\r\n // this will eventually hold the items we return\r\n var itemsCollector = [];\r\n // action that will gather up our results recursively\r\n var gatherer = function (last) {\r\n // collect that set of results\r\n [].push.apply(itemsCollector, last.results);\r\n // if we have more, repeat - otherwise resolve with the collected items\r\n if (last.hasNext) {\r\n last.getNext().then(gatherer).catch(reject);\r\n }\r\n else {\r\n resolve(itemsCollector);\r\n }\r\n };\r\n // start the cycle\r\n items.getPaged().then(gatherer).catch(reject);\r\n });\r\n };\r\n /**\r\n * Adds a new item to the collection\r\n *\r\n * @param properties The new items's properties\r\n * @param listItemEntityTypeFullName The type name of the list's entities\r\n */\r\n _Items.prototype.add = function (properties, listItemEntityTypeFullName) {\r\n if (properties === void 0) { properties = {}; }\r\n if (listItemEntityTypeFullName === void 0) { listItemEntityTypeFullName = null; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var removeDependency, listItemEntityType, postBody, promise;\r\n var _this = this;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n removeDependency = this.addBatchDependency();\r\n return [4 /*yield*/, this.ensureListItemEntityTypeName(listItemEntityTypeFullName)];\r\n case 1:\r\n listItemEntityType = _a.sent();\r\n postBody = body(assign(metadata(listItemEntityType), properties));\r\n promise = spPost(this.clone(Items, \"\"), postBody).then(function (data) {\r\n return {\r\n data: data,\r\n item: _this.getById(data.Id),\r\n };\r\n });\r\n removeDependency();\r\n return [2 /*return*/, promise];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Ensures we have the proper list item entity type name, either from the value provided or from the list\r\n *\r\n * @param candidatelistItemEntityTypeFullName The potential type name\r\n */\r\n _Items.prototype.ensureListItemEntityTypeName = function (candidatelistItemEntityTypeFullName) {\r\n return candidatelistItemEntityTypeFullName ?\r\n Promise.resolve(candidatelistItemEntityTypeFullName) :\r\n this.getParent(List).getListItemEntityTypeFullName();\r\n };\r\n __decorate([\r\n tag(\"is.getPaged\")\r\n ], _Items.prototype, \"getPaged\", null);\r\n __decorate([\r\n tag(\"is.getAll\")\r\n ], _Items.prototype, \"getAll\", null);\r\n __decorate([\r\n tag(\"is.add\")\r\n ], _Items.prototype, \"add\", null);\r\n _Items = __decorate([\r\n defaultPath(\"items\")\r\n ], _Items);\r\n return _Items;\r\n}(_SharePointQueryableCollection));\r\nexport { _Items };\r\nexport var Items = spInvokableFactory(_Items);\r\n/**\r\n * Descrines a single Item instance\r\n *\r\n */\r\nvar _Item = /** @class */ (function (_super) {\r\n __extends(_Item, _super);\r\n function _Item() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this.delete = deleteableWithETag(\"i\");\r\n return _this;\r\n }\r\n Object.defineProperty(_Item.prototype, \"effectiveBasePermissions\", {\r\n /**\r\n * Gets the effective base permissions for the item\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryable(this, \"EffectiveBasePermissions\"), \"i.effectiveBasePermissions\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_Item.prototype, \"effectiveBasePermissionsForUI\", {\r\n /**\r\n * Gets the effective base permissions for the item in a UI context\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryable(this, \"EffectiveBasePermissionsForUI\"), \"i.effectiveBasePermissionsForUI\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_Item.prototype, \"fieldValuesAsHTML\", {\r\n /**\r\n * Gets the field values for this list item in their HTML representation\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryableInstance(this, \"FieldValuesAsHTML\"), \"i.fvHTML\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_Item.prototype, \"fieldValuesAsText\", {\r\n /**\r\n * Gets the field values for this list item in their text representation\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryableInstance(this, \"FieldValuesAsText\"), \"i.fvText\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_Item.prototype, \"fieldValuesForEdit\", {\r\n /**\r\n * Gets the field values for this list item for use in editing controls\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(SharePointQueryableInstance(this, \"FieldValuesForEdit\"), \"i.fvEdit\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_Item.prototype, \"versions\", {\r\n /**\r\n * Gets the collection of versions associated with this item\r\n */\r\n get: function () {\r\n return tag.configure(ItemVersions(this), \"i.versions\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_Item.prototype, \"list\", {\r\n get: function () {\r\n return this.getParent(List, this.parentUrl.substr(0, this.parentUrl.lastIndexOf(\"/\")));\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Updates this list intance with the supplied properties\r\n *\r\n * @param properties A plain object hash of values to update for the list\r\n * @param eTag Value used in the IF-Match header, by default \"*\"\r\n * @param listItemEntityTypeFullName The type name of the list's entities\r\n */\r\n _Item.prototype.update = function (properties, eTag, listItemEntityTypeFullName) {\r\n if (eTag === void 0) { eTag = \"*\"; }\r\n if (listItemEntityTypeFullName === void 0) { listItemEntityTypeFullName = null; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var removeDependency, listItemEntityType, postBody, poster, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n removeDependency = this.addBatchDependency();\r\n return [4 /*yield*/, this.ensureListItemEntityTypeName(listItemEntityTypeFullName)];\r\n case 1:\r\n listItemEntityType = _a.sent();\r\n postBody = body(assign(metadata(listItemEntityType), properties), headers({\r\n \"IF-Match\": eTag,\r\n \"X-HTTP-Method\": \"MERGE\",\r\n }));\r\n removeDependency();\r\n poster = tag.configure(this.clone(Item).usingParser(new ItemUpdatedParser()), \"i.update\");\r\n return [4 /*yield*/, spPost(poster, postBody)];\r\n case 2:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n item: this,\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Moves the list item to the Recycle Bin and returns the identifier of the new Recycle Bin item.\r\n */\r\n _Item.prototype.recycle = function () {\r\n return spPost(this.clone(Item, \"recycle\"));\r\n };\r\n /**\r\n * Gets a string representation of the full URL to the WOPI frame.\r\n * If there is no associated WOPI application, or no associated action, an empty string is returned.\r\n *\r\n * @param action Display mode: 0: view, 1: edit, 2: mobileView, 3: interactivePreview\r\n */\r\n _Item.prototype.getWopiFrameUrl = function (action) {\r\n if (action === void 0) { action = 0; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var i, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n i = this.clone(Item, \"getWOPIFrameUrl(@action)\");\r\n i.query.set(\"@action\", action);\r\n return [4 /*yield*/, spPost(i)];\r\n case 1:\r\n data = _a.sent();\r\n // handle verbose mode\r\n if (hOP(data, \"GetWOPIFrameUrl\")) {\r\n return [2 /*return*/, data.GetWOPIFrameUrl];\r\n }\r\n return [2 /*return*/, data];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Validates and sets the values of the specified collection of fields for the list item.\r\n *\r\n * @param formValues The fields to change and their new values.\r\n * @param bNewDocumentUpdate true if the list item is a document being updated after upload; otherwise false.\r\n */\r\n _Item.prototype.validateUpdateListItem = function (formValues, bNewDocumentUpdate) {\r\n if (bNewDocumentUpdate === void 0) { bNewDocumentUpdate = false; }\r\n return spPost(this.clone(Item, \"validateupdatelistitem\"), body({ formValues: formValues, bNewDocumentUpdate: bNewDocumentUpdate }));\r\n };\r\n /**\r\n * Ensures we have the proper list item entity type name, either from the value provided or from the list\r\n *\r\n * @param candidatelistItemEntityTypeFullName The potential type name\r\n */\r\n _Item.prototype.ensureListItemEntityTypeName = function (candidatelistItemEntityTypeFullName) {\r\n return candidatelistItemEntityTypeFullName ?\r\n Promise.resolve(candidatelistItemEntityTypeFullName) :\r\n this.list.getListItemEntityTypeFullName();\r\n };\r\n __decorate([\r\n tag(\"i.recycle\")\r\n ], _Item.prototype, \"recycle\", null);\r\n __decorate([\r\n tag(\"i.getWopiFrameUrl\")\r\n ], _Item.prototype, \"getWopiFrameUrl\", null);\r\n __decorate([\r\n tag(\"i.validateUpdateListItem\")\r\n ], _Item.prototype, \"validateUpdateListItem\", null);\r\n return _Item;\r\n}(_SharePointQueryableInstance));\r\nexport { _Item };\r\nexport var Item = spInvokableFactory(_Item);\r\n/**\r\n * Describes a collection of Version objects\r\n *\r\n */\r\nvar _ItemVersions = /** @class */ (function (_super) {\r\n __extends(_ItemVersions, _super);\r\n function _ItemVersions() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Gets a version by id\r\n *\r\n * @param versionId The id of the version to retrieve\r\n */\r\n _ItemVersions.prototype.getById = function (versionId) {\r\n return tag.configure(ItemVersion(this).concat(\"(\" + versionId + \")\"), \"iv.getById\");\r\n };\r\n _ItemVersions = __decorate([\r\n defaultPath(\"versions\")\r\n ], _ItemVersions);\r\n return _ItemVersions;\r\n}(_SharePointQueryableCollection));\r\nexport { _ItemVersions };\r\nexport var ItemVersions = spInvokableFactory(_ItemVersions);\r\n/**\r\n * Describes a single Version instance\r\n *\r\n */\r\nvar _ItemVersion = /** @class */ (function (_super) {\r\n __extends(_ItemVersion, _super);\r\n function _ItemVersion() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this.delete = deleteableWithETag(\"iv\");\r\n return _this;\r\n }\r\n return _ItemVersion;\r\n}(_SharePointQueryableInstance));\r\nexport { _ItemVersion };\r\nexport var ItemVersion = spInvokableFactory(_ItemVersion);\r\n/**\r\n * Provides paging functionality for list items\r\n */\r\nvar PagedItemCollection = /** @class */ (function () {\r\n function PagedItemCollection(parent, nextUrl, results) {\r\n this.parent = parent;\r\n this.nextUrl = nextUrl;\r\n this.results = results;\r\n }\r\n Object.defineProperty(PagedItemCollection.prototype, \"hasNext\", {\r\n /**\r\n * If true there are more results available in the set, otherwise there are not\r\n */\r\n get: function () {\r\n return typeof this.nextUrl === \"string\" && this.nextUrl.length > 0;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Gets the next set of results, or resolves to null if no results are available\r\n */\r\n PagedItemCollection.prototype.getNext = function () {\r\n if (this.hasNext) {\r\n var items = tag.configure(Items(this.nextUrl, null).configureFrom(this.parent), \"ip.getNext\");\r\n return items.getPaged();\r\n }\r\n return new Promise(function (r) { return r(null); });\r\n };\r\n return PagedItemCollection;\r\n}());\r\nexport { PagedItemCollection };\r\nvar PagedItemCollectionParser = /** @class */ (function (_super) {\r\n __extends(PagedItemCollectionParser, _super);\r\n function PagedItemCollectionParser(_parent) {\r\n var _this = _super.call(this) || this;\r\n _this._parent = _parent;\r\n return _this;\r\n }\r\n PagedItemCollectionParser.prototype.parse = function (r) {\r\n var _this = this;\r\n return new Promise(function (resolve, reject) {\r\n if (_this.handleError(r, reject)) {\r\n r.json().then(function (json) {\r\n var nextUrl = hOP(json, \"d\") && hOP(json.d, \"__next\") ? json.d.__next : json[\"odata.nextLink\"];\r\n resolve(new PagedItemCollection(_this._parent, nextUrl, _this.parseODataJSON(json)));\r\n });\r\n }\r\n });\r\n };\r\n return PagedItemCollectionParser;\r\n}(ODataParser));\r\nvar ItemUpdatedParser = /** @class */ (function (_super) {\r\n __extends(ItemUpdatedParser, _super);\r\n function ItemUpdatedParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n ItemUpdatedParser.prototype.parse = function (r) {\r\n var _this = this;\r\n return new Promise(function (resolve, reject) {\r\n if (_this.handleError(r, reject)) {\r\n resolve({\r\n \"odata.etag\": r.headers.get(\"etag\"),\r\n });\r\n }\r\n });\r\n };\r\n return ItemUpdatedParser;\r\n}(ODataParser));\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js", - "index": 339, - "index2": 336, - "size": 179, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/items/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "module": "./node_modules/@pnp/sp/items/index.js", - "moduleName": "./node_modules/@pnp/sp/items/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./list", - "loc": "1:0-16" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 3, - "source": "import { addProp } from \"@pnp/odata\";\r\nimport { _List } from \"../lists/types\";\r\nimport { Items } from \"./types\";\r\naddProp(_List, \"items\", Items);\r\n//# sourceMappingURL=list.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "name": "./node_modules/@pnp/sp/views/types.js", - "index": 343, - "index2": 338, - "size": 7133, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/views/list.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "name": "./node_modules/@pnp/sp/views/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "name": "./node_modules/@pnp/sp/views/list.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "module": "./node_modules/@pnp/sp/views/index.js", - "moduleName": "./node_modules/@pnp/sp/views/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "2:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "module": "./node_modules/@pnp/sp/views/index.js", - "moduleName": "./node_modules/@pnp/sp/views/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "module": "./node_modules/@pnp/sp/views/index.js", - "moduleName": "./node_modules/@pnp/sp/views/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "module": "./node_modules/@pnp/sp/views/index.js", - "moduleName": "./node_modules/@pnp/sp/views/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "module": "./node_modules/@pnp/sp/views/index.js", - "moduleName": "./node_modules/@pnp/sp/views/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "2:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "3:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "4:24-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "5:30-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "7:11-15" - } - ], - "usedExports": [ - "Views", - "View" - ], - "providedExports": [ - "_Views", - "Views", - "_View", - "View", - "_ViewFields", - "ViewFields", - "ViewScope" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __decorate, __extends, __generator } from \"tslib\";\r\nimport { body } from \"@pnp/odata\";\r\nimport { _SharePointQueryableInstance, _SharePointQueryableCollection, spInvokableFactory, deleteable, } from \"../sharepointqueryable\";\r\nimport { metadata } from \"../utils/metadata\";\r\nimport { defaultPath } from \"../decorators\";\r\nimport { spPost } from \"../operations\";\r\nimport { tag } from \"../telemetry\";\r\nvar _Views = /** @class */ (function (_super) {\r\n __extends(_Views, _super);\r\n function _Views() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Gets a view by guid id\r\n *\r\n * @param id The GUID id of the view\r\n */\r\n _Views.prototype.getById = function (id) {\r\n return View(this).concat(\"('\" + id + \"')\");\r\n };\r\n /**\r\n * Gets a view by title (case-sensitive)\r\n *\r\n * @param title The case-sensitive title of the view\r\n */\r\n _Views.prototype.getByTitle = function (title) {\r\n return View(this, \"getByTitle('\" + title + \"')\");\r\n };\r\n /**\r\n * Adds a new view to the collection\r\n *\r\n * @param title The new views's title\r\n * @param personalView True if this is a personal view, otherwise false, default = false\r\n * @param additionalSettings Will be passed as part of the view creation body\r\n */\r\n _Views.prototype.add = function (title, personalView, additionalSettings) {\r\n if (personalView === void 0) { personalView = false; }\r\n if (additionalSettings === void 0) { additionalSettings = {}; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var postBody, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n postBody = body(Object.assign(metadata(\"SP.View\"), {\r\n \"PersonalView\": personalView,\r\n \"Title\": title,\r\n }, additionalSettings));\r\n return [4 /*yield*/, spPost(this.clone(Views, null), postBody)];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n view: this.getById(data.Id),\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n __decorate([\r\n tag(\"vs.add\")\r\n ], _Views.prototype, \"add\", null);\r\n _Views = __decorate([\r\n defaultPath(\"views\")\r\n ], _Views);\r\n return _Views;\r\n}(_SharePointQueryableCollection));\r\nexport { _Views };\r\nexport var Views = spInvokableFactory(_Views);\r\nvar _View = /** @class */ (function (_super) {\r\n __extends(_View, _super);\r\n function _View() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this.delete = deleteable(\"vw\");\r\n /**\r\n * Updates this view intance with the supplied properties\r\n *\r\n * @param properties A plain object hash of values to update for the view\r\n */\r\n _this.update = _this._update(\"SP.View\", function (data) { return ({ data: data, view: _this }); });\r\n return _this;\r\n }\r\n Object.defineProperty(_View.prototype, \"fields\", {\r\n get: function () {\r\n return ViewFields(this);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Returns the list view as HTML.\r\n *\r\n */\r\n _View.prototype.renderAsHtml = function () {\r\n return this.clone(View, \"renderashtml\")();\r\n };\r\n /**\r\n * Sets the view schema\r\n *\r\n * @param viewXml The view XML to set\r\n */\r\n _View.prototype.setViewXml = function (viewXml) {\r\n return spPost(this.clone(View, \"SetViewXml\"), body({ viewXml: viewXml }));\r\n };\r\n __decorate([\r\n tag(\"v.renderAsHtml\")\r\n ], _View.prototype, \"renderAsHtml\", null);\r\n __decorate([\r\n tag(\"v.setViewXml\")\r\n ], _View.prototype, \"setViewXml\", null);\r\n return _View;\r\n}(_SharePointQueryableInstance));\r\nexport { _View };\r\nexport var View = spInvokableFactory(_View);\r\nvar _ViewFields = /** @class */ (function (_super) {\r\n __extends(_ViewFields, _super);\r\n function _ViewFields() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Gets a value that specifies the XML schema that represents the collection.\r\n */\r\n _ViewFields.prototype.getSchemaXml = function () {\r\n return this.clone(ViewFields, \"schemaxml\")();\r\n };\r\n /**\r\n * Adds the field with the specified field internal name or display name to the collection.\r\n *\r\n * @param fieldTitleOrInternalName The case-sensitive internal name or display name of the field to add.\r\n */\r\n _ViewFields.prototype.add = function (fieldTitleOrInternalName) {\r\n return spPost(this.clone(ViewFields, \"addviewfield('\" + fieldTitleOrInternalName + \"')\"));\r\n };\r\n /**\r\n * Moves the field with the specified field internal name to the specified position in the collection.\r\n *\r\n * @param field The case-sensitive internal name of the field to move.\r\n * @param index The zero-based index of the new position for the field.\r\n */\r\n _ViewFields.prototype.move = function (field, index) {\r\n return spPost(this.clone(ViewFields, \"moveviewfieldto\"), body({ field: field, index: index }));\r\n };\r\n /**\r\n * Removes all the fields from the collection.\r\n */\r\n _ViewFields.prototype.removeAll = function () {\r\n return spPost(this.clone(ViewFields, \"removeallviewfields\"));\r\n };\r\n /**\r\n * Removes the field with the specified field internal name from the collection.\r\n *\r\n * @param fieldInternalName The case-sensitive internal name of the field to remove from the view.\r\n */\r\n _ViewFields.prototype.remove = function (fieldInternalName) {\r\n return spPost(this.clone(ViewFields, \"removeviewfield('\" + fieldInternalName + \"')\"));\r\n };\r\n __decorate([\r\n tag(\"vfs.getSchemaXml\")\r\n ], _ViewFields.prototype, \"getSchemaXml\", null);\r\n __decorate([\r\n tag(\"vfs.add\")\r\n ], _ViewFields.prototype, \"add\", null);\r\n __decorate([\r\n tag(\"vfs.move\")\r\n ], _ViewFields.prototype, \"move\", null);\r\n __decorate([\r\n tag(\"vfs.removeAll\")\r\n ], _ViewFields.prototype, \"removeAll\", null);\r\n __decorate([\r\n tag(\"vfs.remove\")\r\n ], _ViewFields.prototype, \"remove\", null);\r\n _ViewFields = __decorate([\r\n defaultPath(\"viewfields\")\r\n ], _ViewFields);\r\n return _ViewFields;\r\n}(_SharePointQueryableCollection));\r\nexport { _ViewFields };\r\nexport var ViewFields = spInvokableFactory(_ViewFields);\r\nexport var ViewScope;\r\n(function (ViewScope) {\r\n ViewScope[ViewScope[\"DefaultValue\"] = 0] = \"DefaultValue\";\r\n ViewScope[ViewScope[\"Recursive\"] = 1] = \"Recursive\";\r\n ViewScope[ViewScope[\"RecursiveAll\"] = 2] = \"RecursiveAll\";\r\n ViewScope[ViewScope[\"FilesOnly\"] = 3] = \"FilesOnly\";\r\n})(ViewScope || (ViewScope = {}));\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "name": "./node_modules/@pnp/sp/views/list.js", - "index": 342, - "index2": 339, - "size": 342, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/views/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "name": "./node_modules/@pnp/sp/views/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "module": "./node_modules/@pnp/sp/views/index.js", - "moduleName": "./node_modules/@pnp/sp/views/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./list", - "loc": "1:0-16" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 3, - "source": "import { addProp } from \"@pnp/odata\";\r\nimport { _List } from \"../lists/types\";\r\nimport { Views, View } from \"./types\";\r\naddProp(_List, \"views\", Views);\r\naddProp(_List, \"defaultView\", View, \"DefaultView\");\r\n_List.prototype.getView = function (viewId) {\r\n return View(this, \"getView('\" + viewId + \"')\");\r\n};\r\n//# sourceMappingURL=list.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "name": "./node_modules/@pnp/sp/fields/types.js", - "index": 346, - "index2": 341, - "size": 28050, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/fields/web.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "name": "./node_modules/@pnp/sp/fields/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "name": "./node_modules/@pnp/sp/fields/web.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "3:0-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/list.js", - "module": "./node_modules/@pnp/sp/fields/list.js", - "moduleName": "./node_modules/@pnp/sp/fields/list.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "3:0-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "4:0-209" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "4:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/list.js", - "module": "./node_modules/@pnp/sp/fields/list.js", - "moduleName": "./node_modules/@pnp/sp/fields/list.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "4:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "5:33-39" - } - ], - "usedExports": [ - "Fields" - ], - "providedExports": [ - "_Fields", - "Fields", - "_Field", - "Field", - "FieldTypes", - "DateTimeFieldFormatType", - "DateTimeFieldFriendlyFormatType", - "AddFieldOptions", - "CalendarType", - "UrlFieldFormatType", - "FieldUserSelectionMode", - "ChoiceFieldFormatType" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __awaiter, __decorate, __extends, __generator } from \"tslib\";\r\nimport { _SharePointQueryableInstance, _SharePointQueryableCollection, spInvokableFactory, deleteable, } from \"../sharepointqueryable\";\r\nimport { assign } from \"@pnp/common\";\r\nimport { metadata } from \"../utils/metadata\";\r\nimport { body, headers } from \"@pnp/odata\";\r\nimport { defaultPath } from \"../decorators\";\r\nimport { spPost } from \"../operations\";\r\nimport { tag } from \"../telemetry\";\r\nvar _Fields = /** @class */ (function (_super) {\r\n __extends(_Fields, _super);\r\n function _Fields() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Gets a field from the collection by id\r\n *\r\n * @param id The Id of the list\r\n */\r\n _Fields.prototype.getById = function (id) {\r\n return tag.configure(Field(this).concat(\"('\" + id + \"')\"), \"fs.getById\");\r\n };\r\n /**\r\n * Gets a field from the collection by title\r\n *\r\n * @param title The case-sensitive title of the field\r\n */\r\n _Fields.prototype.getByTitle = function (title) {\r\n return tag.configure(Field(this, \"getByTitle('\" + title + \"')\"), \"fs.getByTitle\");\r\n };\r\n /**\r\n * Gets a field from the collection by using internal name or title\r\n *\r\n * @param name The case-sensitive internal name or title of the field\r\n */\r\n _Fields.prototype.getByInternalNameOrTitle = function (name) {\r\n return tag.configure(Field(this, \"getByInternalNameOrTitle('\" + name + \"')\"), \"fs.getByInternalNameOrTitle\");\r\n };\r\n /**\r\n * Creates a field based on the specified schema\r\n *\r\n * @param xml A string or XmlSchemaFieldCreationInformation instance descrbing the field to create\r\n */\r\n _Fields.prototype.createFieldAsXml = function (xml) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var postBody, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n if (typeof xml === \"string\") {\r\n xml = { SchemaXml: xml };\r\n }\r\n postBody = body({\r\n \"parameters\": assign(metadata(\"SP.XmlSchemaFieldCreationInformation\"), xml),\r\n });\r\n return [4 /*yield*/, spPost(this.clone(Fields, \"createfieldasxml\"), postBody)];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n field: this.getById(data.Id),\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Adds a new field to the collection\r\n *\r\n * @param title The new field's title\r\n * @param fieldType The new field's type (ex: SP.FieldText)\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.add = function (title, fieldType, properties) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var postBody, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n postBody = body(Object.assign(metadata(fieldType), {\r\n \"Title\": title,\r\n }, properties));\r\n if (!tag.isTagged(this)) {\r\n tag.configure(this, \"fs.add\");\r\n }\r\n return [4 /*yield*/, spPost(this.clone(Fields, null), postBody)];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n field: this.getById(data.Id),\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Adds a new SP.FieldText to the collection\r\n *\r\n * @param title The field title\r\n * @param maxLength The maximum number of characters allowed in the value of the field.\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addText = function (title, maxLength, properties) {\r\n if (maxLength === void 0) { maxLength = 255; }\r\n var props = {\r\n FieldTypeKind: 2,\r\n MaxLength: maxLength,\r\n };\r\n return this.add(title, \"SP.FieldText\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a new SP.FieldCalculated to the collection\r\n *\r\n * @param title The field title.\r\n * @param formula The formula for the field.\r\n * @param dateFormat The date and time format that is displayed in the field.\r\n * @param outputType Specifies the output format for the field. Represents a FieldType value.\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addCalculated = function (title, formula, dateFormat, outputType, properties) {\r\n if (outputType === void 0) { outputType = FieldTypes.Text; }\r\n var props = {\r\n DateFormat: dateFormat,\r\n FieldTypeKind: 17,\r\n Formula: formula,\r\n OutputType: outputType,\r\n };\r\n return this.add(title, \"SP.FieldCalculated\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a new SP.FieldDateTime to the collection\r\n *\r\n * @param title The field title\r\n * @param displayFormat The format of the date and time that is displayed in the field.\r\n * @param calendarType Specifies the calendar type of the field.\r\n * @param friendlyDisplayFormat The type of friendly display format that is used in the field.\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addDateTime = function (title, displayFormat, calendarType, friendlyDisplayFormat, properties) {\r\n if (displayFormat === void 0) { displayFormat = DateTimeFieldFormatType.DateOnly; }\r\n if (calendarType === void 0) { calendarType = CalendarType.Gregorian; }\r\n if (friendlyDisplayFormat === void 0) { friendlyDisplayFormat = DateTimeFieldFriendlyFormatType.Unspecified; }\r\n var props = {\r\n DateTimeCalendarType: calendarType,\r\n DisplayFormat: displayFormat,\r\n FieldTypeKind: 4,\r\n FriendlyDisplayFormat: friendlyDisplayFormat,\r\n };\r\n return this.add(title, \"SP.FieldDateTime\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a new SP.FieldNumber to the collection\r\n *\r\n * @param title The field title\r\n * @param minValue The field's minimum value\r\n * @param maxValue The field's maximum value\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addNumber = function (title, minValue, maxValue, properties) {\r\n var props = { FieldTypeKind: 9 };\r\n if (minValue !== undefined) {\r\n props = assign({ MinimumValue: minValue }, props);\r\n }\r\n if (maxValue !== undefined) {\r\n props = assign({ MaximumValue: maxValue }, props);\r\n }\r\n return this.add(title, \"SP.FieldNumber\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a new SP.FieldCurrency to the collection\r\n *\r\n * @param title The field title\r\n * @param minValue The field's minimum value\r\n * @param maxValue The field's maximum value\r\n * @param currencyLocalId Specifies the language code identifier (LCID) used to format the value of the field\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addCurrency = function (title, minValue, maxValue, currencyLocalId, properties) {\r\n if (currencyLocalId === void 0) { currencyLocalId = 1033; }\r\n var props = {\r\n CurrencyLocaleId: currencyLocalId,\r\n FieldTypeKind: 10,\r\n };\r\n if (minValue !== undefined) {\r\n props = assign({ MinimumValue: minValue }, props);\r\n }\r\n if (maxValue !== undefined) {\r\n props = assign({ MaximumValue: maxValue }, props);\r\n }\r\n return this.add(title, \"SP.FieldCurrency\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a new SP.FieldMultiLineText to the collection\r\n *\r\n * @param title The field title\r\n * @param numberOfLines Specifies the number of lines of text to display for the field.\r\n * @param richText Specifies whether the field supports rich formatting.\r\n * @param restrictedMode Specifies whether the field supports a subset of rich formatting.\r\n * @param appendOnly Specifies whether all changes to the value of the field are displayed in list forms.\r\n * @param allowHyperlink Specifies whether a hyperlink is allowed as a value of the field.\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n *\r\n */\r\n _Fields.prototype.addMultilineText = function (title, numberOfLines, richText, restrictedMode, appendOnly, allowHyperlink, properties) {\r\n if (numberOfLines === void 0) { numberOfLines = 6; }\r\n if (richText === void 0) { richText = true; }\r\n if (restrictedMode === void 0) { restrictedMode = false; }\r\n if (appendOnly === void 0) { appendOnly = false; }\r\n if (allowHyperlink === void 0) { allowHyperlink = true; }\r\n var props = {\r\n AllowHyperlink: allowHyperlink,\r\n AppendOnly: appendOnly,\r\n FieldTypeKind: 3,\r\n NumberOfLines: numberOfLines,\r\n RestrictedMode: restrictedMode,\r\n RichText: richText,\r\n };\r\n return this.add(title, \"SP.FieldMultiLineText\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a new SP.FieldUrl to the collection\r\n *\r\n * @param title The field title\r\n */\r\n _Fields.prototype.addUrl = function (title, displayFormat, properties) {\r\n if (displayFormat === void 0) { displayFormat = UrlFieldFormatType.Hyperlink; }\r\n var props = {\r\n DisplayFormat: displayFormat,\r\n FieldTypeKind: 11,\r\n };\r\n return this.add(title, \"SP.FieldUrl\", assign(props, properties));\r\n };\r\n /** Adds a user field to the colleciton\r\n *\r\n * @param title The new field's title\r\n * @param selectionMode The selection mode of the field\r\n * @param selectionGroup Value that specifies the identifier of the SharePoint group whose members can be selected as values of the field\r\n * @param properties\r\n */\r\n _Fields.prototype.addUser = function (title, selectionMode, properties) {\r\n var props = {\r\n FieldTypeKind: 20,\r\n SelectionMode: selectionMode,\r\n };\r\n return this.add(title, \"SP.FieldUser\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a SP.FieldLookup to the collection\r\n *\r\n * @param title The new field's title\r\n * @param lookupListId The guid id of the list where the source of the lookup is found\r\n * @param lookupFieldName The internal name of the field in the source list\r\n * @param properties Set of additional properties to set on the new field\r\n */\r\n _Fields.prototype.addLookup = function (title, lookupListId, lookupFieldName, properties) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var props, postBody, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n props = assign({\r\n FieldTypeKind: 7,\r\n LookupFieldName: lookupFieldName,\r\n LookupListId: lookupListId,\r\n Title: title,\r\n }, properties);\r\n postBody = body({\r\n \"parameters\": assign(metadata(\"SP.FieldCreationInformation\"), props),\r\n });\r\n return [4 /*yield*/, spPost(this.clone(Fields, \"addfield\"), postBody)];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n field: this.getById(data.Id),\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Adds a new SP.FieldChoice to the collection\r\n *\r\n * @param title The field title.\r\n * @param choices The choices for the field.\r\n * @param format The display format of the available options for the field.\r\n * @param fillIn Specifies whether the field allows fill-in values.\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addChoice = function (title, choices, format, fillIn, properties) {\r\n if (format === void 0) { format = ChoiceFieldFormatType.Dropdown; }\r\n var props = {\r\n Choices: {\r\n results: choices,\r\n },\r\n EditFormat: format,\r\n FieldTypeKind: 6,\r\n FillInChoice: fillIn,\r\n };\r\n return this.add(title, \"SP.FieldChoice\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a new SP.FieldMultiChoice to the collection\r\n *\r\n * @param title The field title.\r\n * @param choices The choices for the field.\r\n * @param fillIn Specifies whether the field allows fill-in values.\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addMultiChoice = function (title, choices, fillIn, properties) {\r\n var props = {\r\n Choices: {\r\n results: choices,\r\n },\r\n FieldTypeKind: 15,\r\n FillInChoice: fillIn,\r\n };\r\n return this.add(title, \"SP.FieldMultiChoice\", assign(props, properties));\r\n };\r\n /**\r\n * Adds a new SP.FieldBoolean to the collection\r\n *\r\n * @param title The field title.\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addBoolean = function (title, properties) {\r\n var props = {\r\n FieldTypeKind: 8,\r\n };\r\n return this.add(title, \"SP.Field\", assign(props, properties));\r\n };\r\n /**\r\n * Creates a secondary (dependent) lookup field, based on the Id of the primary lookup field.\r\n *\r\n * @param displayName The display name of the new field.\r\n * @param primaryLookupFieldId The guid of the primary Lookup Field.\r\n * @param showField Which field to show from the lookup list.\r\n */\r\n _Fields.prototype.addDependentLookupField = function (displayName, primaryLookupFieldId, showField) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var path, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n path = \"adddependentlookupfield(displayName='\" + displayName + \"', primarylookupfieldid='\" + primaryLookupFieldId + \"', showfield='\" + showField + \"')\";\r\n return [4 /*yield*/, spPost(this.clone(Fields, path))];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n field: this.getById(data.Id),\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Adds a new SP.FieldLocation to the collection\r\n *\r\n * @param title The field title.\r\n * @param properties Differ by type of field being created (see: https://msdn.microsoft.com/en-us/library/office/dn600182.aspx)\r\n */\r\n _Fields.prototype.addLocation = function (title, properties) {\r\n var props = { FieldTypeKind: 33 };\r\n return this.add(title, \"SP.FieldLocation\", assign(props, properties));\r\n };\r\n __decorate([\r\n tag(\"fs.createFieldAsXml\")\r\n ], _Fields.prototype, \"createFieldAsXml\", null);\r\n __decorate([\r\n tag(\"fs.addText\")\r\n ], _Fields.prototype, \"addText\", null);\r\n __decorate([\r\n tag(\"fs.addCalculated\")\r\n ], _Fields.prototype, \"addCalculated\", null);\r\n __decorate([\r\n tag(\"fs.addDateTime\")\r\n ], _Fields.prototype, \"addDateTime\", null);\r\n __decorate([\r\n tag(\"fs.addNumber\")\r\n ], _Fields.prototype, \"addNumber\", null);\r\n __decorate([\r\n tag(\"fs.addCurrency\")\r\n ], _Fields.prototype, \"addCurrency\", null);\r\n __decorate([\r\n tag(\"fs.addMultilineText\")\r\n ], _Fields.prototype, \"addMultilineText\", null);\r\n __decorate([\r\n tag(\"fs.addUrl\")\r\n ], _Fields.prototype, \"addUrl\", null);\r\n __decorate([\r\n tag(\"fs.addUser\")\r\n ], _Fields.prototype, \"addUser\", null);\r\n __decorate([\r\n tag(\"fs.addLookup\")\r\n ], _Fields.prototype, \"addLookup\", null);\r\n __decorate([\r\n tag(\"fs.addChoice\")\r\n ], _Fields.prototype, \"addChoice\", null);\r\n __decorate([\r\n tag(\"fs.addMultiChoice\")\r\n ], _Fields.prototype, \"addMultiChoice\", null);\r\n __decorate([\r\n tag(\"fs.addBoolean\")\r\n ], _Fields.prototype, \"addBoolean\", null);\r\n __decorate([\r\n tag(\"fs.addDependentLookupField\")\r\n ], _Fields.prototype, \"addDependentLookupField\", null);\r\n __decorate([\r\n tag(\"fs.addLocation\")\r\n ], _Fields.prototype, \"addLocation\", null);\r\n _Fields = __decorate([\r\n defaultPath(\"fields\")\r\n ], _Fields);\r\n return _Fields;\r\n}(_SharePointQueryableCollection));\r\nexport { _Fields };\r\nexport var Fields = spInvokableFactory(_Fields);\r\nvar _Field = /** @class */ (function (_super) {\r\n __extends(_Field, _super);\r\n function _Field() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this.delete = deleteable(\"f\");\r\n return _this;\r\n }\r\n /**\r\n * Updates this field instance with the supplied properties\r\n *\r\n * @param properties A plain object hash of values to update for the list\r\n * @param fieldType The type value such as SP.FieldLookup. Optional, looked up from the field if not provided\r\n */\r\n _Field.prototype.update = function (properties, fieldType) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var info, req, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n if (!(typeof fieldType === \"undefined\" || fieldType === null)) return [3 /*break*/, 2];\r\n return [4 /*yield*/, Field(this).select(\"FieldTypeKind\").configure({\r\n headers: {\r\n \"Accept\": \"application/json\",\r\n },\r\n })()];\r\n case 1:\r\n info = _a.sent();\r\n fieldType = info[\"odata.type\"];\r\n _a.label = 2;\r\n case 2:\r\n req = body(assign(metadata(fieldType), properties), headers({ \"X-HTTP-Method\": \"MERGE\" }));\r\n return [4 /*yield*/, spPost(this, req)];\r\n case 3:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n field: this,\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Sets the value of the ShowInDisplayForm property for this field.\r\n */\r\n _Field.prototype.setShowInDisplayForm = function (show) {\r\n return spPost(this.clone(Field, \"setshowindisplayform(\" + show + \")\"));\r\n };\r\n /**\r\n * Sets the value of the ShowInEditForm property for this field.\r\n */\r\n _Field.prototype.setShowInEditForm = function (show) {\r\n return spPost(this.clone(Field, \"setshowineditform(\" + show + \")\"));\r\n };\r\n /**\r\n * Sets the value of the ShowInNewForm property for this field.\r\n */\r\n _Field.prototype.setShowInNewForm = function (show) {\r\n return spPost(this.clone(Field, \"setshowinnewform(\" + show + \")\"));\r\n };\r\n __decorate([\r\n tag(\"f.update\")\r\n ], _Field.prototype, \"update\", null);\r\n __decorate([\r\n tag(\"f.setShowInDisplayForm\")\r\n ], _Field.prototype, \"setShowInDisplayForm\", null);\r\n __decorate([\r\n tag(\"f.setShowInEditForm\")\r\n ], _Field.prototype, \"setShowInEditForm\", null);\r\n __decorate([\r\n tag(\"f.setShowInNewForm\")\r\n ], _Field.prototype, \"setShowInNewForm\", null);\r\n return _Field;\r\n}(_SharePointQueryableInstance));\r\nexport { _Field };\r\nexport var Field = spInvokableFactory(_Field);\r\n/**\r\n * Specifies the type of the field.\r\n */\r\nexport var FieldTypes;\r\n(function (FieldTypes) {\r\n FieldTypes[FieldTypes[\"Invalid\"] = 0] = \"Invalid\";\r\n FieldTypes[FieldTypes[\"Integer\"] = 1] = \"Integer\";\r\n FieldTypes[FieldTypes[\"Text\"] = 2] = \"Text\";\r\n FieldTypes[FieldTypes[\"Note\"] = 3] = \"Note\";\r\n FieldTypes[FieldTypes[\"DateTime\"] = 4] = \"DateTime\";\r\n FieldTypes[FieldTypes[\"Counter\"] = 5] = \"Counter\";\r\n FieldTypes[FieldTypes[\"Choice\"] = 6] = \"Choice\";\r\n FieldTypes[FieldTypes[\"Lookup\"] = 7] = \"Lookup\";\r\n FieldTypes[FieldTypes[\"Boolean\"] = 8] = \"Boolean\";\r\n FieldTypes[FieldTypes[\"Number\"] = 9] = \"Number\";\r\n FieldTypes[FieldTypes[\"Currency\"] = 10] = \"Currency\";\r\n FieldTypes[FieldTypes[\"URL\"] = 11] = \"URL\";\r\n FieldTypes[FieldTypes[\"Computed\"] = 12] = \"Computed\";\r\n FieldTypes[FieldTypes[\"Threading\"] = 13] = \"Threading\";\r\n FieldTypes[FieldTypes[\"Guid\"] = 14] = \"Guid\";\r\n FieldTypes[FieldTypes[\"MultiChoice\"] = 15] = \"MultiChoice\";\r\n FieldTypes[FieldTypes[\"GridChoice\"] = 16] = \"GridChoice\";\r\n FieldTypes[FieldTypes[\"Calculated\"] = 17] = \"Calculated\";\r\n FieldTypes[FieldTypes[\"File\"] = 18] = \"File\";\r\n FieldTypes[FieldTypes[\"Attachments\"] = 19] = \"Attachments\";\r\n FieldTypes[FieldTypes[\"User\"] = 20] = \"User\";\r\n FieldTypes[FieldTypes[\"Recurrence\"] = 21] = \"Recurrence\";\r\n FieldTypes[FieldTypes[\"CrossProjectLink\"] = 22] = \"CrossProjectLink\";\r\n FieldTypes[FieldTypes[\"ModStat\"] = 23] = \"ModStat\";\r\n FieldTypes[FieldTypes[\"Error\"] = 24] = \"Error\";\r\n FieldTypes[FieldTypes[\"ContentTypeId\"] = 25] = \"ContentTypeId\";\r\n FieldTypes[FieldTypes[\"PageSeparator\"] = 26] = \"PageSeparator\";\r\n FieldTypes[FieldTypes[\"ThreadIndex\"] = 27] = \"ThreadIndex\";\r\n FieldTypes[FieldTypes[\"WorkflowStatus\"] = 28] = \"WorkflowStatus\";\r\n FieldTypes[FieldTypes[\"AllDayEvent\"] = 29] = \"AllDayEvent\";\r\n FieldTypes[FieldTypes[\"WorkflowEventType\"] = 30] = \"WorkflowEventType\";\r\n})(FieldTypes || (FieldTypes = {}));\r\nexport var DateTimeFieldFormatType;\r\n(function (DateTimeFieldFormatType) {\r\n DateTimeFieldFormatType[DateTimeFieldFormatType[\"DateOnly\"] = 0] = \"DateOnly\";\r\n DateTimeFieldFormatType[DateTimeFieldFormatType[\"DateTime\"] = 1] = \"DateTime\";\r\n})(DateTimeFieldFormatType || (DateTimeFieldFormatType = {}));\r\nexport var DateTimeFieldFriendlyFormatType;\r\n(function (DateTimeFieldFriendlyFormatType) {\r\n DateTimeFieldFriendlyFormatType[DateTimeFieldFriendlyFormatType[\"Unspecified\"] = 0] = \"Unspecified\";\r\n DateTimeFieldFriendlyFormatType[DateTimeFieldFriendlyFormatType[\"Disabled\"] = 1] = \"Disabled\";\r\n DateTimeFieldFriendlyFormatType[DateTimeFieldFriendlyFormatType[\"Relative\"] = 2] = \"Relative\";\r\n})(DateTimeFieldFriendlyFormatType || (DateTimeFieldFriendlyFormatType = {}));\r\n/**\r\n * Specifies the control settings while adding a field.\r\n */\r\nexport var AddFieldOptions;\r\n(function (AddFieldOptions) {\r\n /**\r\n * Specify that a new field added to the list must also be added to the default content type in the site collection\r\n */\r\n AddFieldOptions[AddFieldOptions[\"DefaultValue\"] = 0] = \"DefaultValue\";\r\n /**\r\n * Specify that a new field added to the list must also be added to the default content type in the site collection.\r\n */\r\n AddFieldOptions[AddFieldOptions[\"AddToDefaultContentType\"] = 1] = \"AddToDefaultContentType\";\r\n /**\r\n * Specify that a new field must not be added to any other content type\r\n */\r\n AddFieldOptions[AddFieldOptions[\"AddToNoContentType\"] = 2] = \"AddToNoContentType\";\r\n /**\r\n * Specify that a new field that is added to the specified list must also be added to all content types in the site collection\r\n */\r\n AddFieldOptions[AddFieldOptions[\"AddToAllContentTypes\"] = 4] = \"AddToAllContentTypes\";\r\n /**\r\n * Specify adding an internal field name hint for the purpose of avoiding possible database locking or field renaming operations\r\n */\r\n AddFieldOptions[AddFieldOptions[\"AddFieldInternalNameHint\"] = 8] = \"AddFieldInternalNameHint\";\r\n /**\r\n * Specify that a new field that is added to the specified list must also be added to the default list view\r\n */\r\n AddFieldOptions[AddFieldOptions[\"AddFieldToDefaultView\"] = 16] = \"AddFieldToDefaultView\";\r\n /**\r\n * Specify to confirm that no other field has the same display name\r\n */\r\n AddFieldOptions[AddFieldOptions[\"AddFieldCheckDisplayName\"] = 32] = \"AddFieldCheckDisplayName\";\r\n})(AddFieldOptions || (AddFieldOptions = {}));\r\nexport var CalendarType;\r\n(function (CalendarType) {\r\n CalendarType[CalendarType[\"Gregorian\"] = 1] = \"Gregorian\";\r\n CalendarType[CalendarType[\"Japan\"] = 3] = \"Japan\";\r\n CalendarType[CalendarType[\"Taiwan\"] = 4] = \"Taiwan\";\r\n CalendarType[CalendarType[\"Korea\"] = 5] = \"Korea\";\r\n CalendarType[CalendarType[\"Hijri\"] = 6] = \"Hijri\";\r\n CalendarType[CalendarType[\"Thai\"] = 7] = \"Thai\";\r\n CalendarType[CalendarType[\"Hebrew\"] = 8] = \"Hebrew\";\r\n CalendarType[CalendarType[\"GregorianMEFrench\"] = 9] = \"GregorianMEFrench\";\r\n CalendarType[CalendarType[\"GregorianArabic\"] = 10] = \"GregorianArabic\";\r\n CalendarType[CalendarType[\"GregorianXLITEnglish\"] = 11] = \"GregorianXLITEnglish\";\r\n CalendarType[CalendarType[\"GregorianXLITFrench\"] = 12] = \"GregorianXLITFrench\";\r\n CalendarType[CalendarType[\"KoreaJapanLunar\"] = 14] = \"KoreaJapanLunar\";\r\n CalendarType[CalendarType[\"ChineseLunar\"] = 15] = \"ChineseLunar\";\r\n CalendarType[CalendarType[\"SakaEra\"] = 16] = \"SakaEra\";\r\n CalendarType[CalendarType[\"UmAlQura\"] = 23] = \"UmAlQura\";\r\n})(CalendarType || (CalendarType = {}));\r\nexport var UrlFieldFormatType;\r\n(function (UrlFieldFormatType) {\r\n UrlFieldFormatType[UrlFieldFormatType[\"Hyperlink\"] = 0] = \"Hyperlink\";\r\n UrlFieldFormatType[UrlFieldFormatType[\"Image\"] = 1] = \"Image\";\r\n})(UrlFieldFormatType || (UrlFieldFormatType = {}));\r\nexport var FieldUserSelectionMode;\r\n(function (FieldUserSelectionMode) {\r\n FieldUserSelectionMode[FieldUserSelectionMode[\"PeopleAndGroups\"] = 1] = \"PeopleAndGroups\";\r\n FieldUserSelectionMode[FieldUserSelectionMode[\"PeopleOnly\"] = 0] = \"PeopleOnly\";\r\n})(FieldUserSelectionMode || (FieldUserSelectionMode = {}));\r\nexport var ChoiceFieldFormatType;\r\n(function (ChoiceFieldFormatType) {\r\n ChoiceFieldFormatType[ChoiceFieldFormatType[\"Dropdown\"] = 0] = \"Dropdown\";\r\n ChoiceFieldFormatType[ChoiceFieldFormatType[\"RadioButtons\"] = 1] = \"RadioButtons\";\r\n})(ChoiceFieldFormatType || (ChoiceFieldFormatType = {}));\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "name": "./node_modules/@pnp/sp/fields/web.js", - "index": 345, - "index2": 342, - "size": 240, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/fields/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "name": "./node_modules/@pnp/sp/fields/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./web", - "loc": "1:0-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./web", - "loc": "3:0-15" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 3, - "source": "import { addProp } from \"@pnp/odata\";\r\nimport { _Web } from \"../webs/types\";\r\nimport { Fields } from \"./types\";\r\naddProp(_Web, \"fields\", Fields);\r\naddProp(_Web, \"availablefields\", Fields, \"availablefields\");\r\n//# sourceMappingURL=web.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/list.js", - "name": "./node_modules/@pnp/sp/fields/list.js", - "index": 347, - "index2": 343, - "size": 182, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/fields/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "name": "./node_modules/@pnp/sp/fields/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/index.js", - "module": "./node_modules/@pnp/sp/fields/index.js", - "moduleName": "./node_modules/@pnp/sp/fields/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./list", - "loc": "2:0-16" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 3, - "source": "import { addProp } from \"@pnp/odata\";\r\nimport { _List } from \"../lists/types\";\r\nimport { Fields } from \"./types\";\r\naddProp(_List, \"fields\", Fields);\r\n//# sourceMappingURL=list.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "index": 359, - "index2": 433, - "size": 98, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "./controls/fileTypeIcon/index", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "type": "harmony export imported specifier", - "userRequest": "./controls/fileTypeIcon/index", - "loc": "1:0-46" - } - ], - "usedExports": [ - "ImageSize", - "IconType", - "FileTypeIcon", - "ApplicationType" - ], - "providedExports": [ - "IconType", - "ApplicationType", - "ImageSize", - "ApplicationIconList", - "IconSizes", - "ICON_GENERIC_16", - "ICON_GENERIC_48", - "ICON_GENERIC_96", - "FileTypeIcon" - ], - "optimizationBailout": [], - "depth": 3, - "source": "export * from './IFileTypeIcon';\nexport * from './FileTypeIcon';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "index": 438, - "index2": 681, - "size": 155, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "type": "harmony side effect evaluation", - "userRequest": "./controls/iFrameDialog/index", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "type": "harmony export imported specifier", - "userRequest": "./controls/iFrameDialog/index", - "loc": "1:0-46" - } - ], - "usedExports": [ - "IFrameDialog" - ], - "providedExports": [ - "IFrameDialogContent", - "IFrameDialog" - ], - "optimizationBailout": [], - "depth": 3, - "source": "export * from './IFrameDialogContent.module.scss';\nexport * from './IFrameDialogContent';\nexport * from './IFrameDialog';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "index": 687, - "index2": 689, - "size": 65, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "type": "harmony side effect evaluation", - "userRequest": "./controls/webPartTitle/index", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "type": "harmony export imported specifier", - "userRequest": "./controls/webPartTitle/index", - "loc": "1:0-46" - } - ], - "usedExports": [ - "WebPartTitle" - ], - "providedExports": [ - "WebPartTitle" - ], - "optimizationBailout": [], - "depth": 3, - "source": "export * from './WebPartTitle';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js", - "index": 697, - "index2": 699, - "size": 266, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/GraphService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/batch.js", - "module": "./node_modules/@pnp/odata/batch.js", - "moduleName": "./node_modules/@pnp/odata/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/request-builders.js", - "module": "./node_modules/@pnp/odata/request-builders.js", - "moduleName": "./node_modules/@pnp/odata/request-builders.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/caching.js", - "module": "./node_modules/@pnp/odata/caching.js", - "moduleName": "./node_modules/@pnp/odata/caching.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-115" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphlibconfig.js", - "module": "./node_modules/@pnp/graph/graphlibconfig.js", - "moduleName": "./node_modules/@pnp/graph/graphlibconfig.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-100" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphlibconfig.js", - "module": "./node_modules/@pnp/graph/graphlibconfig.js", - "moduleName": "./node_modules/@pnp/graph/graphlibconfig.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "2:0-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-138" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/caching.js", - "module": "./node_modules/@pnp/odata/caching.js", - "moduleName": "./node_modules/@pnp/odata/caching.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "2:18-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/request-builders.js", - "module": "./node_modules/@pnp/odata/request-builders.js", - "moduleName": "./node_modules/@pnp/odata/request-builders.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "3:33-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "4:0-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/batch.js", - "module": "./node_modules/@pnp/odata/batch.js", - "moduleName": "./node_modules/@pnp/odata/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:46-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "7:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphlibconfig.js", - "module": "./node_modules/@pnp/graph/graphlibconfig.js", - "moduleName": "./node_modules/@pnp/graph/graphlibconfig.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "8:16-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphlibconfig.js", - "module": "./node_modules/@pnp/graph/graphlibconfig.js", - "moduleName": "./node_modules/@pnp/graph/graphlibconfig.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "9:27-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "9:62-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "9:82-96" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "10:40-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "11:40-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "12:44-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "module": "./lib/webparts/listSearch/services/GraphService.js", - "moduleName": "./lib/webparts/listSearch/services/GraphService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "13:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "15:46-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "17:24-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphlibconfig.js", - "module": "./node_modules/@pnp/graph/graphlibconfig.js", - "moduleName": "./node_modules/@pnp/graph/graphlibconfig.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "17:40-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "21:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "21:42-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:12-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:25-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "module": "./lib/webparts/listSearch/services/GraphService.js", - "moduleName": "./lib/webparts/listSearch/services/GraphService.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:28-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "23:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "23:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "24:46-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:24-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:25-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "29:18-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "30:31-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "31:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "33:18-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "35:25-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "36:46-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "39:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "40:18-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "43:19-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "44:38-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "45:44-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "45:52-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "45:83-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "47:12-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "47:50-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "48:16-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "55:17-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "59:27-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "69:49-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "72:19-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "75:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "80:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "82:31-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "85:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "86:42-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "86:50-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "86:81-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "87:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "module": "./node_modules/@pnp/graph/graphhttpclient.js", - "moduleName": "./node_modules/@pnp/graph/graphhttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "90:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "95:13-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "102:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "107:35-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "109:35-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "110:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "115:39-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "122:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "125:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "126:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "126:28-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "129:30-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "135:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "138:38-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "143:30-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "149:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "152:16-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "153:20-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "160:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "160:28-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "163:39-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "186:24-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "203:12-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "212:12-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "223:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "259:19-25" - } - ], - "usedExports": [ - "PnPClientStorage", - "DefaultRuntime", - "isUrlAbsolute", - "stringIsNullOrEmpty", - "combine", - "objectDefinedNotNull", - "isFunc", - "mergeOptions", - "getGUID", - "jsS", - "Runtime", - "dateAdd", - "assign", - "hOP", - "mergeHeaders", - "getCtxCallback", - "onRuntimeCreate", - "SPFxAdalClient" - ], - "providedExports": [ - "objectToMap", - "mergeMaps", - "setup", - "onRuntimeCreate", - "Runtime", - "DefaultRuntime", - "mergeHeaders", - "mergeOptions", - "getADALResource", - "FetchClient", - "BearerTokenFetchClient", - "LambdaFetchClient", - "SPFxAdalClient", - "PnPClientStorageWrapper", - "PnPClientStorage", - "getCtxCallback", - "dateAdd", - "combine", - "getRandomString", - "getGUID", - "isFunc", - "objectDefinedNotNull", - "isArray", - "assign", - "isUrlAbsolute", - "stringIsNullOrEmpty", - "sanitizeGuid", - "jsS", - "hOP", - "getHashCode", - "safeGlobal" - ], - "optimizationBailout": [], - "depth": 3, - "source": "export * from \"./collections.js\";\r\nexport * from \"./libconfig.js\";\r\nexport * from \"./net.js\";\r\nexport * from \"./spfxcontextinterface.js\";\r\nexport * from \"./storage.js\";\r\nexport * from \"./util.js\";\r\nexport * from \"./safe-global.js\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "name": "./node_modules/@pnp/graph/index.js", - "index": 694, - "index2": 724, - "size": 427, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/GraphService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "module": "./lib/webparts/listSearch/services/GraphService.js", - "moduleName": "./lib/webparts/listSearch/services/GraphService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/graph", - "loc": "10:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "module": "./lib/webparts/listSearch/services/GraphService.js", - "moduleName": "./lib/webparts/listSearch/services/GraphService.js", - "type": "harmony import specifier", - "userRequest": "@pnp/graph", - "loc": "19:8-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "module": "./lib/webparts/listSearch/services/GraphService.js", - "moduleName": "./lib/webparts/listSearch/services/GraphService.js", - "type": "harmony import specifier", - "userRequest": "@pnp/graph", - "loc": "30:39-44" - } - ], - "usedExports": [ - "graph" - ], - "providedExports": [ - "graph", - "GraphRest", - "GraphBatch", - "GraphQueryable", - "GraphQueryableCollection", - "GraphQueryableInstance", - "GraphQueryableSearchableCollection", - "GraphHttpClient", - "GraphEndpoints", - "registerCustomRequestClientFactory", - "graphGet", - "graphPost", - "graphDelete", - "graphPatch", - "graphPut", - "toAbsoluteUrl" - ], - "optimizationBailout": [], - "depth": 3, - "source": "export { graph, GraphRest } from \"./rest.js\";\r\nexport { GraphBatch, } from \"./batch.js\";\r\nexport { GraphQueryable, GraphQueryableCollection, GraphQueryableInstance, GraphQueryableSearchableCollection, } from \"./graphqueryable.js\";\r\nexport * from \"./graphhttpclient.js\";\r\nexport * from \"./types.js\";\r\nexport * from \"./operations.js\";\r\nexport { toAbsoluteUrl, } from \"./utils/toabsoluteurl.js\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "name": "./node_modules/@pnp/graph/users/index.js", - "index": 728, - "index2": 728, - "size": 901, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/GraphService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "module": "./lib/webparts/listSearch/services/GraphService.js", - "moduleName": "./lib/webparts/listSearch/services/GraphService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/graph/users", - "loc": "11:0-26" - } - ], - "usedExports": false, - "providedExports": [ - "User", - "Users", - "People" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { GraphRest } from \"../rest.js\";\r\nimport { User, Users } from \"./types.js\";\r\nexport { User, Users, People, } from \"./types.js\";\r\nReflect.defineProperty(GraphRest.prototype, \"me\", {\r\n configurable: true,\r\n enumerable: true,\r\n get: function () {\r\n return this.childConfigHook(function (_a) {\r\n var options = _a.options, baseUrl = _a.baseUrl, runtime = _a.runtime;\r\n return User(baseUrl, \"me\").configure(options).setRuntime(runtime);\r\n });\r\n },\r\n});\r\nReflect.defineProperty(GraphRest.prototype, \"users\", {\r\n configurable: true,\r\n enumerable: true,\r\n get: function () {\r\n return this.childConfigHook(function (_a) {\r\n var options = _a.options, baseUrl = _a.baseUrl, runtime = _a.runtime;\r\n return Users(baseUrl).configure(options).setRuntime(runtime);\r\n });\r\n },\r\n});\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js", - "index": 732, - "index2": 730, - "size": 536, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/GraphService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "module": "./lib/webparts/listSearch/services/GraphService.js", - "moduleName": "./lib/webparts/listSearch/services/GraphService.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/graph/groups", - "loc": "12:0-27" - } - ], - "usedExports": false, - "providedExports": [ - "Group", - "GroupType", - "Groups" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { GraphRest } from \"../rest.js\";\r\nimport { Groups } from \"./types.js\";\r\nexport { Group, GroupType, Groups, } from \"./types.js\";\r\nReflect.defineProperty(GraphRest.prototype, \"groups\", {\r\n configurable: true,\r\n enumerable: true,\r\n get: function () {\r\n return this.childConfigHook(function (_a) {\r\n var options = _a.options, baseUrl = _a.baseUrl, runtime = _a.runtime;\r\n return Groups(baseUrl).configure(options).setRuntime(runtime);\r\n });\r\n },\r\n});\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "index": 895, - "index2": 899, - "size": 5141, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PlaceholderComponent", - "loc": "1:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PlaceholderComponent", - "loc": "1:0-39" - } - ], - "usedExports": [ - "Placeholder" - ], - "providedExports": [ - "Placeholder" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport { PrimaryButton } from 'office-ui-fabric-react/lib/Button';\nimport styles from './PlaceholderComponent.module.scss';\nimport * as telemetry from '../../common/telemetry';\nimport { Icon } from 'office-ui-fabric-react/lib/components/Icon';\n/**\n * Placeholder component\n */\nvar Placeholder = /** @class */ (function (_super) {\n __extends(Placeholder, _super);\n /**\n * Constructor\n */\n function Placeholder(props) {\n var _this = _super.call(this, props) || this;\n _this._crntElm = null;\n /**\n * Execute the onConfigure function\n */\n _this._handleBtnClick = function (event) {\n _this.props.onConfigure();\n };\n /**\n * Set the current zone width\n */\n _this._setZoneWidth = function () {\n _this.setState({\n width: _this._crntElm.clientWidth\n });\n };\n /**\n * Stores the current element\n */\n _this._linkElm = function (e) {\n _this._crntElm = e;\n };\n _this.state = {\n width: null\n };\n telemetry.track('ReactPlaceholder', {\n description: !!props.description,\n iconName: !!props.iconName,\n iconText: !!props.iconText,\n buttonLabel: !!props.buttonLabel,\n onConfigure: !!props.onConfigure,\n contentClassName: !!props.contentClassName\n });\n return _this;\n }\n /**\n * componentDidMount lifecycle hook\n */\n Placeholder.prototype.componentDidMount = function () {\n this._setZoneWidth();\n };\n /**\n * componentDidUpdate lifecycle hook\n * @param prevProps\n * @param prevState\n */\n Placeholder.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._setZoneWidth();\n };\n /**\n * shouldComponentUpdate lifecycle hook\n * @param nextProps\n * @param nextState\n */\n Placeholder.prototype.shouldComponentUpdate = function (nextProps, nextState) {\n /*\n * compare the props object for changes in primative values\n * Return/re-render, bexeting the function, if the props change\n */\n for (var property in nextProps) {\n if (property != '_onConfigure') {\n if (nextProps[property] != this.props[property]) {\n return true;\n }\n }\n }\n return this.state.width !== nextState.width || this.props.hideButton !== nextProps.hideButton;\n };\n /**\n * Default React component render method\n */\n Placeholder.prototype.render = function () {\n var _a = this.props, iconName = _a.iconName, iconText = _a.iconText, description = _a.description, children = _a.children, buttonLabel = _a.buttonLabel, hideButton = _a.hideButton;\n var iconTextClassNames = styles.placeholderText + \" \" + ((this.state.width && this.state.width <= 380) ? styles.hide : \"\");\n var iconTextEl = typeof iconText === 'string' ? React.createElement(\"span\", { className: iconTextClassNames }, this.props.iconText) : iconText(iconTextClassNames);\n var descriptionEl = typeof description === 'string' ? React.createElement(\"span\", { className: styles.placeholderDescriptionText }, this.props.description) : description(styles.placeholderDescriptionText);\n return (React.createElement(\"div\", { className: styles.placeholder + \" \" + (this.props.contentClassName ? this.props.contentClassName : ''), ref: this._linkElm },\n React.createElement(\"div\", { className: styles.placeholderContainer },\n React.createElement(\"div\", { className: styles.placeholderHead },\n React.createElement(\"div\", { className: styles.placeholderHeadContainer },\n iconName && React.createElement(Icon, { iconName: iconName, className: styles.placeholderIcon }),\n iconTextEl)),\n React.createElement(\"div\", { className: styles.placeholderDescription }, descriptionEl),\n children,\n React.createElement(\"div\", { className: styles.placeholderDescription }, (buttonLabel && !hideButton) &&\n React.createElement(PrimaryButton, { text: buttonLabel, ariaLabel: buttonLabel, ariaDescription: typeof description === 'string' ? description : '', onClick: this._handleBtnClick })))));\n };\n return Placeholder;\n}(React.Component));\nexport { Placeholder };\n//# sourceMappingURL=PlaceholderComponent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "index": 311, - "index2": 305, - "size": 90, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/escapeQueryStrValue.js", - "module": "./node_modules/@pnp/sp/utils/escapeQueryStrValue.js", - "moduleName": "./node_modules/@pnp/sp/utils/escapeQueryStrValue.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/logging", - "loc": "2:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/logging", - "loc": "3:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "module": "./node_modules/@pnp/sp/odata.js", - "moduleName": "./node_modules/@pnp/sp/odata.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/logging", - "loc": "3:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/logging", - "loc": "4:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/logging", - "loc": "4:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/logging", - "loc": "6:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "11:4-10" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/escapeQueryStrValue.js", - "module": "./node_modules/@pnp/sp/utils/escapeQueryStrValue.js", - "moduleName": "./node_modules/@pnp/sp/utils/escapeQueryStrValue.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "12:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "12:14-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "module": "./node_modules/@pnp/sp/odata.js", - "moduleName": "./node_modules/@pnp/sp/odata.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "36:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "43:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "47:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "69:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "70:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "74:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "77:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "82:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "86:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "91:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "92:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "106:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "116:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "117:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "119:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "132:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "152:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "157:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "171:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "175:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "176:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "182:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "182:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "183:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "191:44-50" - } - ], - "usedExports": [ - "Logger" - ], - "providedExports": [ - "Logger", - "LogLevel", - "ConsoleListener", - "FunctionListener" - ], - "optimizationBailout": [], - "depth": 4, - "source": "export * from \"./logger\";\r\nexport * from \"./listeners\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "index": 301, - "index2": 309, - "size": 456, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/items/list.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "module": "./node_modules/@pnp/sp/items/list.js", - "moduleName": "./node_modules/@pnp/sp/items/list.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "1:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "1:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "1:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/list.js", - "module": "./node_modules/@pnp/sp/fields/list.js", - "moduleName": "./node_modules/@pnp/sp/fields/list.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "1:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "2:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "2:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "2:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "2:0-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "3:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/telemetry.js", - "module": "./node_modules/@pnp/sp/telemetry.js", - "moduleName": "./node_modules/@pnp/sp/telemetry.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "3:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "module": "./node_modules/@pnp/sp/items/list.js", - "moduleName": "./node_modules/@pnp/sp/items/list.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "4:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "4:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "4:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/list.js", - "module": "./node_modules/@pnp/sp/fields/list.js", - "moduleName": "./node_modules/@pnp/sp/fields/list.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "4:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "module": "./node_modules/@pnp/sp/odata.js", - "moduleName": "./node_modules/@pnp/sp/odata.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "4:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "module": "./node_modules/@pnp/sp/views/list.js", - "moduleName": "./node_modules/@pnp/sp/views/list.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "5:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/web.js", - "module": "./node_modules/@pnp/sp/fields/web.js", - "moduleName": "./node_modules/@pnp/sp/fields/web.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "5:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "5:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "5:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "6:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "6:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "8:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "9:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "9:11-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "10:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "11:0-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "11:20-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "18:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/telemetry.js", - "module": "./node_modules/@pnp/sp/telemetry.js", - "moduleName": "./node_modules/@pnp/sp/telemetry.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "22:35-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "38:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/telemetry.js", - "module": "./node_modules/@pnp/sp/telemetry.js", - "moduleName": "./node_modules/@pnp/sp/telemetry.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "44:23-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "44:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "52:29-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "52:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/operations.js", - "module": "./node_modules/@pnp/sp/operations.js", - "moduleName": "./node_modules/@pnp/sp/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "57:29-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "59:58-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "module": "./node_modules/@pnp/sp/odata.js", - "moduleName": "./node_modules/@pnp/sp/odata.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "60:2-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "79:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "module": "./node_modules/@pnp/sp/odata.js", - "moduleName": "./node_modules/@pnp/sp/odata.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "84:2-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "90:55-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "102:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "125:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "140:65-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "146:23-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "159:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "159:80-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "165:46-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "167:2-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "177:23-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "213:2-7" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "213:23-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "220:27-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "229:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "229:81-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "237:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "247:59-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "253:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "266:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "266:50-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "266:90-97" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "267:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "274:25-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "304:120-124" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "324:66-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "331:29-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "402:106-110" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "439:2-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "449:30-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "449:76-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "456:2-13" - } - ], - "usedExports": [ - "body", - "headers", - "invokableFactory", - "Queryable", - "defaultPipelineBinder", - "cloneQueryableData", - "ODataParser", - "Batch", - "addProp" - ], - "providedExports": [ - "Batch", - "CachingOptions", - "CachingParserWrapper", - "addProp", - "invokableFactory", - "pipelineBinder", - "defaultPipelineBinder", - "ODataParser", - "TextParser", - "BlobParser", - "JSONParser", - "BufferParser", - "LambdaParser", - "HttpRequestError", - "setResult", - "pipe", - "requestPipelineMethod", - "PipelineMethods", - "getDefaultPipeline", - "cloneQueryableData", - "Queryable", - "body", - "headers", - "extendGlobal", - "extendObj", - "extendFactory", - "clearGlobalExtensions", - "enableExtensions", - "disableExtensions" - ], - "optimizationBailout": [], - "depth": 4, - "source": "export * from \"./batch\";\r\nexport * from \"./caching\";\r\nexport * from \"./add-prop\";\r\nexport * from \"./invokable-binder\";\r\nexport * from \"./pipeline-binder\";\r\nexport * from \"./parsers\";\r\nexport * from \"./pipeline\";\r\nexport * from \"./queryable\";\r\nexport * from \"./request-builders\";\r\nexport { extendGlobal, extendObj, extendFactory, clearGlobalExtensions, enableExtensions, disableExtensions, } from \"./invokable-extensions\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/metadata.js", - "name": "./node_modules/@pnp/sp/utils/metadata.js", - "index": 315, - "index2": 310, - "size": 136, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/webs/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "module": "./node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "moduleName": "./node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "type": "harmony side effect evaluation", - "userRequest": "./metadata", - "loc": "1:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/metadata", - "loc": "4:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/metadata", - "loc": "4:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/metadata", - "loc": "5:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/metadata", - "loc": "6:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/metadata", - "loc": "7:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/metadata", - "loc": "8:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "module": "./node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "moduleName": "./node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "type": "harmony import specifier", - "userRequest": "./metadata", - "loc": "9:18-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "module": "./node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "moduleName": "./node_modules/@pnp/sp/utils/objectToSPKeyValueCollection.js", - "type": "harmony import specifier", - "userRequest": "./metadata", - "loc": "10:69-77" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/metadata", - "loc": "12:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "39:49-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "44:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "53:49-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "58:27-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "79:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "125:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "146:46-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "159:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "213:46-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "221:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "229:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./utils/metadata", - "loc": "242:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "253:75-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "266:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "266:71-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "268:49-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "274:48-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "326:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "328:75-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "406:59-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/metadata", - "loc": "449:42-50" - } - ], - "usedExports": [ - "metadata" - ], - "providedExports": [ - "metadata" - ], - "optimizationBailout": [], - "depth": 4, - "source": "export function metadata(type) {\r\n return {\r\n \"__metadata\": { \"type\": type },\r\n };\r\n}\r\n//# sourceMappingURL=metadata.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/splibconfig.js", - "name": "./node_modules/@pnp/sp/splibconfig.js", - "index": 318, - "index2": 311, - "size": 1899, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/batch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "name": "./node_modules/@pnp/sp/batch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/rest.js", - "module": "./node_modules/@pnp/sp/rest.js", - "moduleName": "./node_modules/@pnp/sp/rest.js", - "type": "harmony side effect evaluation", - "userRequest": "./splibconfig", - "loc": "1:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/sp/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/sp/utils/toabsoluteurl.js", - "type": "harmony side effect evaluation", - "userRequest": "../splibconfig", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony side effect evaluation", - "userRequest": "./splibconfig", - "loc": "3:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "./splibconfig", - "loc": "6:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony import specifier", - "userRequest": "./splibconfig", - "loc": "9:40-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../splibconfig", - "loc": "14:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/sp/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/sp/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "../splibconfig", - "loc": "18:16-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/sp/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/sp/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "../splibconfig", - "loc": "20:46-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony import specifier", - "userRequest": "./splibconfig", - "loc": "23:46-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/rest.js", - "module": "./node_modules/@pnp/sp/rest.js", - "moduleName": "./node_modules/@pnp/sp/rest.js", - "type": "harmony import specifier", - "userRequest": "./splibconfig", - "loc": "36:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/rest.js", - "module": "./node_modules/@pnp/sp/rest.js", - "moduleName": "./node_modules/@pnp/sp/rest.js", - "type": "harmony import specifier", - "userRequest": "./splibconfig", - "loc": "41:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/batch.js", - "module": "./node_modules/@pnp/sp/batch.js", - "moduleName": "./node_modules/@pnp/sp/batch.js", - "type": "harmony import specifier", - "userRequest": "./splibconfig", - "loc": "134:50-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony import specifier", - "userRequest": "./splibconfig", - "loc": "160:53-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../splibconfig", - "loc": "213:31-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../splibconfig", - "loc": "216:34-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../splibconfig", - "loc": "218:44-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../splibconfig", - "loc": "281:31-40" - } - ], - "usedExports": [ - "setup", - "SPRuntimeConfig", - "emptyGuid" - ], - "providedExports": [ - "emptyGuid", - "setup", - "SPRuntimeConfigImpl", - "SPRuntimeConfig" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { RuntimeConfig, FetchClient, objectDefinedNotNull, } from \"@pnp/common\";\r\nexport var emptyGuid = \"00000000-0000-0000-0000-000000000000\";\r\nexport function setup(config) {\r\n RuntimeConfig.assign(config);\r\n}\r\nvar SPRuntimeConfigImpl = /** @class */ (function () {\r\n function SPRuntimeConfigImpl() {\r\n }\r\n Object.defineProperty(SPRuntimeConfigImpl.prototype, \"headers\", {\r\n get: function () {\r\n var spPart = RuntimeConfig.get(\"sp\");\r\n if (spPart !== undefined && spPart.headers !== undefined) {\r\n return spPart.headers;\r\n }\r\n return {};\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(SPRuntimeConfigImpl.prototype, \"baseUrl\", {\r\n get: function () {\r\n var spPart = RuntimeConfig.get(\"sp\");\r\n if (spPart !== undefined && spPart.baseUrl !== undefined) {\r\n return spPart.baseUrl;\r\n }\r\n if (objectDefinedNotNull(RuntimeConfig.spfxContext)) {\r\n return RuntimeConfig.spfxContext.pageContext.web.absoluteUrl;\r\n }\r\n return null;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(SPRuntimeConfigImpl.prototype, \"fetchClientFactory\", {\r\n get: function () {\r\n var spPart = RuntimeConfig.get(\"sp\");\r\n if (spPart !== undefined && spPart.fetchClientFactory !== undefined) {\r\n return spPart.fetchClientFactory;\r\n }\r\n else {\r\n return function () { return new FetchClient(); };\r\n }\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n return SPRuntimeConfigImpl;\r\n}());\r\nexport { SPRuntimeConfigImpl };\r\nexport var SPRuntimeConfig = new SPRuntimeConfigImpl();\r\n//# sourceMappingURL=splibconfig.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/telemetry.js", - "name": "./node_modules/@pnp/sp/telemetry.js", - "index": 320, - "index2": 313, - "size": 1789, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/webs/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony side effect evaluation", - "userRequest": "./telemetry", - "loc": "5:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "./telemetry", - "loc": "7:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../telemetry", - "loc": "7:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../telemetry", - "loc": "8:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../telemetry", - "loc": "10:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../telemetry", - "loc": "10:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../telemetry", - "loc": "11:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../telemetry", - "loc": "12:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "20:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "23:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "26:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "26:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "28:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "31:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sphttpclient.js", - "module": "./node_modules/@pnp/sp/sphttpclient.js", - "moduleName": "./node_modules/@pnp/sp/sphttpclient.js", - "type": "harmony import specifier", - "userRequest": "./telemetry", - "loc": "34:41-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "35:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "36:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "43:46-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "57:28-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "60:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "60:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "82:29-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "83:28-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "89:28-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "105:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "108:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "109:28-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "118:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "125:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "130:28-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "136:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "147:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "149:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "150:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "152:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "153:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "155:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "156:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "157:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "160:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "163:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "166:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/types.js", - "module": "./node_modules/@pnp/sp/views/types.js", - "moduleName": "./node_modules/@pnp/sp/views/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "169:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "178:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "181:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "189:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "192:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "200:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "203:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "205:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "211:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "214:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "225:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "235:19-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./telemetry", - "loc": "241:48-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./telemetry", - "loc": "257:28-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "263:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "module": "./node_modules/@pnp/sp/sharepointqueryable.js", - "moduleName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "type": "harmony import specifier", - "userRequest": "./telemetry", - "loc": "263:32-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "266:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "269:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "271:33-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "272:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "275:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "278:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "281:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "284:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "287:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "309:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "312:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "337:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "340:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "343:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "364:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "368:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "371:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "374:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "377:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "380:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "383:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "386:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "389:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "392:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "395:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "398:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "401:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "404:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "407:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "410:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/types.js", - "module": "./node_modules/@pnp/sp/items/types.js", - "moduleName": "./node_modules/@pnp/sp/items/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "412:24-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "416:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "419:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "422:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "425:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "428:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "431:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "434:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "437:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "440:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "443:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "446:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "480:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "483:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "486:8-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/fields/types.js", - "module": "./node_modules/@pnp/sp/fields/types.js", - "moduleName": "./node_modules/@pnp/sp/fields/types.js", - "type": "harmony import specifier", - "userRequest": "../telemetry", - "loc": "489:8-11" - } - ], - "usedExports": [ - "tag" - ], - "providedExports": [ - "tag" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { stringIsNullOrEmpty } from \"@pnp/common\";\r\nimport { headers } from \"@pnp/odata\";\r\n/**\r\n * Includes this method name in the X-ClientService-ClientTag used to record pnpjs usage\r\n *\r\n * @param name Method name, displayed in the\r\n */\r\nexport function tag(name) {\r\n return function (target, key, descriptor) {\r\n if (descriptor === undefined) {\r\n descriptor = Object.getOwnPropertyDescriptor(target, key);\r\n }\r\n var originalMethod = descriptor.value;\r\n descriptor.value = function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n return __awaiter(this, void 0, void 0, function () {\r\n return __generator(this, function (_a) {\r\n this.configure(headers({ \"X-PnPjs-Tracking\": name }));\r\n return [2 /*return*/, originalMethod.apply(this, args)];\r\n });\r\n });\r\n };\r\n return descriptor;\r\n };\r\n}\r\ntag.getClientTag = function (h, deleteFromCollection) {\r\n if (deleteFromCollection === void 0) { deleteFromCollection = true; }\r\n if (h.has(\"X-PnPjs-Tracking\")) {\r\n var methodName = h.get(\"X-PnPjs-Tracking\");\r\n if (deleteFromCollection) {\r\n h.delete(\"X-PnPjs-Tracking\");\r\n }\r\n if (!stringIsNullOrEmpty(methodName)) {\r\n return methodName;\r\n }\r\n }\r\n return \"\";\r\n};\r\ntag.configure = function (o, name) {\r\n return o.configure(headers({ \"X-PnPjs-Tracking\": name }));\r\n};\r\ntag.isTagged = function (o) {\r\n return o.data.options.headers && o.data.options.headers[\"X-PnPjs-Tracking\"];\r\n};\r\n//# sourceMappingURL=telemetry.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/odata.js", - "name": "./node_modules/@pnp/sp/odata.js", - "index": 330, - "index2": 325, - "size": 3737, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/lists/web.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "name": "./node_modules/@pnp/sp/lists/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "name": "./node_modules/@pnp/sp/lists/web.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony side effect evaluation", - "userRequest": "../odata", - "loc": "5:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../odata", - "loc": "5:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../odata", - "loc": "6:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../odata", - "loc": "7:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../odata", - "loc": "23:47-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../odata", - "loc": "53:41-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../odata", - "loc": "125:51-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../odata", - "loc": "141:51-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../odata", - "loc": "164:55-67" - } - ], - "usedExports": [ - "odataUrlFrom" - ], - "providedExports": [ - "odataUrlFrom", - "spODataEntity", - "spODataEntityArray" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __extends, __read, __spread } from \"tslib\";\r\nimport { assign, combine, hOP, isUrlAbsolute } from \"@pnp/common\";\r\nimport { Logger } from \"@pnp/logging\";\r\nimport { ODataParser } from \"@pnp/odata\";\r\nimport { extractWebUrl } from \"./utils/extractweburl\";\r\nexport function odataUrlFrom(candidate) {\r\n var parts = [];\r\n var s = [\"odata.type\", \"odata.editLink\", \"__metadata\", \"odata.metadata\", \"odata.id\"];\r\n if (hOP(candidate, s[0]) && candidate[s[0]] === \"SP.Web\") {\r\n // webs return an absolute url in the id\r\n if (hOP(candidate, s[4])) {\r\n parts.push(candidate[s[4]]);\r\n }\r\n else if (hOP(candidate, s[2])) {\r\n // we are dealing with verbose, which has an absolute uri\r\n parts.push(candidate.__metadata.uri);\r\n }\r\n }\r\n else {\r\n if (hOP(candidate, s[3]) && hOP(candidate, s[1])) {\r\n // we are dealign with minimal metadata (default)\r\n // some entities return an abosolute url in the editlink while for others it is relative\r\n // without the _api. This code is meant to handle both situations\r\n var editLink = isUrlAbsolute(candidate[s[1]]) ? candidate[s[1]].split(\"_api\")[1] : candidate[s[1]];\r\n parts.push(extractWebUrl(candidate[s[3]]), \"_api\", editLink);\r\n }\r\n else if (hOP(candidate, s[1])) {\r\n parts.push(\"_api\", candidate[s[1]]);\r\n }\r\n else if (hOP(candidate, s[2])) {\r\n // we are dealing with verbose, which has an absolute uri\r\n parts.push(candidate.__metadata.uri);\r\n }\r\n }\r\n if (parts.length < 1) {\r\n Logger.write(\"No uri information found in ODataEntity parsing, chaining will fail for this object.\", 2 /* Warning */);\r\n return \"\";\r\n }\r\n return combine.apply(void 0, __spread(parts));\r\n}\r\nvar SPODataEntityParserImpl = /** @class */ (function (_super) {\r\n __extends(SPODataEntityParserImpl, _super);\r\n function SPODataEntityParserImpl(factory) {\r\n var _this = _super.call(this) || this;\r\n _this.factory = factory;\r\n _this.hydrate = function (d) {\r\n var o = _this.factory(odataUrlFrom(d), null);\r\n return assign(o, d);\r\n };\r\n return _this;\r\n }\r\n SPODataEntityParserImpl.prototype.parse = function (r) {\r\n var _this = this;\r\n return _super.prototype.parse.call(this, r).then(function (d) {\r\n var o = _this.factory(odataUrlFrom(d), null);\r\n return assign(o, d);\r\n });\r\n };\r\n return SPODataEntityParserImpl;\r\n}(ODataParser));\r\nvar SPODataEntityArrayParserImpl = /** @class */ (function (_super) {\r\n __extends(SPODataEntityArrayParserImpl, _super);\r\n function SPODataEntityArrayParserImpl(factory) {\r\n var _this = _super.call(this) || this;\r\n _this.factory = factory;\r\n _this.hydrate = function (d) {\r\n return d.map(function (v) {\r\n var o = _this.factory(odataUrlFrom(v), null);\r\n return assign(o, v);\r\n });\r\n };\r\n return _this;\r\n }\r\n SPODataEntityArrayParserImpl.prototype.parse = function (r) {\r\n var _this = this;\r\n return _super.prototype.parse.call(this, r).then(function (d) {\r\n return d.map(function (v) {\r\n var o = _this.factory(odataUrlFrom(v), null);\r\n return assign(o, v);\r\n });\r\n });\r\n };\r\n return SPODataEntityArrayParserImpl;\r\n}(ODataParser));\r\nexport function spODataEntity(factory) {\r\n return new SPODataEntityParserImpl(factory);\r\n}\r\nexport function spODataEntityArray(factory) {\r\n return new SPODataEntityArrayParserImpl(factory);\r\n}\r\n//# sourceMappingURL=odata.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/escapeQueryStrValue.js", - "name": "./node_modules/@pnp/sp/utils/escapeQueryStrValue.js", - "index": 333, - "index2": 326, - "size": 930, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/lists/web.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/index.js", - "name": "./node_modules/@pnp/sp/lists/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "name": "./node_modules/@pnp/sp/lists/web.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "7:0-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "9:0-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "10:0-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "11:0-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/web.js", - "module": "./node_modules/@pnp/sp/lists/web.js", - "moduleName": "./node_modules/@pnp/sp/lists/web.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "13:36-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "31:57-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "110:48-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "module": "./node_modules/@pnp/sp/sites/types.js", - "moduleName": "./node_modules/@pnp/sp/sites/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "131:48-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "192:36-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "226:62-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "226:110-129" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "234:60-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/escapeQueryStrValue", - "loc": "260:64-83" - } - ], - "usedExports": [ - "escapeQueryStrValue" - ], - "providedExports": [ - "escapeQueryStrValue" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { stringIsNullOrEmpty } from \"@pnp/common\";\r\nimport { Logger } from \"@pnp/logging\";\r\nexport function escapeQueryStrValue(value) {\r\n if (stringIsNullOrEmpty(value)) {\r\n return \"\";\r\n }\r\n // replace all instance of ' with ''\r\n if (/!(@.*?)::(.*?)/ig.test(value)) {\r\n // to ensure our param aliasing still works we need to treat these special or we'll hear about it\r\n // so we encode JUST the part that will end up in the url\r\n return value.replace(/!(@.*?)::(.*)$/ig, function (match, labelName, v) {\r\n Logger.write(\"Rewriting aliased parameter from match \" + match + \" to label: \" + labelName + \" value: \" + v, 0 /* Verbose */);\r\n return \"!\" + labelName + \"::\" + encodeURIComponent(v.replace(/\\'/ig, \"''\"));\r\n });\r\n }\r\n else {\r\n return encodeURIComponent(value.replace(/\\'/ig, \"''\"));\r\n }\r\n}\r\n//# sourceMappingURL=escapeQueryStrValue.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "name": "./node_modules/@pnp/sp/sites/index.js", - "index": 331, - "index2": 328, - "size": 334, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/webs/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../sites", - "loc": "9:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "module": "./node_modules/@pnp/sp/webs/types.js", - "moduleName": "./node_modules/@pnp/sp/webs/types.js", - "type": "harmony import specifier", - "userRequest": "../sites", - "loc": "103:58-62" - } - ], - "usedExports": [ - "Site" - ], - "providedExports": [ - "Site" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { SPRest } from \"../rest\";\r\nimport { Site } from \"./types\";\r\nexport { Site, } from \"./types\";\r\nReflect.defineProperty(SPRest.prototype, \"site\", {\r\n configurable: true,\r\n enumerable: true,\r\n get: function () {\r\n return Site(this._baseUrl).configure(this._options);\r\n },\r\n});\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/utils/toResourcePath.js", - "name": "./node_modules/@pnp/sp/utils/toResourcePath.js", - "index": 337, - "index2": 331, - "size": 182, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/lists/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/index.js", - "name": "./node_modules/@pnp/sp/views/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/views/list.js", - "name": "./node_modules/@pnp/sp/views/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "name": "./node_modules/@pnp/sp/lists/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../utils/toResourcePath", - "loc": "11:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/toResourcePath", - "loc": "392:40-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/lists/types.js", - "module": "./node_modules/@pnp/sp/lists/types.js", - "moduleName": "./node_modules/@pnp/sp/lists/types.js", - "type": "harmony import specifier", - "userRequest": "../utils/toResourcePath", - "loc": "396:52-66" - } - ], - "usedExports": [ - "toResourcePath" - ], - "providedExports": [ - "toResourcePath" - ], - "optimizationBailout": [], - "depth": 4, - "source": "export function toResourcePath(url) {\r\n return {\r\n DecodedUrl: url,\r\n __metadata: { type: \"SP.ResourcePath\" },\r\n };\r\n}\r\n//# sourceMappingURL=toResourcePath.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.types.js", - "index": 742, - "index2": 738, - "size": 2926, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList.types", - "loc": "4:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "4:0-151" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList.types", - "loc": "4:0-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList.types", - "loc": "5:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList.types", - "loc": "7:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "30:94-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "42:45-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "54:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "99:32-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "101:49-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "110:40-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "112:55-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "129:36-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "130:55-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "142:58-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "143:326-343" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "143:389-406" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "148:90-108" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "148:159-176" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "148:236-253" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "155:53-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "197:50-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "294:291-309" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/DetailsList", - "loc": "320:110-131" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "446:61-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "545:78-96" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.types", - "loc": "564:23-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "691:27-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "722:91-109" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "764:91-109" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "846:20-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "848:23-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "849:28-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsList.types", - "loc": "878:39-56" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList.types", - "loc": "8:0-36" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsList.types", - "loc": "8:0-36" - } - ], - "usedExports": [ - "DetailsListLayoutMode", - "CheckboxVisibility", - "ColumnDragEndLocation", - "ConstrainMode", - "ColumnActionsMode" - ], - "providedExports": [ - "ColumnActionsMode", - "ConstrainMode", - "ColumnDragEndLocation", - "DetailsListLayoutMode", - "CheckboxVisibility" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\n * Enum to describe how a particular column header behaves.\n * This is used to to specify the property `IColumn.columnActionsMode`.\n * If `IColumn.columnActionsMode` is undefined, it's equivalent to `ColumnActionsMode.clickable`.\n * {@docCategory DetailsList}\n */\nexport var ColumnActionsMode;\n(function (ColumnActionsMode) {\n /** Renders the column header as disabled. */\n ColumnActionsMode[ColumnActionsMode[\"disabled\"] = 0] = \"disabled\";\n /** Renders the column header as clickable. Default value. */\n ColumnActionsMode[ColumnActionsMode[\"clickable\"] = 1] = \"clickable\";\n /** Renders the column header as clickable and displays the dropdown chevron. */\n ColumnActionsMode[ColumnActionsMode[\"hasDropdown\"] = 2] = \"hasDropdown\";\n})(ColumnActionsMode || (ColumnActionsMode = {}));\n/**\n * {@docCategory DetailsList}\n */\nexport var ConstrainMode;\n(function (ConstrainMode) {\n /** Lets the content grow which allows the page to manage scrolling. */\n ConstrainMode[ConstrainMode[\"unconstrained\"] = 0] = \"unconstrained\";\n /** Constrains the list to the given layout space. */\n ConstrainMode[ConstrainMode[\"horizontalConstrained\"] = 1] = \"horizontalConstrained\";\n})(ConstrainMode || (ConstrainMode = {}));\n/**\n * Enum to describe where the column has been dropped, after starting the drag\n * {@docCategory DetailsList}\n */\nexport var ColumnDragEndLocation;\n(function (ColumnDragEndLocation) {\n /** Drag ended outside of current list */\n ColumnDragEndLocation[ColumnDragEndLocation[\"outside\"] = 0] = \"outside\";\n /** Drag ended within current list */\n ColumnDragEndLocation[ColumnDragEndLocation[\"surface\"] = 1] = \"surface\";\n /** Drag ended on header */\n ColumnDragEndLocation[ColumnDragEndLocation[\"header\"] = 2] = \"header\";\n})(ColumnDragEndLocation || (ColumnDragEndLocation = {}));\n/**\n * {@docCategory DetailsList}\n */\nexport var DetailsListLayoutMode;\n(function (DetailsListLayoutMode) {\n /**\n * Lets the user resize columns and makes not attempt to fit them.\n */\n DetailsListLayoutMode[DetailsListLayoutMode[\"fixedColumns\"] = 0] = \"fixedColumns\";\n /**\n * Manages which columns are visible, tries to size them according to their min/max rules and drops\n * off columns that can't fit and have isCollapsible set.\n */\n DetailsListLayoutMode[DetailsListLayoutMode[\"justified\"] = 1] = \"justified\";\n})(DetailsListLayoutMode || (DetailsListLayoutMode = {}));\n/**\n * {@docCategory DetailsList}\n */\nexport var CheckboxVisibility;\n(function (CheckboxVisibility) {\n /** Visible on hover. */\n CheckboxVisibility[CheckboxVisibility[\"onHover\"] = 0] = \"onHover\";\n /** Visible always. */\n CheckboxVisibility[CheckboxVisibility[\"always\"] = 1] = \"always\";\n /** Hide checkboxes. */\n CheckboxVisibility[CheckboxVisibility[\"hidden\"] = 2] = \"hidden\";\n})(CheckboxVisibility || (CheckboxVisibility = {}));\n//# sourceMappingURL=DetailsList.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "index": 741, - "index2": 736, - "size": 13873, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "2:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../DetailsList/DetailsRow.styles", - "loc": "3:0-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "3:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "3:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "3:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "4:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "4:47-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "6:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../DetailsList/DetailsRow.styles", - "loc": "7:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "8:0-84" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsRow.styles", - "loc": "10:17-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsRow.styles", - "loc": "10:69-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "14:20-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "14:70-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "15:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "20:173-197" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "25:225-249" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "26:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "26:78-97" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "27:322-346" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsRow.styles", - "loc": "31:26-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "31:89-113" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "32:1558-1582" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "55:264-288" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "106:228-252" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.styles", - "loc": "889:68-92" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.styles", - "loc": "11:0-36" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsRow.styles", - "loc": "11:0-36" - } - ], - "usedExports": [ - "DEFAULT_CELL_STYLE_PROPS", - "DEFAULT_ROW_HEIGHTS", - "getDetailsRowStyles" - ], - "providedExports": [ - "DetailsRowGlobalClassNames", - "DEFAULT_CELL_STYLE_PROPS", - "DEFAULT_ROW_HEIGHTS", - "getDetailsRowStyles" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign } from \"tslib\";\nimport { AnimationClassNames, AnimationStyles, HighContrastSelector, getFocusStyle, getGlobalClassNames, FontWeights, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { IsFocusVisibleClassName } from '../../Utilities';\nexport var DetailsRowGlobalClassNames = {\n root: 'ms-DetailsRow',\n // TODO: in Fabric 7.0 lowercase the 'Compact' for consistency across other components.\n compact: 'ms-DetailsList--Compact',\n cell: 'ms-DetailsRow-cell',\n cellAnimation: 'ms-DetailsRow-cellAnimation',\n cellCheck: 'ms-DetailsRow-cellCheck',\n check: 'ms-DetailsRow-check',\n cellMeasurer: 'ms-DetailsRow-cellMeasurer',\n listCellFirstChild: 'ms-List-cell:first-child',\n isContentUnselectable: 'is-contentUnselectable',\n isSelected: 'is-selected',\n isCheckVisible: 'is-check-visible',\n isRowHeader: 'is-row-header',\n fields: 'ms-DetailsRow-fields',\n};\nvar IsFocusableSelector = \"[data-is-focusable='true']\";\nexport var DEFAULT_CELL_STYLE_PROPS = {\n cellLeftPadding: 12,\n cellRightPadding: 8,\n cellExtraRightPadding: 24,\n};\n// Source of default row heights to share.\nexport var DEFAULT_ROW_HEIGHTS = {\n rowHeight: 42,\n compactRowHeight: 32,\n};\n// Constant values\nvar values = __assign(__assign({}, DEFAULT_ROW_HEIGHTS), { rowVerticalPadding: 11, compactRowVerticalPadding: 6 });\nexport var getDetailsRowStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;\n var theme = props.theme, isSelected = props.isSelected, canSelect = props.canSelect, droppingClassName = props.droppingClassName, anySelected = props.anySelected, isCheckVisible = props.isCheckVisible, checkboxCellClassName = props.checkboxCellClassName, compact = props.compact, className = props.className, _o = props.cellStyleProps, cellStyleProps = _o === void 0 ? DEFAULT_CELL_STYLE_PROPS : _o, enableUpdateAnimations = props.enableUpdateAnimations;\n var palette = theme.palette, fonts = theme.fonts;\n var neutralPrimary = palette.neutralPrimary, white = palette.white, neutralSecondary = palette.neutralSecondary, neutralLighter = palette.neutralLighter, neutralLight = palette.neutralLight, neutralDark = palette.neutralDark, neutralQuaternaryAlt = palette.neutralQuaternaryAlt;\n var focusBorder = theme.semanticColors.focusBorder;\n var classNames = getGlobalClassNames(DetailsRowGlobalClassNames, theme);\n var colors = {\n // Default\n defaultHeaderText: neutralPrimary,\n defaultMetaText: neutralSecondary,\n defaultBackground: white,\n // Default Hover\n defaultHoverHeaderText: neutralDark,\n defaultHoverMetaText: neutralPrimary,\n defaultHoverBackground: neutralLighter,\n // Selected\n selectedHeaderText: neutralDark,\n selectedMetaText: neutralPrimary,\n selectedBackground: neutralLight,\n // Selected Hover\n selectedHoverHeaderText: neutralDark,\n selectedHoverMetaText: neutralPrimary,\n selectedHoverBackground: neutralQuaternaryAlt,\n // Focus\n focusHeaderText: neutralDark,\n focusMetaText: neutralPrimary,\n focusBackground: neutralLight,\n focusHoverBackground: neutralQuaternaryAlt,\n };\n // Selected row styles\n var selectedStyles = [\n getFocusStyle(theme, { inset: -1, borderColor: focusBorder, outlineColor: white }),\n classNames.isSelected,\n {\n color: colors.selectedMetaText,\n background: colors.selectedBackground,\n borderBottom: \"1px solid \" + white,\n selectors: (_a = {\n '&:before': {\n position: 'absolute',\n display: 'block',\n top: -1,\n height: 1,\n bottom: 0,\n left: 0,\n right: 0,\n content: '',\n borderTop: \"1px solid \" + white,\n },\n // Selected State hover\n '&:hover': {\n background: colors.selectedHoverBackground,\n color: colors.selectedHoverMetaText,\n selectors: (_b = {},\n // Selected State hover meta cell\n _b[\".\" + classNames.cell + \" \" + HighContrastSelector] = {\n color: 'HighlightText',\n selectors: {\n '> a': {\n color: 'HighlightText',\n },\n },\n },\n // Selected State hover Header cell\n _b[\".\" + classNames.isRowHeader] = {\n color: colors.selectedHoverHeaderText,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _c),\n },\n // Ensure high-contrast mode overrides default hover background\n _b[HighContrastSelector] = {\n background: 'Highlight',\n },\n _b),\n },\n // Focus state\n '&:focus': {\n background: colors.focusBackground,\n selectors: (_d = {},\n // Selected State hover meta cell\n _d[\".\" + classNames.cell] = {\n color: colors.focusMetaText,\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n color: 'HighlightText',\n selectors: {\n '> a': {\n color: 'HighlightText',\n },\n },\n },\n _e),\n },\n // Row header cell\n _d[\".\" + classNames.isRowHeader] = {\n color: colors.focusHeaderText,\n selectors: (_f = {},\n _f[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _f),\n },\n // Ensure high-contrast mode overrides default focus background\n _d[HighContrastSelector] = {\n background: 'Highlight',\n },\n _d),\n }\n },\n _a[HighContrastSelector] = __assign(__assign({ background: 'Highlight', color: 'HighlightText' }, getHighContrastNoAdjustStyle()), { selectors: {\n a: {\n color: 'HighlightText',\n },\n } }),\n // Focus and hover state\n _a['&:focus:hover'] = {\n background: colors.focusHoverBackground,\n },\n _a),\n },\n ];\n var cannotSelectStyles = [\n classNames.isContentUnselectable,\n {\n userSelect: 'none',\n cursor: 'default',\n },\n ];\n var rootCompactStyles = {\n minHeight: values.compactRowHeight,\n border: 0,\n };\n var cellCompactStyles = {\n minHeight: values.compactRowHeight,\n paddingTop: values.compactRowVerticalPadding,\n paddingBottom: values.compactRowVerticalPadding,\n paddingLeft: cellStyleProps.cellLeftPadding + \"px\",\n };\n var defaultCellStyles = [\n getFocusStyle(theme, { inset: -1 }),\n classNames.cell,\n {\n display: 'inline-block',\n position: 'relative',\n boxSizing: 'border-box',\n minHeight: values.rowHeight,\n verticalAlign: 'top',\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n paddingTop: values.rowVerticalPadding,\n paddingBottom: values.rowVerticalPadding,\n paddingLeft: cellStyleProps.cellLeftPadding + \"px\",\n selectors: (_g = {\n '& > button': {\n maxWidth: '100%',\n }\n },\n _g[IsFocusableSelector] = getFocusStyle(theme, { inset: -1, borderColor: neutralSecondary, outlineColor: white }),\n _g),\n },\n isSelected && {\n selectors: (_h = {},\n _h[HighContrastSelector] = __assign(__assign({ background: 'Highlight', color: 'HighlightText' }, getHighContrastNoAdjustStyle()), { selectors: {\n a: {\n color: 'HighlightText',\n },\n } }),\n _h),\n },\n compact && cellCompactStyles,\n ];\n return {\n root: [\n classNames.root,\n AnimationClassNames.fadeIn400,\n droppingClassName,\n theme.fonts.small,\n isCheckVisible && classNames.isCheckVisible,\n getFocusStyle(theme, { borderColor: focusBorder, outlineColor: white }),\n {\n borderBottom: \"1px solid \" + neutralLighter,\n background: colors.defaultBackground,\n color: colors.defaultMetaText,\n // This ensures that the row always tries to consume is minimum width and does not compress.\n display: 'inline-flex',\n minWidth: '100%',\n minHeight: values.rowHeight,\n whiteSpace: 'nowrap',\n padding: 0,\n boxSizing: 'border-box',\n verticalAlign: 'top',\n textAlign: 'left',\n selectors: (_j = {},\n _j[\".\" + classNames.listCellFirstChild + \" &:before\"] = {\n display: 'none',\n },\n _j['&:hover'] = {\n background: colors.defaultHoverBackground,\n color: colors.defaultHoverMetaText,\n selectors: (_k = {},\n _k[\".\" + classNames.isRowHeader] = {\n color: colors.defaultHoverHeaderText,\n },\n _k),\n },\n _j[\"&:hover .\" + classNames.check] = {\n opacity: 1,\n },\n _j[\".\" + IsFocusVisibleClassName + \" &:focus .\" + classNames.check] = {\n opacity: 1,\n },\n _j),\n },\n isSelected && selectedStyles,\n !canSelect && cannotSelectStyles,\n compact && rootCompactStyles,\n className,\n ],\n cellUnpadded: {\n paddingRight: cellStyleProps.cellRightPadding + \"px\",\n },\n cellPadded: {\n paddingRight: cellStyleProps.cellExtraRightPadding + cellStyleProps.cellRightPadding + \"px\",\n selectors: (_l = {},\n _l[\"&.\" + classNames.cellCheck] = {\n paddingRight: 0,\n },\n _l),\n },\n cell: defaultCellStyles,\n cellAnimation: enableUpdateAnimations && AnimationStyles.slideLeftIn40,\n cellMeasurer: [\n classNames.cellMeasurer,\n {\n overflow: 'visible',\n whiteSpace: 'nowrap',\n },\n ],\n checkCell: [\n defaultCellStyles,\n classNames.cellCheck,\n checkboxCellClassName,\n {\n padding: 0,\n // Ensure that the check cell covers the top border of the cell.\n // This ensures the click target does not leave a spot which would\n // cause other items to be deselected.\n paddingTop: 1,\n marginTop: -1,\n flexShrink: 0,\n },\n ],\n checkCover: {\n position: 'absolute',\n top: -1,\n left: 0,\n bottom: 0,\n right: 0,\n display: anySelected ? 'block' : 'none',\n },\n fields: [\n classNames.fields,\n {\n display: 'flex',\n alignItems: 'stretch',\n },\n ],\n isRowHeader: [\n classNames.isRowHeader,\n {\n color: colors.defaultHeaderText,\n fontSize: fonts.medium.fontSize,\n },\n isSelected && {\n color: colors.selectedHeaderText,\n fontWeight: FontWeights.semibold,\n selectors: (_m = {},\n _m[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _m),\n },\n ],\n isMultiline: [\n defaultCellStyles,\n {\n whiteSpace: 'normal',\n wordBreak: 'break-word',\n textOverflow: 'clip',\n },\n ],\n check: [classNames.check],\n };\n};\n//# sourceMappingURL=DetailsRow.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "index": 745, - "index2": 747, - "size": 3015, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRowCheck", - "loc": "5:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRowCheck", - "loc": "10:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRowCheck", - "loc": "233:35-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRowCheck", - "loc": "475:55-70" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRowCheck", - "loc": "12:0-34" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsRowCheck", - "loc": "12:0-34" - } - ], - "usedExports": [ - "DetailsRowCheck" - ], - "providedExports": [ - "DetailsRowCheck" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { css, styled, classNamesFunction } from '../../Utilities';\nimport { Check } from '../../Check';\nimport { getStyles } from './DetailsRowCheck.styles';\nimport { composeRenderFunction } from '@uifabric/utilities';\nvar getClassNames = classNamesFunction();\nvar DetailsRowCheckBase = function (props) {\n var _a = props.isVisible, isVisible = _a === void 0 ? false : _a, _b = props.canSelect, canSelect = _b === void 0 ? false : _b, _c = props.anySelected, anySelected = _c === void 0 ? false : _c, _d = props.selected, selected = _d === void 0 ? false : _d, _e = props.isHeader, isHeader = _e === void 0 ? false : _e, className = props.className, checkClassName = props.checkClassName, styles = props.styles, theme = props.theme, compact = props.compact, onRenderDetailsCheckbox = props.onRenderDetailsCheckbox, _f = props.useFastIcons, useFastIcons = _f === void 0 ? true : _f, // must be removed from buttonProps\n buttonProps = __rest(props, [\"isVisible\", \"canSelect\", \"anySelected\", \"selected\", \"isHeader\", \"className\", \"checkClassName\", \"styles\", \"theme\", \"compact\", \"onRenderDetailsCheckbox\", \"useFastIcons\"]);\n var defaultCheckboxRender = useFastIcons ? _fastDefaultCheckboxRender : _defaultCheckboxRender;\n var onRenderCheckbox = onRenderDetailsCheckbox\n ? composeRenderFunction(onRenderDetailsCheckbox, defaultCheckboxRender)\n : defaultCheckboxRender;\n var classNames = getClassNames(styles, {\n theme: theme,\n canSelect: canSelect,\n selected: selected,\n anySelected: anySelected,\n className: className,\n isHeader: isHeader,\n isVisible: isVisible,\n compact: compact,\n });\n var detailsCheckboxProps = {\n checked: selected,\n theme: theme,\n };\n return canSelect ? (React.createElement(\"div\", __assign({}, buttonProps, { role: \"checkbox\", \n // eslint-disable-next-line deprecation/deprecation\n className: css(classNames.root, classNames.check), \"aria-checked\": selected, \"data-selection-toggle\": true, \"data-automationid\": \"DetailsRowCheck\", tabIndex: -1 }), onRenderCheckbox(detailsCheckboxProps))) : (\n // eslint-disable-next-line deprecation/deprecation\n React.createElement(\"div\", __assign({}, buttonProps, { className: css(classNames.root, classNames.check) })));\n};\nvar FastCheck = React.memo(function (props) {\n return React.createElement(Check, { theme: props.theme, checked: props.checked, className: props.className, useFastIcons: true });\n});\nfunction _defaultCheckboxRender(checkboxProps) {\n return React.createElement(Check, { checked: checkboxProps.checked });\n}\nfunction _fastDefaultCheckboxRender(checkboxProps) {\n return React.createElement(FastCheck, { theme: checkboxProps.theme, checked: checkboxProps.checked });\n}\nexport var DetailsRowCheck = styled(DetailsRowCheckBase, getStyles, undefined, { scope: 'DetailsRowCheck' }, true);\n//# sourceMappingURL=DetailsRowCheck.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowFields.js", - "index": 740, - "index2": 737, - "size": 3395, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRowFields", - "loc": "7:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRowFields", - "loc": "139:36-52" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRowFields", - "loc": "13:0-35" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsRowFields", - "loc": "13:0-35" - } - ], - "usedExports": [ - "DetailsRowFields" - ], - "providedExports": [ - "DetailsRowFields" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import * as React from 'react';\nimport { css } from '../../Utilities';\nimport { DEFAULT_CELL_STYLE_PROPS } from './DetailsRow.styles';\nvar getCellText = function (item, column) {\n var value = item && column && column.fieldName ? item[column.fieldName] : '';\n if (value === null || value === undefined) {\n value = '';\n }\n if (typeof value === 'boolean') {\n return value.toString();\n }\n return value;\n};\n/**\n * Component for rendering a row's cells in a `DetailsList`.\n *\n * {@docCategory DetailsList}\n */\nexport var DetailsRowFields = function (props) {\n var columns = props.columns, columnStartIndex = props.columnStartIndex, rowClassNames = props.rowClassNames, _a = props.cellStyleProps, cellStyleProps = _a === void 0 ? DEFAULT_CELL_STYLE_PROPS : _a, item = props.item, itemIndex = props.itemIndex, onRenderItemColumn = props.onRenderItemColumn, getCellValueKey = props.getCellValueKey, cellsByColumn = props.cellsByColumn, enableUpdateAnimations = props.enableUpdateAnimations, rowHeaderId = props.rowHeaderId;\n var cellValueKeysRef = React.useRef();\n var cellValueKeys = cellValueKeysRef.current || (cellValueKeysRef.current = {});\n return (React.createElement(\"div\", { className: rowClassNames.fields, \"data-automationid\": \"DetailsRowFields\", role: \"presentation\" }, columns.map(function (column, columnIndex) {\n var width = typeof column.calculatedWidth === 'undefined'\n ? 'auto'\n : column.calculatedWidth +\n cellStyleProps.cellLeftPadding +\n cellStyleProps.cellRightPadding +\n (column.isPadded ? cellStyleProps.cellExtraRightPadding : 0);\n var _a = column.onRender, onRender = _a === void 0 ? onRenderItemColumn : _a, _b = column.getValueKey, getValueKey = _b === void 0 ? getCellValueKey : _b;\n var cellContentsRender = cellsByColumn && column.key in cellsByColumn\n ? cellsByColumn[column.key]\n : onRender\n ? onRender(item, itemIndex, column)\n : getCellText(item, column);\n var previousValueKey = cellValueKeys[column.key];\n var cellValueKey = enableUpdateAnimations && getValueKey ? getValueKey(item, itemIndex, column) : undefined;\n var showAnimation = false;\n if (cellValueKey !== undefined && previousValueKey !== undefined && cellValueKey !== previousValueKey) {\n showAnimation = true;\n }\n cellValueKeys[column.key] = cellValueKey;\n // generate a key that auto-dirties when content changes, to force the container to re-render,\n // to trigger animation\n var key = \"\" + column.key + (cellValueKey !== undefined ? \"-\" + cellValueKey : '');\n return (React.createElement(\"div\", { key: key, id: column.isRowHeader ? rowHeaderId : undefined, role: column.isRowHeader ? 'rowheader' : 'gridcell', \"aria-readonly\": true, \"aria-colindex\": columnIndex + columnStartIndex + 1, className: css(column.className, column.isMultiline && rowClassNames.isMultiline, column.isRowHeader && rowClassNames.isRowHeader, rowClassNames.cell, column.isPadded ? rowClassNames.cellPadded : rowClassNames.cellUnpadded, showAnimation && rowClassNames.cellAnimation), style: { width: width }, \"data-automationid\": \"DetailsRowCell\", \"data-automation-key\": column.key }, cellContentsRender));\n })));\n};\n//# sourceMappingURL=DetailsRowFields.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.types.js", - "index": 744, - "index2": 740, - "size": 364, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "issuerId": "D63i", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../GroupedList", - "loc": "201:156-177" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../GroupedList", - "loc": "488:74-95" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../GroupedList", - "loc": "607:31-52" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../GroupedList/GroupedList.types", - "loc": "2:0-49" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "../GroupedList/GroupedList.types", - "loc": "2:0-49" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupedList.types", - "loc": "3:0-36" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupedList.types", - "loc": "3:0-36" - } - ], - "usedExports": [ - "CollapseAllVisibility" - ], - "providedExports": [ - "CollapseAllVisibility" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\n * {@docCategory GroupedList}\n */\nexport var CollapseAllVisibility;\n(function (CollapseAllVisibility) {\n CollapseAllVisibility[CollapseAllVisibility[\"hidden\"] = 0] = \"hidden\";\n CollapseAllVisibility[CollapseAllVisibility[\"visible\"] = 1] = \"visible\";\n})(CollapseAllVisibility || (CollapseAllVisibility = {}));\n//# sourceMappingURL=GroupedList.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "index": 738, - "index2": 748, - "size": 15726, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.base", - "loc": "2:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRow.base", - "loc": "4:31-45" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow.base", - "loc": "10:0-34" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsRow.base", - "loc": "10:0-34" - } - ], - "usedExports": [ - "DetailsRowBase" - ], - "providedExports": [ - "DetailsRowBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, EventGroup, css, shallowCompare, getNativeProps, divProperties, } from '../../Utilities';\nimport { CheckboxVisibility } from './DetailsList.types';\nimport { DetailsRowCheck } from './DetailsRowCheck';\nimport { GroupSpacer } from '../GroupedList/GroupSpacer';\nimport { DetailsRowFields } from './DetailsRowFields';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nimport { SelectionMode, SELECTION_CHANGE } from '../../utilities/selection/interfaces';\nimport { CollapseAllVisibility } from '../../GroupedList';\nimport { classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar DEFAULT_DROPPING_CSS_CLASS = 'is-dropping';\nvar NO_COLUMNS = [];\nvar DetailsRowBase = /** @class */ (function (_super) {\n __extends(DetailsRowBase, _super);\n function DetailsRowBase(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._cellMeasurer = React.createRef();\n _this._focusZone = React.createRef();\n _this._onSelectionChanged = function () {\n var selectionState = getSelectionState(_this.props);\n if (!shallowCompare(selectionState, _this.state.selectionState)) {\n _this.setState({\n selectionState: selectionState,\n });\n }\n };\n /**\n * update isDropping state based on the input value, which is used to change style during drag and drop\n *\n * when change to true, that means drag enter. we will add default dropping class name\n * or the custom dropping class name (return result from onDragEnter) to the root elemet.\n *\n * when change to false, that means drag leave. we will remove the dropping class name from root element.\n *\n * @param newValue - New isDropping state value\n * @param event - The event trigger dropping state change which can be dragenter, dragleave etc\n */\n _this._updateDroppingState = function (newValue, event) {\n var isDropping = _this.state.isDropping;\n var _a = _this.props, dragDropEvents = _a.dragDropEvents, item = _a.item;\n if (!newValue) {\n if (dragDropEvents.onDragLeave) {\n dragDropEvents.onDragLeave(item, event);\n }\n }\n else if (dragDropEvents.onDragEnter) {\n _this._droppingClassNames = dragDropEvents.onDragEnter(item, event);\n }\n if (isDropping !== newValue) {\n _this.setState({ isDropping: newValue });\n }\n };\n initializeComponentRef(_this);\n _this._events = new EventGroup(_this);\n _this.state = {\n selectionState: getSelectionState(props),\n columnMeasureInfo: undefined,\n isDropping: false,\n };\n _this._droppingClassNames = '';\n return _this;\n }\n DetailsRowBase.getDerivedStateFromProps = function (nextProps, previousState) {\n return __assign(__assign({}, previousState), { selectionState: getSelectionState(nextProps) });\n };\n DetailsRowBase.prototype.componentDidMount = function () {\n var _a = this.props, dragDropHelper = _a.dragDropHelper, selection = _a.selection, item = _a.item, onDidMount = _a.onDidMount;\n if (dragDropHelper && this._root.current) {\n this._dragDropSubscription = dragDropHelper.subscribe(this._root.current, this._events, this._getRowDragDropOptions());\n }\n if (selection) {\n this._events.on(selection, SELECTION_CHANGE, this._onSelectionChanged);\n }\n if (onDidMount && item) {\n // If the item appears later, we should wait for it before calling this method.\n this._onDidMountCalled = true;\n onDidMount(this);\n }\n };\n DetailsRowBase.prototype.componentDidUpdate = function (previousProps) {\n var state = this.state;\n var _a = this.props, item = _a.item, onDidMount = _a.onDidMount;\n var columnMeasureInfo = state.columnMeasureInfo;\n if (this.props.itemIndex !== previousProps.itemIndex ||\n this.props.item !== previousProps.item ||\n this.props.dragDropHelper !== previousProps.dragDropHelper) {\n if (this._dragDropSubscription) {\n this._dragDropSubscription.dispose();\n delete this._dragDropSubscription;\n }\n if (this.props.dragDropHelper && this._root.current) {\n this._dragDropSubscription = this.props.dragDropHelper.subscribe(this._root.current, this._events, this._getRowDragDropOptions());\n }\n }\n if (columnMeasureInfo && columnMeasureInfo.index >= 0 && this._cellMeasurer.current) {\n var newWidth = this._cellMeasurer.current.getBoundingClientRect().width;\n columnMeasureInfo.onMeasureDone(newWidth);\n this.setState({\n columnMeasureInfo: undefined,\n });\n }\n if (item && onDidMount && !this._onDidMountCalled) {\n this._onDidMountCalled = true;\n onDidMount(this);\n }\n };\n DetailsRowBase.prototype.componentWillUnmount = function () {\n var _a = this.props, item = _a.item, onWillUnmount = _a.onWillUnmount;\n // Only call the onWillUnmount callback if we have an item.\n if (onWillUnmount && item) {\n onWillUnmount(this);\n }\n if (this._dragDropSubscription) {\n this._dragDropSubscription.dispose();\n delete this._dragDropSubscription;\n }\n this._events.dispose();\n };\n DetailsRowBase.prototype.shouldComponentUpdate = function (nextProps, nextState) {\n if (this.props.useReducedRowRenderer) {\n var newSelectionState = getSelectionState(nextProps);\n if (this.state.selectionState.isSelected !== newSelectionState.isSelected) {\n return true;\n }\n return !shallowCompare(this.props, nextProps);\n }\n else {\n return true;\n }\n };\n DetailsRowBase.prototype.render = function () {\n var _a = this.props, className = _a.className, _b = _a.columns, columns = _b === void 0 ? NO_COLUMNS : _b, dragDropEvents = _a.dragDropEvents, item = _a.item, itemIndex = _a.itemIndex, id = _a.id, _c = _a.onRenderCheck, onRenderCheck = _c === void 0 ? this._onRenderCheck : _c, onRenderDetailsCheckbox = _a.onRenderDetailsCheckbox, onRenderItemColumn = _a.onRenderItemColumn, getCellValueKey = _a.getCellValueKey, selectionMode = _a.selectionMode, _d = _a.rowWidth, rowWidth = _d === void 0 ? 0 : _d, checkboxVisibility = _a.checkboxVisibility, getRowAriaLabel = _a.getRowAriaLabel, getRowAriaDescribedBy = _a.getRowAriaDescribedBy, checkButtonAriaLabel = _a.checkButtonAriaLabel, checkboxCellClassName = _a.checkboxCellClassName, \n /** Alias rowFieldsAs as RowFields and default to DetailsRowFields if rowFieldsAs does not exist */\n _e = _a.rowFieldsAs, \n /** Alias rowFieldsAs as RowFields and default to DetailsRowFields if rowFieldsAs does not exist */\n RowFields = _e === void 0 ? DetailsRowFields : _e, selection = _a.selection, indentWidth = _a.indentWidth, enableUpdateAnimations = _a.enableUpdateAnimations, compact = _a.compact, theme = _a.theme, styles = _a.styles, cellsByColumn = _a.cellsByColumn, groupNestingDepth = _a.groupNestingDepth, _f = _a.useFastIcons, useFastIcons = _f === void 0 ? true : _f, cellStyleProps = _a.cellStyleProps;\n var _g = this.state, columnMeasureInfo = _g.columnMeasureInfo, isDropping = _g.isDropping;\n var _h = this.state.selectionState, _j = _h.isSelected, isSelected = _j === void 0 ? false : _j, _k = _h.isSelectionModal, isSelectionModal = _k === void 0 ? false : _k;\n var isDraggable = dragDropEvents ? !!(dragDropEvents.canDrag && dragDropEvents.canDrag(item)) : undefined;\n var droppingClassName = isDropping ? this._droppingClassNames || DEFAULT_DROPPING_CSS_CLASS : '';\n var ariaLabel = getRowAriaLabel ? getRowAriaLabel(item) : undefined;\n var ariaDescribedBy = getRowAriaDescribedBy ? getRowAriaDescribedBy(item) : undefined;\n var canSelect = !!selection && selection.canSelectItem(item, itemIndex);\n var isContentUnselectable = selectionMode === SelectionMode.multiple;\n var showCheckbox = selectionMode !== SelectionMode.none && checkboxVisibility !== CheckboxVisibility.hidden;\n var ariaSelected = selectionMode === SelectionMode.none ? undefined : isSelected;\n this._classNames = __assign(__assign({}, this._classNames), getClassNames(styles, {\n theme: theme,\n isSelected: isSelected,\n canSelect: !isContentUnselectable,\n anySelected: isSelectionModal,\n checkboxCellClassName: checkboxCellClassName,\n droppingClassName: droppingClassName,\n className: className,\n compact: compact,\n enableUpdateAnimations: enableUpdateAnimations,\n cellStyleProps: cellStyleProps,\n }));\n var rowClassNames = {\n isMultiline: this._classNames.isMultiline,\n isRowHeader: this._classNames.isRowHeader,\n cell: this._classNames.cell,\n cellAnimation: this._classNames.cellAnimation,\n cellPadded: this._classNames.cellPadded,\n cellUnpadded: this._classNames.cellUnpadded,\n fields: this._classNames.fields,\n };\n // Only re-assign rowClassNames when classNames have changed.\n // Otherwise, they will cause DetailsRowFields to unnecessarily\n // re-render, see https://github.com/microsoft/fluentui/pull/8799.\n // Refactor DetailsRowFields to generate own styles to remove need for this.\n if (!shallowCompare(this._rowClassNames || {}, rowClassNames)) {\n this._rowClassNames = rowClassNames;\n }\n var rowFields = (React.createElement(RowFields, { rowClassNames: this._rowClassNames, rowHeaderId: id + \"-header\", cellsByColumn: cellsByColumn, columns: columns, item: item, itemIndex: itemIndex, columnStartIndex: (showCheckbox ? 1 : 0) + (groupNestingDepth ? 1 : 0), onRenderItemColumn: onRenderItemColumn, getCellValueKey: getCellValueKey, enableUpdateAnimations: enableUpdateAnimations, cellStyleProps: cellStyleProps }));\n var defaultRole = 'row';\n var role = this.props.role ? this.props.role : defaultRole;\n return (React.createElement(FocusZone, __assign({ \"data-is-focusable\": true }, getNativeProps(this.props, divProperties), (typeof isDraggable === 'boolean'\n ? {\n 'data-is-draggable': isDraggable,\n draggable: isDraggable,\n }\n : {}), { direction: FocusZoneDirection.horizontal, elementRef: this._root, componentRef: this._focusZone, role: role, \"aria-label\": ariaLabel, \"aria-describedby\": ariaDescribedBy, className: this._classNames.root, \"data-selection-index\": itemIndex, \"data-selection-touch-invoke\": true, \"data-item-index\": itemIndex, \"aria-rowindex\": groupNestingDepth ? undefined : itemIndex + 1, \"aria-level\": (groupNestingDepth && groupNestingDepth + 1) || undefined, \"data-automationid\": \"DetailsRow\", style: { minWidth: rowWidth }, \"aria-selected\": ariaSelected, allowFocusRoot: true }),\n showCheckbox && (React.createElement(\"div\", { role: \"gridcell\", \"aria-colindex\": 1, \"data-selection-toggle\": true, className: this._classNames.checkCell }, onRenderCheck({\n id: id ? id + \"-checkbox\" : undefined,\n selected: isSelected,\n anySelected: isSelectionModal,\n 'aria-label': checkButtonAriaLabel,\n 'aria-labelledby': id ? id + \"-checkbox \" + id + \"-header\" : undefined,\n canSelect: canSelect,\n compact: compact,\n className: this._classNames.check,\n theme: theme,\n isVisible: checkboxVisibility === CheckboxVisibility.always,\n onRenderDetailsCheckbox: onRenderDetailsCheckbox,\n useFastIcons: useFastIcons,\n }))),\n React.createElement(GroupSpacer, { indentWidth: indentWidth, role: \"gridcell\", count: groupNestingDepth - (this.props.collapseAllVisibility === CollapseAllVisibility.hidden ? 1 : 0) }),\n item && rowFields,\n columnMeasureInfo && (React.createElement(\"span\", { role: \"presentation\", className: css(this._classNames.cellMeasurer, this._classNames.cell), ref: this._cellMeasurer },\n React.createElement(RowFields, { rowClassNames: this._rowClassNames, rowHeaderId: id + \"-header\", columns: [columnMeasureInfo.column], item: item, itemIndex: itemIndex, columnStartIndex: (showCheckbox ? 1 : 0) + (groupNestingDepth ? 1 : 0) + columns.length, onRenderItemColumn: onRenderItemColumn, getCellValueKey: getCellValueKey }))),\n React.createElement(\"span\", { role: \"checkbox\", className: this._classNames.checkCover, \"aria-checked\": isSelected, \"data-selection-toggle\": true })));\n };\n /**\n * measure cell at index. and call the call back with the measured cell width when finish measure\n *\n * @param index - The cell index\n * @param onMeasureDone - The call back function when finish measure\n */\n DetailsRowBase.prototype.measureCell = function (index, onMeasureDone) {\n var _a = this.props.columns, columns = _a === void 0 ? NO_COLUMNS : _a;\n var column = __assign({}, columns[index]);\n column.minWidth = 0;\n column.maxWidth = 999999;\n delete column.calculatedWidth;\n this.setState({\n columnMeasureInfo: {\n index: index,\n column: column,\n onMeasureDone: onMeasureDone,\n },\n });\n };\n DetailsRowBase.prototype.focus = function (forceIntoFirstElement) {\n if (forceIntoFirstElement === void 0) { forceIntoFirstElement = false; }\n var _a;\n return !!((_a = this._focusZone.current) === null || _a === void 0 ? void 0 : _a.focus(forceIntoFirstElement));\n };\n DetailsRowBase.prototype._onRenderCheck = function (props) {\n return React.createElement(DetailsRowCheck, __assign({}, props));\n };\n DetailsRowBase.prototype._getRowDragDropOptions = function () {\n var _a = this.props, item = _a.item, itemIndex = _a.itemIndex, dragDropEvents = _a.dragDropEvents, eventsToRegister = _a.eventsToRegister;\n var options = {\n eventMap: eventsToRegister,\n selectionIndex: itemIndex,\n context: { data: item, index: itemIndex },\n canDrag: dragDropEvents.canDrag,\n canDrop: dragDropEvents.canDrop,\n onDragStart: dragDropEvents.onDragStart,\n updateDropState: this._updateDroppingState,\n onDrop: dragDropEvents.onDrop,\n onDragEnd: dragDropEvents.onDragEnd,\n onDragOver: dragDropEvents.onDragOver,\n };\n return options;\n };\n return DetailsRowBase;\n}(React.Component));\nexport { DetailsRowBase };\nfunction getSelectionState(props) {\n var _a, _b, _c, _d;\n var itemIndex = props.itemIndex, selection = props.selection;\n return {\n isSelected: !!((_a = selection) === null || _a === void 0 ? void 0 : _a.isIndexSelected(itemIndex)),\n isSelectionModal: !!((_d = (_b = selection) === null || _b === void 0 ? void 0 : (_c = _b).isModal) === null || _d === void 0 ? void 0 : _d.call(_c)),\n };\n}\n//# sourceMappingURL=DetailsRow.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.js", - "index": 737, - "index2": 749, - "size": 301, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../DetailsList/DetailsRow", - "loc": "7:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/DetailsList", - "loc": "316:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsRow", - "loc": "367:39-49" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRow", - "loc": "9:0-29" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsRow", - "loc": "9:0-29" - } - ], - "usedExports": [ - "DetailsRow" - ], - "providedExports": [ - "DetailsRow" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { DetailsRowBase } from './DetailsRow.base';\nimport { getDetailsRowStyles } from './DetailsRow.styles';\nexport var DetailsRow = styled(DetailsRowBase, getDetailsRowStyles, undefined, {\n scope: 'DetailsRow',\n});\n//# sourceMappingURL=DetailsRow.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "index": 757, - "index2": 752, - "size": 14243, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsColumn.base", - "loc": "2:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "type": "harmony import specifier", - "userRequest": "./DetailsColumn.base", - "loc": "4:34-51" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsColumn.base", - "loc": "14:0-37" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsColumn.base", - "loc": "14:0-37" - } - ], - "usedExports": [ - "DetailsColumnBase" - ], - "providedExports": [ - "DetailsColumnBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { Icon, FontIcon } from '../../Icon';\nimport { initializeComponentRef, EventGroup, Async, classNamesFunction, composeRenderFunction, } from '../../Utilities';\nimport { ColumnActionsMode } from './DetailsList.types';\nimport { DEFAULT_CELL_STYLE_PROPS } from './DetailsRow.styles';\nvar MOUSEDOWN_PRIMARY_BUTTON = 0; // for mouse down event we are using ev.button property, 0 means left button\nvar getClassNames = classNamesFunction();\nvar TRANSITION_DURATION_DRAG = 200; // ms\nvar TRANSITION_DURATION_DROP = 1500; // ms\nvar CLASSNAME_ADD_INTERVAL = 20; // ms\nvar defaultOnRenderHeader = function (classNames) { return function (props) {\n if (!props) {\n return null;\n }\n if (props.column.isIconOnly) {\n return React.createElement(\"span\", { className: classNames.accessibleLabel }, props.column.name);\n }\n return React.createElement(React.Fragment, null, props.column.name);\n}; };\n/**\n * Component for rendering columns in a `DetailsList`.\n *\n * {@docCategory DetailsList}\n */\nvar DetailsColumnBase = /** @class */ (function (_super) {\n __extends(DetailsColumnBase, _super);\n function DetailsColumnBase(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._onRenderFilterIcon = function (classNames) { return function (props) {\n var _a;\n var columnProps = props.columnProps, iconProps = __rest(props, [\"columnProps\"]);\n var IconComponent = ((_a = columnProps) === null || _a === void 0 ? void 0 : _a.useFastIcons) ? FontIcon : Icon;\n return React.createElement(IconComponent, __assign({}, iconProps));\n }; };\n _this._onRenderColumnHeaderTooltip = function (tooltipHostProps) {\n return React.createElement(\"span\", { className: tooltipHostProps.hostClassName }, tooltipHostProps.children);\n };\n _this._onColumnClick = function (ev) {\n var _a = _this.props, onColumnClick = _a.onColumnClick, column = _a.column;\n if (column.columnActionsMode === ColumnActionsMode.disabled) {\n return;\n }\n if (column.onColumnClick) {\n column.onColumnClick(ev, column);\n }\n if (onColumnClick) {\n onColumnClick(ev, column);\n }\n };\n _this._onDragStart = function (item, itemIndex, selectedItems, event) {\n var classNames = _this._classNames;\n if (itemIndex) {\n _this._updateHeaderDragInfo(itemIndex);\n _this._root.current.classList.add(classNames.borderWhileDragging);\n _this._async.setTimeout(function () {\n if (_this._root.current) {\n _this._root.current.classList.add(classNames.noBorderWhileDragging);\n }\n }, CLASSNAME_ADD_INTERVAL);\n }\n };\n _this._onDragEnd = function (item, event) {\n var classNames = _this._classNames;\n if (event) {\n _this._updateHeaderDragInfo(-1, event);\n }\n _this._root.current.classList.remove(classNames.borderWhileDragging);\n _this._root.current.classList.remove(classNames.noBorderWhileDragging);\n };\n _this._updateHeaderDragInfo = function (itemIndex, event) {\n /* eslint-disable deprecation/deprecation */\n if (_this.props.setDraggedItemIndex) {\n _this.props.setDraggedItemIndex(itemIndex);\n }\n /* eslint-enable deprecation/deprecation */\n if (_this.props.updateDragInfo) {\n _this.props.updateDragInfo({ itemIndex: itemIndex }, event);\n }\n };\n _this._onColumnContextMenu = function (ev) {\n var _a = _this.props, onColumnContextMenu = _a.onColumnContextMenu, column = _a.column;\n if (column.onColumnContextMenu) {\n column.onColumnContextMenu(column, ev);\n ev.preventDefault();\n }\n if (onColumnContextMenu) {\n onColumnContextMenu(column, ev);\n ev.preventDefault();\n }\n };\n _this._onRootMouseDown = function (ev) {\n var isDraggable = _this.props.isDraggable;\n // Ignore anything except the primary button.\n if (isDraggable && ev.button === MOUSEDOWN_PRIMARY_BUTTON) {\n ev.stopPropagation();\n }\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n return _this;\n }\n DetailsColumnBase.prototype.render = function () {\n var _a = this.props, column = _a.column, columnIndex = _a.columnIndex, parentId = _a.parentId, isDraggable = _a.isDraggable, styles = _a.styles, theme = _a.theme, _b = _a.cellStyleProps, cellStyleProps = _b === void 0 ? DEFAULT_CELL_STYLE_PROPS : _b, _c = _a.useFastIcons, useFastIcons = _c === void 0 ? true : _c;\n var _d = this.props.onRenderColumnHeaderTooltip, onRenderColumnHeaderTooltip = _d === void 0 ? this._onRenderColumnHeaderTooltip : _d;\n this._classNames = getClassNames(styles, {\n theme: theme,\n headerClassName: column.headerClassName,\n iconClassName: column.iconClassName,\n isActionable: column.columnActionsMode !== ColumnActionsMode.disabled,\n isEmpty: !column.name,\n isIconVisible: column.isSorted || column.isGrouped || column.isFiltered,\n isPadded: column.isPadded,\n isIconOnly: column.isIconOnly,\n cellStyleProps: cellStyleProps,\n transitionDurationDrag: TRANSITION_DURATION_DRAG,\n transitionDurationDrop: TRANSITION_DURATION_DROP,\n });\n var classNames = this._classNames;\n var IconComponent = useFastIcons ? FontIcon : Icon;\n var onRenderFilterIcon = column.onRenderFilterIcon\n ? composeRenderFunction(column.onRenderFilterIcon, this._onRenderFilterIcon(this._classNames))\n : this._onRenderFilterIcon(this._classNames);\n var onRenderHeader = column.onRenderHeader\n ? composeRenderFunction(column.onRenderHeader, defaultOnRenderHeader(this._classNames))\n : defaultOnRenderHeader(this._classNames);\n return (React.createElement(React.Fragment, null,\n React.createElement(\"div\", { key: column.key, ref: this._root, role: 'columnheader', \"aria-sort\": column.isSorted ? (column.isSortedDescending ? 'descending' : 'ascending') : 'none', \"aria-colindex\": columnIndex, className: classNames.root, \"data-is-draggable\": isDraggable, draggable: isDraggable, style: {\n width: column.calculatedWidth +\n cellStyleProps.cellLeftPadding +\n cellStyleProps.cellRightPadding +\n (column.isPadded ? cellStyleProps.cellExtraRightPadding : 0),\n }, \"data-automationid\": 'ColumnsHeaderColumn', \"data-item-key\": column.key },\n isDraggable && (React.createElement(IconComponent, { iconName: \"GripperBarVertical\", className: classNames.gripperBarVerticalStyle })),\n onRenderColumnHeaderTooltip({\n hostClassName: classNames.cellTooltip,\n id: parentId + \"-\" + column.key + \"-tooltip\",\n setAriaDescribedBy: false,\n column: column,\n content: column.columnActionsMode !== ColumnActionsMode.disabled ? column.ariaLabel : '',\n children: (React.createElement(\"span\", { id: parentId + \"-\" + column.key, \"aria-label\": column.isIconOnly ? column.name : undefined, \"aria-labelledby\": column.isIconOnly ? undefined : parentId + \"-\" + column.key + \"-name\", className: classNames.cellTitle, \"data-is-focusable\": column.columnActionsMode !== ColumnActionsMode.disabled, role: column.columnActionsMode !== ColumnActionsMode.disabled &&\n (column.onColumnClick !== undefined || this.props.onColumnClick !== undefined)\n ? 'button'\n : undefined, \"aria-describedby\": !this.props.onRenderColumnHeaderTooltip && this._hasAccessibleLabel()\n ? parentId + \"-\" + column.key + \"-tooltip\"\n : undefined, onContextMenu: this._onColumnContextMenu, onClick: this._onColumnClick, \"aria-haspopup\": column.columnActionsMode === ColumnActionsMode.hasDropdown, \"aria-expanded\": column.columnActionsMode === ColumnActionsMode.hasDropdown ? !!column.isMenuOpen : undefined },\n React.createElement(\"span\", { id: parentId + \"-\" + column.key + \"-name\", className: classNames.cellName },\n (column.iconName || column.iconClassName) && (React.createElement(IconComponent, { className: classNames.iconClassName, iconName: column.iconName })),\n onRenderHeader(this.props)),\n column.isFiltered && React.createElement(IconComponent, { className: classNames.nearIcon, iconName: \"Filter\" }),\n column.isSorted && (React.createElement(IconComponent, { className: classNames.sortIcon, iconName: column.isSortedDescending ? 'SortDown' : 'SortUp' })),\n column.isGrouped && React.createElement(IconComponent, { className: classNames.nearIcon, iconName: \"GroupedDescending\" }),\n column.columnActionsMode === ColumnActionsMode.hasDropdown &&\n !column.isIconOnly &&\n onRenderFilterIcon({\n 'aria-hidden': true,\n columnProps: this.props,\n className: classNames.filterChevron,\n iconName: 'ChevronDown',\n }))),\n }, this._onRenderColumnHeaderTooltip)),\n !this.props.onRenderColumnHeaderTooltip ? this._renderAccessibleLabel() : null));\n };\n DetailsColumnBase.prototype.componentDidMount = function () {\n var _this = this;\n if (this.props.dragDropHelper && this.props.isDraggable) {\n this._addDragDropHandling();\n }\n var classNames = this._classNames;\n if (this.props.isDropped) {\n if (this._root.current) {\n this._root.current.classList.add(classNames.borderAfterDropping);\n this._async.setTimeout(function () {\n if (_this._root.current) {\n _this._root.current.classList.add(classNames.noBorderAfterDropping);\n }\n }, CLASSNAME_ADD_INTERVAL);\n }\n this._async.setTimeout(function () {\n if (_this._root.current) {\n _this._root.current.classList.remove(classNames.borderAfterDropping);\n _this._root.current.classList.remove(classNames.noBorderAfterDropping);\n }\n }, TRANSITION_DURATION_DROP + CLASSNAME_ADD_INTERVAL);\n }\n };\n DetailsColumnBase.prototype.componentWillUnmount = function () {\n if (this._dragDropSubscription) {\n this._dragDropSubscription.dispose();\n delete this._dragDropSubscription;\n }\n this._async.dispose();\n this._events.dispose();\n };\n DetailsColumnBase.prototype.componentDidUpdate = function () {\n if (!this._dragDropSubscription && this.props.dragDropHelper && this.props.isDraggable) {\n this._addDragDropHandling();\n }\n if (this._dragDropSubscription && !this.props.isDraggable) {\n this._dragDropSubscription.dispose();\n this._events.off(this._root.current, 'mousedown');\n delete this._dragDropSubscription;\n }\n };\n DetailsColumnBase.prototype._getColumnDragDropOptions = function () {\n var _this = this;\n var columnIndex = this.props.columnIndex;\n var options = {\n selectionIndex: columnIndex,\n context: { data: columnIndex, index: columnIndex },\n canDrag: function () { return _this.props.isDraggable; },\n canDrop: function () { return false; },\n onDragStart: this._onDragStart,\n updateDropState: function () { return undefined; },\n onDrop: function () { return undefined; },\n onDragEnd: this._onDragEnd,\n };\n return options;\n };\n DetailsColumnBase.prototype._hasAccessibleLabel = function () {\n var column = this.props.column;\n return !!(column.ariaLabel ||\n column.filterAriaLabel ||\n column.sortAscendingAriaLabel ||\n column.sortDescendingAriaLabel ||\n column.groupAriaLabel);\n };\n DetailsColumnBase.prototype._renderAccessibleLabel = function () {\n var _a = this.props, column = _a.column, parentId = _a.parentId;\n var classNames = this._classNames;\n return this._hasAccessibleLabel() && !this.props.onRenderColumnHeaderTooltip ? (React.createElement(\"label\", { key: column.key + \"_label\", id: parentId + \"-\" + column.key + \"-tooltip\", className: classNames.accessibleLabel },\n column.ariaLabel,\n (column.isFiltered && column.filterAriaLabel) || null,\n (column.isSorted &&\n (column.isSortedDescending ? column.sortDescendingAriaLabel : column.sortAscendingAriaLabel)) ||\n null,\n (column.isGrouped && column.groupAriaLabel) || null)) : null;\n };\n DetailsColumnBase.prototype._addDragDropHandling = function () {\n this._dragDropSubscription = this.props.dragDropHelper.subscribe(this._root.current, this._events, this._getColumnDragDropOptions());\n // We need to use native on this to prevent MarqueeSelection from handling the event before us.\n this._events.on(this._root.current, 'mousedown', this._onRootMouseDown);\n };\n return DetailsColumnBase;\n}(React.Component));\nexport { DetailsColumnBase };\n//# sourceMappingURL=DetailsColumn.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.types.js", - "index": 755, - "index2": 751, - "size": 417, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../DetailsList/DetailsHeader.types", - "loc": "6:0-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsHeader.types", - "loc": "14:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsHeader.types", - "loc": "41:30-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsHeader.types", - "loc": "43:30-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsHeader.types", - "loc": "52:51-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsHeader.types", - "loc": "52:81-100" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsHeader.types", - "loc": "55:30-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsHeader.types", - "loc": "122:44-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsHeader.types", - "loc": "444:51-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsHeader.types", - "loc": "445:55-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsHeader.types", - "loc": "457:55-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsHeader.types", - "loc": "606:29-48" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsHeader.types", - "loc": "5:0-38" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsHeader.types", - "loc": "5:0-38" - } - ], - "usedExports": [ - "SelectAllVisibility" - ], - "providedExports": [ - "SelectAllVisibility" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\n * {@docCategory DetailsList}\n */\nexport var SelectAllVisibility;\n(function (SelectAllVisibility) {\n SelectAllVisibility[SelectAllVisibility[\"none\"] = 0] = \"none\";\n SelectAllVisibility[SelectAllVisibility[\"hidden\"] = 1] = \"hidden\";\n SelectAllVisibility[SelectAllVisibility[\"visible\"] = 2] = \"visible\";\n})(SelectAllVisibility || (SelectAllVisibility = {}));\n//# sourceMappingURL=DetailsHeader.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "index": 753, - "index2": 755, - "size": 36073, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsHeader.base", - "loc": "2:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "type": "harmony import specifier", - "userRequest": "./DetailsHeader.base", - "loc": "4:34-51" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsHeader.base", - "loc": "4:0-37" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsHeader.base", - "loc": "4:0-37" - } - ], - "usedExports": [ - "DetailsHeaderBase" - ], - "providedExports": [ - "DetailsHeaderBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, EventGroup, css, getRTL, getId, KeyCodes, classNamesFunction, } from '../../Utilities';\nimport { ColumnDragEndLocation, CheckboxVisibility, } from './DetailsList.types';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nimport { Icon, FontIcon } from '../../Icon';\nimport { Layer } from '../../Layer';\nimport { GroupSpacer } from '../GroupedList/GroupSpacer';\nimport { CollapseAllVisibility } from '../../GroupedList';\nimport { DetailsRowCheck } from './DetailsRowCheck';\nimport { SelectionMode, SELECTION_CHANGE } from '../../utilities/selection/interfaces';\nimport { DragDropHelper } from '../../utilities/dragdrop/index';\nimport { DetailsColumn } from '../../components/DetailsList/DetailsColumn';\nimport { SelectAllVisibility, } from './DetailsHeader.types';\nvar getClassNames = classNamesFunction();\nvar MOUSEDOWN_PRIMARY_BUTTON = 0; // for mouse down event we are using ev.button property, 0 means left button\nvar MOUSEMOVE_PRIMARY_BUTTON = 1; // for mouse move event we are using ev.buttons property, 1 means left button\nvar NO_COLUMNS = [];\nvar DetailsHeaderBase = /** @class */ (function (_super) {\n __extends(DetailsHeaderBase, _super);\n function DetailsHeaderBase(props) {\n var _this = _super.call(this, props) || this;\n _this._rootElement = React.createRef();\n _this._rootComponent = React.createRef();\n _this._draggedColumnIndex = -1;\n _this._dropHintDetails = {};\n _this._updateDroppingState = function (newValue, event) {\n if (_this._draggedColumnIndex >= 0 && event.type !== 'drop' && !newValue) {\n _this._resetDropHints();\n }\n };\n _this._onDragOver = function (item, event) {\n if (_this._draggedColumnIndex >= 0) {\n event.stopPropagation();\n _this._computeDropHintToBeShown(event.clientX);\n }\n };\n _this._onDrop = function (item, event) {\n // Safe to assume this is defined since we're handling a drop event\n var columnReorderProps = _this._getColumnReorderProps();\n // Target index will not get changed if draggeditem is after target item.\n if (_this._draggedColumnIndex >= 0 && event) {\n var targetIndex = _this._draggedColumnIndex > _this._currentDropHintIndex\n ? _this._currentDropHintIndex\n : _this._currentDropHintIndex - 1;\n var isValidDrop = _this._isValidCurrentDropHintIndex();\n event.stopPropagation();\n if (isValidDrop) {\n _this._onDropIndexInfo.sourceIndex = _this._draggedColumnIndex;\n _this._onDropIndexInfo.targetIndex = targetIndex;\n if (columnReorderProps.onColumnDrop) {\n var dragDropDetails = {\n draggedIndex: _this._draggedColumnIndex,\n targetIndex: targetIndex,\n };\n columnReorderProps.onColumnDrop(dragDropDetails);\n /* eslint-disable deprecation/deprecation */\n }\n else if (columnReorderProps.handleColumnReorder) {\n columnReorderProps.handleColumnReorder(_this._draggedColumnIndex, targetIndex);\n /* eslint-enable deprecation/deprecation */\n }\n }\n }\n _this._resetDropHints();\n _this._dropHintDetails = {};\n _this._draggedColumnIndex = -1;\n };\n _this._updateDragInfo = function (props, event) {\n // Safe to assume this is defined since we're handling a drag event\n var columnReorderProps = _this._getColumnReorderProps();\n var itemIndex = props.itemIndex;\n if (itemIndex >= 0) {\n // Column index is set based on the checkbox\n _this._draggedColumnIndex = _this._isCheckboxColumnHidden() ? itemIndex - 1 : itemIndex - 2;\n _this._getDropHintPositions();\n if (columnReorderProps.onColumnDragStart) {\n columnReorderProps.onColumnDragStart(true);\n }\n }\n else if (event && _this._draggedColumnIndex >= 0) {\n _this._resetDropHints();\n _this._draggedColumnIndex = -1;\n _this._dropHintDetails = {};\n if (columnReorderProps.onColumnDragEnd) {\n var columnDragEndLocation = _this._isEventOnHeader(event);\n columnReorderProps.onColumnDragEnd({ dropLocation: columnDragEndLocation }, event);\n }\n }\n };\n _this._getDropHintPositions = function () {\n var _a = _this.props.columns, columns = _a === void 0 ? NO_COLUMNS : _a;\n // Safe to assume this is defined since we're handling a drag/drop event\n var columnReorderProps = _this._getColumnReorderProps();\n var prevX = 0;\n var prevMid = 0;\n var prevRef;\n var frozenColumnCountFromStart = columnReorderProps.frozenColumnCountFromStart || 0;\n var frozenColumnCountFromEnd = columnReorderProps.frozenColumnCountFromEnd || 0;\n for (var i = frozenColumnCountFromStart; i < columns.length - frozenColumnCountFromEnd + 1; i++) {\n if (_this._rootElement.current) {\n var dropHintElement = _this._rootElement.current.querySelectorAll('#columnDropHint_' + i)[0];\n if (dropHintElement) {\n if (i === frozenColumnCountFromStart) {\n prevX = dropHintElement.offsetLeft;\n prevMid = dropHintElement.offsetLeft;\n prevRef = dropHintElement;\n }\n else {\n var newMid = (dropHintElement.offsetLeft + prevX) / 2;\n _this._dropHintDetails[i - 1] = {\n originX: prevX,\n startX: prevMid,\n endX: newMid,\n dropHintElementRef: prevRef,\n };\n prevMid = newMid;\n prevRef = dropHintElement;\n prevX = dropHintElement.offsetLeft;\n if (i === columns.length - frozenColumnCountFromEnd) {\n _this._dropHintDetails[i] = {\n originX: prevX,\n startX: prevMid,\n endX: dropHintElement.offsetLeft,\n dropHintElementRef: prevRef,\n };\n }\n }\n }\n }\n }\n };\n /**\n * Based on the given cursor position, finds the nearest drop hint and updates the state to make it visible\n */\n _this._computeDropHintToBeShown = function (clientX) {\n var isRtl = getRTL(_this.props.theme);\n if (_this._rootElement.current) {\n var clientRect = _this._rootElement.current.getBoundingClientRect();\n var headerOriginX = clientRect.left;\n var eventXRelativePosition = clientX - headerOriginX;\n var currentDropHintIndex = _this._currentDropHintIndex;\n if (_this._isValidCurrentDropHintIndex()) {\n if (_liesBetween(isRtl, eventXRelativePosition, _this._dropHintDetails[currentDropHintIndex].startX, _this._dropHintDetails[currentDropHintIndex].endX)) {\n return;\n }\n }\n var _a = _this.props.columns, columns = _a === void 0 ? NO_COLUMNS : _a;\n // Safe to assume this is defined since we're handling a drag/drop event\n var columnReorderProps = _this._getColumnReorderProps();\n var frozenColumnCountFromStart = columnReorderProps.frozenColumnCountFromStart || 0;\n var frozenColumnCountFromEnd = columnReorderProps.frozenColumnCountFromEnd || 0;\n var currentIndex = frozenColumnCountFromStart;\n var lastValidColumn = columns.length - frozenColumnCountFromEnd;\n var indexToUpdate = -1;\n if (_isBefore(isRtl, eventXRelativePosition, _this._dropHintDetails[currentIndex].endX)) {\n indexToUpdate = currentIndex;\n }\n else if (_isAfter(isRtl, eventXRelativePosition, _this._dropHintDetails[lastValidColumn].startX)) {\n indexToUpdate = lastValidColumn;\n }\n else if (_this._isValidCurrentDropHintIndex()) {\n if (_this._dropHintDetails[currentDropHintIndex + 1] &&\n _liesBetween(isRtl, eventXRelativePosition, _this._dropHintDetails[currentDropHintIndex + 1].startX, _this._dropHintDetails[currentDropHintIndex + 1].endX)) {\n indexToUpdate = currentDropHintIndex + 1;\n }\n else if (_this._dropHintDetails[currentDropHintIndex - 1] &&\n _liesBetween(isRtl, eventXRelativePosition, _this._dropHintDetails[currentDropHintIndex - 1].startX, _this._dropHintDetails[currentDropHintIndex - 1].endX)) {\n indexToUpdate = currentDropHintIndex - 1;\n }\n }\n if (indexToUpdate === -1) {\n var startIndex = frozenColumnCountFromStart;\n var endIndex = lastValidColumn;\n while (startIndex < endIndex) {\n var middleIndex = Math.ceil((endIndex + startIndex) / 2);\n if (_liesBetween(isRtl, eventXRelativePosition, _this._dropHintDetails[middleIndex].startX, _this._dropHintDetails[middleIndex].endX)) {\n indexToUpdate = middleIndex;\n break;\n }\n else if (_isBefore(isRtl, eventXRelativePosition, _this._dropHintDetails[middleIndex].originX)) {\n endIndex = middleIndex;\n }\n else if (_isAfter(isRtl, eventXRelativePosition, _this._dropHintDetails[middleIndex].originX)) {\n startIndex = middleIndex;\n }\n }\n }\n if (indexToUpdate === _this._draggedColumnIndex || indexToUpdate === _this._draggedColumnIndex + 1) {\n if (_this._isValidCurrentDropHintIndex()) {\n _this._resetDropHints();\n }\n }\n else if (currentDropHintIndex !== indexToUpdate && indexToUpdate >= 0) {\n _this._resetDropHints();\n _this._updateDropHintElement(_this._dropHintDetails[indexToUpdate].dropHintElementRef, 'inline-block');\n _this._currentDropHintIndex = indexToUpdate;\n }\n }\n };\n _this._renderColumnSizer = function (_a) {\n var _b;\n var columnIndex = _a.columnIndex;\n var _c = _this.props.columns, columns = _c === void 0 ? NO_COLUMNS : _c;\n var column = columns[columnIndex];\n var columnResizeDetails = _this.state.columnResizeDetails;\n var classNames = _this._classNames;\n return column.isResizable ? (React.createElement(\"div\", { key: column.key + \"_sizer\", \"aria-hidden\": true, role: \"button\", \"data-is-focusable\": false, onClick: _stopPropagation, \"data-sizer-index\": columnIndex, onBlur: _this._onSizerBlur, className: css(classNames.cellSizer, columnIndex < columns.length - 1 ? classNames.cellSizerStart : classNames.cellSizerEnd, (_b = {},\n _b[classNames.cellIsResizing] = columnResizeDetails && columnResizeDetails.columnIndex === columnIndex,\n _b)), onDoubleClick: _this._onSizerDoubleClick.bind(_this, columnIndex) })) : null;\n };\n _this._onRenderColumnHeaderTooltip = function (tooltipHostProps) {\n return React.createElement(\"span\", { className: tooltipHostProps.hostClassName }, tooltipHostProps.children);\n };\n /**\n * Called when the select all toggle is clicked.\n */\n _this._onSelectAllClicked = function () {\n var selection = _this.props.selection;\n if (selection) {\n selection.toggleAllSelected();\n }\n };\n _this._onRootMouseDown = function (ev) {\n var columnIndexAttr = ev.target.getAttribute('data-sizer-index');\n var columnIndex = Number(columnIndexAttr);\n var _a = _this.props.columns, columns = _a === void 0 ? NO_COLUMNS : _a;\n if (columnIndexAttr === null || ev.button !== MOUSEDOWN_PRIMARY_BUTTON) {\n // Ignore anything except the primary button.\n return;\n }\n _this.setState({\n columnResizeDetails: {\n columnIndex: columnIndex,\n columnMinWidth: columns[columnIndex].calculatedWidth,\n originX: ev.clientX,\n },\n });\n ev.preventDefault();\n ev.stopPropagation();\n };\n _this._onRootMouseMove = function (ev) {\n var _a = _this.state, columnResizeDetails = _a.columnResizeDetails, isSizing = _a.isSizing;\n if (columnResizeDetails && !isSizing && ev.clientX !== columnResizeDetails.originX) {\n _this.setState({ isSizing: true });\n }\n };\n _this._onRootKeyDown = function (ev) {\n var _a = _this.state, columnResizeDetails = _a.columnResizeDetails, isSizing = _a.isSizing;\n var _b = _this.props, _c = _b.columns, columns = _c === void 0 ? NO_COLUMNS : _c, onColumnResized = _b.onColumnResized;\n var columnIndexAttr = ev.target.getAttribute('data-sizer-index');\n if (!columnIndexAttr || isSizing) {\n return;\n }\n var columnIndex = Number(columnIndexAttr);\n if (!columnResizeDetails) {\n // eslint-disable-next-line deprecation/deprecation\n if (ev.which === KeyCodes.enter) {\n _this.setState({\n columnResizeDetails: {\n columnIndex: columnIndex,\n columnMinWidth: columns[columnIndex].calculatedWidth,\n },\n });\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n else {\n var increment = void 0;\n // eslint-disable-next-line deprecation/deprecation\n if (ev.which === KeyCodes.enter) {\n _this.setState({\n columnResizeDetails: undefined,\n });\n ev.preventDefault();\n ev.stopPropagation();\n // eslint-disable-next-line deprecation/deprecation\n }\n else if (ev.which === KeyCodes.left) {\n increment = getRTL(_this.props.theme) ? 1 : -1;\n // eslint-disable-next-line deprecation/deprecation\n }\n else if (ev.which === KeyCodes.right) {\n increment = getRTL(_this.props.theme) ? -1 : 1;\n }\n if (increment) {\n if (!ev.shiftKey) {\n increment *= 10;\n }\n _this.setState({\n columnResizeDetails: __assign(__assign({}, columnResizeDetails), { columnMinWidth: columnResizeDetails.columnMinWidth + increment }),\n });\n if (onColumnResized) {\n onColumnResized(columns[columnIndex], columnResizeDetails.columnMinWidth + increment, columnIndex);\n }\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n /**\n * mouse move event handler in the header\n * it will set isSizing state to true when user clicked on the sizer and move the mouse.\n *\n * @param ev - mouse move event\n */\n _this._onSizerMouseMove = function (ev) {\n var \n // use buttons property here since ev.button in some edge case is not upding well during the move.\n // but firefox doesn't support it, so we set the default value when it is not defined.\n buttons = ev.buttons;\n var _a = _this.props, onColumnIsSizingChanged = _a.onColumnIsSizingChanged, onColumnResized = _a.onColumnResized, _b = _a.columns, columns = _b === void 0 ? NO_COLUMNS : _b;\n var columnResizeDetails = _this.state.columnResizeDetails;\n if (buttons !== undefined && buttons !== MOUSEMOVE_PRIMARY_BUTTON) {\n // cancel mouse down event and return early when the primary button is not pressed\n _this._onSizerMouseUp(ev);\n return;\n }\n if (ev.clientX !== columnResizeDetails.originX) {\n if (onColumnIsSizingChanged) {\n onColumnIsSizingChanged(columns[columnResizeDetails.columnIndex], true);\n }\n }\n if (onColumnResized) {\n var movement = ev.clientX - columnResizeDetails.originX;\n if (getRTL(_this.props.theme)) {\n movement = -movement;\n }\n onColumnResized(columns[columnResizeDetails.columnIndex], columnResizeDetails.columnMinWidth + movement, columnResizeDetails.columnIndex);\n }\n };\n _this._onSizerBlur = function (ev) {\n var columnResizeDetails = _this.state.columnResizeDetails;\n if (columnResizeDetails) {\n _this.setState({\n columnResizeDetails: undefined,\n isSizing: false,\n });\n }\n };\n /**\n * mouse up event handler in the header\n * clear the resize related state.\n * This is to ensure we can catch double click event\n *\n * @param ev - mouse up event\n */\n _this._onSizerMouseUp = function (ev) {\n var _a = _this.props, _b = _a.columns, columns = _b === void 0 ? NO_COLUMNS : _b, onColumnIsSizingChanged = _a.onColumnIsSizingChanged;\n var columnResizeDetails = _this.state.columnResizeDetails;\n _this.setState({\n columnResizeDetails: undefined,\n isSizing: false,\n });\n if (onColumnIsSizingChanged) {\n onColumnIsSizingChanged(columns[columnResizeDetails.columnIndex], false);\n }\n };\n _this._onToggleCollapseAll = function () {\n var onToggleCollapseAll = _this.props.onToggleCollapseAll;\n var newCollapsed = !_this.state.isAllCollapsed;\n _this.setState({\n isAllCollapsed: newCollapsed,\n });\n if (onToggleCollapseAll) {\n onToggleCollapseAll(newCollapsed);\n }\n };\n initializeComponentRef(_this);\n _this._events = new EventGroup(_this);\n _this.state = {\n columnResizeDetails: undefined,\n isAllCollapsed: _this.props.isAllCollapsed,\n isAllSelected: !!_this.props.selection && _this.props.selection.isAllSelected(),\n };\n _this._onDropIndexInfo = {\n sourceIndex: -1,\n targetIndex: -1,\n };\n _this._id = getId('header');\n _this._currentDropHintIndex = -1;\n // The drag drop handler won't do any work until subscribe() is called,\n // so always set it up for convenience\n _this._dragDropHelper = new DragDropHelper({\n selection: {\n getSelection: function () {\n return;\n },\n },\n minimumPixelsForDrag: _this.props.minimumPixelsForDrag,\n });\n return _this;\n }\n DetailsHeaderBase.prototype.componentDidMount = function () {\n var selection = this.props.selection;\n this._events.on(selection, SELECTION_CHANGE, this._onSelectionChanged);\n // this._rootElement.current will be null in tests using react-test-renderer\n if (this._rootElement.current) {\n // We need to use native on this to prevent MarqueeSelection from handling the event before us.\n this._events.on(this._rootElement.current, 'mousedown', this._onRootMouseDown);\n this._events.on(this._rootElement.current, 'keydown', this._onRootKeyDown);\n if (this._getColumnReorderProps()) {\n this._subscriptionObject = this._dragDropHelper.subscribe(this._rootElement.current, this._events, this._getHeaderDragDropOptions());\n }\n }\n };\n DetailsHeaderBase.prototype.componentDidUpdate = function (prevProps) {\n if (this._getColumnReorderProps()) {\n if (!this._subscriptionObject && this._rootElement.current) {\n this._subscriptionObject = this._dragDropHelper.subscribe(this._rootElement.current, this._events, this._getHeaderDragDropOptions());\n }\n }\n else if (this._subscriptionObject) {\n this._subscriptionObject.dispose();\n delete this._subscriptionObject;\n }\n if (this.props !== prevProps && this._onDropIndexInfo.sourceIndex >= 0 && this._onDropIndexInfo.targetIndex >= 0) {\n var _a = prevProps.columns, previousColumns = _a === void 0 ? NO_COLUMNS : _a;\n var _b = this.props.columns, columns = _b === void 0 ? NO_COLUMNS : _b;\n if (previousColumns[this._onDropIndexInfo.sourceIndex].key === columns[this._onDropIndexInfo.targetIndex].key) {\n this._onDropIndexInfo = {\n sourceIndex: -1,\n targetIndex: -1,\n };\n }\n }\n if (this.props.isAllCollapsed !== prevProps.isAllCollapsed) {\n this.setState({ isAllCollapsed: this.props.isAllCollapsed });\n }\n };\n DetailsHeaderBase.prototype.componentWillUnmount = function () {\n if (this._subscriptionObject) {\n this._subscriptionObject.dispose();\n delete this._subscriptionObject;\n }\n this._dragDropHelper.dispose();\n this._events.dispose();\n };\n DetailsHeaderBase.prototype.render = function () {\n var _this = this;\n var _a = this.props, _b = _a.columns, columns = _b === void 0 ? NO_COLUMNS : _b, ariaLabel = _a.ariaLabel, ariaLabelForToggleAllGroupsButton = _a.ariaLabelForToggleAllGroupsButton, ariaLabelForSelectAllCheckbox = _a.ariaLabelForSelectAllCheckbox, selectAllVisibility = _a.selectAllVisibility, ariaLabelForSelectionColumn = _a.ariaLabelForSelectionColumn, indentWidth = _a.indentWidth, onColumnClick = _a.onColumnClick, onColumnContextMenu = _a.onColumnContextMenu, _c = _a.onRenderColumnHeaderTooltip, onRenderColumnHeaderTooltip = _c === void 0 ? this._onRenderColumnHeaderTooltip : _c, styles = _a.styles, selectionMode = _a.selectionMode, theme = _a.theme, onRenderDetailsCheckbox = _a.onRenderDetailsCheckbox, groupNestingDepth = _a.groupNestingDepth, useFastIcons = _a.useFastIcons, checkboxVisibility = _a.checkboxVisibility, className = _a.className;\n var _d = this.state, isAllSelected = _d.isAllSelected, columnResizeDetails = _d.columnResizeDetails, isSizing = _d.isSizing, isAllCollapsed = _d.isAllCollapsed;\n var showCheckbox = selectAllVisibility !== SelectAllVisibility.none;\n var isCheckboxHidden = selectAllVisibility === SelectAllVisibility.hidden;\n var isCheckboxAlwaysVisible = checkboxVisibility === CheckboxVisibility.always;\n var columnReorderProps = this._getColumnReorderProps();\n var frozenColumnCountFromStart = columnReorderProps && columnReorderProps.frozenColumnCountFromStart\n ? columnReorderProps.frozenColumnCountFromStart\n : 0;\n var frozenColumnCountFromEnd = columnReorderProps && columnReorderProps.frozenColumnCountFromEnd\n ? columnReorderProps.frozenColumnCountFromEnd\n : 0;\n this._classNames = getClassNames(styles, {\n theme: theme,\n isAllSelected: isAllSelected,\n isSelectAllHidden: selectAllVisibility === SelectAllVisibility.hidden,\n isResizingColumn: !!columnResizeDetails && isSizing,\n isSizing: isSizing,\n isAllCollapsed: isAllCollapsed,\n isCheckboxHidden: isCheckboxHidden,\n className: className,\n });\n var classNames = this._classNames;\n var IconComponent = useFastIcons ? FontIcon : Icon;\n var isRTL = getRTL(theme);\n return (React.createElement(FocusZone, { role: \"row\", \"aria-label\": ariaLabel, className: classNames.root, componentRef: this._rootComponent, elementRef: this._rootElement, onMouseMove: this._onRootMouseMove, \"data-automationid\": \"DetailsHeader\", direction: FocusZoneDirection.horizontal },\n showCheckbox\n ? [\n React.createElement(\"div\", { key: \"__checkbox\", className: classNames.cellIsCheck, \"aria-labelledby\": this._id + \"-check\", onClick: !isCheckboxHidden ? this._onSelectAllClicked : undefined, \"aria-colindex\": 1, role: 'columnheader' }, onRenderColumnHeaderTooltip({\n hostClassName: classNames.checkTooltip,\n id: this._id + \"-checkTooltip\",\n setAriaDescribedBy: false,\n content: ariaLabelForSelectAllCheckbox,\n children: (React.createElement(DetailsRowCheck, { id: this._id + \"-check\", \"aria-label\": selectionMode === SelectionMode.multiple\n ? ariaLabelForSelectAllCheckbox\n : ariaLabelForSelectionColumn, \"aria-describedby\": !isCheckboxHidden\n ? ariaLabelForSelectAllCheckbox && !this.props.onRenderColumnHeaderTooltip\n ? this._id + \"-checkTooltip\"\n : undefined\n : ariaLabelForSelectionColumn && !this.props.onRenderColumnHeaderTooltip\n ? this._id + \"-checkTooltip\"\n : undefined, \"data-is-focusable\": !isCheckboxHidden || undefined, isHeader: true, selected: isAllSelected, anySelected: false, canSelect: !isCheckboxHidden, className: classNames.check, onRenderDetailsCheckbox: onRenderDetailsCheckbox, useFastIcons: useFastIcons, isVisible: isCheckboxAlwaysVisible })),\n }, this._onRenderColumnHeaderTooltip)),\n !this.props.onRenderColumnHeaderTooltip ? (ariaLabelForSelectAllCheckbox && !isCheckboxHidden ? (React.createElement(\"label\", { key: \"__checkboxLabel\", id: this._id + \"-checkTooltip\", className: classNames.accessibleLabel, \"aria-hidden\": true }, ariaLabelForSelectAllCheckbox)) : ariaLabelForSelectionColumn && isCheckboxHidden ? (React.createElement(\"label\", { key: \"__checkboxLabel\", id: this._id + \"-checkTooltip\", className: classNames.accessibleLabel, \"aria-hidden\": true }, ariaLabelForSelectionColumn)) : null) : null,\n ]\n : null,\n groupNestingDepth > 0 && this.props.collapseAllVisibility === CollapseAllVisibility.visible ? (React.createElement(\"div\", { className: classNames.cellIsGroupExpander, onClick: this._onToggleCollapseAll, \"data-is-focusable\": true, \"aria-label\": ariaLabelForToggleAllGroupsButton, \"aria-expanded\": !isAllCollapsed, role: \"columnheader\" },\n React.createElement(IconComponent, { className: classNames.collapseButton, iconName: isRTL ? 'ChevronLeftMed' : 'ChevronRightMed' }))) : null,\n React.createElement(GroupSpacer, { indentWidth: indentWidth, role: \"gridcell\", count: groupNestingDepth - 1 }),\n columns.map(function (column, columnIndex) {\n var _isDraggable = columnReorderProps\n ? columnIndex >= frozenColumnCountFromStart && columnIndex < columns.length - frozenColumnCountFromEnd\n : false;\n return [\n columnReorderProps &&\n (_isDraggable || columnIndex === columns.length - frozenColumnCountFromEnd) &&\n _this._renderDropHint(columnIndex),\n React.createElement(DetailsColumn, { column: column, styles: column.styles, key: column.key, columnIndex: (showCheckbox ? 2 : 1) + columnIndex, parentId: _this._id, isDraggable: _isDraggable, updateDragInfo: _this._updateDragInfo, dragDropHelper: _this._dragDropHelper, onColumnClick: onColumnClick, onColumnContextMenu: onColumnContextMenu, \n // Do not render tooltips by default, but allow for override via props.\n onRenderColumnHeaderTooltip: _this.props.onRenderColumnHeaderTooltip, isDropped: _this._onDropIndexInfo.targetIndex === columnIndex, cellStyleProps: _this.props.cellStyleProps, useFastIcons: useFastIcons }),\n _this._renderColumnDivider(columnIndex),\n ];\n }),\n columnReorderProps && frozenColumnCountFromEnd === 0 && this._renderDropHint(columns.length),\n isSizing && (React.createElement(Layer, null,\n React.createElement(\"div\", { className: classNames.sizingOverlay, onMouseMove: this._onSizerMouseMove, onMouseUp: this._onSizerMouseUp })))));\n };\n /** Set focus to the active thing in the focus area. */\n DetailsHeaderBase.prototype.focus = function () {\n var _a;\n return !!((_a = this._rootComponent.current) === null || _a === void 0 ? void 0 : _a.focus());\n };\n /**\n * Gets column reorder props from this.props. If the calling code is part of setting up or\n * handling drag/drop events, it's safe to assume that this method's return value is defined\n * (because drag/drop handling will only be set up if reorder props are given).\n */\n DetailsHeaderBase.prototype._getColumnReorderProps = function () {\n var _a = this.props, columnReorderOptions = _a.columnReorderOptions, columnReorderProps = _a.columnReorderProps;\n return columnReorderProps || (columnReorderOptions && __assign(__assign({}, columnReorderOptions), { onColumnDragEnd: undefined }));\n };\n DetailsHeaderBase.prototype._getHeaderDragDropOptions = function () {\n var options = {\n selectionIndex: 1,\n context: { data: this, index: 0 },\n canDrag: function () { return false; },\n canDrop: function () { return true; },\n onDragStart: function () { return undefined; },\n updateDropState: this._updateDroppingState,\n onDrop: this._onDrop,\n onDragEnd: function () { return undefined; },\n onDragOver: this._onDragOver,\n };\n return options;\n };\n DetailsHeaderBase.prototype._isValidCurrentDropHintIndex = function () {\n return this._currentDropHintIndex >= 0;\n };\n /**\n * @returns whether or not the \"Select All\" checkbox column is hidden.\n */\n DetailsHeaderBase.prototype._isCheckboxColumnHidden = function () {\n var _a = this.props, selectionMode = _a.selectionMode, checkboxVisibility = _a.checkboxVisibility;\n return selectionMode === SelectionMode.none || checkboxVisibility === CheckboxVisibility.hidden;\n };\n DetailsHeaderBase.prototype._resetDropHints = function () {\n if (this._currentDropHintIndex >= 0) {\n this._updateDropHintElement(this._dropHintDetails[this._currentDropHintIndex].dropHintElementRef, 'none');\n this._currentDropHintIndex = -1;\n }\n };\n DetailsHeaderBase.prototype._updateDropHintElement = function (element, displayProperty) {\n element.childNodes[1].style.display = displayProperty;\n element.childNodes[0].style.display = displayProperty;\n };\n DetailsHeaderBase.prototype._isEventOnHeader = function (event) {\n if (this._rootElement.current) {\n var clientRect = this._rootElement.current.getBoundingClientRect();\n if (event.clientX > clientRect.left &&\n event.clientX < clientRect.right &&\n event.clientY > clientRect.top &&\n event.clientY < clientRect.bottom) {\n return ColumnDragEndLocation.header;\n }\n }\n };\n DetailsHeaderBase.prototype._renderColumnDivider = function (columnIndex) {\n var _a = this.props.columns, columns = _a === void 0 ? NO_COLUMNS : _a;\n var column = columns[columnIndex];\n var onRenderDivider = column.onRenderDivider;\n return onRenderDivider\n ? onRenderDivider({ column: column, columnIndex: columnIndex }, this._renderColumnSizer)\n : this._renderColumnSizer({ column: column, columnIndex: columnIndex });\n };\n DetailsHeaderBase.prototype._renderDropHint = function (dropHintIndex) {\n var classNames = this._classNames;\n var IconComponent = this.props.useFastIcons ? FontIcon : Icon;\n return (React.createElement(\"div\", { key: 'dropHintKey', className: classNames.dropHintStyle, id: \"columnDropHint_\" + dropHintIndex },\n React.createElement(\"div\", { role: \"presentation\", key: \"dropHintCircleKey\", className: classNames.dropHintCaretStyle, \"data-is-focusable\": false, \"data-sizer-index\": dropHintIndex, \"aria-hidden\": true },\n React.createElement(IconComponent, { iconName: 'CircleShapeSolid' })),\n React.createElement(\"div\", { key: \"dropHintLineKey\", \"aria-hidden\": true, \"data-is-focusable\": false, \"data-sizer-index\": dropHintIndex, className: classNames.dropHintLineStyle })));\n };\n /**\n * double click on the column sizer will auto ajust column width\n * to fit the longest content among current rendered rows.\n *\n * @param columnIndex - index of the column user double clicked\n * @param ev - mouse double click event\n */\n DetailsHeaderBase.prototype._onSizerDoubleClick = function (columnIndex, ev) {\n var _a = this.props, onColumnAutoResized = _a.onColumnAutoResized, _b = _a.columns, columns = _b === void 0 ? NO_COLUMNS : _b;\n if (onColumnAutoResized) {\n onColumnAutoResized(columns[columnIndex], columnIndex);\n }\n };\n DetailsHeaderBase.prototype._onSelectionChanged = function () {\n var isAllSelected = !!this.props.selection && this.props.selection.isAllSelected();\n if (this.state.isAllSelected !== isAllSelected) {\n this.setState({\n isAllSelected: isAllSelected,\n });\n }\n };\n DetailsHeaderBase.defaultProps = {\n selectAllVisibility: SelectAllVisibility.visible,\n collapseAllVisibility: CollapseAllVisibility.visible,\n useFastIcons: true,\n };\n return DetailsHeaderBase;\n}(React.Component));\nexport { DetailsHeaderBase };\nfunction _liesBetween(rtl, target, left, right) {\n return rtl ? target <= left && target >= right : target >= left && target <= right;\n}\nfunction _isBefore(rtl, a, b) {\n return rtl ? a >= b : a <= b;\n}\nfunction _isAfter(rtl, a, b) {\n return rtl ? a <= b : a >= b;\n}\nfunction _stopPropagation(ev) {\n ev.stopPropagation();\n}\n//# sourceMappingURL=DetailsHeader.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "index": 752, - "index2": 756, - "size": 297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../DetailsList/DetailsHeader", - "loc": "5:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsHeader", - "loc": "58:35-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/DetailsList", - "loc": "320:43-56" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsHeader", - "loc": "3:0-32" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsHeader", - "loc": "3:0-32" - } - ], - "usedExports": [ - "DetailsHeader" - ], - "providedExports": [ - "DetailsHeader" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { DetailsHeaderBase } from './DetailsHeader.base';\nimport { getStyles } from './DetailsHeader.styles';\nexport var DetailsHeader = styled(DetailsHeaderBase, getStyles, undefined, { scope: 'DetailsHeader' });\n//# sourceMappingURL=DetailsHeader.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "index": 818, - "index2": 837, - "size": 49666, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList.base", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.base", - "loc": "4:32-47" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList.base", - "loc": "7:0-35" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsList.base", - "loc": "7:0-35" - } - ], - "usedExports": [ - "DetailsListBase" - ], - "providedExports": [ - "DetailsListBase", - "buildColumns" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, FocusRects, Async, KeyCodes, elementContains, getRTLSafeKeyCode, classNamesFunction, memoizeFunction, } from '../../Utilities';\nimport { CheckboxVisibility, ColumnActionsMode, ConstrainMode, DetailsListLayoutMode, ColumnDragEndLocation, } from '../DetailsList/DetailsList.types';\nimport { DetailsHeader } from '../DetailsList/DetailsHeader';\nimport { SelectAllVisibility, } from '../DetailsList/DetailsHeader.types';\nimport { DetailsRow } from '../DetailsList/DetailsRow';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nimport { Selection, SelectionMode, SelectionZone } from '../../utilities/selection/index';\nimport { DragDropHelper } from '../../utilities/dragdrop/DragDropHelper';\nimport { GroupedList } from '../../GroupedList';\nimport { List } from '../../List';\nimport { withViewport } from '../../utilities/decorators/withViewport';\nimport { GetGroupCount } from '../../utilities/groupedList/GroupedListUtility';\nimport { DEFAULT_CELL_STYLE_PROPS } from './DetailsRow.styles';\nimport { CHECK_CELL_WIDTH as CHECKBOX_WIDTH } from './DetailsRowCheck.styles';\n// For every group level there is a GroupSpacer added. Importing this const to have the source value in one place.\nimport { SPACER_WIDTH as GROUP_EXPAND_WIDTH } from '../GroupedList/GroupSpacer';\nimport { composeRenderFunction, getId } from '@uifabric/utilities';\nimport { useConst } from '@uifabric/react-hooks';\nvar getClassNames = classNamesFunction();\nvar MIN_COLUMN_WIDTH = 100; // this is the global min width\nvar DEFAULT_RENDERED_WINDOWS_AHEAD = 2;\nvar DEFAULT_RENDERED_WINDOWS_BEHIND = 2;\n/**\n * Hooks-based implementation of DetailsList.\n * Since many existing consumers of DetailsList expect `ref` to return a `DetailsList`,\n * this inner component handles rendering while the outer maintains compatibility.\n */\nvar DetailsListInner = function (props) {\n var selection = props.selection;\n var ariaLabelForListHeader = props.ariaLabelForListHeader, ariaLabelForSelectAllCheckbox = props.ariaLabelForSelectAllCheckbox, ariaLabelForSelectionColumn = props.ariaLabelForSelectionColumn, className = props.className, checkboxVisibility = props.checkboxVisibility, compact = props.compact, constrainMode = props.constrainMode, dragDropEvents = props.dragDropEvents, groups = props.groups, groupProps = props.groupProps, indentWidth = props.indentWidth, items = props.items, isPlaceholderData = props.isPlaceholderData, isHeaderVisible = props.isHeaderVisible, layoutMode = props.layoutMode, onItemInvoked = props.onItemInvoked, onItemContextMenu = props.onItemContextMenu, onColumnHeaderClick = props.onColumnHeaderClick, onColumnHeaderContextMenu = props.onColumnHeaderContextMenu, _a = props.selectionMode, selectionMode = _a === void 0 ? selection.mode : _a, selectionPreservedOnEmptyClick = props.selectionPreservedOnEmptyClick, selectionZoneProps = props.selectionZoneProps, ariaLabel = props.ariaLabel, ariaLabelForGrid = props.ariaLabelForGrid, rowElementEventMap = props.rowElementEventMap, _b = props.shouldApplyApplicationRole, shouldApplyApplicationRole = _b === void 0 ? false : _b, getKey = props.getKey, listProps = props.listProps, usePageCache = props.usePageCache, onShouldVirtualize = props.onShouldVirtualize, viewport = props.viewport, minimumPixelsForDrag = props.minimumPixelsForDrag, getGroupHeight = props.getGroupHeight, styles = props.styles, theme = props.theme, _c = props.cellStyleProps, cellStyleProps = _c === void 0 ? DEFAULT_CELL_STYLE_PROPS : _c, onRenderCheckbox = props.onRenderCheckbox, useFastIcons = props.useFastIcons, dragDropHelper = props.dragDropHelper, adjustedColumns = props.adjustedColumns, isCollapsed = props.isCollapsed, isSizing = props.isSizing, isSomeGroupExpanded = props.isSomeGroupExpanded, version = props.version, rootRef = props.rootRef, listRef = props.listRef, focusZoneRef = props.focusZoneRef, columnReorderOptions = props.columnReorderOptions, groupedListRef = props.groupedListRef, headerRef = props.headerRef, onGroupExpandStateChanged = props.onGroupExpandStateChanged, onColumnIsSizingChanged = props.onColumnIsSizingChanged, onRowDidMount = props.onRowDidMount, onRowWillUnmount = props.onRowWillUnmount, disableSelectionZone = props.disableSelectionZone, onColumnResized = props.onColumnResized, onColumnAutoResized = props.onColumnAutoResized, onToggleCollapse = props.onToggleCollapse, onActiveRowChanged = props.onActiveRowChanged, onBlur = props.onBlur, eventsToRegister = props.rowElementEventMap, onRenderMissingItem = props.onRenderMissingItem, onRenderItemColumn = props.onRenderItemColumn, getCellValueKey = props.getCellValueKey, getRowAriaLabel = props.getRowAriaLabel, getRowAriaDescribedBy = props.getRowAriaDescribedBy, checkButtonAriaLabel = props.checkButtonAriaLabel, checkboxCellClassName = props.checkboxCellClassName, useReducedRowRenderer = props.useReducedRowRenderer, enableUpdateAnimations = props.enableUpdateAnimations, enterModalSelectionOnTouch = props.enterModalSelectionOnTouch, onRenderDefaultRow = props.onRenderDefaultRow, selectionZoneRef = props.selectionZoneRef;\n var defaultRole = 'grid';\n var role = props.role ? props.role : defaultRole;\n var rowId = getId('row');\n var groupNestingDepth = getGroupNestingDepth(groups);\n var additionalListProps = React.useMemo(function () {\n return __assign({ renderedWindowsAhead: isSizing ? 0 : DEFAULT_RENDERED_WINDOWS_AHEAD, renderedWindowsBehind: isSizing ? 0 : DEFAULT_RENDERED_WINDOWS_BEHIND, getKey: getKey,\n version: version }, listProps);\n }, [isSizing, getKey, version, listProps]);\n var selectAllVisibility = SelectAllVisibility.none; // for SelectionMode.none\n if (selectionMode === SelectionMode.single) {\n selectAllVisibility = SelectAllVisibility.hidden;\n }\n if (selectionMode === SelectionMode.multiple) {\n // if isCollapsedGroupSelectVisible is false, disable select all when the list has all collapsed groups\n var isCollapsedGroupSelectVisible = groupProps && groupProps.headerProps && groupProps.headerProps.isCollapsedGroupSelectVisible;\n if (isCollapsedGroupSelectVisible === undefined) {\n isCollapsedGroupSelectVisible = true;\n }\n var isSelectAllVisible = isCollapsedGroupSelectVisible || !groups || isSomeGroupExpanded;\n selectAllVisibility = isSelectAllVisible ? SelectAllVisibility.visible : SelectAllVisibility.hidden;\n }\n if (checkboxVisibility === CheckboxVisibility.hidden) {\n selectAllVisibility = SelectAllVisibility.none;\n }\n var defaultOnRenderDetailsHeader = React.useCallback(function (detailsHeaderProps) {\n return React.createElement(DetailsHeader, __assign({}, detailsHeaderProps));\n }, []);\n var defaultOnRenderDetailsFooter = React.useCallback(function () {\n return null;\n }, []);\n var propsOnRenderDetailsHeader = props.onRenderDetailsHeader;\n var onRenderDetailsHeader = React.useMemo(function () {\n return propsOnRenderDetailsHeader\n ? composeRenderFunction(propsOnRenderDetailsHeader, defaultOnRenderDetailsHeader)\n : defaultOnRenderDetailsHeader;\n }, [propsOnRenderDetailsHeader, defaultOnRenderDetailsHeader]);\n var propsOnRenderDetailsFooter = props.onRenderDetailsFooter;\n var onRenderDetailsFooter = React.useMemo(function () {\n return propsOnRenderDetailsFooter\n ? composeRenderFunction(propsOnRenderDetailsFooter, defaultOnRenderDetailsFooter)\n : defaultOnRenderDetailsFooter;\n }, [propsOnRenderDetailsFooter, defaultOnRenderDetailsFooter]);\n var detailsFooterProps = React.useMemo(function () {\n return {\n columns: adjustedColumns,\n groupNestingDepth: groupNestingDepth,\n selection: selection,\n selectionMode: selectionMode,\n viewport: viewport,\n checkboxVisibility: checkboxVisibility,\n indentWidth: indentWidth,\n cellStyleProps: cellStyleProps,\n };\n }, [\n adjustedColumns,\n groupNestingDepth,\n selection,\n selectionMode,\n viewport,\n checkboxVisibility,\n indentWidth,\n cellStyleProps,\n ]);\n var columnReorderOnDragEnd = columnReorderOptions && columnReorderOptions.onDragEnd;\n var onColumnDragEnd = React.useCallback(function (_a, event) {\n var dropLocation = _a.dropLocation;\n var finalDropLocation = ColumnDragEndLocation.outside;\n if (columnReorderOnDragEnd) {\n if (dropLocation && dropLocation !== ColumnDragEndLocation.header) {\n finalDropLocation = dropLocation;\n }\n else if (rootRef.current) {\n var clientRect = rootRef.current.getBoundingClientRect();\n if (event.clientX > clientRect.left &&\n event.clientX < clientRect.right &&\n event.clientY > clientRect.top &&\n event.clientY < clientRect.bottom) {\n finalDropLocation = ColumnDragEndLocation.surface;\n }\n }\n columnReorderOnDragEnd(finalDropLocation);\n }\n }, [columnReorderOnDragEnd, rootRef]);\n var columnReorderProps = React.useMemo(function () {\n if (columnReorderOptions) {\n return __assign(__assign({}, columnReorderOptions), { onColumnDragEnd: onColumnDragEnd });\n }\n }, [columnReorderOptions, onColumnDragEnd]);\n var rowCount = (isHeaderVisible ? 1 : 0) + GetGroupCount(groups) + (items ? items.length : 0);\n var colCount = (selectAllVisibility !== SelectAllVisibility.none ? 1 : 0) +\n (adjustedColumns ? adjustedColumns.length : 0) +\n (groups ? 1 : 0);\n var classNames = React.useMemo(function () {\n return getClassNames(styles, {\n theme: theme,\n compact: compact,\n isFixed: layoutMode === DetailsListLayoutMode.fixedColumns,\n isHorizontalConstrained: constrainMode === ConstrainMode.horizontalConstrained,\n className: className,\n });\n }, [styles, theme, compact, layoutMode, constrainMode, className]);\n var onRenderDetailsGroupFooter = groupProps && groupProps.onRenderFooter;\n var finalOnRenderDetailsGroupFooter = React.useMemo(function () {\n return onRenderDetailsGroupFooter\n ? function (groupFooterProps, defaultRender) {\n return onRenderDetailsGroupFooter(__assign(__assign({}, groupFooterProps), { columns: adjustedColumns, groupNestingDepth: groupNestingDepth,\n indentWidth: indentWidth,\n selection: selection,\n selectionMode: selectionMode,\n viewport: viewport,\n checkboxVisibility: checkboxVisibility,\n cellStyleProps: cellStyleProps }), defaultRender);\n }\n : undefined;\n }, [\n onRenderDetailsGroupFooter,\n adjustedColumns,\n groupNestingDepth,\n indentWidth,\n selection,\n selectionMode,\n viewport,\n checkboxVisibility,\n cellStyleProps,\n ]);\n var onRenderDetailsGroupHeader = groupProps && groupProps.onRenderHeader;\n var finalOnRenderDetailsGroupHeader = React.useMemo(function () {\n return onRenderDetailsGroupHeader\n ? function (groupHeaderProps, defaultRender) {\n var ariaPosInSet = groupHeaderProps.ariaPosInSet, ariaSetSize = groupHeaderProps.ariaSetSize;\n return onRenderDetailsGroupHeader(__assign(__assign({}, groupHeaderProps), { columns: adjustedColumns, groupNestingDepth: groupNestingDepth,\n indentWidth: indentWidth,\n selection: selection,\n selectionMode: selectionMode,\n viewport: viewport,\n checkboxVisibility: checkboxVisibility,\n cellStyleProps: cellStyleProps, ariaColSpan: adjustedColumns.length, ariaPosInSet: undefined, ariaSetSize: undefined, ariaRowCount: ariaSetSize ? ariaSetSize + (isHeaderVisible ? 1 : 0) : undefined, ariaRowIndex: ariaPosInSet ? ariaPosInSet + (isHeaderVisible ? 1 : 0) : undefined }), defaultRender);\n }\n : function (groupHeaderProps, defaultRender) {\n var ariaPosInSet = groupHeaderProps.ariaPosInSet, ariaSetSize = groupHeaderProps.ariaSetSize;\n return defaultRender(__assign(__assign({}, groupHeaderProps), { ariaColSpan: adjustedColumns.length, ariaPosInSet: undefined, ariaSetSize: undefined, ariaRowCount: ariaSetSize ? ariaSetSize + (isHeaderVisible ? 1 : 0) : undefined, ariaRowIndex: ariaPosInSet ? ariaPosInSet + (isHeaderVisible ? 1 : 0) : undefined }));\n };\n }, [\n onRenderDetailsGroupHeader,\n adjustedColumns,\n groupNestingDepth,\n indentWidth,\n isHeaderVisible,\n selection,\n selectionMode,\n viewport,\n checkboxVisibility,\n cellStyleProps,\n ]);\n var finalGroupProps = React.useMemo(function () {\n return __assign(__assign({}, groupProps), { role: role === defaultRole ? 'rowgroup' : 'presentation', onRenderFooter: finalOnRenderDetailsGroupFooter, onRenderHeader: finalOnRenderDetailsGroupHeader });\n }, [groupProps, finalOnRenderDetailsGroupFooter, finalOnRenderDetailsGroupHeader, role]);\n var sumColumnWidths = useConst(function () {\n return memoizeFunction(function (columns) {\n var totalWidth = 0;\n columns.forEach(function (column) { return (totalWidth += column.calculatedWidth || column.minWidth); });\n return totalWidth;\n });\n });\n var collapseAllVisibility = groupProps && groupProps.collapseAllVisibility;\n var rowWidth = React.useMemo(function () {\n return sumColumnWidths(adjustedColumns);\n }, [adjustedColumns, sumColumnWidths]);\n var onRenderCell = React.useCallback(function (nestingDepth, item, index) {\n var finalOnRenderRow = props.onRenderRow\n ? composeRenderFunction(props.onRenderRow, onRenderDefaultRow)\n : onRenderDefaultRow;\n var rowRole = role === defaultRole ? undefined : 'presentation';\n var rowProps = {\n item: item,\n itemIndex: index,\n compact: compact,\n columns: adjustedColumns,\n groupNestingDepth: nestingDepth,\n id: rowId + \"-\" + index,\n selectionMode: selectionMode,\n selection: selection,\n onDidMount: onRowDidMount,\n onWillUnmount: onRowWillUnmount,\n onRenderItemColumn: onRenderItemColumn,\n getCellValueKey: getCellValueKey,\n eventsToRegister: eventsToRegister,\n dragDropEvents: dragDropEvents,\n dragDropHelper: dragDropHelper,\n viewport: viewport,\n checkboxVisibility: checkboxVisibility,\n collapseAllVisibility: collapseAllVisibility,\n getRowAriaLabel: getRowAriaLabel,\n getRowAriaDescribedBy: getRowAriaDescribedBy,\n checkButtonAriaLabel: checkButtonAriaLabel,\n checkboxCellClassName: checkboxCellClassName,\n useReducedRowRenderer: useReducedRowRenderer,\n indentWidth: indentWidth,\n cellStyleProps: cellStyleProps,\n onRenderDetailsCheckbox: onRenderCheckbox,\n enableUpdateAnimations: enableUpdateAnimations,\n rowWidth: rowWidth,\n useFastIcons: useFastIcons,\n role: rowRole,\n };\n if (!item) {\n if (onRenderMissingItem) {\n return onRenderMissingItem(index, rowProps);\n }\n return null;\n }\n return finalOnRenderRow(rowProps);\n }, [\n compact,\n adjustedColumns,\n selectionMode,\n selection,\n rowId,\n onRowDidMount,\n onRowWillUnmount,\n onRenderItemColumn,\n getCellValueKey,\n eventsToRegister,\n dragDropEvents,\n dragDropHelper,\n viewport,\n checkboxVisibility,\n collapseAllVisibility,\n getRowAriaLabel,\n getRowAriaDescribedBy,\n checkButtonAriaLabel,\n checkboxCellClassName,\n useReducedRowRenderer,\n indentWidth,\n cellStyleProps,\n onRenderCheckbox,\n enableUpdateAnimations,\n useFastIcons,\n onRenderDefaultRow,\n onRenderMissingItem,\n props.onRenderRow,\n rowWidth,\n role,\n ]);\n var onRenderListCell = React.useCallback(function (nestingDepth) {\n return function (item, itemIndex) {\n return onRenderCell(nestingDepth, item, itemIndex);\n };\n }, [onRenderCell]);\n var isRightArrow = React.useCallback(function (event) {\n return event.which === getRTLSafeKeyCode(KeyCodes.right, theme);\n }, [theme]);\n var focusZoneProps = {\n componentRef: focusZoneRef,\n className: classNames.focusZone,\n direction: FocusZoneDirection.vertical,\n shouldEnterInnerZone: isRightArrow,\n onActiveElementChanged: onActiveRowChanged,\n shouldRaiseClicks: false,\n onBlur: onBlur,\n };\n var list = groups ? (React.createElement(GroupedList, { focusZoneProps: focusZoneProps, componentRef: groupedListRef, groups: groups, groupProps: finalGroupProps, items: items, onRenderCell: onRenderCell, role: \"presentation\", selection: selection, selectionMode: checkboxVisibility !== CheckboxVisibility.hidden ? selectionMode : SelectionMode.none, dragDropEvents: dragDropEvents, dragDropHelper: dragDropHelper, eventsToRegister: rowElementEventMap, listProps: additionalListProps, onGroupExpandStateChanged: onGroupExpandStateChanged, usePageCache: usePageCache, onShouldVirtualize: onShouldVirtualize, getGroupHeight: getGroupHeight, compact: compact })) : (React.createElement(FocusZone, __assign({}, focusZoneProps),\n React.createElement(List, __assign({ ref: listRef, role: \"presentation\", items: items, onRenderCell: onRenderListCell(0), usePageCache: usePageCache, onShouldVirtualize: onShouldVirtualize }, additionalListProps))));\n var onHeaderKeyDown = React.useCallback(function (ev) {\n if (ev.which === KeyCodes.down) {\n if (focusZoneRef.current && focusZoneRef.current.focus()) {\n // select the first item in list after down arrow key event\n // only if nothing was selected; otherwise start with the already-selected item\n if (selection.getSelectedIndices().length === 0) {\n selection.setIndexSelected(0, true, false);\n }\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n }, [selection, focusZoneRef]);\n var onContentKeyDown = React.useCallback(function (ev) {\n if (ev.which === KeyCodes.up && !ev.altKey) {\n if (headerRef.current && headerRef.current.focus()) {\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n }, [headerRef]);\n return (\n // If shouldApplyApplicationRole is true, role application will be applied to make arrow keys work\n // with JAWS.\n React.createElement(\"div\", __assign({ ref: rootRef, className: classNames.root, \"data-automationid\": \"DetailsList\", \"data-is-scrollable\": \"false\", \"aria-label\": ariaLabel }, (shouldApplyApplicationRole ? { role: 'application' } : {})),\n React.createElement(FocusRects, null),\n React.createElement(\"div\", { role: role, \"aria-label\": ariaLabelForGrid, \"aria-rowcount\": isPlaceholderData ? -1 : rowCount, \"aria-colcount\": colCount, \"aria-readonly\": \"true\", \"aria-busy\": isPlaceholderData },\n React.createElement(\"div\", { onKeyDown: onHeaderKeyDown, role: \"presentation\", className: classNames.headerWrapper }, isHeaderVisible &&\n onRenderDetailsHeader({\n componentRef: headerRef,\n selectionMode: selectionMode,\n layoutMode: layoutMode,\n selection: selection,\n columns: adjustedColumns,\n onColumnClick: onColumnHeaderClick,\n onColumnContextMenu: onColumnHeaderContextMenu,\n onColumnResized: onColumnResized,\n onColumnIsSizingChanged: onColumnIsSizingChanged,\n onColumnAutoResized: onColumnAutoResized,\n groupNestingDepth: groupNestingDepth,\n isAllCollapsed: isCollapsed,\n onToggleCollapseAll: onToggleCollapse,\n ariaLabel: ariaLabelForListHeader,\n ariaLabelForSelectAllCheckbox: ariaLabelForSelectAllCheckbox,\n ariaLabelForSelectionColumn: ariaLabelForSelectionColumn,\n selectAllVisibility: selectAllVisibility,\n collapseAllVisibility: groupProps && groupProps.collapseAllVisibility,\n viewport: viewport,\n columnReorderProps: columnReorderProps,\n minimumPixelsForDrag: minimumPixelsForDrag,\n cellStyleProps: cellStyleProps,\n checkboxVisibility: checkboxVisibility,\n indentWidth: indentWidth,\n onRenderDetailsCheckbox: onRenderCheckbox,\n rowWidth: sumColumnWidths(adjustedColumns),\n useFastIcons: useFastIcons,\n }, onRenderDetailsHeader)),\n React.createElement(\"div\", { onKeyDown: onContentKeyDown, role: \"presentation\", className: classNames.contentWrapper }, !disableSelectionZone ? (React.createElement(SelectionZone, __assign({ ref: selectionZoneRef, selection: selection, selectionPreservedOnEmptyClick: selectionPreservedOnEmptyClick, selectionMode: selectionMode, onItemInvoked: onItemInvoked, onItemContextMenu: onItemContextMenu, enterModalOnTouch: enterModalSelectionOnTouch }, (selectionZoneProps || {})), list)) : (list)),\n onRenderDetailsFooter(__assign({}, detailsFooterProps)))));\n};\nvar DetailsListBase = /** @class */ (function (_super) {\n __extends(DetailsListBase, _super);\n function DetailsListBase(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._header = React.createRef();\n _this._groupedList = React.createRef();\n _this._list = React.createRef();\n _this._focusZone = React.createRef();\n _this._selectionZone = React.createRef();\n _this._onRenderRow = function (props, defaultRender) {\n return React.createElement(DetailsRow, __assign({}, props));\n };\n _this._getDerivedStateFromProps = function (nextProps, previousState) {\n var _a = _this.props, checkboxVisibility = _a.checkboxVisibility, items = _a.items, setKey = _a.setKey, _b = _a.selectionMode, selectionMode = _b === void 0 ? _this._selection.mode : _b, columns = _a.columns, viewport = _a.viewport, compact = _a.compact, dragDropEvents = _a.dragDropEvents;\n var _c = (_this.props.groupProps || {}).isAllGroupsCollapsed, isAllGroupsCollapsed = _c === void 0 ? undefined : _c;\n var newViewportWidth = (nextProps.viewport && nextProps.viewport.width) || 0;\n var oldViewportWidth = (viewport && viewport.width) || 0;\n var shouldResetSelection = nextProps.setKey !== setKey || nextProps.setKey === undefined;\n var shouldForceUpdates = false;\n if (nextProps.layoutMode !== _this.props.layoutMode) {\n shouldForceUpdates = true;\n }\n var nextState = previousState;\n if (shouldResetSelection) {\n _this._initialFocusedIndex = nextProps.initialFocusedIndex;\n // reset focusedItemIndex when setKey changes\n nextState = __assign(__assign({}, nextState), { focusedItemIndex: _this._initialFocusedIndex !== undefined ? _this._initialFocusedIndex : -1 });\n }\n if (!_this.props.disableSelectionZone && nextProps.items !== items) {\n _this._selection.setItems(nextProps.items, shouldResetSelection);\n }\n if (nextProps.checkboxVisibility !== checkboxVisibility ||\n nextProps.columns !== columns ||\n newViewportWidth !== oldViewportWidth ||\n nextProps.compact !== compact) {\n shouldForceUpdates = true;\n }\n nextState = __assign(__assign({}, nextState), _this._adjustColumns(nextProps, nextState, true));\n if (nextProps.selectionMode !== selectionMode) {\n shouldForceUpdates = true;\n }\n if (isAllGroupsCollapsed === undefined &&\n nextProps.groupProps &&\n nextProps.groupProps.isAllGroupsCollapsed !== undefined) {\n nextState = __assign(__assign({}, nextState), { isCollapsed: nextProps.groupProps.isAllGroupsCollapsed, isSomeGroupExpanded: !nextProps.groupProps.isAllGroupsCollapsed });\n }\n if (nextProps.dragDropEvents !== dragDropEvents) {\n _this._dragDropHelper && _this._dragDropHelper.dispose();\n _this._dragDropHelper = nextProps.dragDropEvents\n ? new DragDropHelper({\n selection: _this._selection,\n minimumPixelsForDrag: nextProps.minimumPixelsForDrag,\n })\n : undefined;\n shouldForceUpdates = true;\n }\n if (shouldForceUpdates) {\n nextState = __assign(__assign({}, nextState), { version: {} });\n }\n return nextState;\n };\n _this._onGroupExpandStateChanged = function (isSomeGroupExpanded) {\n _this.setState({ isSomeGroupExpanded: isSomeGroupExpanded });\n };\n _this._onColumnIsSizingChanged = function (column, isSizing) {\n _this.setState({ isSizing: isSizing });\n };\n _this._onRowDidMount = function (row) {\n var _a = row.props, item = _a.item, itemIndex = _a.itemIndex;\n var itemKey = _this._getItemKey(item, itemIndex);\n _this._activeRows[itemKey] = row; // this is used for column auto resize\n _this._setFocusToRowIfPending(row);\n var onRowDidMount = _this.props.onRowDidMount;\n if (onRowDidMount) {\n onRowDidMount(item, itemIndex);\n }\n };\n _this._onRowWillUnmount = function (row) {\n var onRowWillUnmount = _this.props.onRowWillUnmount;\n var _a = row.props, item = _a.item, itemIndex = _a.itemIndex;\n var itemKey = _this._getItemKey(item, itemIndex);\n delete _this._activeRows[itemKey];\n if (onRowWillUnmount) {\n onRowWillUnmount(item, itemIndex);\n }\n };\n _this._onToggleCollapse = function (collapsed) {\n _this.setState({\n isCollapsed: collapsed,\n });\n if (_this._groupedList.current) {\n _this._groupedList.current.toggleCollapseAll(collapsed);\n }\n };\n _this._onColumnResized = function (resizingColumn, newWidth, resizingColumnIndex) {\n var newCalculatedWidth = Math.max(resizingColumn.minWidth || MIN_COLUMN_WIDTH, newWidth);\n if (_this.props.onColumnResize) {\n _this.props.onColumnResize(resizingColumn, newCalculatedWidth, resizingColumnIndex);\n }\n _this._rememberCalculatedWidth(resizingColumn, newCalculatedWidth);\n _this.setState(__assign(__assign({}, _this._adjustColumns(_this.props, _this.state, true, resizingColumnIndex)), { version: {} }));\n };\n /**\n * Callback function when double clicked on the details header column resizer\n * which will measure the column cells of all the active rows and resize the\n * column to the max cell width.\n *\n * @param column - double clicked column definition\n * @param columnIndex - double clicked column index\n * TODO: min width 100 should be changed to const value and should be consistent with the\n * value used on _onSizerMove method in DetailsHeader\n */\n _this._onColumnAutoResized = function (column, columnIndex) {\n var max = 0;\n var count = 0;\n var totalCount = Object.keys(_this._activeRows).length;\n for (var key in _this._activeRows) {\n if (_this._activeRows.hasOwnProperty(key)) {\n var currentRow = _this._activeRows[key];\n currentRow.measureCell(columnIndex, function (width) {\n max = Math.max(max, width);\n count++;\n if (count === totalCount) {\n _this._onColumnResized(column, max, columnIndex);\n }\n });\n }\n }\n };\n /**\n * Call back function when an element in FocusZone becomes active. It will translate it into item\n * and call onActiveItemChanged callback if specified.\n *\n * @param row - element that became active in Focus Zone\n * @param focus - event from Focus Zone\n */\n _this._onActiveRowChanged = function (el, ev) {\n var _a = _this.props, items = _a.items, onActiveItemChanged = _a.onActiveItemChanged;\n if (!el) {\n return;\n }\n // Check and assign index only if the event was raised from any DetailsRow element\n if (el.getAttribute('data-item-index')) {\n var index = Number(el.getAttribute('data-item-index'));\n if (index >= 0) {\n if (onActiveItemChanged) {\n onActiveItemChanged(items[index], index, ev);\n }\n _this.setState({\n focusedItemIndex: index,\n });\n }\n }\n };\n _this._onBlur = function (event) {\n _this.setState({\n focusedItemIndex: -1,\n });\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._activeRows = {};\n _this._columnOverrides = {};\n _this.state = {\n focusedItemIndex: -1,\n lastWidth: 0,\n adjustedColumns: _this._getAdjustedColumns(props, undefined),\n isSizing: false,\n isCollapsed: props.groupProps && props.groupProps.isAllGroupsCollapsed,\n isSomeGroupExpanded: props.groupProps && !props.groupProps.isAllGroupsCollapsed,\n version: {},\n getDerivedStateFromProps: _this._getDerivedStateFromProps,\n };\n _this._selection =\n props.selection ||\n new Selection({\n onSelectionChanged: undefined,\n getKey: props.getKey,\n selectionMode: props.selectionMode,\n });\n if (!_this.props.disableSelectionZone) {\n _this._selection.setItems(props.items, false);\n }\n _this._dragDropHelper = props.dragDropEvents\n ? new DragDropHelper({\n selection: _this._selection,\n minimumPixelsForDrag: props.minimumPixelsForDrag,\n })\n : undefined;\n _this._initialFocusedIndex = props.initialFocusedIndex;\n return _this;\n }\n DetailsListBase.getDerivedStateFromProps = function (nextProps, previousState) {\n return previousState.getDerivedStateFromProps(nextProps, previousState);\n };\n DetailsListBase.prototype.scrollToIndex = function (index, measureItem, scrollToMode) {\n this._list.current && this._list.current.scrollToIndex(index, measureItem, scrollToMode);\n this._groupedList.current && this._groupedList.current.scrollToIndex(index, measureItem, scrollToMode);\n };\n DetailsListBase.prototype.focusIndex = function (index, forceIntoFirstElement, measureItem, scrollToMode) {\n if (forceIntoFirstElement === void 0) { forceIntoFirstElement = false; }\n var item = this.props.items[index];\n if (item) {\n this.scrollToIndex(index, measureItem, scrollToMode);\n var itemKey = this._getItemKey(item, index);\n var row = this._activeRows[itemKey];\n if (row) {\n this._setFocusToRow(row, forceIntoFirstElement);\n }\n }\n };\n DetailsListBase.prototype.getStartItemIndexInView = function () {\n if (this._list && this._list.current) {\n return this._list.current.getStartItemIndexInView();\n }\n else if (this._groupedList && this._groupedList.current) {\n return this._groupedList.current.getStartItemIndexInView();\n }\n return 0;\n };\n DetailsListBase.prototype.componentWillUnmount = function () {\n if (this._dragDropHelper) {\n // TODO If the DragDropHelper was passed via props, this will dispose it, which is incorrect behavior.\n this._dragDropHelper.dispose();\n }\n this._async.dispose();\n };\n DetailsListBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._notifyColumnsResized();\n if (this._initialFocusedIndex !== undefined) {\n var item = this.props.items[this._initialFocusedIndex];\n if (item) {\n var itemKey = this._getItemKey(item, this._initialFocusedIndex);\n var row = this._activeRows[itemKey];\n if (row) {\n this._setFocusToRowIfPending(row);\n }\n }\n }\n if (this.props.items !== prevProps.items &&\n this.props.items.length > 0 &&\n this.state.focusedItemIndex !== -1 &&\n !elementContains(this._root.current, document.activeElement, false)) {\n // Item set has changed and previously-focused item is gone.\n // Set focus to item at index of previously-focused item if it is in range,\n // else set focus to the last item.\n var index = this.state.focusedItemIndex < this.props.items.length\n ? this.state.focusedItemIndex\n : this.props.items.length - 1;\n var item = this.props.items[index];\n var itemKey = this._getItemKey(item, this.state.focusedItemIndex);\n var row = this._activeRows[itemKey];\n if (row) {\n this._setFocusToRow(row);\n }\n else {\n this._initialFocusedIndex = index;\n }\n }\n if (this.props.onDidUpdate) {\n this.props.onDidUpdate(this);\n }\n };\n DetailsListBase.prototype.render = function () {\n return (React.createElement(DetailsListInner, __assign({}, this.props, this.state, { selection: this._selection, dragDropHelper: this._dragDropHelper, rootRef: this._root, listRef: this._list, groupedListRef: this._groupedList, focusZoneRef: this._focusZone, headerRef: this._header, selectionZoneRef: this._selectionZone, onGroupExpandStateChanged: this._onGroupExpandStateChanged, onColumnIsSizingChanged: this._onColumnIsSizingChanged, onRowDidMount: this._onRowDidMount, onRowWillUnmount: this._onRowWillUnmount, onColumnResized: this._onColumnResized, onColumnAutoResized: this._onColumnAutoResized, onToggleCollapse: this._onToggleCollapse, onActiveRowChanged: this._onActiveRowChanged, onBlur: this._onBlur, onRenderDefaultRow: this._onRenderRow })));\n };\n DetailsListBase.prototype.forceUpdate = function () {\n _super.prototype.forceUpdate.call(this);\n this._forceListUpdates();\n };\n DetailsListBase.prototype._getGroupNestingDepth = function () {\n var groups = this.props.groups;\n var level = 0;\n var groupsInLevel = groups;\n while (groupsInLevel && groupsInLevel.length > 0) {\n level++;\n groupsInLevel = groupsInLevel[0].children;\n }\n return level;\n };\n DetailsListBase.prototype._setFocusToRowIfPending = function (row) {\n var itemIndex = row.props.itemIndex;\n if (this._initialFocusedIndex !== undefined && itemIndex === this._initialFocusedIndex) {\n this._setFocusToRow(row);\n delete this._initialFocusedIndex;\n }\n };\n DetailsListBase.prototype._setFocusToRow = function (row, forceIntoFirstElement) {\n if (forceIntoFirstElement === void 0) { forceIntoFirstElement = false; }\n if (this._selectionZone.current) {\n this._selectionZone.current.ignoreNextFocus();\n }\n this._async.setTimeout(function () {\n row.focus(forceIntoFirstElement);\n }, 0);\n };\n DetailsListBase.prototype._forceListUpdates = function () {\n if (this._groupedList.current) {\n this._groupedList.current.forceUpdate();\n }\n if (this._list.current) {\n this._list.current.forceUpdate();\n }\n };\n DetailsListBase.prototype._notifyColumnsResized = function () {\n this.state.adjustedColumns.forEach(function (column) {\n if (column.onColumnResize) {\n column.onColumnResize(column.currentWidth);\n }\n });\n };\n DetailsListBase.prototype._adjustColumns = function (newProps, previousState, forceUpdate, resizingColumnIndex) {\n var adjustedColumns = this._getAdjustedColumns(newProps, previousState, forceUpdate, resizingColumnIndex);\n var viewport = this.props.viewport;\n var viewportWidth = viewport && viewport.width ? viewport.width : 0;\n return __assign(__assign({}, previousState), { adjustedColumns: adjustedColumns, lastWidth: viewportWidth });\n };\n /** Returns adjusted columns, given the viewport size and layout mode. */\n DetailsListBase.prototype._getAdjustedColumns = function (newProps, previousState, forceUpdate, resizingColumnIndex) {\n var _this = this;\n var newItems = newProps.items, layoutMode = newProps.layoutMode, selectionMode = newProps.selectionMode, viewport = newProps.viewport;\n var viewportWidth = viewport && viewport.width ? viewport.width : 0;\n var newColumns = newProps.columns;\n var columns = this.props ? this.props.columns : [];\n var lastWidth = previousState ? previousState.lastWidth : -1;\n var lastSelectionMode = previousState ? previousState.lastSelectionMode : undefined;\n if (!forceUpdate &&\n lastWidth === viewportWidth &&\n lastSelectionMode === selectionMode &&\n (!columns || newColumns === columns)) {\n return newColumns || [];\n }\n newColumns = newColumns || buildColumns(newItems, true);\n var adjustedColumns;\n if (layoutMode === DetailsListLayoutMode.fixedColumns) {\n adjustedColumns = this._getFixedColumns(newColumns, viewportWidth, newProps);\n // Preserve adjusted column calculated widths.\n adjustedColumns.forEach(function (column) {\n _this._rememberCalculatedWidth(column, column.calculatedWidth);\n });\n }\n else {\n adjustedColumns = this._getJustifiedColumns(newColumns, viewportWidth, newProps);\n adjustedColumns.forEach(function (column) {\n _this._getColumnOverride(column.key).currentWidth = column.calculatedWidth;\n });\n }\n return adjustedColumns;\n };\n /** Builds a set of columns based on the given columns mixed with the current overrides. */\n DetailsListBase.prototype._getFixedColumns = function (newColumns, viewportWidth, props) {\n var _this = this;\n var _a = this.props, _b = _a.selectionMode, selectionMode = _b === void 0 ? this._selection.mode : _b, checkboxVisibility = _a.checkboxVisibility, flexMargin = _a.flexMargin, skipViewportMeasures = _a.skipViewportMeasures;\n var remainingWidth = viewportWidth - (flexMargin || 0);\n var sumProportionalWidth = 0;\n newColumns.forEach(function (col) {\n if (skipViewportMeasures || !col.flexGrow) {\n remainingWidth -= col.maxWidth || col.minWidth || MIN_COLUMN_WIDTH;\n }\n else {\n remainingWidth -= col.minWidth || MIN_COLUMN_WIDTH;\n sumProportionalWidth += col.flexGrow;\n }\n remainingWidth -= getPaddedWidth(col, props, true);\n });\n var rowCheckWidth = selectionMode !== SelectionMode.none && checkboxVisibility !== CheckboxVisibility.hidden ? CHECKBOX_WIDTH : 0;\n var groupExpandWidth = this._getGroupNestingDepth() * GROUP_EXPAND_WIDTH;\n remainingWidth -= rowCheckWidth + groupExpandWidth;\n var widthFraction = remainingWidth / sumProportionalWidth;\n // Shrinks proportional columns to their max width and adds the remaining width to distribute to other columns.\n if (!skipViewportMeasures) {\n newColumns.forEach(function (column) {\n var newColumn = __assign(__assign({}, column), _this._columnOverrides[column.key]);\n if (newColumn.flexGrow && newColumn.maxWidth) {\n var fullWidth = newColumn.flexGrow * widthFraction + newColumn.minWidth;\n var shrinkWidth = fullWidth - newColumn.maxWidth;\n if (shrinkWidth > 0) {\n remainingWidth += shrinkWidth;\n sumProportionalWidth -= (shrinkWidth / (fullWidth - newColumn.minWidth)) * newColumn.flexGrow;\n }\n }\n });\n }\n widthFraction = remainingWidth > 0 ? remainingWidth / sumProportionalWidth : 0;\n return newColumns.map(function (column) {\n var newColumn = __assign(__assign({}, column), _this._columnOverrides[column.key]);\n // Delay computation until viewport width is available.\n if (!skipViewportMeasures && newColumn.flexGrow && remainingWidth <= 0) {\n return newColumn;\n }\n if (!newColumn.calculatedWidth) {\n if (!skipViewportMeasures && newColumn.flexGrow) {\n // Assigns the proportion of the remaining extra width after all columns have met minimum widths.\n newColumn.calculatedWidth = newColumn.minWidth + newColumn.flexGrow * widthFraction;\n newColumn.calculatedWidth = Math.min(newColumn.calculatedWidth, newColumn.maxWidth || Number.MAX_VALUE);\n }\n else {\n newColumn.calculatedWidth = newColumn.maxWidth || newColumn.minWidth || MIN_COLUMN_WIDTH;\n }\n }\n return newColumn;\n });\n };\n /** Builds a set of columns to fix within the viewport width. */\n DetailsListBase.prototype._getJustifiedColumns = function (newColumns, viewportWidth, props) {\n var _this = this;\n var _a = props.selectionMode, selectionMode = _a === void 0 ? this._selection.mode : _a, checkboxVisibility = props.checkboxVisibility;\n var rowCheckWidth = selectionMode !== SelectionMode.none && checkboxVisibility !== CheckboxVisibility.hidden ? CHECKBOX_WIDTH : 0;\n var groupExpandWidth = this._getGroupNestingDepth() * GROUP_EXPAND_WIDTH;\n var totalWidth = 0; // offset because we have one less inner padding.\n var minimumWidth = 0;\n var availableWidth = viewportWidth - (rowCheckWidth + groupExpandWidth);\n var adjustedColumns = newColumns.map(function (column, i) {\n var baseColumn = __assign(__assign({}, column), { calculatedWidth: column.minWidth || MIN_COLUMN_WIDTH });\n var newColumn = __assign(__assign({}, baseColumn), _this._columnOverrides[column.key]);\n // eslint-disable-next-line deprecation/deprecation\n if (!(baseColumn.isCollapsible || baseColumn.isCollapsable)) {\n minimumWidth += getPaddedWidth(baseColumn, props);\n }\n totalWidth += getPaddedWidth(newColumn, props);\n return newColumn;\n });\n if (minimumWidth > availableWidth) {\n return adjustedColumns;\n }\n var lastIndex = adjustedColumns.length - 1;\n // Shrink or remove collapsable columns.\n while (lastIndex >= 0 && totalWidth > availableWidth) {\n var column = adjustedColumns[lastIndex];\n var minWidth = column.minWidth || MIN_COLUMN_WIDTH;\n var overflowWidth = totalWidth - availableWidth;\n // eslint-disable-next-line deprecation/deprecation\n if (column.calculatedWidth - minWidth >= overflowWidth || !(column.isCollapsible || column.isCollapsable)) {\n var originalWidth = column.calculatedWidth;\n column.calculatedWidth = Math.max(column.calculatedWidth - overflowWidth, minWidth);\n totalWidth -= originalWidth - column.calculatedWidth;\n }\n else {\n totalWidth -= getPaddedWidth(column, props);\n adjustedColumns.splice(lastIndex, 1);\n }\n lastIndex--;\n }\n // Then expand columns starting at the beginning, until we've filled the width.\n for (var i = 0; i < adjustedColumns.length && totalWidth < availableWidth; i++) {\n var column = adjustedColumns[i];\n var isLast = i === adjustedColumns.length - 1;\n var overrides = this._columnOverrides[column.key];\n if (overrides && overrides.calculatedWidth && !isLast) {\n continue;\n }\n var spaceLeft = availableWidth - totalWidth;\n var increment = void 0;\n if (isLast) {\n increment = spaceLeft;\n }\n else {\n var maxWidth = column.maxWidth;\n var minWidth = column.minWidth || maxWidth || MIN_COLUMN_WIDTH;\n increment = maxWidth ? Math.min(spaceLeft, maxWidth - minWidth) : spaceLeft;\n }\n column.calculatedWidth = column.calculatedWidth + increment;\n totalWidth += increment;\n }\n return adjustedColumns;\n };\n DetailsListBase.prototype._rememberCalculatedWidth = function (column, newCalculatedWidth) {\n var overrides = this._getColumnOverride(column.key);\n overrides.calculatedWidth = newCalculatedWidth;\n overrides.currentWidth = newCalculatedWidth;\n };\n DetailsListBase.prototype._getColumnOverride = function (key) {\n return (this._columnOverrides[key] = this._columnOverrides[key] || {});\n };\n DetailsListBase.prototype._getItemKey = function (item, itemIndex) {\n var getKey = this.props.getKey;\n var itemKey = undefined;\n if (item) {\n itemKey = item.key;\n }\n if (getKey) {\n itemKey = getKey(item, itemIndex);\n }\n if (!itemKey) {\n itemKey = itemIndex;\n }\n return itemKey;\n };\n DetailsListBase.defaultProps = {\n layoutMode: DetailsListLayoutMode.justified,\n selectionMode: SelectionMode.multiple,\n constrainMode: ConstrainMode.horizontalConstrained,\n checkboxVisibility: CheckboxVisibility.onHover,\n isHeaderVisible: true,\n compact: false,\n useFastIcons: true,\n };\n DetailsListBase = __decorate([\n withViewport\n ], DetailsListBase);\n return DetailsListBase;\n}(React.Component));\nexport { DetailsListBase };\nexport function buildColumns(items, canResizeColumns, onColumnClick, sortedColumnKey, isSortedDescending, groupedColumnKey, isMultiline) {\n var columns = [];\n if (items && items.length) {\n var firstItem = items[0];\n for (var propName in firstItem) {\n if (firstItem.hasOwnProperty(propName)) {\n columns.push({\n key: propName,\n name: propName,\n fieldName: propName,\n minWidth: MIN_COLUMN_WIDTH,\n maxWidth: 300,\n isCollapsable: !!columns.length,\n isCollapsible: !!columns.length,\n isMultiline: isMultiline === undefined ? false : isMultiline,\n isSorted: sortedColumnKey === propName,\n isSortedDescending: !!isSortedDescending,\n isRowHeader: false,\n columnActionsMode: ColumnActionsMode.clickable,\n isResizable: canResizeColumns,\n onColumnClick: onColumnClick,\n isGrouped: groupedColumnKey === propName,\n });\n }\n }\n }\n return columns;\n}\nfunction getPaddedWidth(column, props, paddingOnly) {\n var _a = props.cellStyleProps, cellStyleProps = _a === void 0 ? DEFAULT_CELL_STYLE_PROPS : _a;\n return ((paddingOnly ? 0 : column.calculatedWidth) +\n cellStyleProps.cellLeftPadding +\n cellStyleProps.cellRightPadding +\n (column.isPadded ? cellStyleProps.cellExtraRightPadding : 0));\n}\nfunction getGroupNestingDepth(groups) {\n var level = 0;\n var groupsInLevel = groups;\n while (groupsInLevel && groupsInLevel.length > 0) {\n level++;\n groupsInLevel = groupsInLevel[0].children;\n }\n return level;\n}\n//# sourceMappingURL=DetailsList.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "index": 817, - "index2": 839, - "size": 288, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList", - "loc": "5:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList", - "loc": "91:36-47" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList", - "loc": "6:0-30" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DetailsList", - "loc": "6:0-30" - } - ], - "usedExports": [ - "DetailsList" - ], - "providedExports": [ - "DetailsList" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { DetailsListBase } from './DetailsList.base';\nimport { getStyles } from './DetailsList.styles';\nexport var DetailsList = styled(DetailsListBase, getStyles, undefined, {\n scope: 'DetailsList',\n});\n//# sourceMappingURL=DetailsList.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.types.js", - "index": 768, - "index2": 762, - "size": 1390, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../Shimmer.types", - "loc": "4:0-85" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "29:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "31:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "32:130-148" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "33:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "36:54-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "41:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "47:30-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "52:30-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "59:30-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "62:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "64:30-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "67:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "71:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "75:136-154" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "92:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "94:37-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "97:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "99:37-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "102:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../Shimmer.types", - "loc": "104:37-66" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Shimmer.types", - "loc": "3:0-32" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Shimmer.types", - "loc": "3:0-32" - } - ], - "usedExports": [ - "ShimmerElementType", - "ShimmerElementsDefaultHeights" - ], - "providedExports": [ - "ShimmerElementType", - "ShimmerElementsDefaultHeights" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\n * Describes the possible types for shimmer elements used.\n * {@docCategory Shimmer}\n */\nexport var ShimmerElementType;\n(function (ShimmerElementType) {\n /**\n * Line element type\n */\n ShimmerElementType[ShimmerElementType[\"line\"] = 1] = \"line\";\n /**\n * Circle element type\n */\n ShimmerElementType[ShimmerElementType[\"circle\"] = 2] = \"circle\";\n /**\n * Gap element type\n */\n ShimmerElementType[ShimmerElementType[\"gap\"] = 3] = \"gap\";\n})(ShimmerElementType || (ShimmerElementType = {}));\n/**\n * Describes the default heights for shimmer elements when omitted in implementation.\n * {@docCategory Shimmer}\n */\nexport var ShimmerElementsDefaultHeights;\n(function (ShimmerElementsDefaultHeights) {\n /**\n * Default height of the line element when not provided by user: 16px\n */\n ShimmerElementsDefaultHeights[ShimmerElementsDefaultHeights[\"line\"] = 16] = \"line\";\n /**\n * Default height of the gap element when not provided by user: 16px\n */\n ShimmerElementsDefaultHeights[ShimmerElementsDefaultHeights[\"gap\"] = 16] = \"gap\";\n /**\n * Default height of the circle element when not provided by user: 24px\n */\n ShimmerElementsDefaultHeights[ShimmerElementsDefaultHeights[\"circle\"] = 24] = \"circle\";\n})(ShimmerElementsDefaultHeights || (ShimmerElementsDefaultHeights = {}));\n//# sourceMappingURL=Shimmer.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.base.js", - "index": 776, - "index2": 769, - "size": 1523, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerLine.base", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerLine.base", - "loc": "4:32-47" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerLine/ShimmerLine.base", - "loc": "5:0-47" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ShimmerLine/ShimmerLine.base", - "loc": "5:0-47" - } - ], - "usedExports": [ - "ShimmerLineBase" - ], - "providedExports": [ - "ShimmerLineBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import * as React from 'react';\nimport { classNamesFunction } from '../../../Utilities';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory Shimmer}\n */\nexport var ShimmerLineBase = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var height = props.height, styles = props.styles, _a = props.width, width = _a === void 0 ? '100%' : _a, borderStyle = props.borderStyle, theme = props.theme;\n var classNames = getClassNames(styles, {\n theme: theme,\n height: height,\n borderStyle: borderStyle,\n });\n return (React.createElement(\"div\", { style: { width: width, minWidth: typeof width === 'number' ? width + \"px\" : 'auto' }, className: classNames.root },\n React.createElement(\"svg\", { width: \"2\", height: \"2\", className: classNames.topLeftCorner },\n React.createElement(\"path\", { d: \"M0 2 A 2 2, 0, 0, 1, 2 0 L 0 0 Z\" })),\n React.createElement(\"svg\", { width: \"2\", height: \"2\", className: classNames.topRightCorner },\n React.createElement(\"path\", { d: \"M0 0 A 2 2, 0, 0, 1, 2 2 L 2 0 Z\" })),\n React.createElement(\"svg\", { width: \"2\", height: \"2\", className: classNames.bottomRightCorner },\n React.createElement(\"path\", { d: \"M2 0 A 2 2, 0, 0, 1, 0 2 L 2 2 Z\" })),\n React.createElement(\"svg\", { width: \"2\", height: \"2\", className: classNames.bottomLeftCorner },\n React.createElement(\"path\", { d: \"M2 2 A 2 2, 0, 0, 1, 0 0 L 0 2 Z\" }))));\n};\n//# sourceMappingURL=ShimmerLine.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "index": 775, - "index2": 771, - "size": 291, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../ShimmerLine/ShimmerLine", - "loc": "5:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../ShimmerLine/ShimmerLine", - "loc": "34:43-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../ShimmerLine/ShimmerLine", - "loc": "36:31-42" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerLine/ShimmerLine", - "loc": "4:0-42" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ShimmerLine/ShimmerLine", - "loc": "4:0-42" - } - ], - "usedExports": [ - "ShimmerLine" - ], - "providedExports": [ - "ShimmerLine" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../../Utilities';\nimport { ShimmerLineBase } from './ShimmerLine.base';\nimport { getStyles } from './ShimmerLine.styles';\nexport var ShimmerLine = styled(ShimmerLineBase, getStyles, undefined, {\n scope: 'ShimmerLine',\n});\n//# sourceMappingURL=ShimmerLine.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.base.js", - "index": 773, - "index2": 766, - "size": 769, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerGap.base", - "loc": "2:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerGap.base", - "loc": "4:31-45" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerGap/ShimmerGap.base", - "loc": "9:0-45" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ShimmerGap/ShimmerGap.base", - "loc": "9:0-45" - } - ], - "usedExports": [ - "ShimmerGapBase" - ], - "providedExports": [ - "ShimmerGapBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import * as React from 'react';\nimport { classNamesFunction } from '../../../Utilities';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory Shimmer}\n */\nexport var ShimmerGapBase = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var height = props.height, styles = props.styles, _a = props.width, width = _a === void 0 ? '10px' : _a, borderStyle = props.borderStyle, theme = props.theme;\n var classNames = getClassNames(styles, {\n theme: theme,\n height: height,\n borderStyle: borderStyle,\n });\n return (React.createElement(\"div\", { style: { width: width, minWidth: typeof width === 'number' ? width + \"px\" : 'auto' }, className: classNames.root }));\n};\n//# sourceMappingURL=ShimmerGap.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "index": 772, - "index2": 768, - "size": 284, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../ShimmerGap/ShimmerGap", - "loc": "6:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../ShimmerGap/ShimmerGap", - "loc": "32:43-53" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerGap/ShimmerGap", - "loc": "8:0-40" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ShimmerGap/ShimmerGap", - "loc": "8:0-40" - } - ], - "usedExports": [ - "ShimmerGap" - ], - "providedExports": [ - "ShimmerGap" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../../Utilities';\nimport { ShimmerGapBase } from './ShimmerGap.base';\nimport { getStyles } from './ShimmerGap.styles';\nexport var ShimmerGap = styled(ShimmerGapBase, getStyles, undefined, {\n scope: 'ShimmerGap',\n});\n//# sourceMappingURL=ShimmerGap.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.base.js", - "index": 770, - "index2": 763, - "size": 971, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerCircle.base", - "loc": "3:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerCircle.base", - "loc": "4:34-51" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerCircle/ShimmerCircle.base", - "loc": "7:0-51" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ShimmerCircle/ShimmerCircle.base", - "loc": "7:0-51" - } - ], - "usedExports": [ - "ShimmerCircleBase" - ], - "providedExports": [ - "ShimmerCircleBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import * as React from 'react';\nimport { classNamesFunction } from '../../../Utilities';\nvar getClassNames = classNamesFunction();\nexport var ShimmerCircleBase = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var height = props.height, styles = props.styles, borderStyle = props.borderStyle, theme = props.theme;\n var classNames = getClassNames(styles, {\n theme: theme,\n height: height,\n borderStyle: borderStyle,\n });\n return (React.createElement(\"div\", { className: classNames.root },\n React.createElement(\"svg\", { viewBox: \"0 0 10 10\", width: height, height: height, className: classNames.svg },\n React.createElement(\"path\", { d: \"M0,0 L10,0 L10,10 L0,10 L0,0 Z M0,5 C0,7.76142375 2.23857625,10 5,10 C7.76142375,10 10,7.76142375 10,5 C10,2.23857625 7.76142375,2.22044605e-16 5,0 C2.23857625,-2.22044605e-16 0,2.23857625 0,5 L0,5 Z\" }))));\n};\n//# sourceMappingURL=ShimmerCircle.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "index": 769, - "index2": 765, - "size": 300, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../ShimmerCircle/ShimmerCircle", - "loc": "7:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "userRequest": "../ShimmerCircle/ShimmerCircle", - "loc": "30:43-56" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerCircle/ShimmerCircle", - "loc": "6:0-46" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ShimmerCircle/ShimmerCircle", - "loc": "6:0-46" - } - ], - "usedExports": [ - "ShimmerCircle" - ], - "providedExports": [ - "ShimmerCircle" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../../Utilities';\nimport { getStyles } from './ShimmerCircle.styles';\nimport { ShimmerCircleBase } from './ShimmerCircle.base';\nexport var ShimmerCircle = styled(ShimmerCircleBase, getStyles, undefined, { scope: 'ShimmerCircle' });\n//# sourceMappingURL=ShimmerCircle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "index": 767, - "index2": 772, - "size": 5352, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerElementsGroup.base", - "loc": "2:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerElementsGroup.base", - "loc": "4:41-65" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerElementsGroup/ShimmerElementsGroup.base", - "loc": "11:0-65" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ShimmerElementsGroup/ShimmerElementsGroup.base", - "loc": "11:0-65" - } - ], - "usedExports": [ - "ShimmerElementsGroupBase" - ], - "providedExports": [ - "ShimmerElementsGroupBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, memoizeFunction } from '../../../Utilities';\nimport { ShimmerElementType, ShimmerElementsDefaultHeights } from '../Shimmer.types';\nimport { ShimmerLine } from '../ShimmerLine/ShimmerLine';\nimport { ShimmerGap } from '../ShimmerGap/ShimmerGap';\nimport { ShimmerCircle } from '../ShimmerCircle/ShimmerCircle';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory Shimmer}\n */\nexport var ShimmerElementsGroupBase = function (props) {\n var styles = props.styles, _a = props.width, width = _a === void 0 ? 'auto' : _a, shimmerElements = props.shimmerElements, _b = props.rowHeight, rowHeight = _b === void 0 ? findMaxElementHeight(shimmerElements || []) : _b, _c = props.flexWrap, flexWrap = _c === void 0 ? false : _c, theme = props.theme, backgroundColor = props.backgroundColor;\n var classNames = getClassNames(styles, {\n theme: theme,\n flexWrap: flexWrap,\n });\n return (React.createElement(\"div\", { style: { width: width }, className: classNames.root }, getRenderedElements(shimmerElements, backgroundColor, rowHeight)));\n};\nfunction getRenderedElements(shimmerElements, backgroundColor, rowHeight) {\n var renderedElements = shimmerElements ? (shimmerElements.map(\n // false positive\n // eslint-disable-next-line array-callback-return\n function (element, index) {\n var type = element.type, filteredElem = __rest(element, [\"type\"]);\n var verticalAlign = filteredElem.verticalAlign, height = filteredElem.height;\n var styles = getElementStyles(verticalAlign, type, height, backgroundColor, rowHeight);\n switch (element.type) {\n case ShimmerElementType.circle:\n return React.createElement(ShimmerCircle, __assign({ key: index }, filteredElem, { styles: styles }));\n case ShimmerElementType.gap:\n return React.createElement(ShimmerGap, __assign({ key: index }, filteredElem, { styles: styles }));\n case ShimmerElementType.line:\n return React.createElement(ShimmerLine, __assign({ key: index }, filteredElem, { styles: styles }));\n }\n })) : (React.createElement(ShimmerLine, { height: ShimmerElementsDefaultHeights.line }));\n return renderedElements;\n}\nvar getElementStyles = memoizeFunction(function (verticalAlign, elementType, elementHeight, backgroundColor, rowHeight) {\n var dif = rowHeight && elementHeight ? rowHeight - elementHeight : 0;\n var borderStyle;\n if (!verticalAlign || verticalAlign === 'center') {\n borderStyle = {\n borderBottomWidth: (dif ? Math.floor(dif / 2) : 0) + \"px\",\n borderTopWidth: (dif ? Math.ceil(dif / 2) : 0) + \"px\",\n };\n }\n else if (verticalAlign && verticalAlign === 'top') {\n borderStyle = {\n borderBottomWidth: dif + \"px\",\n borderTopWidth: \"0px\",\n };\n }\n else if (verticalAlign && verticalAlign === 'bottom') {\n borderStyle = {\n borderBottomWidth: \"0px\",\n borderTopWidth: dif + \"px\",\n };\n }\n if (backgroundColor) {\n switch (elementType) {\n case ShimmerElementType.circle:\n return {\n root: __assign(__assign({}, borderStyle), { borderColor: backgroundColor }),\n svg: { fill: backgroundColor },\n };\n case ShimmerElementType.gap:\n return {\n root: __assign(__assign({}, borderStyle), { borderColor: backgroundColor, backgroundColor: backgroundColor }),\n };\n case ShimmerElementType.line:\n return {\n root: __assign(__assign({}, borderStyle), { borderColor: backgroundColor }),\n topLeftCorner: { fill: backgroundColor },\n topRightCorner: { fill: backgroundColor },\n bottomLeftCorner: { fill: backgroundColor },\n bottomRightCorner: { fill: backgroundColor },\n };\n }\n }\n return {\n root: borderStyle,\n };\n});\n/**\n * User should not worry to provide which of the elements is the highest so we do the calculation for him.\n * Plus if user forgot to specify the height we assign their defaults.\n */\nfunction findMaxElementHeight(shimmerElements) {\n var shimmerElementsDefaulted = shimmerElements.map(function (element) {\n switch (element.type) {\n case ShimmerElementType.circle:\n if (!element.height) {\n element.height = ShimmerElementsDefaultHeights.circle;\n }\n break;\n case ShimmerElementType.line:\n if (!element.height) {\n element.height = ShimmerElementsDefaultHeights.line;\n }\n break;\n case ShimmerElementType.gap:\n if (!element.height) {\n element.height = ShimmerElementsDefaultHeights.gap;\n }\n break;\n }\n return element;\n });\n var rowHeight = shimmerElementsDefaulted.reduce(function (acc, next) {\n return next.height ? (next.height > acc ? next.height : acc) : acc;\n }, 0);\n return rowHeight;\n}\n//# sourceMappingURL=ShimmerElementsGroup.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "index": 766, - "index2": 774, - "size": 349, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerElementsGroup/ShimmerElementsGroup", - "loc": "4:0-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "32:60-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerElementsGroup/ShimmerElementsGroup", - "loc": "59:83-103" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "71:60-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "75:56-76" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerElementsGroup/ShimmerElementsGroup", - "loc": "10:0-60" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ShimmerElementsGroup/ShimmerElementsGroup", - "loc": "10:0-60" - } - ], - "usedExports": [ - "ShimmerElementsGroup" - ], - "providedExports": [ - "ShimmerElementsGroup" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../../Utilities';\nimport { ShimmerElementsGroupBase } from './ShimmerElementsGroup.base';\nimport { getStyles } from './ShimmerElementsGroup.styles';\nexport var ShimmerElementsGroup = styled(ShimmerElementsGroupBase, getStyles, undefined, { scope: 'ShimmerElementsGroup' });\n//# sourceMappingURL=ShimmerElementsGroup.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "index": 765, - "index2": 775, - "size": 3675, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "type": "harmony side effect evaluation", - "userRequest": "./Shimmer.base", - "loc": "3:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "type": "harmony import specifier", - "userRequest": "./Shimmer.base", - "loc": "4:28-39" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Shimmer.base", - "loc": "2:0-31" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Shimmer.base", - "loc": "2:0-31" - } - ], - "usedExports": [ - "ShimmerBase" - ], - "providedExports": [ - "ShimmerBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, DelayedRender, getNativeProps, divProperties, Async, initializeComponentRef, } from '../../Utilities';\nimport { ShimmerElementsGroup } from './ShimmerElementsGroup/ShimmerElementsGroup';\nvar TRANSITION_ANIMATION_INTERVAL = 200; /* ms */\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory Shimmer}\n */\nvar ShimmerBase = /** @class */ (function (_super) {\n __extends(ShimmerBase, _super);\n function ShimmerBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n _this.state = {\n contentLoaded: props.isDataLoaded,\n };\n _this._async = new Async(_this);\n return _this;\n }\n ShimmerBase.prototype.componentDidUpdate = function (prevProps) {\n var _this = this;\n var isDataLoaded = this.props.isDataLoaded;\n if (isDataLoaded !== prevProps.isDataLoaded) {\n this._async.clearTimeout(this._lastTimeoutId);\n // Removing the shimmerWrapper div from the DOM only after the fade out animation completed.\n if (isDataLoaded) {\n this._lastTimeoutId = this._async.setTimeout(function () {\n _this.setState({\n contentLoaded: isDataLoaded,\n });\n }, TRANSITION_ANIMATION_INTERVAL);\n }\n else {\n this.setState({\n contentLoaded: isDataLoaded,\n });\n }\n }\n };\n ShimmerBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n };\n ShimmerBase.prototype.render = function () {\n var _a = this.props, styles = _a.styles, shimmerElements = _a.shimmerElements, children = _a.children, isDataLoaded = _a.isDataLoaded, width = _a.width, className = _a.className, customElementsGroup = _a.customElementsGroup, theme = _a.theme, ariaLabel = _a.ariaLabel, shimmerColors = _a.shimmerColors;\n var contentLoaded = this.state.contentLoaded;\n this._classNames = getClassNames(styles, {\n theme: theme,\n isDataLoaded: isDataLoaded,\n className: className,\n transitionAnimationInterval: TRANSITION_ANIMATION_INTERVAL,\n shimmerColor: shimmerColors && shimmerColors.shimmer,\n shimmerWaveColor: shimmerColors && shimmerColors.shimmerWave,\n });\n var divProps = getNativeProps(this.props, divProperties);\n return (React.createElement(\"div\", __assign({}, divProps, { className: this._classNames.root }),\n !contentLoaded && (React.createElement(\"div\", { style: { width: width ? width : '100%' }, className: this._classNames.shimmerWrapper },\n React.createElement(\"div\", { className: this._classNames.shimmerGradient }),\n customElementsGroup ? (customElementsGroup) : (React.createElement(ShimmerElementsGroup, { shimmerElements: shimmerElements, backgroundColor: shimmerColors && shimmerColors.background })))),\n children && React.createElement(\"div\", { className: this._classNames.dataWrapper }, children),\n ariaLabel && !isDataLoaded && (React.createElement(\"div\", { role: \"status\", \"aria-live\": \"polite\" },\n React.createElement(DelayedRender, null,\n React.createElement(\"div\", { className: this._classNames.screenReaderText }, ariaLabel))))));\n };\n ShimmerBase.defaultProps = {\n isDataLoaded: false,\n };\n return ShimmerBase;\n}(React.Component));\nexport { ShimmerBase };\n//# sourceMappingURL=Shimmer.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "index": 764, - "index2": 777, - "size": 260, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "issuerId": "XrpE", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Shimmer", - "loc": "22:39-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Shimmer", - "loc": "456:109-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Shimmer", - "loc": "926:60-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Shimmer", - "loc": "929:56-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Shimmer", - "loc": "933:60-67" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Shimmer", - "loc": "1:0-26" - }, - { - "moduleId": "XrpE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Shimmer", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Shimmer" - ], - "providedExports": [ - "Shimmer" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { getStyles } from './Shimmer.styles';\nimport { ShimmerBase } from './Shimmer.base';\nexport var Shimmer = styled(ShimmerBase, getStyles, undefined, {\n scope: 'Shimmer',\n});\n//# sourceMappingURL=Shimmer.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "index": 816, - "index2": 840, - "size": 6685, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "issuerId": "gR01", - "issuerName": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "gR01", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmeredDetailsList.base", - "loc": "2:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "type": "harmony import specifier", - "userRequest": "./ShimmeredDetailsList.base", - "loc": "4:41-65" - }, - { - "moduleId": "gR01", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/DetailsList/ShimmeredDetailsList.base", - "loc": "2:0-67" - }, - { - "moduleId": "gR01", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "type": "harmony export imported specifier", - "userRequest": "./components/DetailsList/ShimmeredDetailsList.base", - "loc": "2:0-67" - } - ], - "usedExports": [ - "ShimmeredDetailsListBase" - ], - "providedExports": [ - "ShimmeredDetailsListBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, css } from '../../Utilities';\nimport { SelectionMode } from '../../utilities/selection/interfaces';\nimport { DetailsList } from './DetailsList';\nimport { Shimmer, ShimmerElementsGroup, ShimmerElementType } from '../../Shimmer';\nimport { CheckboxVisibility } from './DetailsList.types';\nimport { DEFAULT_CELL_STYLE_PROPS, DEFAULT_ROW_HEIGHTS } from './DetailsRow.styles';\nvar getClassNames = classNamesFunction();\nvar SHIMMER_INITIAL_ITEMS = 10;\nvar DEFAULT_SHIMMER_HEIGHT = 7;\nvar SHIMMER_LINE_VS_CELL_WIDTH_RATIO = 0.95;\nvar ShimmeredDetailsListBase = /** @class */ (function (_super) {\n __extends(ShimmeredDetailsListBase, _super);\n function ShimmeredDetailsListBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onRenderShimmerPlaceholder = function (index, rowProps) {\n var onRenderCustomPlaceholder = _this.props.onRenderCustomPlaceholder;\n var placeholderElements = onRenderCustomPlaceholder\n ? onRenderCustomPlaceholder(rowProps, index, _this._renderDefaultShimmerPlaceholder)\n : _this._renderDefaultShimmerPlaceholder(rowProps);\n return React.createElement(Shimmer, { customElementsGroup: placeholderElements });\n };\n _this._renderDefaultShimmerPlaceholder = function (rowProps) {\n var columns = rowProps.columns, compact = rowProps.compact, selectionMode = rowProps.selectionMode, checkboxVisibility = rowProps.checkboxVisibility, _a = rowProps.cellStyleProps, cellStyleProps = _a === void 0 ? DEFAULT_CELL_STYLE_PROPS : _a;\n var rowHeight = DEFAULT_ROW_HEIGHTS.rowHeight, compactRowHeight = DEFAULT_ROW_HEIGHTS.compactRowHeight;\n // 1px to take into account the border-bottom of DetailsRow.\n var gapHeight = compact ? compactRowHeight : rowHeight + 1;\n var shimmerElementsRow = [];\n var showCheckbox = selectionMode !== SelectionMode.none && checkboxVisibility !== CheckboxVisibility.hidden;\n if (showCheckbox) {\n shimmerElementsRow.push(React.createElement(ShimmerElementsGroup, { key: 'checkboxGap', shimmerElements: [{ type: ShimmerElementType.gap, width: '40px', height: gapHeight }] }));\n }\n columns.forEach(function (column, columnIdx) {\n var shimmerElements = [];\n var groupWidth = cellStyleProps.cellLeftPadding +\n cellStyleProps.cellRightPadding +\n column.calculatedWidth +\n (column.isPadded ? cellStyleProps.cellExtraRightPadding : 0);\n shimmerElements.push({\n type: ShimmerElementType.gap,\n width: cellStyleProps.cellLeftPadding,\n height: gapHeight,\n });\n if (column.isIconOnly) {\n shimmerElements.push({\n type: ShimmerElementType.line,\n width: column.calculatedWidth,\n height: column.calculatedWidth,\n });\n shimmerElements.push({\n type: ShimmerElementType.gap,\n width: cellStyleProps.cellRightPadding,\n height: gapHeight,\n });\n }\n else {\n shimmerElements.push({\n type: ShimmerElementType.line,\n width: column.calculatedWidth * SHIMMER_LINE_VS_CELL_WIDTH_RATIO,\n height: DEFAULT_SHIMMER_HEIGHT,\n });\n shimmerElements.push({\n type: ShimmerElementType.gap,\n width: cellStyleProps.cellRightPadding +\n (column.calculatedWidth - column.calculatedWidth * SHIMMER_LINE_VS_CELL_WIDTH_RATIO) +\n (column.isPadded ? cellStyleProps.cellExtraRightPadding : 0),\n height: gapHeight,\n });\n }\n shimmerElementsRow.push(React.createElement(ShimmerElementsGroup, { key: columnIdx, width: groupWidth + \"px\", shimmerElements: shimmerElements }));\n });\n // When resizing the window from narrow to wider, we need to cover the exposed Shimmer wave\n // until the column resizing logic is done.\n shimmerElementsRow.push(React.createElement(ShimmerElementsGroup, { key: 'endGap', width: '100%', shimmerElements: [{ type: ShimmerElementType.gap, width: '100%', height: gapHeight }] }));\n return React.createElement(\"div\", { style: { display: 'flex' } }, shimmerElementsRow);\n };\n _this._shimmerItems = props.shimmerLines ? new Array(props.shimmerLines) : new Array(SHIMMER_INITIAL_ITEMS);\n return _this;\n }\n ShimmeredDetailsListBase.prototype.render = function () {\n var _a = this.props, detailsListStyles = _a.detailsListStyles, enableShimmer = _a.enableShimmer, items = _a.items, listProps = _a.listProps, onRenderCustomPlaceholder = _a.onRenderCustomPlaceholder, removeFadingOverlay = _a.removeFadingOverlay, shimmerLines = _a.shimmerLines, styles = _a.styles, theme = _a.theme, ariaLabelForGrid = _a.ariaLabelForGrid, ariaLabelForShimmer = _a.ariaLabelForShimmer, restProps = __rest(_a, [\"detailsListStyles\", \"enableShimmer\", \"items\", \"listProps\", \"onRenderCustomPlaceholder\", \"removeFadingOverlay\", \"shimmerLines\", \"styles\", \"theme\", \"ariaLabelForGrid\", \"ariaLabelForShimmer\"]);\n var listClassName = listProps && listProps.className;\n this._classNames = getClassNames(styles, {\n theme: theme,\n });\n var newListProps = __assign(__assign({}, listProps), { \n // Adds to the optional listProp className a fading out overlay className only when `enableShimmer` toggled on\n // and the overlay is not disabled by `removeFadingOverlay` prop.\n className: enableShimmer && !removeFadingOverlay ? css(this._classNames.root, listClassName) : listClassName });\n return (React.createElement(DetailsList, __assign({}, restProps, { styles: detailsListStyles, items: enableShimmer ? this._shimmerItems : items, isPlaceholderData: enableShimmer, ariaLabelForGrid: (enableShimmer && ariaLabelForShimmer) || ariaLabelForGrid, onRenderMissingItem: this._onRenderShimmerPlaceholder, listProps: newListProps })));\n };\n return ShimmeredDetailsListBase;\n}(React.Component));\nexport { ShimmeredDetailsListBase };\n//# sourceMappingURL=ShimmeredDetailsList.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "index": 815, - "index2": 842, - "size": 346, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "issuerId": "gR01", - "issuerName": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "gR01", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "935:56-76" - }, - { - "moduleId": "gR01", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/DetailsList/ShimmeredDetailsList", - "loc": "1:0-62" - }, - { - "moduleId": "gR01", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "type": "harmony export imported specifier", - "userRequest": "./components/DetailsList/ShimmeredDetailsList", - "loc": "1:0-62" - } - ], - "usedExports": [ - "ShimmeredDetailsList" - ], - "providedExports": [ - "ShimmeredDetailsList" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { ShimmeredDetailsListBase } from './ShimmeredDetailsList.base';\nimport { getStyles } from './ShimmeredDetailsList.styles';\nexport var ShimmeredDetailsList = styled(ShimmeredDetailsListBase, getStyles, undefined, { scope: 'ShimmeredDetailsList' });\n//# sourceMappingURL=ShimmeredDetailsList.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "index": 760, - "index2": 760, - "size": 18485, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "yb4Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "Nong", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony import specifier", - "userRequest": "./Modal.base", - "loc": "4:26-35" - }, - { - "moduleId": "Nong", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal.base", - "loc": "2:0-29" - }, - { - "moduleId": "Nong", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Modal.base", - "loc": "2:0-29" - } - ], - "usedExports": [ - "ModalBase" - ], - "providedExports": [ - "ModalBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getId, allowScrollOnElement, allowOverscrollOnElement, KeyCodes, elementContains, warnDeprecations, Async, EventGroup, } from '../../Utilities';\nimport { FocusTrapZone } from '../FocusTrapZone/index';\nimport { animationDuration } from './Modal.styles';\nimport { Overlay } from '../../Overlay';\nimport { Layer } from '../../Layer';\nimport { Popup } from '../Popup/index';\nimport { withResponsiveMode, ResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nimport { DirectionalHint } from '../Callout/index';\nimport { Icon } from '../Icon/index';\nimport { DraggableZone } from '../../utilities/DraggableZone/index';\nimport { initializeComponentRef } from '@uifabric/utilities';\n// @TODO - need to change this to a panel whenever the breakpoint is under medium (verify the spec)\nvar DefaultLayerProps = {\n eventBubblingEnabled: false,\n};\nvar getClassNames = classNamesFunction();\nvar COMPONENT_NAME = 'Modal';\nvar ModalBase = /** @class */ (function (_super) {\n __extends(ModalBase, _super);\n function ModalBase(props) {\n var _this = _super.call(this, props) || this;\n _this._focusTrapZone = React.createRef();\n _this._registerInitialModalPosition = function () {\n var _a;\n var dialogMain = document.querySelector(\"[data-id=\" + _this.state.id + \"]\");\n if (dialogMain) {\n var modalRectangle = dialogMain.getBoundingClientRect();\n if (((_a = _this.props.dragOptions) === null || _a === void 0 ? void 0 : _a.keepInBounds) && !_this._minClampedPosition && !_this._maxClampedPosition) {\n _this._minClampedPosition = { x: -modalRectangle.x, y: -modalRectangle.y };\n _this._maxClampedPosition = { x: modalRectangle.x, y: modalRectangle.y };\n }\n _this.setState({\n modalRectangleTop: modalRectangle.top,\n });\n }\n };\n // Allow the user to scroll within the modal but not on the body\n _this._allowScrollOnModal = function (elt) {\n if (elt) {\n if (_this._allowTouchBodyScroll) {\n allowOverscrollOnElement(elt, _this._events);\n }\n else {\n allowScrollOnElement(elt, _this._events);\n }\n }\n else {\n _this._events.off(_this._scrollableContent);\n }\n _this._scrollableContent = elt;\n };\n _this._onModalContextMenuClose = function () {\n _this.setState({ isModalMenuOpen: false });\n };\n _this._onModalClose = function () {\n _this._lastSetX = 0;\n _this._lastSetY = 0;\n _this.setState({\n isModalMenuOpen: false,\n isInKeyboardMoveMode: false,\n isOpen: false,\n x: 0,\n y: 0,\n });\n if (_this.props.dragOptions && _this._hasRegisteredKeyUp) {\n _this._events.off(window, 'keyup', _this._onKeyUp, true /* useCapture */);\n }\n // Call the onDismiss callback\n if (_this.props.onDismissed) {\n _this.props.onDismissed();\n }\n };\n _this._onDragStart = function () {\n _this.setState({ isModalMenuOpen: false, isInKeyboardMoveMode: false });\n };\n _this._onDrag = function (_, ui) {\n var _a = _this.state, x = _a.x, y = _a.y;\n _this.setState(_this._getClampedPosition({ x: x + ui.delta.x, y: y + ui.delta.y }));\n };\n _this._onDragStop = function () {\n _this.focus();\n };\n _this._onKeyUp = function (event) {\n // Need to handle the CTRL + ALT + SPACE key during keyup due to FireFox bug:\n // https://bugzilla.mozilla.org/show_bug.cgi?id=1220143\n // Otherwise it would continue to fire a click even if the event was cancelled\n // during mouseDown.\n if (event.altKey && event.ctrlKey && event.keyCode === KeyCodes.space) {\n // Since this is a global handler, we should make sure the target is within the dialog\n // before opening the dropdown\n if (elementContains(_this._scrollableContent, event.target)) {\n _this.setState({ isModalMenuOpen: !_this.state.isModalMenuOpen });\n event.preventDefault();\n event.stopPropagation();\n }\n }\n };\n // We need a global onKeyDown event when we are in the move mode so that we can\n // handle the key presses and the components inside the modal do not get the events\n _this._onKeyDown = function (event) {\n if (event.altKey && event.ctrlKey && event.keyCode === KeyCodes.space) {\n // CTRL + ALT + SPACE is handled during keyUp\n event.preventDefault();\n event.stopPropagation();\n return;\n }\n if (_this.state.isModalMenuOpen && (event.altKey || event.keyCode === KeyCodes.escape)) {\n _this.setState({ isModalMenuOpen: false });\n }\n if (_this.state.isInKeyboardMoveMode && (event.keyCode === KeyCodes.escape || event.keyCode === KeyCodes.enter)) {\n _this.setState({ isInKeyboardMoveMode: false });\n event.preventDefault();\n event.stopPropagation();\n }\n if (_this.state.isInKeyboardMoveMode) {\n var handledEvent = true;\n var delta = _this._getMoveDelta(event);\n switch (event.keyCode) {\n /* eslint-disable no-fallthrough */\n case KeyCodes.escape:\n _this.setState({ x: _this._lastSetX, y: _this._lastSetY });\n case KeyCodes.enter: {\n // TODO: determine if fallthrough was intentional\n /* eslint-enable no-fallthrough */\n _this._lastSetX = 0;\n _this._lastSetY = 0;\n _this.setState({ isInKeyboardMoveMode: false });\n break;\n }\n case KeyCodes.up: {\n _this.setState({\n y: _this._getClampedPositionY(_this.state.y - delta),\n });\n break;\n }\n case KeyCodes.down: {\n _this.setState({\n y: _this._getClampedPositionY(_this.state.y + delta),\n });\n break;\n }\n case KeyCodes.left: {\n _this.setState({\n x: _this._getClampedPositionX(_this.state.x - delta),\n });\n break;\n }\n case KeyCodes.right: {\n _this.setState({\n x: _this._getClampedPositionX(_this.state.x + delta),\n });\n break;\n }\n default: {\n handledEvent = false;\n }\n }\n if (handledEvent) {\n event.preventDefault();\n event.stopPropagation();\n }\n }\n };\n _this._onEnterKeyboardMoveMode = function () {\n _this._lastSetX = _this.state.x;\n _this._lastSetY = _this.state.y;\n _this.setState({ isInKeyboardMoveMode: true, isModalMenuOpen: false });\n _this._events.on(window, 'keydown', _this._onKeyDown, true /* useCapture */);\n };\n _this._onExitKeyboardMoveMode = function () {\n _this._lastSetX = 0;\n _this._lastSetY = 0;\n _this.setState({ isInKeyboardMoveMode: false });\n _this._events.off(window, 'keydown', _this._onKeyDown, true /* useCapture */);\n };\n _this._registerForKeyUp = function () {\n if (!_this._hasRegisteredKeyUp) {\n _this._events.on(window, 'keyup', _this._onKeyUp, true /* useCapture */);\n _this._hasRegisteredKeyUp = true;\n }\n };\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n initializeComponentRef(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n onLayerDidMount: 'layerProps.onLayerDidMount',\n });\n _this.state = {\n id: getId('Modal'),\n isOpen: props.isOpen,\n isVisible: props.isOpen,\n hasBeenOpened: props.isOpen,\n x: 0,\n y: 0,\n };\n _this._lastSetX = 0;\n _this._lastSetY = 0;\n var _a = _this.props.allowTouchBodyScroll, allowTouchBodyScroll = _a === void 0 ? false : _a;\n _this._allowTouchBodyScroll = allowTouchBodyScroll;\n return _this;\n }\n ModalBase.prototype.UNSAFE_componentWillReceiveProps = function (newProps) {\n clearTimeout(this._onModalCloseTimer);\n // Opening the dialog\n if (newProps.isOpen) {\n if (!this.state.isOpen) {\n // First Open\n this.setState({\n isOpen: true,\n });\n // Add a keyUp handler for all key up events when the dialog is open\n if (newProps.dragOptions) {\n this._registerForKeyUp();\n }\n }\n else {\n // Modal has been opened\n // Reopen during closing\n this.setState({\n hasBeenOpened: true,\n isVisible: true,\n });\n }\n }\n // Closing the dialog\n if (!newProps.isOpen && this.state.isOpen) {\n this._onModalCloseTimer = this._async.setTimeout(this._onModalClose, parseFloat(animationDuration) * 1000);\n this.setState({\n isVisible: false,\n });\n }\n };\n ModalBase.prototype.componentDidMount = function () {\n var _this = this;\n // Not all modals show just by updating their props. Some only render when they are mounted and pass in\n // isOpen as true. We need to add the keyUp handler in componentDidMount if we are in that case.\n if (this.state.isOpen && this.state.isVisible) {\n this._registerForKeyUp();\n requestAnimationFrame(function () { return setTimeout(_this._registerInitialModalPosition, 0); });\n }\n };\n ModalBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n var _this = this;\n if (!prevProps.isOpen && !prevState.isVisible) {\n this.setState({\n isVisible: true,\n });\n }\n if (!prevProps.isOpen && this.props.isOpen) {\n requestAnimationFrame(function () { return setTimeout(_this._registerInitialModalPosition, 0); });\n }\n };\n ModalBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n ModalBase.prototype.render = function () {\n var _a = this.props, className = _a.className, containerClassName = _a.containerClassName, scrollableContentClassName = _a.scrollableContentClassName, elementToFocusOnDismiss = _a.elementToFocusOnDismiss, firstFocusableSelector = _a.firstFocusableSelector, forceFocusInsideTrap = _a.forceFocusInsideTrap, ignoreExternalFocusing = _a.ignoreExternalFocusing, isBlocking = _a.isBlocking, isClickableOutsideFocusTrap = _a.isClickableOutsideFocusTrap, isDarkOverlay = _a.isDarkOverlay, onDismiss = _a.onDismiss, layerProps = _a.layerProps, overlay = _a.overlay, responsiveMode = _a.responsiveMode, titleAriaId = _a.titleAriaId, styles = _a.styles, subtitleAriaId = _a.subtitleAriaId, theme = _a.theme, topOffsetFixed = _a.topOffsetFixed, \n // eslint-disable-next-line deprecation/deprecation\n onLayerDidMount = _a.onLayerDidMount, isModeless = _a.isModeless, dragOptions = _a.dragOptions, enableAriaHiddenSiblings = _a.enableAriaHiddenSiblings;\n var _b = this.state, isOpen = _b.isOpen, isVisible = _b.isVisible, hasBeenOpened = _b.hasBeenOpened, modalRectangleTop = _b.modalRectangleTop, x = _b.x, y = _b.y, isInKeyboardMoveMode = _b.isInKeyboardMoveMode;\n if (!isOpen) {\n return null;\n }\n var layerClassName = layerProps === undefined ? '' : layerProps.className;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n containerClassName: containerClassName,\n scrollableContentClassName: scrollableContentClassName,\n isOpen: isOpen,\n isVisible: isVisible,\n hasBeenOpened: hasBeenOpened,\n modalRectangleTop: modalRectangleTop,\n topOffsetFixed: topOffsetFixed,\n isModeless: isModeless,\n layerClassName: layerClassName,\n isDefaultDragHandle: dragOptions && !dragOptions.dragHandleSelector,\n });\n var mergedLayerProps = __assign(__assign(__assign({}, DefaultLayerProps), this.props.layerProps), { onLayerDidMount: layerProps && layerProps.onLayerDidMount ? layerProps.onLayerDidMount : onLayerDidMount, insertFirst: isModeless, className: classNames.layer });\n var modalContent = (React.createElement(FocusTrapZone, { \"data-id\": this.state.id, componentRef: this._focusTrapZone, className: classNames.main, elementToFocusOnDismiss: elementToFocusOnDismiss, isClickableOutsideFocusTrap: isModeless || isClickableOutsideFocusTrap || !isBlocking, ignoreExternalFocusing: ignoreExternalFocusing, forceFocusInsideTrap: isModeless ? !isModeless : forceFocusInsideTrap, firstFocusableSelector: firstFocusableSelector, focusPreviouslyFocusedInnerElement: true, onBlur: isInKeyboardMoveMode ? this._onExitKeyboardMoveMode : undefined, enableAriaHiddenSiblings: enableAriaHiddenSiblings },\n dragOptions && isInKeyboardMoveMode && (React.createElement(\"div\", { className: classNames.keyboardMoveIconContainer }, dragOptions.keyboardMoveIconProps ? (React.createElement(Icon, __assign({}, dragOptions.keyboardMoveIconProps))) : (React.createElement(Icon, { iconName: \"move\", className: classNames.keyboardMoveIcon })))),\n React.createElement(\"div\", { ref: this._allowScrollOnModal, className: classNames.scrollableContent, \"data-is-scrollable\": true },\n dragOptions && this.state.isModalMenuOpen && (React.createElement(dragOptions.menu, { items: [\n { key: 'move', text: dragOptions.moveMenuItemText, onClick: this._onEnterKeyboardMoveMode },\n { key: 'close', text: dragOptions.closeMenuItemText, onClick: this._onModalClose },\n ], onDismiss: this._onModalContextMenuClose, alignTargetEdge: true, coverTarget: true, directionalHint: DirectionalHint.topLeftEdge, directionalHintFixed: true, shouldFocusOnMount: true, target: this._scrollableContent })),\n this.props.children)));\n // @temp tuatology - Will adjust this to be a panel at certain breakpoints\n if (responsiveMode >= ResponsiveMode.small) {\n return (React.createElement(Layer, __assign({}, mergedLayerProps),\n React.createElement(Popup, { role: isModeless || !isBlocking ? 'dialog' : 'alertdialog', \"aria-modal\": !isModeless, ariaLabelledBy: titleAriaId, ariaDescribedBy: subtitleAriaId, onDismiss: onDismiss, shouldRestoreFocus: !ignoreExternalFocusing },\n React.createElement(\"div\", { className: classNames.root, role: !isModeless ? 'document' : undefined },\n !isModeless && (React.createElement(Overlay, __assign({ isDarkThemed: isDarkOverlay, onClick: isBlocking ? undefined : onDismiss, allowTouchBodyScroll: this._allowTouchBodyScroll }, overlay))),\n dragOptions ? (React.createElement(DraggableZone, { handleSelector: dragOptions.dragHandleSelector || \".\" + classNames.main.split(' ')[0], preventDragSelector: \"button\", onStart: this._onDragStart, onDragChange: this._onDrag, onStop: this._onDragStop, position: { x: x, y: y } }, modalContent)) : (modalContent)))));\n }\n return null;\n };\n ModalBase.prototype.focus = function () {\n if (this._focusTrapZone.current) {\n this._focusTrapZone.current.focus();\n }\n };\n /**\n * Clamps the position coordinates to the maximum/minimum value specified in props\n */\n ModalBase.prototype._getClampedPosition = function (position) {\n if (!this.props.dragOptions || !this.props.dragOptions.keepInBounds) {\n return position;\n }\n return { x: this._getClampedPositionX(position.x), y: this._getClampedPositionY(position.y) };\n };\n ModalBase.prototype._getClampedPositionY = function (y) {\n var minPosition = this._minClampedPosition;\n var maxPosition = this._maxClampedPosition;\n if (minPosition) {\n y = Math.max(minPosition.y, y);\n }\n if (maxPosition) {\n y = Math.min(maxPosition.y, y);\n }\n return y;\n };\n ModalBase.prototype._getClampedPositionX = function (x) {\n var minPosition = this._minClampedPosition;\n var maxPosition = this._maxClampedPosition;\n if (minPosition) {\n x = Math.max(minPosition.x, x);\n }\n if (maxPosition) {\n x = Math.min(maxPosition.x, x);\n }\n return x;\n };\n ModalBase.prototype._getMoveDelta = function (event) {\n var delta = 10;\n if (event.shiftKey) {\n if (!event.ctrlKey) {\n delta = 50;\n }\n }\n else if (event.ctrlKey) {\n delta = 1;\n }\n return delta;\n };\n ModalBase.defaultProps = {\n isOpen: false,\n isDarkOverlay: true,\n isBlocking: false,\n className: '',\n containerClassName: '',\n };\n ModalBase = __decorate([\n withResponsiveMode\n ], ModalBase);\n return ModalBase;\n}(React.Component));\nexport { ModalBase };\n//# sourceMappingURL=Modal.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "index": 759, - "index2": 761, - "size": 307, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "issuerId": "Nong", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "yb4Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "Nong", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Modal", - "loc": "431:42-47" - }, - { - "moduleId": "Nong", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal", - "loc": "1:0-24" - }, - { - "moduleId": "Nong", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Modal", - "loc": "1:0-24" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Modal", - "loc": "106:36-41" - }, - { - "moduleId": "yb4Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./components/Modal/index", - "loc": "2:0-60" - } - ], - "usedExports": [ - "Modal" - ], - "providedExports": [ - "Modal" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { ModalBase } from './Modal.base';\nimport { getStyles } from './Modal.styles';\nexport var Modal = styled(ModalBase, getStyles, undefined, {\n scope: 'Modal',\n fields: ['theme', 'styles', 'enableAriaHiddenSiblings'],\n});\n//# sourceMappingURL=Modal.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "index": 781, - "index2": 778, - "size": 6272, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "ZmcE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Toggle.js", - "name": "./node_modules/office-ui-fabric-react/lib/Toggle.js" - }, - { - "id": "U3py", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "type": "harmony side effect evaluation", - "userRequest": "./Toggle.base", - "loc": "2:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "type": "harmony import specifier", - "userRequest": "./Toggle.base", - "loc": "4:27-37" - }, - { - "moduleId": "U3py", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Toggle.base", - "loc": "2:0-30" - }, - { - "moduleId": "U3py", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Toggle.base", - "loc": "2:0-30" - } - ], - "usedExports": [ - "ToggleBase" - ], - "providedExports": [ - "ToggleBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, classNamesFunction, getId, inputProperties, getNativeProps, warnDeprecations, warnMutuallyExclusive, FocusRects, } from '../../Utilities';\nimport { Label } from '../../Label';\nimport { KeytipData } from '../../KeytipData';\nvar getClassNames = classNamesFunction();\nvar COMPONENT_NAME = 'Toggle';\nvar ToggleBase = /** @class */ (function (_super) {\n __extends(ToggleBase, _super);\n function ToggleBase(props) {\n var _this = _super.call(this, props) || this;\n _this._toggleButton = React.createRef();\n _this._onClick = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, disabled = _a.disabled, checkedProp = _a.checked, onChange = _a.onChange, onChanged = _a.onChanged, onClick = _a.onClick;\n var checked = _this.state.checked;\n if (!disabled) {\n // Only update the state if the user hasn't provided it.\n if (checkedProp === undefined) {\n _this.setState({\n checked: !checked,\n });\n }\n if (onChange) {\n onChange(ev, !checked);\n }\n if (onChanged) {\n onChanged(!checked);\n }\n if (onClick) {\n onClick(ev);\n }\n }\n };\n initializeComponentRef(_this);\n warnMutuallyExclusive(COMPONENT_NAME, props, {\n checked: 'defaultChecked',\n });\n warnDeprecations(COMPONENT_NAME, props, {\n onAriaLabel: 'ariaLabel',\n offAriaLabel: undefined,\n onChanged: 'onChange',\n });\n _this.state = {\n checked: !!(props.checked || props.defaultChecked),\n };\n _this._id = props.id || getId('Toggle');\n return _this;\n }\n ToggleBase.getDerivedStateFromProps = function (nextProps, prevState) {\n if (nextProps.checked === undefined) {\n return null;\n }\n return {\n checked: !!nextProps.checked,\n };\n };\n Object.defineProperty(ToggleBase.prototype, \"checked\", {\n /**\n * Gets the current checked state of the toggle.\n */\n get: function () {\n return this.state.checked;\n },\n enumerable: true,\n configurable: true\n });\n ToggleBase.prototype.render = function () {\n var _this = this;\n var _a = this.props, _b = _a.as, RootType = _b === void 0 ? 'div' : _b, className = _a.className, theme = _a.theme, disabled = _a.disabled, keytipProps = _a.keytipProps, label = _a.label, ariaLabel = _a.ariaLabel, \n /* eslint-disable deprecation/deprecation */\n onAriaLabel = _a.onAriaLabel, offAriaLabel = _a.offAriaLabel, \n /* eslint-enable deprecation/deprecation */\n offText = _a.offText, onText = _a.onText, styles = _a.styles, inlineLabel = _a.inlineLabel;\n var checked = this.state.checked;\n var stateText = checked ? onText : offText;\n var badAriaLabel = checked ? onAriaLabel : offAriaLabel;\n var toggleNativeProps = getNativeProps(this.props, inputProperties, ['defaultChecked']);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n disabled: disabled,\n checked: checked,\n inlineLabel: inlineLabel,\n onOffMissing: !onText && !offText,\n });\n var labelId = this._id + \"-label\";\n var stateTextId = this._id + \"-stateText\";\n // The following properties take priority for what Narrator should read:\n // 1. ariaLabel\n // 2. onAriaLabel (if checked) or offAriaLabel (if not checked)\n // 3. label AND stateText, if existent\n var labelledById = undefined;\n if (!ariaLabel && !badAriaLabel) {\n if (label) {\n labelledById = labelId;\n }\n if (stateText) {\n labelledById = labelledById ? labelledById + \" \" + stateTextId : stateTextId;\n }\n }\n var ariaRole = this.props.role ? this.props.role : 'switch';\n var renderPill = function (keytipAttributes) {\n if (keytipAttributes === void 0) { keytipAttributes = {}; }\n return (React.createElement(\"button\", __assign({}, toggleNativeProps, keytipAttributes, { className: classNames.pill, disabled: disabled, id: _this._id, type: \"button\", role: ariaRole, ref: _this._toggleButton, \"aria-disabled\": disabled, \"aria-checked\": checked, \"aria-label\": ariaLabel ? ariaLabel : badAriaLabel, \"data-is-focusable\": true, onChange: _this._noop, onClick: _this._onClick, \"aria-labelledby\": labelledById }),\n React.createElement(\"span\", { className: classNames.thumb })));\n };\n var pillContent = keytipProps ? (React.createElement(KeytipData, { keytipProps: keytipProps, ariaDescribedBy: toggleNativeProps['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return renderPill(keytipAttributes); })) : (renderPill());\n return (React.createElement(RootType, { className: classNames.root, hidden: toggleNativeProps.hidden },\n label && (React.createElement(Label, { htmlFor: this._id, className: classNames.label, id: labelId }, label)),\n React.createElement(\"div\", { className: classNames.container },\n pillContent,\n stateText && (\n // This second \"htmlFor\" property is needed to allow the\n // toggle's stateText to also trigger a state change when clicked.\n React.createElement(Label, { htmlFor: this._id, className: classNames.text, id: stateTextId }, stateText))),\n React.createElement(FocusRects, null)));\n };\n ToggleBase.prototype.focus = function () {\n if (this._toggleButton.current) {\n this._toggleButton.current.focus();\n }\n };\n ToggleBase.prototype._noop = function () {\n /* no-op */\n };\n return ToggleBase;\n}(React.Component));\nexport { ToggleBase };\n//# sourceMappingURL=Toggle.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "index": 780, - "index2": 780, - "size": 248, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "issuerId": "U3py", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "ZmcE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Toggle.js", - "name": "./node_modules/office-ui-fabric-react/lib/Toggle.js" - }, - { - "id": "U3py", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Toggle", - "loc": "499:45-51" - }, - { - "moduleId": "U3py", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Toggle", - "loc": "1:0-25" - }, - { - "moduleId": "U3py", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Toggle", - "loc": "1:0-25" - } - ], - "usedExports": [ - "Toggle" - ], - "providedExports": [ - "Toggle" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { ToggleBase } from './Toggle.base';\nimport { getStyles } from './Toggle.styles';\nexport var Toggle = styled(ToggleBase, getStyles, undefined, { scope: 'Toggle' });\n//# sourceMappingURL=Toggle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.types.js", - "index": 788, - "index2": 781, - "size": 6772, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony side effect evaluation", - "userRequest": "./Persona.types", - "loc": "1:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony side effect evaluation", - "userRequest": "./Persona.types", - "loc": "2:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../Persona.types", - "loc": "5:0-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Persona.types", - "loc": "6:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../Persona.types", - "loc": "8:0-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "10:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "11:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "12:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "13:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "14:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "15:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "16:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "17:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "18:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "19:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "20:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "21:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "22:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "23:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "24:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "25:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "26:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "27:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "28:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "29:4-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "33:16-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "39:22-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "41:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "41:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "42:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "43:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "43:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "44:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "44:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "45:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "46:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "46:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "47:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "47:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "48:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "49:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "49:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "49:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "50:24-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "50:56-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "51:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "51:24-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "53:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "55:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "55:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "56:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "57:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "57:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "58:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "58:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "userRequest": "../Persona.types", - "loc": "58:25-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "59:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "60:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "60:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "61:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "62:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "63:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "64:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "64:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "65:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "66:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "66:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "67:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "68:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "69:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "70:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "70:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "71:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "userRequest": "../Persona.types", - "loc": "71:12-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "71:25-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "72:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "72:25-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "73:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "73:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "73:25-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "74:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "75:7-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "75:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "77:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "78:30-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "79:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "79:25-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "80:28-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "81:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "81:25-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "82:33-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "83:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "83:28-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "85:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "87:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "89:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "91:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "93:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "96:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "98:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "110:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "userRequest": "./Persona.types", - "loc": "111:18-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "userRequest": "../Persona.types", - "loc": "117:21-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "userRequest": "../Persona.types", - "loc": "117:51-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "userRequest": "../Persona.types", - "loc": "117:82-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../PersonaCoin", - "loc": "121:156-176" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../PersonaCoin", - "loc": "128:149-169" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "userRequest": "../Persona.types", - "loc": "134:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "userRequest": "../Persona.types", - "loc": "135:18-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../PersonaCoin", - "loc": "167:21-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Persona", - "loc": "600:39-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Persona", - "loc": "627:82-93" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Persona", - "loc": "69:53-64" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Persona", - "loc": "69:74-85" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "8:120-135" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "8:148-159" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "27:58-69" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "17:54-65" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Persona.types", - "loc": "3:0-32" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Persona.types", - "loc": "3:0-32" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "27:171-182" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Persona", - "loc": "40:244-255" - } - ], - "usedExports": [ - "PersonaSize", - "PersonaInitialsColor", - "PersonaPresence" - ], - "providedExports": [ - "PersonaSize", - "PersonaPresence", - "PersonaInitialsColor" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\n * {@docCategory Persona}\n */\nexport var PersonaSize;\n(function (PersonaSize) {\n /**\n * `tiny` size has been deprecated in favor of standardized numeric sizing. Use `size8` instead.\n * @deprecated Use `size8` instead.\n */\n PersonaSize[PersonaSize[\"tiny\"] = 0] = \"tiny\";\n /**\n *\n * `extraExtraSmall` size has been deprecated in favor of standardized numeric sizing. Use `size24` instead.\n * @deprecated Use `size24` instead.\n */\n PersonaSize[PersonaSize[\"extraExtraSmall\"] = 1] = \"extraExtraSmall\";\n /**\n * `extraSmall` size has been deprecated in favor of standardized numeric sizing. Use `size32` instead.\n * @deprecated Use `size32` instead.\n */\n PersonaSize[PersonaSize[\"extraSmall\"] = 2] = \"extraSmall\";\n /**\n * `small` size has been deprecated in favor of standardized numeric sizing. Use `size40` instead.\n * @deprecated Use `size40` instead.\n */\n PersonaSize[PersonaSize[\"small\"] = 3] = \"small\";\n /**\n * `regular` size has been deprecated in favor of standardized numeric sizing. Use `size48` instead.\n * @deprecated Use `size48` instead.\n */\n PersonaSize[PersonaSize[\"regular\"] = 4] = \"regular\";\n /**\n * `large` size has been deprecated in favor of standardized numeric sizing. Use `size72` instead.\n * @deprecated Use `size72` instead.\n */\n PersonaSize[PersonaSize[\"large\"] = 5] = \"large\";\n /**\n * `extraLarge` size has been deprecated in favor of standardized numeric sizing. Use `size100` instead.\n * @deprecated Use `size100` instead.\n */\n PersonaSize[PersonaSize[\"extraLarge\"] = 6] = \"extraLarge\";\n /**\n * No `PersonaCoin` is rendered.\n */\n PersonaSize[PersonaSize[\"size8\"] = 17] = \"size8\";\n /**\n * No `PersonaCoin` is rendered. Deprecated in favor of `size8` to align with design specifications.\n * @deprecated Use `size8` instead. Will be removed in a future major release.\n */\n PersonaSize[PersonaSize[\"size10\"] = 9] = \"size10\";\n /**\n * Renders a 16px `PersonaCoin`. Deprecated due to not being in the design specification.\n * @deprecated Will be removed in a future major release.\n */\n PersonaSize[PersonaSize[\"size16\"] = 8] = \"size16\";\n /**\n * Renders a 24px `PersonaCoin`.\n */\n PersonaSize[PersonaSize[\"size24\"] = 10] = \"size24\";\n /**\n * Renders a 28px `PersonaCoin`. Deprecated due to not being in the design specification.\n * @deprecated Will be removed in a future major release.\n */\n PersonaSize[PersonaSize[\"size28\"] = 7] = \"size28\";\n /**\n * Renders a 32px `PersonaCoin`.\n */\n PersonaSize[PersonaSize[\"size32\"] = 11] = \"size32\";\n /**\n * Renders a 40px `PersonaCoin`.\n */\n PersonaSize[PersonaSize[\"size40\"] = 12] = \"size40\";\n /**\n * Renders a 48px `PersonaCoin`.\n */\n PersonaSize[PersonaSize[\"size48\"] = 13] = \"size48\";\n /**\n * Renders a 56px `PersonaCoin`.\n */\n PersonaSize[PersonaSize[\"size56\"] = 16] = \"size56\";\n /**\n * Renders a 72px `PersonaCoin`.\n */\n PersonaSize[PersonaSize[\"size72\"] = 14] = \"size72\";\n /**\n * Renders a 100px `PersonaCoin`.\n */\n PersonaSize[PersonaSize[\"size100\"] = 15] = \"size100\";\n /**\n * Renders a 120px `PersonaCoin`.\n */\n PersonaSize[PersonaSize[\"size120\"] = 18] = \"size120\";\n})(PersonaSize || (PersonaSize = {}));\n/**\n * {@docCategory Persona}\n */\nexport var PersonaPresence;\n(function (PersonaPresence) {\n PersonaPresence[PersonaPresence[\"none\"] = 0] = \"none\";\n PersonaPresence[PersonaPresence[\"offline\"] = 1] = \"offline\";\n PersonaPresence[PersonaPresence[\"online\"] = 2] = \"online\";\n PersonaPresence[PersonaPresence[\"away\"] = 3] = \"away\";\n PersonaPresence[PersonaPresence[\"dnd\"] = 4] = \"dnd\";\n PersonaPresence[PersonaPresence[\"blocked\"] = 5] = \"blocked\";\n PersonaPresence[PersonaPresence[\"busy\"] = 6] = \"busy\";\n})(PersonaPresence || (PersonaPresence = {}));\n/**\n * {@docCategory Persona}\n */\nexport var PersonaInitialsColor;\n(function (PersonaInitialsColor) {\n PersonaInitialsColor[PersonaInitialsColor[\"lightBlue\"] = 0] = \"lightBlue\";\n PersonaInitialsColor[PersonaInitialsColor[\"blue\"] = 1] = \"blue\";\n PersonaInitialsColor[PersonaInitialsColor[\"darkBlue\"] = 2] = \"darkBlue\";\n PersonaInitialsColor[PersonaInitialsColor[\"teal\"] = 3] = \"teal\";\n PersonaInitialsColor[PersonaInitialsColor[\"lightGreen\"] = 4] = \"lightGreen\";\n PersonaInitialsColor[PersonaInitialsColor[\"green\"] = 5] = \"green\";\n PersonaInitialsColor[PersonaInitialsColor[\"darkGreen\"] = 6] = \"darkGreen\";\n PersonaInitialsColor[PersonaInitialsColor[\"lightPink\"] = 7] = \"lightPink\";\n PersonaInitialsColor[PersonaInitialsColor[\"pink\"] = 8] = \"pink\";\n PersonaInitialsColor[PersonaInitialsColor[\"magenta\"] = 9] = \"magenta\";\n PersonaInitialsColor[PersonaInitialsColor[\"purple\"] = 10] = \"purple\";\n /**\n * Black can result in offensive persona coins with some initials combinations, so it can only be set with overrides.\n * @deprecated will be removed in a future major release.\n */\n PersonaInitialsColor[PersonaInitialsColor[\"black\"] = 11] = \"black\";\n PersonaInitialsColor[PersonaInitialsColor[\"orange\"] = 12] = \"orange\";\n /**\n * Red often has a special meaning, so it is considered a reserved color and can only be set with overrides.\n * @deprecated will be removed in a future major release.\n */\n PersonaInitialsColor[PersonaInitialsColor[\"red\"] = 13] = \"red\";\n PersonaInitialsColor[PersonaInitialsColor[\"darkRed\"] = 14] = \"darkRed\";\n /**\n * Transparent is not intended to be used with typical initials due to accessibility issues.\n * Its primary use is for overflow buttons, so it is considered a reserved color and can only be set with overrides.\n */\n PersonaInitialsColor[PersonaInitialsColor[\"transparent\"] = 15] = \"transparent\";\n PersonaInitialsColor[PersonaInitialsColor[\"violet\"] = 16] = \"violet\";\n PersonaInitialsColor[PersonaInitialsColor[\"lightRed\"] = 17] = \"lightRed\";\n PersonaInitialsColor[PersonaInitialsColor[\"gold\"] = 18] = \"gold\";\n PersonaInitialsColor[PersonaInitialsColor[\"burgundy\"] = 19] = \"burgundy\";\n PersonaInitialsColor[PersonaInitialsColor[\"warmGray\"] = 20] = \"warmGray\";\n PersonaInitialsColor[PersonaInitialsColor[\"coolGray\"] = 21] = \"coolGray\";\n /**\n * Gray can result in offensive persona coins with some initials combinations, so it can only be set with overrides.\n */\n PersonaInitialsColor[PersonaInitialsColor[\"gray\"] = 22] = \"gray\";\n PersonaInitialsColor[PersonaInitialsColor[\"cyan\"] = 23] = \"cyan\";\n PersonaInitialsColor[PersonaInitialsColor[\"rust\"] = 24] = \"rust\";\n})(PersonaInitialsColor || (PersonaInitialsColor = {}));\n//# sourceMappingURL=Persona.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaConsts.js", - "index": 789, - "index2": 783, - "size": 3420, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaConsts", - "loc": "2:0-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../PersonaConsts", - "loc": "3:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../PersonaConsts", - "loc": "3:0-85" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../PersonaConsts", - "loc": "6:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../PersonaConsts", - "loc": "10:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "13:15-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "14:19-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "26:15-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "30:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "31:47-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "31:62-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "31:97-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "34:15-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "35:19-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "42:40-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "50:24-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "50:30-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "51:26-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "51:62-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "53:24-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "54:23-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "57:43-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "58:43-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "59:44-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "60:44-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "63:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "64:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "71:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "72:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "79:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "80:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "86:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "87:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "98:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "99:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "109:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "110:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "116:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "117:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "124:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "125:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "131:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "132:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "138:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "139:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "145:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "146:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "146:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "156:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "160:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "164:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "userRequest": "../PersonaConsts", - "loc": "168:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "201:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "userRequest": "./PersonaConsts", - "loc": "204:28-39" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaConsts", - "loc": "5:0-32" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PersonaConsts", - "loc": "5:0-32" - } - ], - "usedExports": [ - "sizeBoolean", - "sizeToPixels", - "presenceBoolean", - "personaPresenceSize", - "personaSize" - ], - "providedExports": [ - "personaSize", - "personaPresenceSize", - "sizeBoolean", - "sizeToPixels", - "presenceBoolean" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var _a;\nimport { PersonaPresence, PersonaSize } from './Persona.types';\n// Persona Sizes\nexport var personaSize;\n(function (personaSize) {\n personaSize.size8 = '20px';\n // TODO: remove in a future major release as it's deprecated.\n personaSize.size10 = '20px';\n // TODO: remove in a future major release as it's deprecated.\n personaSize.size16 = '16px';\n personaSize.size24 = '24px';\n // TODO: remove in a future major release as it's deprecated.\n personaSize.size28 = '28px';\n personaSize.size32 = '32px';\n personaSize.size40 = '40px';\n personaSize.size48 = '48px';\n personaSize.size56 = '56px';\n personaSize.size72 = '72px';\n personaSize.size100 = '100px';\n personaSize.size120 = '120px';\n})(personaSize || (personaSize = {}));\n// Persona Presence Sizes\nexport var personaPresenceSize;\n(function (personaPresenceSize) {\n personaPresenceSize.size6 = '6px';\n personaPresenceSize.size8 = '8px';\n personaPresenceSize.size12 = '12px';\n personaPresenceSize.size16 = '16px';\n personaPresenceSize.size20 = '20px';\n personaPresenceSize.size28 = '28px';\n personaPresenceSize.size32 = '32px';\n /**\n * @deprecated This is now unused\n */\n personaPresenceSize.border = '2px';\n})(personaPresenceSize || (personaPresenceSize = {}));\n// TODO: remove the deprecated parts in a future major release.\nexport var sizeBoolean = function (size) { return ({\n isSize8: size === PersonaSize.size8,\n /* eslint-disable deprecation/deprecation */\n isSize10: size === PersonaSize.size10 || size === PersonaSize.tiny,\n isSize16: size === PersonaSize.size16,\n isSize24: size === PersonaSize.size24 || size === PersonaSize.extraExtraSmall,\n isSize28: size === PersonaSize.size28 || size === PersonaSize.extraSmall,\n isSize32: size === PersonaSize.size32,\n isSize40: size === PersonaSize.size40 || size === PersonaSize.small,\n isSize48: size === PersonaSize.size48 || size === PersonaSize.regular,\n isSize56: size === PersonaSize.size56,\n isSize72: size === PersonaSize.size72 || size === PersonaSize.large,\n isSize100: size === PersonaSize.size100 || size === PersonaSize.extraLarge,\n isSize120: size === PersonaSize.size120,\n}); };\nexport var sizeToPixels = (_a = {},\n // Old deprecated sizes\n _a[PersonaSize.tiny] = 10,\n _a[PersonaSize.extraExtraSmall] = 24,\n _a[PersonaSize.extraSmall] = 28,\n _a[PersonaSize.small] = 40,\n _a[PersonaSize.regular] = 48,\n _a[PersonaSize.large] = 72,\n _a[PersonaSize.extraLarge] = 100,\n // New sizes\n _a[PersonaSize.size8] = 8,\n _a[PersonaSize.size10] = 10,\n _a[PersonaSize.size16] = 16,\n _a[PersonaSize.size24] = 24,\n _a[PersonaSize.size28] = 28,\n /* eslint-enable deprecation/deprecation */\n _a[PersonaSize.size32] = 32,\n _a[PersonaSize.size40] = 40,\n _a[PersonaSize.size48] = 48,\n _a[PersonaSize.size56] = 56,\n _a[PersonaSize.size72] = 72,\n _a[PersonaSize.size100] = 100,\n _a[PersonaSize.size120] = 120,\n _a);\nexport var presenceBoolean = function (presence) { return ({\n isAvailable: presence === PersonaPresence.online,\n isAway: presence === PersonaPresence.away,\n isBlocked: presence === PersonaPresence.blocked,\n isBusy: presence === PersonaPresence.busy,\n isDoNotDisturb: presence === PersonaPresence.dnd,\n isOffline: presence === PersonaPresence.offline,\n}); };\n//# sourceMappingURL=PersonaConsts.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaInitialsColor.js", - "index": 787, - "index2": 782, - "size": 4750, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../PersonaInitialsColor", - "loc": "9:0-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "userRequest": "../PersonaInitialsColor", - "loc": "18:25-48" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaInitialsColor", - "loc": "7:0-65" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PersonaInitialsColor", - "loc": "7:0-65" - } - ], - "usedExports": [ - "getPersonaInitialsColor" - ], - "providedExports": [ - "initialsColorPropToColorCode", - "getPersonaInitialsColor" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { PersonaInitialsColor } from './Persona.types';\n/**\n * Following colors are considered reserved and can only be set with overrides, so they are excluded from this set:\n * - `gray` and `black` can result in offensive persona coins with some initials combinations\n * - `red` often has a special meaning\n * - `transparent` is not intended to be used with typical initials due to accessibility issues;\n * its primary use is for Facepile overflow buttons.\n */\nvar COLOR_SWATCHES_LOOKUP = [\n PersonaInitialsColor.lightBlue,\n PersonaInitialsColor.blue,\n PersonaInitialsColor.darkBlue,\n PersonaInitialsColor.teal,\n PersonaInitialsColor.green,\n PersonaInitialsColor.darkGreen,\n PersonaInitialsColor.lightPink,\n PersonaInitialsColor.pink,\n PersonaInitialsColor.magenta,\n PersonaInitialsColor.purple,\n PersonaInitialsColor.orange,\n PersonaInitialsColor.lightRed,\n PersonaInitialsColor.darkRed,\n PersonaInitialsColor.violet,\n PersonaInitialsColor.gold,\n PersonaInitialsColor.burgundy,\n PersonaInitialsColor.warmGray,\n PersonaInitialsColor.cyan,\n PersonaInitialsColor.rust,\n PersonaInitialsColor.coolGray,\n];\nvar COLOR_SWATCHES_NUM_ENTRIES = COLOR_SWATCHES_LOOKUP.length;\nfunction getInitialsColorFromName(displayName) {\n var color = PersonaInitialsColor.blue;\n if (!displayName) {\n return color;\n }\n var hashCode = 0;\n for (var iLen = displayName.length - 1; iLen >= 0; iLen--) {\n var ch = displayName.charCodeAt(iLen);\n var shift = iLen % 8;\n // eslint-disable-next-line no-bitwise\n hashCode ^= (ch << shift) + (ch >> (8 - shift));\n }\n color = COLOR_SWATCHES_LOOKUP[hashCode % COLOR_SWATCHES_NUM_ENTRIES];\n return color;\n}\nfunction personaInitialsColorToHexCode(personaInitialsColor) {\n switch (personaInitialsColor) {\n case PersonaInitialsColor.lightBlue:\n return '#4F6BED';\n case PersonaInitialsColor.blue:\n return '#0078D4';\n case PersonaInitialsColor.darkBlue:\n return '#004E8C';\n case PersonaInitialsColor.teal:\n return '#038387';\n case PersonaInitialsColor.lightGreen:\n case PersonaInitialsColor.green:\n return '#498205';\n case PersonaInitialsColor.darkGreen:\n return '#0B6A0B';\n case PersonaInitialsColor.lightPink:\n return '#C239B3';\n case PersonaInitialsColor.pink:\n return '#E3008C';\n case PersonaInitialsColor.magenta:\n return '#881798';\n case PersonaInitialsColor.purple:\n return '#5C2E91';\n case PersonaInitialsColor.orange:\n return '#CA5010';\n // eslint-disable-next-line deprecation/deprecation\n case PersonaInitialsColor.red:\n return '#EE1111';\n case PersonaInitialsColor.lightRed:\n return '#D13438';\n case PersonaInitialsColor.darkRed:\n return '#A4262C';\n case PersonaInitialsColor.transparent:\n return 'transparent';\n case PersonaInitialsColor.violet:\n return '#8764B8';\n case PersonaInitialsColor.gold:\n return '#986F0B';\n case PersonaInitialsColor.burgundy:\n return '#750B1C';\n case PersonaInitialsColor.warmGray:\n return '#7A7574';\n case PersonaInitialsColor.cyan:\n return '#005B70';\n case PersonaInitialsColor.rust:\n return '#8E562E';\n case PersonaInitialsColor.coolGray:\n return '#69797E';\n // eslint-disable-next-line deprecation/deprecation\n case PersonaInitialsColor.black:\n return '#1D1D1D';\n case PersonaInitialsColor.gray:\n return '#393939';\n }\n}\n/** @deprecated Use `getPersonaInitialsColor` */\nexport function initialsColorPropToColorCode(props) {\n return getPersonaInitialsColor(props);\n}\n/**\n * Gets the hex color string (prefixed with #) for the given persona props.\n * This is the logic used internally by the Persona control.\n * @param props - Current persona props\n * @returns Hex color string prefixed with #\n */\nexport function getPersonaInitialsColor(props) {\n // eslint-disable-next-line deprecation/deprecation\n var primaryText = props.primaryText, text = props.text;\n var initialsColor = props.initialsColor;\n var initialsColorCode;\n if (typeof initialsColor === 'string') {\n initialsColorCode = initialsColor;\n }\n else {\n initialsColor = initialsColor !== undefined ? initialsColor : getInitialsColorFromName(text || primaryText);\n initialsColorCode = personaInitialsColorToHexCode(initialsColor);\n }\n return initialsColorCode;\n}\n//# sourceMappingURL=PersonaInitialsColor.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "index": 784, - "index2": 800, - "size": 7086, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "type": "harmony side effect evaluation", - "userRequest": "./Persona.base", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "type": "harmony import specifier", - "userRequest": "./Persona.base", - "loc": "8:28-39" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Persona.base", - "loc": "2:0-31" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Persona.base", - "loc": "2:0-31" - } - ], - "usedExports": [ - "PersonaBase" - ], - "providedExports": [ - "PersonaBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { warnDeprecations, classNamesFunction, divProperties, getNativeProps } from '../../Utilities';\nimport { TooltipHost, TooltipOverflowMode, DirectionalHint } from '../../Tooltip';\nimport { PersonaCoin } from './PersonaCoin/PersonaCoin';\nimport { PersonaPresence as PersonaPresenceEnum, PersonaSize, } from './Persona.types';\nvar getClassNames = classNamesFunction();\n/**\n * Persona with no default styles.\n * [Use the `styles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Styling)\n */\nvar PersonaBase = /** @class */ (function (_super) {\n __extends(PersonaBase, _super);\n function PersonaBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onRenderPersonaCoin = function (props) {\n return React.createElement(PersonaCoin, __assign({}, props));\n };\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('Persona', props, { primaryText: 'text' });\n }\n return _this;\n }\n PersonaBase.prototype.render = function () {\n // wrapping default render behavior based on various this.props properties\n var _onRenderPrimaryText = this._onRenderText(this._getText());\n var _onRenderSecondaryText = this._onRenderText(this.props.secondaryText);\n var _onRenderTertiaryText = this._onRenderText(this.props.tertiaryText);\n var _onRenderOptionalText = this._onRenderText(this.props.optionalText);\n var _a = this.props, hidePersonaDetails = _a.hidePersonaDetails, _b = _a.onRenderOptionalText, onRenderOptionalText = _b === void 0 ? _onRenderOptionalText : _b, _c = _a.onRenderPrimaryText, onRenderPrimaryText = _c === void 0 ? _onRenderPrimaryText : _c, _d = _a.onRenderSecondaryText, onRenderSecondaryText = _d === void 0 ? _onRenderSecondaryText : _d, _e = _a.onRenderTertiaryText, onRenderTertiaryText = _e === void 0 ? _onRenderTertiaryText : _e, _f = _a.onRenderPersonaCoin, onRenderPersonaCoin = _f === void 0 ? this._onRenderPersonaCoin : _f;\n var size = this.props.size;\n // These properties are to be explicitly passed into PersonaCoin because they are the only props directly used\n var _g = this.props, allowPhoneInitials = _g.allowPhoneInitials, className = _g.className, coinProps = _g.coinProps, showUnknownPersonaCoin = _g.showUnknownPersonaCoin, coinSize = _g.coinSize, styles = _g.styles, imageAlt = _g.imageAlt, imageInitials = _g.imageInitials, imageShouldFadeIn = _g.imageShouldFadeIn, imageShouldStartVisible = _g.imageShouldStartVisible, imageUrl = _g.imageUrl, initialsColor = _g.initialsColor, initialsTextColor = _g.initialsTextColor, isOutOfOffice = _g.isOutOfOffice, onPhotoLoadingStateChange = _g.onPhotoLoadingStateChange, \n // eslint-disable-next-line deprecation/deprecation\n onRenderCoin = _g.onRenderCoin, onRenderInitials = _g.onRenderInitials, presence = _g.presence, presenceTitle = _g.presenceTitle, presenceColors = _g.presenceColors, showInitialsUntilImageLoads = _g.showInitialsUntilImageLoads, showSecondaryText = _g.showSecondaryText, theme = _g.theme;\n var personaCoinProps = __assign({ allowPhoneInitials: allowPhoneInitials,\n showUnknownPersonaCoin: showUnknownPersonaCoin,\n coinSize: coinSize,\n imageAlt: imageAlt,\n imageInitials: imageInitials,\n imageShouldFadeIn: imageShouldFadeIn,\n imageShouldStartVisible: imageShouldStartVisible,\n imageUrl: imageUrl,\n initialsColor: initialsColor,\n initialsTextColor: initialsTextColor,\n onPhotoLoadingStateChange: onPhotoLoadingStateChange,\n onRenderCoin: onRenderCoin,\n onRenderInitials: onRenderInitials,\n presence: presence,\n presenceTitle: presenceTitle,\n showInitialsUntilImageLoads: showInitialsUntilImageLoads,\n size: size, text: this._getText(), isOutOfOffice: isOutOfOffice,\n presenceColors: presenceColors }, coinProps);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n showSecondaryText: showSecondaryText,\n presence: presence,\n size: size,\n });\n var divProps = getNativeProps(this.props, divProperties);\n var personaDetails = (React.createElement(\"div\", { className: classNames.details },\n this._renderElement(classNames.primaryText, onRenderPrimaryText, _onRenderPrimaryText),\n this._renderElement(classNames.secondaryText, onRenderSecondaryText, _onRenderSecondaryText),\n this._renderElement(classNames.tertiaryText, onRenderTertiaryText, _onRenderTertiaryText),\n this._renderElement(classNames.optionalText, onRenderOptionalText, _onRenderOptionalText),\n this.props.children));\n return (React.createElement(\"div\", __assign({}, divProps, { className: classNames.root, style: coinSize ? { height: coinSize, minWidth: coinSize } : undefined }),\n onRenderPersonaCoin(personaCoinProps, this._onRenderPersonaCoin),\n (!hidePersonaDetails ||\n size === PersonaSize.size8 ||\n size === PersonaSize.size10 ||\n size === PersonaSize.tiny) &&\n personaDetails\n /* eslint-enable deprecation/deprecation */\n ));\n };\n /**\n * Renders various types of Text (primaryText, secondaryText, etc)\n * based on the classNames passed\n * @param classNames - element className\n * @param renderFunction - render function\n * @param defaultRenderFunction - default render function\n */\n PersonaBase.prototype._renderElement = function (classNames, renderFunction, defaultRenderFunction) {\n return (React.createElement(\"div\", { dir: \"auto\", className: classNames }, renderFunction && renderFunction(this.props, defaultRenderFunction)));\n };\n /**\n * Deprecation helper for getting text.\n */\n PersonaBase.prototype._getText = function () {\n // eslint-disable-next-line deprecation/deprecation\n return this.props.text || this.props.primaryText || '';\n };\n /**\n * using closure to wrap the default render behavior\n * to make it independent of the type of text passed\n * @param text - text to render\n */\n PersonaBase.prototype._onRenderText = function (text) {\n // return default render behaviour for valid text or undefined\n return text\n ? function () {\n // default onRender behaviour\n return (React.createElement(TooltipHost, { content: text, overflowMode: TooltipOverflowMode.Parent, directionalHint: DirectionalHint.topLeftEdge }, text));\n }\n : undefined;\n };\n PersonaBase.defaultProps = {\n size: PersonaSize.size48,\n presence: PersonaPresenceEnum.none,\n imageAlt: '',\n };\n return PersonaBase;\n}(React.Component));\nexport { PersonaBase };\n//# sourceMappingURL=Persona.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "index": 783, - "index2": 802, - "size": 402, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "issuerId": "O/R2", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Persona", - "loc": "29:40-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Persona", - "loc": "596:57-64" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "8:28-35" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "27:32-39" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "17:28-35" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Persona", - "loc": "1:0-26" - }, - { - "moduleId": "O/R2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Persona", - "loc": "1:0-26" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Persona", - "loc": "27:40-47" - } - ], - "usedExports": [ - "Persona" - ], - "providedExports": [ - "Persona" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { PersonaBase } from './Persona.base';\nimport { getStyles } from './Persona.styles';\n/**\n * Personas are used for rendering an individual's avatar, presence and details.\n * They are used within the PeoplePicker components.\n */\nexport var Persona = styled(PersonaBase, getStyles, undefined, {\n scope: 'Persona',\n});\n//# sourceMappingURL=Persona.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.types.js", - "index": 809, - "index2": 805, - "size": 592, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "issuerId": "fANu", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "fYfa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Facepile.js", - "name": "./node_modules/office-ui-fabric-react/lib/Facepile.js" - }, - { - "id": "fANu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Facepile.types", - "loc": "4:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "userRequest": "./Facepile.types", - "loc": "101:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "userRequest": "./Facepile.types", - "loc": "103:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "userRequest": "./Facepile.types", - "loc": "105:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Facepile", - "loc": "627:166-184" - }, - { - "moduleId": "fANu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Facepile.types", - "loc": "1:0-33" - }, - { - "moduleId": "fANu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Facepile.types", - "loc": "1:0-33" - } - ], - "usedExports": [ - "OverflowButtonType" - ], - "providedExports": [ - "OverflowButtonType" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\n * {@docCategory Facepile}\n */\nexport var OverflowButtonType;\n(function (OverflowButtonType) {\n /** No overflow */\n OverflowButtonType[OverflowButtonType[\"none\"] = 0] = \"none\";\n /** +1 overflow icon */\n OverflowButtonType[OverflowButtonType[\"descriptive\"] = 1] = \"descriptive\";\n /** More overflow icon */\n OverflowButtonType[OverflowButtonType[\"more\"] = 2] = \"more\";\n /** Chevron overflow icon */\n OverflowButtonType[OverflowButtonType[\"downArrow\"] = 3] = \"downArrow\";\n})(OverflowButtonType || (OverflowButtonType = {}));\n//# sourceMappingURL=Facepile.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "index": 806, - "index2": 806, - "size": 10851, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "issuerId": "fANu", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "fYfa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Facepile.js", - "name": "./node_modules/office-ui-fabric-react/lib/Facepile.js" - }, - { - "id": "fANu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "type": "harmony side effect evaluation", - "userRequest": "./Facepile.base", - "loc": "2:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "type": "harmony import specifier", - "userRequest": "./Facepile.base", - "loc": "7:29-41" - }, - { - "moduleId": "fANu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Facepile.base", - "loc": "2:0-32" - }, - { - "moduleId": "fANu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Facepile.base", - "loc": "2:0-32" - } - ], - "usedExports": [ - "FacepileBase" - ], - "providedExports": [ - "FacepileBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { buttonProperties, classNamesFunction, getId, getNativeProps, initializeComponentRef } from '../../Utilities';\nimport { OverflowButtonType, } from './Facepile.types';\nimport { FacepileButton } from './FacepileButton';\nimport { Icon } from '../../Icon';\nimport { Persona } from '../../Persona';\nimport { PersonaCoin, PersonaSize, PersonaInitialsColor } from '../../PersonaCoin';\nvar getClassNames = classNamesFunction();\n/**\n * FacePile with no default styles.\n * [Use the `styles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Component-Styling)\n */\nvar FacepileBase = /** @class */ (function (_super) {\n __extends(FacepileBase, _super);\n function FacepileBase(props) {\n var _this = _super.call(this, props) || this;\n _this._classNames = getClassNames(_this.props.styles, {\n theme: _this.props.theme,\n className: _this.props.className,\n });\n _this._getPersonaControl = function (persona) {\n var _a = _this.props, getPersonaProps = _a.getPersonaProps, personaSize = _a.personaSize;\n var personaStyles = {\n details: {\n flex: '1 0 auto',\n },\n };\n return (React.createElement(Persona, __assign({ imageInitials: persona.imageInitials, imageUrl: persona.imageUrl, initialsColor: persona.initialsColor, allowPhoneInitials: persona.allowPhoneInitials, text: persona.personaName, size: personaSize }, (getPersonaProps ? getPersonaProps(persona) : null), { styles: personaStyles })));\n };\n _this._getPersonaCoinControl = function (persona) {\n var _a = _this.props, getPersonaProps = _a.getPersonaProps, personaSize = _a.personaSize;\n return (React.createElement(PersonaCoin, __assign({ imageInitials: persona.imageInitials, imageUrl: persona.imageUrl, initialsColor: persona.initialsColor, allowPhoneInitials: persona.allowPhoneInitials, text: persona.personaName, size: personaSize }, (getPersonaProps ? getPersonaProps(persona) : null))));\n };\n initializeComponentRef(_this);\n _this._ariaDescriptionId = getId();\n return _this;\n }\n FacepileBase.prototype.render = function () {\n var overflowButtonProps = this.props.overflowButtonProps;\n var _a = this.props, chevronButtonProps = _a.chevronButtonProps, // eslint-disable-line deprecation/deprecation\n maxDisplayablePersonas = _a.maxDisplayablePersonas, personas = _a.personas, overflowPersonas = _a.overflowPersonas, showAddButton = _a.showAddButton, ariaLabel = _a.ariaLabel, _b = _a.showTooltip, showTooltip = _b === void 0 ? true : _b;\n var _classNames = this._classNames;\n // Add a check to make sure maxDisplayalePersonas is defined to cover the edge case of it being 0.\n var numPersonasToShow = typeof maxDisplayablePersonas === 'number' ? Math.min(personas.length, maxDisplayablePersonas) : personas.length;\n // Added for deprecating chevronButtonProps. Can remove after v1.0\n if (chevronButtonProps && !overflowButtonProps) {\n overflowButtonProps = chevronButtonProps;\n }\n var hasOverflowPersonas = overflowPersonas && overflowPersonas.length > 0;\n var personasPrimary = hasOverflowPersonas ? personas : personas.slice(0, numPersonasToShow);\n var personasOverflow = (hasOverflowPersonas ? overflowPersonas : personas.slice(numPersonasToShow)) || [];\n return (React.createElement(\"div\", { className: _classNames.root },\n this.onRenderAriaDescription(),\n React.createElement(\"div\", { className: _classNames.itemContainer },\n showAddButton ? this._getAddNewElement() : null,\n React.createElement(\"ul\", { className: _classNames.members, \"aria-label\": ariaLabel }, this._onRenderVisiblePersonas(personasPrimary, personasOverflow.length === 0 && personas.length === 1, showTooltip)),\n overflowButtonProps ? this._getOverflowElement(personasOverflow) : null)));\n };\n FacepileBase.prototype.onRenderAriaDescription = function () {\n var ariaDescription = this.props.ariaDescription;\n var _classNames = this._classNames;\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan,\n // otherwise it will be assigned to descriptionSpan.\n return (ariaDescription && (React.createElement(\"span\", { className: _classNames.screenReaderOnly, id: this._ariaDescriptionId }, ariaDescription)));\n };\n FacepileBase.prototype._onRenderVisiblePersonas = function (personas, singlePersona, showTooltip) {\n var _this = this;\n var _a = this.props, _b = _a.onRenderPersona, onRenderPersona = _b === void 0 ? this._getPersonaControl : _b, _c = _a.onRenderPersonaCoin, onRenderPersonaCoin = _c === void 0 ? this._getPersonaCoinControl : _c;\n return personas.map(function (persona, index) {\n var personaControl = singlePersona\n ? onRenderPersona(persona, _this._getPersonaControl)\n : onRenderPersonaCoin(persona, _this._getPersonaCoinControl);\n return (React.createElement(\"li\", { key: (singlePersona ? 'persona' : 'personaCoin') + \"-\" + index, className: _this._classNames.member }, persona.onClick\n ? _this._getElementWithOnClickEvent(personaControl, persona, showTooltip, index)\n : _this._getElementWithoutOnClickEvent(personaControl, persona, showTooltip, index)));\n });\n };\n FacepileBase.prototype._getElementWithOnClickEvent = function (personaControl, persona, showTooltip, index) {\n var keytipProps = persona.keytipProps;\n return (React.createElement(FacepileButton, __assign({}, getNativeProps(persona, buttonProperties), this._getElementProps(persona, showTooltip, index), { keytipProps: keytipProps, \n // eslint-disable-next-line react/jsx-no-bind\n onClick: this._onPersonaClick.bind(this, persona) }), personaControl));\n };\n FacepileBase.prototype._getElementWithoutOnClickEvent = function (personaControl, persona, showTooltip, index) {\n return (React.createElement(\"div\", __assign({}, getNativeProps(persona, buttonProperties), this._getElementProps(persona, showTooltip, index)), personaControl));\n };\n FacepileBase.prototype._getElementProps = function (persona, showTooltip, index) {\n var _classNames = this._classNames;\n return {\n key: (persona.imageUrl ? 'i' : '') + index,\n 'data-is-focusable': true,\n className: _classNames.itemButton,\n title: showTooltip ? persona.personaName : undefined,\n onMouseMove: this._onPersonaMouseMove.bind(this, persona),\n onMouseOut: this._onPersonaMouseOut.bind(this, persona),\n };\n };\n FacepileBase.prototype._getOverflowElement = function (personasOverflow) {\n switch (this.props.overflowButtonType) {\n case OverflowButtonType.descriptive:\n return this._getDescriptiveOverflowElement(personasOverflow);\n case OverflowButtonType.downArrow:\n return this._getIconElement('ChevronDown');\n case OverflowButtonType.more:\n return this._getIconElement('More');\n default:\n return null;\n }\n };\n FacepileBase.prototype._getDescriptiveOverflowElement = function (personasOverflow) {\n var personaSize = this.props.personaSize;\n if (!personasOverflow || personasOverflow.length < 1) {\n return null;\n }\n var personaNames = personasOverflow.map(function (p) { return p.personaName; }).join(', ');\n var overflowButtonProps = __assign({ title: personaNames }, this.props.overflowButtonProps);\n var numPersonasNotPictured = Math.max(personasOverflow.length, 0);\n var _classNames = this._classNames;\n return (React.createElement(FacepileButton, __assign({}, overflowButtonProps, { ariaDescription: overflowButtonProps.title, className: _classNames.descriptiveOverflowButton }),\n React.createElement(PersonaCoin, { size: personaSize, onRenderInitials: this._renderInitialsNotPictured(numPersonasNotPictured), initialsColor: PersonaInitialsColor.transparent })));\n };\n FacepileBase.prototype._getIconElement = function (icon) {\n var _a = this.props, overflowButtonProps = _a.overflowButtonProps, personaSize = _a.personaSize;\n var overflowInitialsIcon = true;\n var _classNames = this._classNames;\n return (React.createElement(FacepileButton, __assign({}, overflowButtonProps, { className: _classNames.overflowButton }),\n React.createElement(PersonaCoin, { size: personaSize, onRenderInitials: this._renderInitials(icon, overflowInitialsIcon), initialsColor: PersonaInitialsColor.transparent })));\n };\n FacepileBase.prototype._getAddNewElement = function () {\n var _a = this.props, addButtonProps = _a.addButtonProps, personaSize = _a.personaSize;\n var _classNames = this._classNames;\n return (React.createElement(FacepileButton, __assign({}, addButtonProps, { className: _classNames.addButton }),\n React.createElement(PersonaCoin, { size: personaSize, onRenderInitials: this._renderInitials('AddFriend') })));\n };\n FacepileBase.prototype._onPersonaClick = function (persona, ev) {\n persona.onClick(ev, persona);\n ev.preventDefault();\n ev.stopPropagation();\n };\n FacepileBase.prototype._onPersonaMouseMove = function (persona, ev) {\n if (persona.onMouseMove) {\n persona.onMouseMove(ev, persona);\n }\n };\n FacepileBase.prototype._onPersonaMouseOut = function (persona, ev) {\n if (persona.onMouseOut) {\n persona.onMouseOut(ev, persona);\n }\n };\n FacepileBase.prototype._renderInitials = function (iconName, overflowButton) {\n var _classNames = this._classNames;\n return function () {\n return React.createElement(Icon, { iconName: iconName, className: overflowButton ? _classNames.overflowInitialsIcon : '' });\n };\n };\n FacepileBase.prototype._renderInitialsNotPictured = function (numPersonasNotPictured) {\n var _classNames = this._classNames;\n return function () {\n return (React.createElement(\"span\", { className: _classNames.overflowInitialsIcon }, numPersonasNotPictured < 100 ? '+' + numPersonasNotPictured : '99+'));\n };\n };\n FacepileBase.defaultProps = {\n maxDisplayablePersonas: 5,\n personas: [],\n overflowPersonas: [],\n personaSize: PersonaSize.size32,\n };\n return FacepileBase;\n}(React.Component));\nexport { FacepileBase };\n//# sourceMappingURL=Facepile.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "index": 805, - "index2": 808, - "size": 376, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "issuerId": "fANu", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "fYfa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Facepile.js", - "name": "./node_modules/office-ui-fabric-react/lib/Facepile.js" - }, - { - "id": "fANu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Facepile", - "loc": "627:57-65" - }, - { - "moduleId": "fANu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Facepile", - "loc": "3:0-27" - }, - { - "moduleId": "fANu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Facepile", - "loc": "3:0-27" - } - ], - "usedExports": [ - "Facepile" - ], - "providedExports": [ - "Facepile" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { FacepileBase } from './Facepile.base';\nimport { styles } from './Facepile.styles';\n/**\n * The Facepile shows a list of faces or initials in a horizontal lockup. Each circle represents a person.\n */\nexport var Facepile = styled(FacepileBase, styles, undefined, {\n scope: 'Facepile',\n});\n//# sourceMappingURL=Facepile.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/IFileTypeIcon.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/IFileTypeIcon.js", - "index": 360, - "index2": 356, - "size": 10862, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IFileTypeIcon", - "loc": "1:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IFileTypeIcon", - "loc": "1:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "./IFileTypeIcon", - "loc": "16:0-137" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "30:18-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "33:33-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "47:81-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "55:71-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "78:78-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "83:68-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "116:31-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "120:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "122:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "127:32-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "130:32-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "130:76-95" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "135:25-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "135:69-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "136:34-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "162:31-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "165:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "170:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "201:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "205:19-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "216:32-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "233:80-95" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "236:80-95" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "239:80-95" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "./IFileTypeIcon", - "loc": "242:80-95" - } - ], - "usedExports": [ - "ImageSize", - "IconType", - "ApplicationType", - "ApplicationIconList", - "IconSizes", - "ICON_GENERIC_16", - "ICON_GENERIC_48", - "ICON_GENERIC_96" - ], - "providedExports": [ - "IconType", - "ApplicationType", - "ImageSize", - "ApplicationIconList", - "IconSizes", - "ICON_GENERIC_16", - "ICON_GENERIC_48", - "ICON_GENERIC_96" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\n * Available icon types\n */\nexport var IconType;\n(function (IconType) {\n IconType[IconType[\"font\"] = 1] = \"font\";\n IconType[IconType[\"image\"] = 2] = \"image\";\n})(IconType || (IconType = {}));\n/**\n * Available applications / types\n */\nexport var ApplicationType;\n(function (ApplicationType) {\n ApplicationType[ApplicationType[\"Access\"] = 1] = \"Access\";\n ApplicationType[ApplicationType[\"ASPX\"] = 2] = \"ASPX\";\n ApplicationType[ApplicationType[\"Code\"] = 3] = \"Code\";\n ApplicationType[ApplicationType[\"CSS\"] = 4] = \"CSS\";\n ApplicationType[ApplicationType[\"CSV\"] = 5] = \"CSV\";\n ApplicationType[ApplicationType[\"Excel\"] = 6] = \"Excel\";\n ApplicationType[ApplicationType[\"HTML\"] = 7] = \"HTML\";\n ApplicationType[ApplicationType[\"Image\"] = 8] = \"Image\";\n ApplicationType[ApplicationType[\"Mail\"] = 9] = \"Mail\";\n ApplicationType[ApplicationType[\"OneNote\"] = 10] = \"OneNote\";\n ApplicationType[ApplicationType[\"PDF\"] = 11] = \"PDF\";\n ApplicationType[ApplicationType[\"PowerApps\"] = 12] = \"PowerApps\";\n ApplicationType[ApplicationType[\"PowerPoint\"] = 13] = \"PowerPoint\";\n ApplicationType[ApplicationType[\"Project\"] = 14] = \"Project\";\n ApplicationType[ApplicationType[\"Publisher\"] = 15] = \"Publisher\";\n ApplicationType[ApplicationType[\"SASS\"] = 16] = \"SASS\";\n ApplicationType[ApplicationType[\"Visio\"] = 17] = \"Visio\";\n ApplicationType[ApplicationType[\"Word\"] = 18] = \"Word\";\n})(ApplicationType || (ApplicationType = {}));\n/**\n * Available image sizes\n */\nexport var ImageSize;\n(function (ImageSize) {\n ImageSize[ImageSize[\"small\"] = 1] = \"small\";\n ImageSize[ImageSize[\"medium\"] = 2] = \"medium\";\n ImageSize[ImageSize[\"large\"] = 3] = \"large\";\n})(ImageSize || (ImageSize = {}));\n/**\n * Array with all the known applications and their icon and image names\n */\nexport var ApplicationIconList = [\n {\n application: ApplicationType.Access,\n extensions: ['accdb', 'accde', 'accdt', 'accdr', 'mdb'],\n iconName: 'AccessLogo',\n imageName: ['accdb'],\n cdnImageName: [\"accdb\"]\n },\n {\n application: ApplicationType.ASPX,\n extensions: ['aspx', 'master'],\n iconName: 'FileASPX',\n imageName: [],\n cdnImageName: ['spo']\n },\n {\n application: ApplicationType.Code,\n extensions: ['js', 'ts', 'cs'],\n iconName: 'FileCode',\n imageName: [],\n cdnImageName: ['code']\n },\n {\n application: ApplicationType.CSS,\n extensions: ['css'],\n iconName: 'FileCSS',\n imageName: [],\n cdnImageName: ['code']\n },\n {\n application: ApplicationType.CSV,\n extensions: ['csv'],\n iconName: 'ExcelDocument',\n imageName: ['csv'],\n cdnImageName: ['csv']\n },\n {\n application: ApplicationType.Excel,\n extensions: ['xls', 'xlt', 'xlm', 'xlsx', 'xlsm', 'xltx', 'xltm', 'ods'],\n iconName: 'ExcelDocument',\n imageName: ['xlsx', 'xls', 'xltx', 'ods'],\n cdnImageName: ['xlsx', 'xltx', 'ods']\n },\n {\n application: ApplicationType.HTML,\n extensions: ['html'],\n iconName: 'FileHTML',\n imageName: [],\n cdnImageName: ['html']\n },\n {\n application: ApplicationType.Image,\n extensions: ['jpg', 'jpeg', 'gif', 'png'],\n iconName: 'FileImage',\n imageName: [],\n cdnImageName: ['photo']\n },\n {\n application: ApplicationType.Mail,\n extensions: ['msg'],\n iconName: 'Mail',\n imageName: [],\n cdnImageName: ['email']\n },\n {\n application: ApplicationType.OneNote,\n extensions: ['one', 'onepkg', 'onetoc'],\n iconName: 'OneNoteLogo',\n imageName: ['one', 'onepkg', 'onetoc'],\n cdnImageName: ['one', 'onetoc']\n },\n {\n application: ApplicationType.PDF,\n extensions: ['pdf'],\n iconName: 'PDF',\n imageName: [],\n cdnImageName: ['pdf']\n },\n {\n application: ApplicationType.PowerApps,\n extensions: ['msapp'],\n iconName: 'PowerApps',\n imageName: []\n },\n {\n application: ApplicationType.PowerPoint,\n extensions: ['ppt', 'pot', 'pps', 'pptx', 'pptm', 'potx', 'potm', 'ppam', 'ppsx', 'ppsm', 'sldx', 'sldx'],\n iconName: 'PowerPointDocument',\n imageName: ['odp', 'potx', 'ppsx', 'pptx'],\n cdnImageName: ['pptx', 'odp', 'potx', 'ppsx']\n },\n {\n application: ApplicationType.Project,\n extensions: ['mpp', 'mpt', 'mpx', 'mpd'],\n iconName: 'ProjectLogoInverse',\n imageName: ['mpp', 'mpt'],\n cdnImageName: ['mpp', 'mpt']\n },\n {\n application: ApplicationType.Publisher,\n extensions: ['pub'],\n iconName: 'PublisherLogo',\n imageName: ['pub'],\n cdnImageName: ['pub']\n },\n {\n application: ApplicationType.SASS,\n extensions: ['scss', 'sass'],\n iconName: 'FileSass',\n imageName: [],\n cdnImageName: ['code']\n },\n {\n application: ApplicationType.Visio,\n extensions: ['vsd', 'vss', 'vst', 'vdx', 'vsx', 'vtx', 'vsdx'],\n iconName: 'VisioDocument',\n imageName: ['vsdx', 'vssx', 'vstx'],\n cdnImageName: ['vsdx', 'vssx', 'vstx']\n },\n {\n application: ApplicationType.Word,\n extensions: ['doc', 'dot', 'docx', 'docm', 'dotx', 'dotm', 'docb', 'odt'],\n iconName: 'WordDocument',\n imageName: ['docx', 'dotx', 'odt'],\n cdnImageName: ['docx', 'dotx', 'odt']\n }\n];\n/**\n * Array with the known icon image sizes\n */\nexport var IconSizes = [\n {\n size: ImageSize.small,\n name: 'icon16'\n },\n {\n size: ImageSize.medium,\n name: 'icon48'\n },\n {\n size: ImageSize.large,\n name: 'icon96'\n }\n];\n/**\n * Generic file type icons base64 encoded\n */\nexport var ICON_GENERIC_16 = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAACxUExURf///6CgoZeYmJ+goJSVlpydnaampqWlpaOjo6KioqCgoZ+fn52enpycnJqbm/39/fz9/fz8/dzc3Pr7+/r6+/n6+vn5+vj5+vj4+erq6oyMjJGSk/n6+/f4+fv8/JCRkvj5+Y+QkPv7/I2Oj/f4+IyNjvb3+IqMjJmZmvz8/ImKi5eYmPf3+IeJipaXl/X294aHiJSVlvb394SGh5OUlPb294OFhZKTk4GDhICCg////6edRp4AAAAGdFJOUwD5MPww+XxQO+MAAAABYktHRACIBR1IAAAAsElEQVQY0z3L2RqCIBCGYdq0MkPCgqxxQaI9LFvs/m8smIP+s++dZwghQTieTKNZPO/1CS6klCaMsWAxGCKMKU+XKyGD9WKEMKGpBxFk2QZhStPl1gFAXiBEiW9ZSsgrhBlzZwluqkaImVgJKAG02iHMmRAuQRu1RzgcSyl9G3VCOOf+/2KM4VeEW661T2N5g3BXvszDWt4iPD28rBt/I3z4fx1CUdW7/enatO/uS8gP83oU3WB3gUcAAAAASUVORK5CYII=';\nexport var ICON_GENERIC_48 = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAGeUExURf///6Kio5iZmaSkpZeYmKOjpJaXl6ChopWWlp+goZSVlZ6en5OTlJucnZGSk5qbm6ampqWlpaSkpaSkpKOjo6KioqGioqGhoaCgoJ+goJ+fn56fn56enp2enp2dnZydnZycnJubnJqbm5qam5mamv39/fz9/fz8/fz9/Pz8/Pv8/P3+/unp6fv7+/r7+/r6+/r6+vn6+vn6+/n5+vj5+vj4+ff4+fj5+fLy8unq6vT09PHx8ejp6fv7/PPz8+/v7+Xl5e3t7evr6+Hh4e7u7ufn597e3vn6+erq6ujo6OPj49ra2vn5+YyMjJCSkuLi497f4N7f397e393e3+Hh4pCRkff4+Pf3+Pb3+I+QkY+QkI6PkI6Pj42Oj4yOjoyNjouNjYuMjYqMjIqLjImLi4mKi/b294iKipmZmvX294eJipiZmfb394eIiZiYmYaIiZeYmIaHiJeXmIWHiJaXl4WGh5WWl4SGh5WWloSFhpSVloOFhpSVlYKEhZOUlZOTlIKDhJKTlIGDhJKTk4CCg5GSkn+Bgn+BgX6Agf///0viRIgAAAAQdFJOUwD5MPww/DD8MPww/DD7MPl5g3acAAAAAWJLR0QAiAUdSAAAAmRJREFUSMfN0Wdf01AUwOG6twYolL3T2NjeEpMmao1AHTgq1kEb9i4Gi4iIiFhFrODH9o4kve1J+5rz+v+cc/NLIHByRxAaGpuCweaWUKi1rb2js6u7p7evf2Dw1OlaQHQmjEeSbkpSRJIjt4TombP+oEGMxRCKx+NDinJbVRVNS2i6IQt37p477wsaMWCCBxHhXvL+hYt+oEk0AdAweJAcHrl02QcE6ZOqL8hCcng09fDK1VqA+waVgUejqejjJ9euA9Assv34AAFjLkg9jT4bef7iBgAtIuvxAUVVVUNLM/CSzTgAITEeLx9wvtlIvMpkMq/fvH03UQMMsd59kZHQ8WRzljkJQKvIcvdAWsNA98AUAG1hheW41wxygLzIA9MAtIfd9ao2Rr+AO2CZMwB0hNl21qfZF5TBLACdkspGMWiPH+QcoGAOgC4GFLye9uRB3gHLnAegW9LwJ5BcTdDeexAFCwD0SBodlawv9+yAZS4C0Cux2llf2VvmEgB9kUSC1pW9C5YB6HeeRHO9qrdiKwAMEKCTmuRVvYVWARiMGGy8nOvzaA2A9wTopHZyvrfROgAf2Ee7Nd8XbBttAPBR1vnJsh9Gx8ZgE4BPckXO9XkCtgD4LPvntLfRNgBfZK4u5wXa22gHgK9ylk6Oz9l6AnYB+GbmcpUx19toD4DvplU9Ba+30T4AP8zaOQZFAH6atXNf8IsH+cocgwMAfpve7uqagEMA/sTydGzfQSUA/iK7zviA8frgCIAJVHeOAZicmp6ZnZtfWFxaXlldW9/Y3Nre2d3bLxYPDkulo+N/gZM7/wGRlGTTsm+SowAAAABJRU5ErkJggg==';\nexport var ICON_GENERIC_96 = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAIoUExURf///5+goJmamp+foJmZmp6fn5iZmZiYmZ2enpeYmJ2dnpaXmJydnZaXl5ycnZWWl5ucnJWVlpqbnJSVlZqbm5mam5OUlJmampOTlJiZmpKTk5iZmZGSk5eYmZGSkpaYmJCRkpaXmKampqWlpaSkpaSkpKOkpKOjo6Kio6KioqGioqGhoaChoaCgoaCgoJ+goJ+foJ+fn56fn56en56enp2enp2dnp2dnZydnZycnJucnJubnJubm5qbm5qam/39/fz9/fz8/fz9/Pz8/Pv8/P7+/vLy8tjY2Pv7+/r7+/r6+/r6+vn6+vn6+/n5+vn6+fj5+vj4+ff4+fj5+dfY2Pn5+dfX2NfX1/v7/NbX19bW19bW1tXW1tXV1tXV1ZCRkYyMjI+Qkejo6d/f4N7f4N7f397e393e3+Hh4vDw8evr7Orr7Orr6+rq6+nq6+7u7/f4+Pf3+Pb3+I+QkI6QkI6PkI6Pj42Pj42Oj42OjoyOjoyNjouNjYuMjYqMjIqLjPb394mLi/b294mKi/X294iKi5mamoiKioiJipmZmoeJipiZmYeIiYaIiZiYmYaIiJeYmIaHiJeXmIWHiJaXmIWHh5aXl4WGh5aWl4SGh5WWl4SGhpWWloSFhpWVloOFhpSVlpSVlYOFhYOEhYKEhZOUlZOUlIKDhJOTlIGDhJKTlJKTk4GDg4CCg5GSk5GSkoCBgpCSkn+BgpCRkn+BgX6AgX1/gP///4uaePMAAAAidFJOUwDeEN4Q3hAQ3hDeEN4Q3hDeEN4Q3t0Q3RDdEN0Q3RDdEN2/iv+3AAAAAWJLR0QAiAUdSAAABKpJREFUaN7t1Ot/01QYwHG8oOAdxPu9Y5RtMGDAGIPRloaQsDRLU6ZBFESEeRmzC7fB2IUuyIThRISJiFOYzglTnMy/z1zbc5Jz8py08/PxxZ4Xffn75jkn6YIF8zM/cz+xWKyqqmp5dfWKeDy+sqamtraubtXq+vo1a9c1NKzfsLGxcVNT0+bm5i1bW1q2PfBgGUDCP0lnUuYkt1u/6bT5w6V3xPidDz1cBiAIgmjPLntaJWsyGdkcqU1RFDmbNX/VXDrG8zsXPhIVqLIAl3AEyREsQPED/O6Fj5YHCIEVbECygHYE4N9etHgOAVnK+QH+nccejwQsTwgafkbYJZiAggP8nieejAJUJzRNw1aAAH7PU09HBKJtwPPvPrOEHVhBu4MM5Q6s2bv0WWYgHv4WkQF+7zJmIR76HUj+76AoPPd8FAD9klEg8CUjwgsvsgErE6I3DH8VqPDSy0xATQLvewuUgHYywL/3yqtRADfvLoDcsQOoQYB//7XXGYDaBJonLOCdUBDg973xJguwCx1JQv+JAIDf9xYM1GFAK7oAckIUgN8fEcD62AI28EFgDsDAqoQ/T1kgp3548OBH7hw6dPhwR0fHxwzAag9o9fXdBez/CQfIfvLpZ850dnYeOdLV1fU5A1CfwOt4H1kgl81mVXfy+e5u3RztKAOQlPBx+84BycgJkYBjMLAmSezjC1CB4zCwNonnsb7zClEX0LUTMLAuScibfd8BUYCTMNCQRPLEPmGBItDDCGQySN28X7uvIH3yAkzA+iRet/uK2yfeMAqcgoENKRkbRaL0CQvo2mkY2IgDkns8Xj94QBjQCwONKfzpnbwc3i8LMOtentAnvEIWcAYGNnmvaVtbIO/2qQvoWh8MNG1vsybnxuE+sgAbkFLQke080scvQMX6TMBmFJDbkTytjwL9MNCcKj27XXfybl/197EFGAHZSre7dSwP9XVtAAa2pLOlUbx86XiQvv+AdF1gALamsTaSh/uDwlkYaMHfIiQf7PsOSC8IQxEB1ZcP7w8WRAZgW6qY9uKkvNP3LWCI52DgC07F48U82DeB8wxAOocPKU/qDxYMQxyGgS/TWNyt43laPxJgh7LEPKlvHZAJXICBixyWJucpfUMcYQDQLzlYJz++248KqIQhPr5zARZwCQa+4tSQCe8b4igMfM2BeWq/QoCSR/qGeBkGvuHC82F9Q7wCA99ylDr58bG+IV6FgWscvR7M431DHIsM5EPzvj4T8B2HlYt1Ut77vkrAdRj4nsvnA3FiPdg3xBsw8AOHp6l183j8fUO8CQM/at3o6NQJ5k1gHAZ+0sA05fEZgZ81nWGIeRO4NTfAIKVviLfnAqDmTWACBn7Rys6zAb9qZedNYLIyoBCeZwN+0+gPD+RNYAoGftdodTDPBtzRiHGGugXcjQg4bba4DUzDwB9CAR3mdlQgWjgK8KdYXtsB7sHAXxUBMzDw9/8buA8D+ysCZmHgwH8PVDIswNFjx0+c7Ok5dbq390xfX19//8DA2aGhc+eHhy+MjFwaHb185erY2PUbN8fHb92emJicnJq6Oz09fW9m5v7s7Ow/MDA/8xN1/gVe/atO93sFBAAAAABJRU5ErkJggg==';\n//# sourceMappingURL=IFileTypeIcon.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "index": 362, - "index2": 358, - "size": 1383, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "17:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "17:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "18:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "28:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "29:8-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "29:8-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "38:8-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "53:8-23" - } - ], - "usedExports": [ - "track" - ], - "providedExports": [ - "track", - "useTelemetry" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport PnPTelemetry from \"@pnp/telemetry-js\";\nimport { version } from './version';\nimport { Environment, EnvironmentType } from \"@microsoft/sp-core-library\";\nimport * as React from 'react';\nvar CONTROL_TYPE = \"react\";\n/**\n * Track control information\n *\n * @param componentName\n * @param properties\n */\nexport function track(componentName, properties) {\n if (properties === void 0) { properties = {}; }\n var telemetry = PnPTelemetry.getInstance();\n telemetry.trackEvent(componentName, __assign({ version: version, controlType: CONTROL_TYPE, debug: DEBUG ? \"true\" : \"false\", environment: EnvironmentType[Environment.type] }, properties));\n}\nexport var useTelemetry = function (componentName, properties) {\n if (properties === void 0) { properties = {}; }\n var _a = React.useState(false), hasBeenCalled = _a[0], setHasBeenCalled = _a[1];\n if (hasBeenCalled) {\n return;\n }\n track(componentName, properties);\n setHasBeenCalled(true);\n};\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "index": 361, - "index2": 432, - "size": 11055, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/FileTypeIcon.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FileTypeIcon", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FileTypeIcon", - "loc": "2:0-31" - } - ], - "usedExports": [ - "FileTypeIcon" - ], - "providedExports": [ - "FileTypeIcon" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport { findIndex } from '@microsoft/sp-lodash-subset';\nimport { ApplicationIconList, IconType, IconSizes, ImageSize, ICON_GENERIC_16, ICON_GENERIC_48, ICON_GENERIC_96 } from './IFileTypeIcon';\nimport * as telemetry from '../../common/telemetry';\nimport { Icon } from 'office-ui-fabric-react/lib/components/Icon';\nvar ICON_GENERIC = 'Page';\nvar ICON_DEFAULT_SIZE = 'icon16';\nvar ICON_CDN_URL = \"https://spoprod-a.akamaihd.net/files/fabric/assets/item-types\";\n/**\n* File type icon component\n*/\nvar FileTypeIcon = /** @class */ (function (_super) {\n __extends(FileTypeIcon, _super);\n function FileTypeIcon(props) {\n var _this = _super.call(this, props) || this;\n telemetry.track('ReactFileTypeIcon', {\n type: IconType[props.type],\n applicationType: !!props.application,\n path: !!props.path,\n size: !!props.size ? ImageSize[props.size] : 'default'\n });\n return _this;\n }\n /**\n * Function which returns the font icon\n */\n FileTypeIcon.prototype._getIconClassName = function () {\n var className = ICON_GENERIC;\n // Check if the path property is provided\n if (typeof this.props.path !== 'undefined' && this.props.path !== null) {\n var path = this.props.path;\n var fileExtension = this._getFileExtension(path);\n // Check the known file extensions list\n var iconName = this._getIconByExtension(fileExtension.toLowerCase(), IconType.font);\n if (iconName !== null) {\n className = iconName.image;\n }\n }\n // Check if the application name has been provided\n else if (typeof this.props.application !== 'undefined' && this.props.application !== null) {\n var application = this.props.application;\n var iconName = this._getIconByApplicationType(application, IconType.font);\n if (iconName !== null) {\n className = iconName.image;\n }\n }\n return className;\n };\n /**\n * Function which returns the image icon\n */\n FileTypeIcon.prototype._getIconImageName = function () {\n var size = ICON_DEFAULT_SIZE;\n var imageInfo = null;\n // Get the right icon size to display\n if (typeof this.props.size !== 'undefined' && this.props.size !== null) {\n // Retrieve the right icon size\n size = this._getFileSizeName(this.props.size);\n }\n // Check if the path is provided\n if (typeof this.props.path !== 'undefined' && this.props.path !== null) {\n var path = this.props.path;\n var fileExtension = this._getFileExtension(path);\n // Get the image for the current file extension\n imageInfo = this._getIconByExtension(fileExtension.toLowerCase(), IconType.image);\n }\n // Check if the application name has been provided\n else if (typeof this.props.application !== 'undefined' && this.props.application !== null) {\n var application = this.props.application;\n imageInfo = this._getIconByApplicationType(application, IconType.image);\n }\n return {\n size: size,\n image: imageInfo && imageInfo.image ? imageInfo.image : null,\n cdnFallback: imageInfo && imageInfo.cdnFallback ? imageInfo.cdnFallback : null\n };\n };\n /**\n * Function to retrieve the file extension from the path\n *\n * @param value File path\n */\n FileTypeIcon.prototype._getFileExtension = function (value) {\n // Split the URL on the dots\n var splittedValue = value.split('.');\n // Take the last value\n var extensionValue = splittedValue.pop();\n // Check if there are query string params in place\n if (extensionValue.indexOf('?') !== -1) {\n // Split the string on the question mark and return the first part\n var querySplit = extensionValue.split('?');\n extensionValue = querySplit[0];\n }\n return extensionValue;\n };\n /**\n * Find the icon name for the provided extension\n *\n * @param extension File extension\n */\n FileTypeIcon.prototype._getIconByExtension = function (extension, iconType) {\n // Find the application index by the provided extension\n var appIdx = findIndex(ApplicationIconList, function (item) { return item.extensions.indexOf(extension.toLowerCase()) !== -1; });\n // Check if an application has found\n if (appIdx !== -1) {\n // Check the type of icon, the image needs to get checked for the name\n if (iconType === IconType.font) {\n return {\n image: ApplicationIconList[appIdx].iconName,\n cdnFallback: null\n };\n }\n else {\n var knownImgs = ApplicationIconList[appIdx].imageName;\n // Check if the file extension is known\n var imgIdx = knownImgs.indexOf(extension);\n var imgExists = ApplicationIconList[appIdx].cdnImageName && ApplicationIconList[appIdx].cdnImageName.indexOf(extension) !== -1;\n var fallbackImg = null;\n if (imgExists) {\n fallbackImg = extension;\n }\n else if (ApplicationIconList[appIdx].cdnImageName && ApplicationIconList[appIdx].cdnImageName.length > 0) {\n fallbackImg = ApplicationIconList[appIdx].cdnImageName[0];\n }\n if (imgIdx !== -1) {\n return {\n image: knownImgs[imgIdx],\n cdnFallback: fallbackImg\n };\n }\n else {\n // Return the first one if it was not known\n return {\n image: knownImgs[0],\n cdnFallback: fallbackImg\n };\n }\n }\n }\n return null;\n };\n /**\n * Find the icon name for the application\n *\n * @param application\n */\n FileTypeIcon.prototype._getIconByApplicationType = function (application, iconType) {\n // Find the application index by the provided extension\n var appIdx = findIndex(ApplicationIconList, function (item) { return item.application === application; });\n // Check if an application has found\n if (appIdx !== -1) {\n var knownApp = ApplicationIconList[appIdx];\n var fallbackImg = null;\n if (knownApp.cdnImageName && knownApp.cdnImageName.length > 0) {\n fallbackImg = knownApp.cdnImageName[0];\n }\n if (iconType === IconType.font) {\n return {\n image: knownApp.iconName,\n cdnFallback: fallbackImg\n };\n }\n else {\n // Check if the application has a known list of image types\n if (knownApp.imageName.length > 0) {\n return {\n image: knownApp.imageName[0],\n cdnFallback: fallbackImg\n };\n }\n else {\n return {\n image: null,\n cdnFallback: fallbackImg\n };\n }\n }\n }\n return null;\n };\n /**\n * Return the right image size for the provided value\n *\n * @param value Image size value\n */\n FileTypeIcon.prototype._getFileSizeName = function (value) {\n // Find the image size index by the image size\n var sizeIdx = findIndex(IconSizes, function (size) { return size.size === value; });\n // Check if an icon size has been retrieved\n if (sizeIdx !== -1) {\n // Return the first icon size\n return IconSizes[sizeIdx].name;\n }\n // Return the default file size if nothing was found\n return ICON_DEFAULT_SIZE;\n };\n /**\n * Default React component render method\n */\n FileTypeIcon.prototype.render = function () {\n var iconElm = React.createElement(\"span\", null);\n // Check the type of icon that needs to be displayed\n if (this.props.type === IconType.image) {\n // Return an image icon element\n var iconImage = this._getIconImageName();\n // Check if the image was found, otherwise a generic image will be returned\n if (iconImage.cdnFallback) {\n var iconUrl = ICON_CDN_URL + \"/\" + iconImage.size.replace(\"icon\", \"\") + \"/\" + iconImage.cdnFallback + \".png\";\n iconElm = React.createElement(Icon, { imageProps: { src: iconUrl } });\n }\n else if (iconImage.image) {\n iconElm = React.createElement(Icon, { imageProps: { className: \"ms-BrandIcon--\" + iconImage.size + \" ms-BrandIcon--\" + iconImage.image } });\n }\n else {\n // Return a generic image\n var imgElm = React.createElement(\"img\", null);\n // Check the size of the generic image which has to be returned\n switch (iconImage.size) {\n case 'icon16':\n imgElm = React.createElement(Icon, { imageProps: { src: ICON_GENERIC_16 } });\n break;\n case 'icon48':\n imgElm = React.createElement(Icon, { imageProps: { src: ICON_GENERIC_48 } });\n break;\n case 'icon96':\n imgElm = React.createElement(Icon, { imageProps: { src: ICON_GENERIC_96 } });\n break;\n default:\n imgElm = React.createElement(Icon, { imageProps: { src: ICON_GENERIC_16 } });\n break;\n }\n iconElm = (React.createElement(\"div\", { style: { display: 'inline-block' } }, imgElm));\n }\n }\n else {\n // Return the icon font element\n var iconClass = this._getIconClassName();\n iconElm = React.createElement(Icon, { iconName: iconClass });\n }\n // Return the icon element\n return iconElm;\n };\n return FileTypeIcon;\n}(React.Component));\nexport { FileTypeIcon };\n//# sourceMappingURL=FileTypeIcon.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "index": 439, - "index2": 437, - "size": 280, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IFrameDialogContent.module.scss", - "loc": "1:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IFrameDialogContent.module.scss", - "loc": "1:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./IFrameDialogContent.module.scss", - "loc": "26:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "type": "harmony import specifier", - "userRequest": "./IFrameDialogContent.module.scss", - "loc": "43:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "type": "harmony import specifier", - "userRequest": "./IFrameDialogContent.module.scss", - "loc": "46:56-62" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/* tslint:disable */\nrequire(\"./IFrameDialogContent.module.css\");\nvar styles = {\n iFrameDialog: 'iFrameDialog_bbda31dc',\n spinnerContainer: 'spinnerContainer_bbda31dc'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=IFrameDialogContent.module.scss.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "index": 442, - "index2": 587, - "size": 3090, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IFrameDialogContent", - "loc": "2:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IFrameDialogContent", - "loc": "2:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "type": "harmony side effect evaluation", - "userRequest": "./IFrameDialogContent", - "loc": "27:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "type": "harmony import specifier", - "userRequest": "./IFrameDialogContent", - "loc": "73:32-51" - } - ], - "usedExports": [ - "IFrameDialogContent" - ], - "providedExports": [ - "IFrameDialogContent" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from \"react\";\nimport styles from './IFrameDialogContent.module.scss';\nimport { Spinner, SpinnerSize } from 'office-ui-fabric-react/lib/Spinner';\nimport omit from 'lodash/omit';\n/**\n * IFrame Dialog content\n */\nvar IFrameDialogContent = /** @class */ (function (_super) {\n __extends(IFrameDialogContent, _super);\n function IFrameDialogContent(props) {\n var _this = _super.call(this, props) || this;\n _this.state = {\n isContentVisible: false\n };\n return _this;\n }\n IFrameDialogContent.prototype.render = function () {\n var _this = this;\n return (React.createElement(\"div\", { className: styles.iFrameDialog },\n React.createElement(\"iframe\", __assign({ ref: function (iframe) { _this._iframe = iframe; }, frameBorder: 0, onLoad: this._iframeOnLoad.bind(this), style: { width: '100%', height: this.props.height, visibility: this.state.isContentVisible ? 'visible' : 'hidden' } }, omit(this.props, 'height'))),\n !this.state.isContentVisible &&\n React.createElement(\"div\", { className: styles.spinnerContainer },\n React.createElement(Spinner, { size: SpinnerSize.large }))));\n };\n IFrameDialogContent.prototype._iframeOnLoad = function () {\n try { // for cross origin requests we can have issues with accessing frameElement\n this._iframe.contentWindow.frameElement.cancelPopUp = this.props.close;\n this._iframe.contentWindow.frameElement.commitPopUp = this.props.close;\n // SP.UI.Dialog has misspelling of commitPopUp\n this._iframe.contentWindow.frameElement.commitPopup = this.props.close;\n }\n catch (err) {\n if (err.name !== 'SecurityError') {\n throw err;\n }\n }\n if (this.props.iframeOnLoad) {\n this.props.iframeOnLoad(this._iframe);\n }\n this.setState({\n isContentVisible: true\n });\n };\n return IFrameDialogContent;\n}(React.Component));\nexport { IFrameDialogContent };\n//# sourceMappingURL=IFrameDialogContent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "index": 592, - "index2": 680, - "size": 4239, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IFrameDialog", - "loc": "3:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IFrameDialog", - "loc": "3:0-31" - } - ], - "usedExports": [ - "IFrameDialog" - ], - "providedExports": [ - "IFrameDialog" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from \"react\";\nimport { Dialog } from 'office-ui-fabric-react/lib/Dialog';\nimport { IFrameDialogContent } from './IFrameDialogContent';\nimport * as telemetry from '../../common/telemetry';\nimport { Guid } from \"@microsoft/sp-core-library\";\nimport omit from 'lodash/omit';\n/**\n * Dialog component to display content in iframe\n */\nvar IFrameDialog = /** @class */ (function (_super) {\n __extends(IFrameDialog, _super);\n function IFrameDialog(props, state) {\n var _this = _super.call(this, props, state) || this;\n telemetry.track('IFrameDialog', {});\n _this.state = {\n dialogId: null\n };\n return _this;\n }\n /**\n * componentWillMount lifecycle hook\n */\n IFrameDialog.prototype.componentWillMount = function () {\n this.setState({\n dialogId: \"dialog-\" + Guid.newGuid().toString()\n });\n };\n /**\n * componentDidMount lifecycle hook\n */\n IFrameDialog.prototype.componentDidMount = function () {\n this.setDialogStyling();\n };\n IFrameDialog.prototype.componentWillReceiveProps = function (nextProps) {\n if (nextProps.hidden && nextProps.hidden !== this.props.hidden) {\n this.setState({\n isStylingSet: false\n });\n }\n };\n IFrameDialog.prototype.componentDidUpdate = function (prevProps, prevState) {\n this.setDialogStyling();\n };\n IFrameDialog.prototype.render = function () {\n var _this = this;\n var _a = this.props, iframeOnLoad = _a.iframeOnLoad, height = _a.height, allowFullScreen = _a.allowFullScreen, allowTransparency = _a.allowTransparency, marginHeight = _a.marginHeight, marginWidth = _a.marginWidth, name = _a.name, sandbox = _a.sandbox, scrolling = _a.scrolling, seamless = _a.seamless, modalProps = _a.modalProps, className = _a.className;\n var dlgModalProps = __assign({}, modalProps, { onLayerDidMount: function () { _this.setDialogStyling(); } });\n return (React.createElement(Dialog, __assign({ className: this.state.dialogId + \" \" + (className || ''), modalProps: dlgModalProps }, omit(this.props, 'className', 'modalProps')),\n React.createElement(IFrameDialogContent, { src: this.props.url, iframeOnLoad: iframeOnLoad, close: this.props.onDismiss, height: height, allowFullScreen: allowFullScreen, allowTransparency: allowTransparency, marginHeight: marginHeight, marginWidth: marginWidth, name: name, sandbox: sandbox, scrolling: scrolling, seamless: seamless })));\n };\n /**\n * Set the dialog style\n */\n IFrameDialog.prototype.setDialogStyling = function () {\n if (!this.state.isStylingSet && !this.props.hidden && this.state.dialogId) {\n var element = document.querySelector(\".\" + this.state.dialogId + \" .ms-Dialog-main\");\n var width = this.props.width;\n if (element && width) {\n element.style.width = width;\n element.style.minWidth = width;\n element.style.maxWidth = width;\n this.setState({\n isStylingSet: true\n });\n }\n }\n };\n return IFrameDialog;\n}(React.Component));\nexport { IFrameDialog };\n//# sourceMappingURL=IFrameDialog.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "index": 688, - "index2": 688, - "size": 2897, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./WebPartTitle", - "loc": "1:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "type": "harmony export imported specifier", - "userRequest": "./WebPartTitle", - "loc": "1:0-31" - } - ], - "usedExports": [ - "WebPartTitle" - ], - "providedExports": [ - "WebPartTitle" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport * as strings from 'ControlStrings';\nimport { DisplayMode } from '@microsoft/sp-core-library';\nimport styles from './WebPartTitle.module.scss';\nimport * as telemetry from '../../common/telemetry';\n/**\n * Web Part Title component\n */\nvar WebPartTitle = /** @class */ (function (_super) {\n __extends(WebPartTitle, _super);\n /**\n * Constructor\n */\n function WebPartTitle(props) {\n var _this = _super.call(this, props) || this;\n telemetry.track('ReactWebPartTitle', {\n title: !!props.title,\n updateProperty: !!props.updateProperty,\n className: !!props.className\n });\n _this._onChange = _this._onChange.bind(_this);\n return _this;\n }\n /**\n * Process the text area change\n */\n WebPartTitle.prototype._onChange = function (event) {\n this.props.updateProperty(event.target.value);\n };\n /**\n * Default React component render method\n */\n WebPartTitle.prototype.render = function () {\n var color = (!!this.props.themeVariant && this.props.themeVariant.semanticColors.bodyText) || null;\n if (this.props.title || this.props.moreLink || this.props.displayMode === DisplayMode.Edit) {\n return (React.createElement(\"div\", { className: styles.webPartHeader + \" \" + (this.props.className ? this.props.className : \"\") },\n React.createElement(\"div\", { className: styles.webPartTitle, style: { color: color } },\n this.props.displayMode === DisplayMode.Edit && (React.createElement(\"textarea\", { placeholder: this.props.placeholder ? this.props.placeholder : strings.WebPartTitlePlaceholder, \"aria-label\": strings.WebPartTitleLabel, onChange: this._onChange, defaultValue: this.props.title })),\n this.props.displayMode !== DisplayMode.Edit && this.props.title && React.createElement(\"span\", { role: \"heading\", \"aria-level\": 2 }, this.props.title)),\n this.props.moreLink && (React.createElement(\"span\", { className: styles.moreLink }, typeof this.props.moreLink === \"function\" ? this.props.moreLink() : this.props.moreLink))));\n }\n return null;\n };\n return WebPartTitle;\n}(React.Component));\nexport { WebPartTitle };\n//# sourceMappingURL=WebPartTitle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/util.js", - "name": "./node_modules/@pnp/common/util.js", - "index": 699, - "index2": 691, - "size": 7169, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/collections.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/collections.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/collections.js", - "name": "./node_modules/@pnp/common/collections.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/collections.js", - "module": "./node_modules/@pnp/common/collections.js", - "moduleName": "./node_modules/@pnp/common/collections.js", - "type": "harmony side effect evaluation", - "userRequest": "./util.js", - "loc": "1:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "./util.js", - "loc": "2:0-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony side effect evaluation", - "userRequest": "./util.js", - "loc": "2:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "5:8-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/collections.js", - "module": "./node_modules/@pnp/common/collections.js", - "moduleName": "./node_modules/@pnp/common/collections.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "5:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./util.js", - "loc": "6:0-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./util.js", - "loc": "6:0-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/collections.js", - "module": "./node_modules/@pnp/common/collections.js", - "moduleName": "./node_modules/@pnp/common/collections.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "12:8-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "13:8-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "14:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "15:17-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "38:13-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "157:21-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "159:15-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util.js", - "loc": "171:23-37" - } - ], - "usedExports": [ - "objectDefinedNotNull", - "dateAdd", - "jsS", - "getCtxCallback", - "isFunc", - "assign", - "isUrlAbsolute", - "stringIsNullOrEmpty", - "combine", - "getGUID", - "hOP" - ], - "providedExports": [ - "getCtxCallback", - "dateAdd", - "combine", - "getRandomString", - "getGUID", - "isFunc", - "objectDefinedNotNull", - "isArray", - "assign", - "isUrlAbsolute", - "stringIsNullOrEmpty", - "sanitizeGuid", - "jsS", - "hOP", - "getHashCode" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\r\n * Gets a callback function which will maintain context across async calls.\r\n * Allows for the calling pattern getCtxCallback(thisobj, method, methodarg1, methodarg2, ...)\r\n *\r\n * @param context The object that will be the 'this' value in the callback\r\n * @param method The method to which we will apply the context and parameters\r\n * @param params Optional, additional arguments to supply to the wrapped method when it is invoked\r\n */\r\n// eslint-disable-next-line @typescript-eslint/ban-types\r\nexport function getCtxCallback(context, method) {\r\n var params = [];\r\n for (var _i = 2; _i < arguments.length; _i++) {\r\n params[_i - 2] = arguments[_i];\r\n }\r\n return function () {\r\n method.apply(context, params);\r\n };\r\n}\r\n/**\r\n * Adds a value to a date\r\n *\r\n * @param date The date to which we will add units, done in local time\r\n * @param interval The name of the interval to add, one of: ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second']\r\n * @param units The amount to add to date of the given interval\r\n *\r\n * http://stackoverflow.com/questions/1197928/how-to-add-30-minutes-to-a-javascript-date-object\r\n */\r\nexport function dateAdd(date, interval, units) {\r\n var ret = new Date(date.toString()); // don't change original date\r\n switch (interval.toLowerCase()) {\r\n case \"year\":\r\n ret.setFullYear(ret.getFullYear() + units);\r\n break;\r\n case \"quarter\":\r\n ret.setMonth(ret.getMonth() + 3 * units);\r\n break;\r\n case \"month\":\r\n ret.setMonth(ret.getMonth() + units);\r\n break;\r\n case \"week\":\r\n ret.setDate(ret.getDate() + 7 * units);\r\n break;\r\n case \"day\":\r\n ret.setDate(ret.getDate() + units);\r\n break;\r\n case \"hour\":\r\n ret.setTime(ret.getTime() + units * 3600000);\r\n break;\r\n case \"minute\":\r\n ret.setTime(ret.getTime() + units * 60000);\r\n break;\r\n case \"second\":\r\n ret.setTime(ret.getTime() + units * 1000);\r\n break;\r\n default:\r\n ret = undefined;\r\n break;\r\n }\r\n return ret;\r\n}\r\n/**\r\n * Combines an arbitrary set of paths ensuring and normalizes the slashes\r\n *\r\n * @param paths 0 to n path parts to combine\r\n */\r\nexport function combine() {\r\n var paths = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n paths[_i] = arguments[_i];\r\n }\r\n return paths\r\n .filter(function (path) { return !stringIsNullOrEmpty(path); })\r\n .map(function (path) { return path.replace(/^[\\\\|/]/, \"\").replace(/[\\\\|/]$/, \"\"); })\r\n .join(\"/\")\r\n .replace(/\\\\/g, \"/\");\r\n}\r\n/**\r\n * Gets a random string of chars length\r\n *\r\n * https://stackoverflow.com/questions/1349404/generate-random-string-characters-in-javascript\r\n *\r\n * @param chars The length of the random string to generate\r\n */\r\nexport function getRandomString(chars) {\r\n var text = new Array(chars);\r\n for (var i = 0; i < chars; i++) {\r\n text[i] = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\".charAt(Math.floor(Math.random() * 62));\r\n }\r\n return text.join(\"\");\r\n}\r\n/**\r\n * Gets a random GUID value\r\n *\r\n * http://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript\r\n */\r\n/* eslint-disable no-bitwise */\r\nexport function getGUID() {\r\n var d = Date.now();\r\n return \"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g, function (c) {\r\n var r = (d + Math.random() * 16) % 16 | 0;\r\n d = Math.floor(d / 16);\r\n return (c === \"x\" ? r : (r & 0x3 | 0x8)).toString(16);\r\n });\r\n}\r\n/* eslint-enable no-bitwise */\r\n/**\r\n * Determines if a given value is a function\r\n *\r\n * @param cf The thing to test for functionness\r\n */\r\nexport function isFunc(f) {\r\n return typeof f === \"function\";\r\n}\r\n/**\r\n * Determines if an object is both defined and not null\r\n * @param obj Object to test\r\n */\r\nexport function objectDefinedNotNull(obj) {\r\n return typeof obj !== \"undefined\" && obj !== null;\r\n}\r\n/**\r\n * @returns whether the provided parameter is a JavaScript Array or not.\r\n*/\r\nexport function isArray(array) {\r\n return Array.isArray ? Array.isArray(array) : array && typeof array.length === \"number\" && array.constructor === Array;\r\n}\r\n/**\r\n * Provides functionality to extend the given object by doing a shallow copy\r\n *\r\n * @param target The object to which properties will be copied\r\n * @param source The source object from which properties will be copied\r\n * @param noOverwrite If true existing properties on the target are not overwritten from the source\r\n * @param filter If provided allows additional filtering on what properties are copied (propName: string) => boolean\r\n *\r\n */\r\nexport function assign(target, source, noOverwrite, filter) {\r\n if (noOverwrite === void 0) { noOverwrite = false; }\r\n if (filter === void 0) { filter = function () { return true; }; }\r\n if (!objectDefinedNotNull(source)) {\r\n return target;\r\n }\r\n // ensure we don't overwrite things we don't want overwritten\r\n var check = noOverwrite ? function (o, i) { return !(i in o); } : function () { return true; };\r\n // final filter we will use\r\n var f = function (v) { return check(target, v) && filter(v); };\r\n return Object.getOwnPropertyNames(source)\r\n .filter(f)\r\n .reduce(function (t, v) {\r\n t[v] = source[v];\r\n return t;\r\n }, target);\r\n}\r\n/**\r\n * Determines if a given url is absolute\r\n *\r\n * @param url The url to check to see if it is absolute\r\n */\r\nexport function isUrlAbsolute(url) {\r\n return /^https?:\\/\\/|^\\/\\//i.test(url);\r\n}\r\n/**\r\n * Determines if a string is null or empty or undefined\r\n *\r\n * @param s The string to test\r\n */\r\nexport function stringIsNullOrEmpty(s) {\r\n return s === undefined || s === null || s.length < 1;\r\n}\r\n/**\r\n * Ensures guid values are represented consistently as \"ea123463-137d-4ae3-89b8-cf3fc578ca05\"\r\n *\r\n * @param guid The candidate guid\r\n */\r\nexport function sanitizeGuid(guid) {\r\n if (stringIsNullOrEmpty(guid)) {\r\n return guid;\r\n }\r\n var matches = /([0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12})/i.exec(guid);\r\n return matches === null ? guid : matches[1];\r\n}\r\n/**\r\n * Shorthand for JSON.stringify\r\n *\r\n * @param o Any type of object\r\n */\r\nexport function jsS(o) {\r\n return JSON.stringify(o);\r\n}\r\n/**\r\n * Shorthand for Object.hasOwnProperty\r\n *\r\n * @param o Object to check for\r\n * @param p Name of the property\r\n */\r\nexport function hOP(o, p) {\r\n return Object.hasOwnProperty.call(o, p);\r\n}\r\n/**\r\n * Generates a ~unique hash code\r\n *\r\n * From: https://stackoverflow.com/questions/6122571/simple-non-secure-hash-function-for-javascript\r\n */\r\n/* eslint-disable no-bitwise */\r\nexport function getHashCode(s) {\r\n var hash = 0;\r\n if (s.length === 0) {\r\n return hash;\r\n }\r\n for (var i = 0; i < s.length; i++) {\r\n var chr = s.charCodeAt(i);\r\n hash = ((hash << 5) - hash) + chr;\r\n hash |= 0; // Convert to 32bit integer\r\n }\r\n return hash;\r\n}\r\n/* eslint-enable no-bitwise */\r\n//# sourceMappingURL=util.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/collections.js", - "name": "./node_modules/@pnp/common/collections.js", - "index": 698, - "index2": 692, - "size": 1498, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./collections.js", - "loc": "1:0-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./collections.js", - "loc": "1:0-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/common/libconfig.js", - "type": "harmony side effect evaluation", - "userRequest": "./collections.js", - "loc": "2:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/common/libconfig.js", - "type": "harmony import specifier", - "userRequest": "./collections.js", - "loc": "50:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/common/libconfig.js", - "type": "harmony import specifier", - "userRequest": "./collections.js", - "loc": "50:37-48" - } - ], - "usedExports": [ - "mergeMaps", - "objectToMap" - ], - "providedExports": [ - "objectToMap", - "mergeMaps" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { isFunc, objectDefinedNotNull } from \"./util.js\";\r\n/**\r\n * Used to calculate the object properties, with polyfill if needed\r\n */\r\nvar objectEntries = isFunc(Object.entries) ? Object.entries : function (o) { return Object.keys(o).map(function (k) { return [k, o[k]]; }); };\r\n/**\r\n * Converts the supplied object to a map\r\n *\r\n * @param o The object to map\r\n */\r\nexport function objectToMap(o) {\r\n if (objectDefinedNotNull(o)) {\r\n return new Map(objectEntries(o));\r\n }\r\n return new Map();\r\n}\r\n/**\r\n * Merges to Map instances together, overwriting values in target with matching keys, last in wins\r\n *\r\n * @param target map into which the other maps are merged\r\n * @param maps One or more maps to merge into the target\r\n */\r\nexport function mergeMaps(target) {\r\n var maps = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n maps[_i - 1] = arguments[_i];\r\n }\r\n for (var i = 0; i < maps.length; i++) {\r\n maps[i].forEach(function (v, k) {\r\n // let's not run the spfx context through Object.assign :)\r\n if ((typeof k === \"string\" && k !== \"spfxContext\") && Object.prototype.toString.call(v) === \"[object Object]\") {\r\n // we only handle one level of deep object merging\r\n target.set(k, Object.assign({}, target.get(k) || {}, v));\r\n }\r\n else {\r\n target.set(k, v);\r\n }\r\n });\r\n }\r\n return target;\r\n}\r\n//# sourceMappingURL=collections.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/libconfig.js", - "name": "./node_modules/@pnp/common/libconfig.js", - "index": 700, - "index2": 694, - "size": 2856, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./libconfig.js", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./libconfig.js", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "./libconfig.js", - "loc": "3:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig.js", - "loc": "21:12-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig.js", - "loc": "153:33-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig.js", - "loc": "171:76-90" - } - ], - "usedExports": [ - "DefaultRuntime", - "Runtime", - "onRuntimeCreate" - ], - "providedExports": [ - "setup", - "onRuntimeCreate", - "Runtime", - "DefaultRuntime" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __read, __values } from \"tslib\";\r\nimport { mergeMaps, objectToMap } from \"./collections.js\";\r\nexport function setup(config, runtime) {\r\n if (runtime === void 0) { runtime = DefaultRuntime; }\r\n runtime.assign(config);\r\n}\r\n// lable mapping for known config values\r\nvar s = [\r\n \"defaultCachingStore\",\r\n \"defaultCachingTimeoutSeconds\",\r\n \"globalCacheDisable\",\r\n \"enableCacheExpiration\",\r\n \"cacheExpirationIntervalMilliseconds\",\r\n \"spfxContext\",\r\n \"ie11\",\r\n];\r\nvar runtimeCreateHooks = [];\r\nexport function onRuntimeCreate(hook) {\r\n if (runtimeCreateHooks.indexOf(hook) < 0) {\r\n // apply hook logic to default runtime\r\n hook(DefaultRuntime);\r\n runtimeCreateHooks.push(hook);\r\n }\r\n}\r\nvar Runtime = /** @class */ (function () {\r\n function Runtime(_v) {\r\n var _this = this;\r\n if (_v === void 0) { _v = new Map(); }\r\n this._v = _v;\r\n var defaulter = function (key, def) {\r\n if (!_this._v.has(key)) {\r\n _this._v.set(key, def);\r\n }\r\n };\r\n // setup defaults\r\n defaulter(s[0], \"session\");\r\n defaulter(s[1], 60);\r\n defaulter(s[2], false);\r\n defaulter(s[3], false);\r\n defaulter(s[4], 750);\r\n defaulter(s[5], null);\r\n defaulter(s[6], false);\r\n runtimeCreateHooks.forEach(function (hook) { return hook(_this); });\r\n }\r\n /**\r\n *\r\n * @param config The set of properties to add to this runtime instance\r\n */\r\n Runtime.prototype.assign = function (config) {\r\n this._v = mergeMaps(this._v, objectToMap(config));\r\n };\r\n /**\r\n * Gets a runtime value using T to define the available keys, and R to define the type returned by that key\r\n *\r\n * @param key\r\n */\r\n Runtime.prototype.get = function (key) {\r\n return this._v.get(key);\r\n };\r\n /**\r\n * Exports the internal Map representing this runtime\r\n */\r\n Runtime.prototype.export = function () {\r\n var e_1, _a;\r\n var expt = new Map();\r\n try {\r\n for (var _b = __values(this._v), _c = _b.next(); !_c.done; _c = _b.next()) {\r\n var _d = __read(_c.value, 2), key = _d[0], value = _d[1];\r\n if (key !== \"__isDefault__\") {\r\n expt.set(key, value);\r\n }\r\n }\r\n }\r\n catch (e_1_1) { e_1 = { error: e_1_1 }; }\r\n finally {\r\n try {\r\n if (_c && !_c.done && (_a = _b.return)) _a.call(_b);\r\n }\r\n finally { if (e_1) throw e_1.error; }\r\n }\r\n return expt;\r\n };\r\n return Runtime;\r\n}());\r\nexport { Runtime };\r\n// default runtime used globally\r\nvar _runtime = new Runtime(new Map([[\"__isDefault__\", true]]));\r\nexport var DefaultRuntime = _runtime;\r\n//# sourceMappingURL=libconfig.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "name": "./node_modules/@pnp/common/net.js", - "index": 702, - "index2": 696, - "size": 5097, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./net.js", - "loc": "3:0-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./net.js", - "loc": "3:0-25" - } - ], - "usedExports": [ - "mergeOptions", - "mergeHeaders", - "SPFxAdalClient" - ], - "providedExports": [ - "mergeHeaders", - "mergeOptions", - "getADALResource", - "FetchClient", - "BearerTokenFetchClient", - "LambdaFetchClient", - "SPFxAdalClient" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __awaiter, __extends, __generator } from \"tslib\";\r\nimport { assign, objectDefinedNotNull } from \"./util.js\";\r\nimport { safeGlobal } from \"./safe-global.js\";\r\nexport function mergeHeaders(target, source) {\r\n if (objectDefinedNotNull(source)) {\r\n var temp = new Request(\"\", { headers: source });\r\n temp.headers.forEach(function (value, name) {\r\n target.append(name, value);\r\n });\r\n }\r\n}\r\nexport function mergeOptions(target, source) {\r\n if (objectDefinedNotNull(source)) {\r\n var headers = assign(target.headers || {}, source.headers);\r\n target = assign(target, source);\r\n target.headers = headers;\r\n }\r\n}\r\n/**\r\n * Parses out the root of the request url to use as the resource when getting the token\r\n *\r\n * @param url The url to parse\r\n */\r\nexport function getADALResource(url) {\r\n var u = new URL(url);\r\n return u.protocol + \"//\" + u.hostname;\r\n}\r\n/**\r\n * Makes requests using the global/window fetch API\r\n */\r\nvar FetchClient = /** @class */ (function () {\r\n function FetchClient() {\r\n }\r\n FetchClient.prototype.fetch = function (url, options) {\r\n return safeGlobal.fetch(url, options);\r\n };\r\n return FetchClient;\r\n}());\r\nexport { FetchClient };\r\n/**\r\n * Makes requests using the fetch API adding the supplied token to the Authorization header\r\n */\r\nvar BearerTokenFetchClient = /** @class */ (function (_super) {\r\n __extends(BearerTokenFetchClient, _super);\r\n function BearerTokenFetchClient(token) {\r\n var _this = _super.call(this) || this;\r\n _this.token = token;\r\n return _this;\r\n }\r\n BearerTokenFetchClient.prototype.fetch = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var headers = new Headers();\r\n mergeHeaders(headers, options.headers);\r\n headers.set(\"Authorization\", \"Bearer \" + this.token);\r\n options.headers = headers;\r\n return _super.prototype.fetch.call(this, url, options);\r\n };\r\n return BearerTokenFetchClient;\r\n}(FetchClient));\r\nexport { BearerTokenFetchClient };\r\nvar LambdaFetchClient = /** @class */ (function (_super) {\r\n __extends(LambdaFetchClient, _super);\r\n function LambdaFetchClient(tokenFactory) {\r\n var _this = _super.call(this, null) || this;\r\n _this.tokenFactory = tokenFactory;\r\n return _this;\r\n }\r\n /**\r\n * Executes a fetch request using the supplied url and options\r\n *\r\n * @param url Absolute url of the request\r\n * @param options Any options\r\n */\r\n LambdaFetchClient.prototype.fetch = function (url, options) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var _a;\r\n return __generator(this, function (_b) {\r\n switch (_b.label) {\r\n case 0:\r\n _a = this;\r\n return [4 /*yield*/, this.tokenFactory({ url: url, options: options })];\r\n case 1:\r\n _a.token = _b.sent();\r\n return [2 /*return*/, _super.prototype.fetch.call(this, url, options)];\r\n }\r\n });\r\n });\r\n };\r\n return LambdaFetchClient;\r\n}(BearerTokenFetchClient));\r\nexport { LambdaFetchClient };\r\n/**\r\n * Client wrapping the aadTokenProvider available from SPFx >= 1.6\r\n */\r\nvar SPFxAdalClient = /** @class */ (function (_super) {\r\n __extends(SPFxAdalClient, _super);\r\n /**\r\n *\r\n * @param context provide the appropriate SPFx Context object\r\n */\r\n function SPFxAdalClient(context) {\r\n var _this = _super.call(this, function (params) { return __awaiter(_this, void 0, void 0, function () {\r\n var provider;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, context.aadTokenProviderFactory.getTokenProvider()];\r\n case 1:\r\n provider = _a.sent();\r\n return [2 /*return*/, provider.getToken(getADALResource(params.url))];\r\n }\r\n });\r\n }); }) || this;\r\n _this.context = context;\r\n return _this;\r\n }\r\n /**\r\n * Gets an AAD token for the provided resource using the SPFx AADTokenProvider\r\n *\r\n * @param resource Resource for which a token is to be requested (ex: https://graph.microsoft.com)\r\n */\r\n SPFxAdalClient.prototype.getToken = function (resource) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var provider;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, this.context.aadTokenProviderFactory.getTokenProvider()];\r\n case 1:\r\n provider = _a.sent();\r\n return [2 /*return*/, provider.getToken(resource)];\r\n }\r\n });\r\n });\r\n };\r\n return SPFxAdalClient;\r\n}(LambdaFetchClient));\r\nexport { SPFxAdalClient };\r\n//# sourceMappingURL=net.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/spfxcontextinterface.js", - "name": "./node_modules/@pnp/common/spfxcontextinterface.js", - "index": 704, - "index2": 697, - "size": 60, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./spfxcontextinterface.js", - "loc": "4:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./spfxcontextinterface.js", - "loc": "4:0-42" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 4, - "source": "export {};\r\n//# sourceMappingURL=spfxcontextinterface.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "name": "./node_modules/@pnp/common/storage.js", - "index": 705, - "index2": 698, - "size": 9557, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./storage.js", - "loc": "5:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./storage.js", - "loc": "5:0-29" - } - ], - "usedExports": [ - "PnPClientStorage" - ], - "providedExports": [ - "PnPClientStorageWrapper", - "PnPClientStorage" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { dateAdd, getCtxCallback, jsS, objectDefinedNotNull } from \"./util.js\";\r\nimport { DefaultRuntime } from \"./libconfig.js\";\r\n/**\r\n * A wrapper class to provide a consistent interface to browser based storage\r\n *\r\n */\r\nvar PnPClientStorageWrapper = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of the PnPClientStorageWrapper class\r\n *\r\n * @constructor\r\n */\r\n function PnPClientStorageWrapper(store, defaultTimeoutMinutes) {\r\n if (defaultTimeoutMinutes === void 0) { defaultTimeoutMinutes = -1; }\r\n this.store = store;\r\n this.defaultTimeoutMinutes = defaultTimeoutMinutes;\r\n this.enabled = this.test();\r\n // if the cache timeout is enabled call the handler\r\n // this will clear any expired items and set the timeout function\r\n if (DefaultRuntime.get(\"enableCacheExpiration\")) {\r\n this.cacheExpirationHandler();\r\n }\r\n }\r\n PnPClientStorageWrapper.bind = function (store) {\r\n return new PnPClientStorageWrapper(typeof (store) === \"undefined\" ? new MemoryStorage() : store);\r\n };\r\n /**\r\n * Get a value from storage, or null if that value does not exist\r\n *\r\n * @param key The key whose value we want to retrieve\r\n */\r\n PnPClientStorageWrapper.prototype.get = function (key) {\r\n if (!this.enabled) {\r\n return null;\r\n }\r\n var o = this.store.getItem(key);\r\n if (!objectDefinedNotNull(o)) {\r\n return null;\r\n }\r\n var persistable = JSON.parse(o);\r\n if (new Date(persistable.expiration) <= new Date()) {\r\n this.delete(key);\r\n return null;\r\n }\r\n else {\r\n return persistable.value;\r\n }\r\n };\r\n /**\r\n * Adds a value to the underlying storage\r\n *\r\n * @param key The key to use when storing the provided value\r\n * @param o The value to store\r\n * @param expire Optional, if provided the expiration of the item, otherwise the default is used\r\n */\r\n PnPClientStorageWrapper.prototype.put = function (key, o, expire) {\r\n if (this.enabled) {\r\n this.store.setItem(key, this.createPersistable(o, expire));\r\n }\r\n };\r\n /**\r\n * Deletes a value from the underlying storage\r\n *\r\n * @param key The key of the pair we want to remove from storage\r\n */\r\n PnPClientStorageWrapper.prototype.delete = function (key) {\r\n if (this.enabled) {\r\n this.store.removeItem(key);\r\n }\r\n };\r\n /**\r\n * Gets an item from the underlying storage, or adds it if it does not exist using the supplied getter function\r\n *\r\n * @param key The key to use when storing the provided value\r\n * @param getter A function which will upon execution provide the desired value\r\n * @param expire Optional, if provided the expiration of the item, otherwise the default is used\r\n */\r\n PnPClientStorageWrapper.prototype.getOrPut = function (key, getter, expire) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var o;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n if (!this.enabled) {\r\n return [2 /*return*/, getter()];\r\n }\r\n o = this.get(key);\r\n if (!(o === null)) return [3 /*break*/, 2];\r\n return [4 /*yield*/, getter()];\r\n case 1:\r\n o = _a.sent();\r\n this.put(key, o, expire);\r\n _a.label = 2;\r\n case 2: return [2 /*return*/, o];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Deletes any expired items placed in the store by the pnp library, leaves other items untouched\r\n */\r\n PnPClientStorageWrapper.prototype.deleteExpired = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var i, key;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n if (!this.enabled) {\r\n return [2 /*return*/];\r\n }\r\n i = 0;\r\n _a.label = 1;\r\n case 1:\r\n if (!(i < this.store.length)) return [3 /*break*/, 4];\r\n key = this.store.key(i);\r\n if (!(key !== null)) return [3 /*break*/, 3];\r\n if (!/[\"|']?pnp[\"|']? ?: ?1/i.test(this.store.getItem(key))) return [3 /*break*/, 3];\r\n // get those items as get will delete from cache if they are expired\r\n return [4 /*yield*/, this.get(key)];\r\n case 2:\r\n // get those items as get will delete from cache if they are expired\r\n _a.sent();\r\n _a.label = 3;\r\n case 3:\r\n i++;\r\n return [3 /*break*/, 1];\r\n case 4: return [2 /*return*/];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Used to determine if the wrapped storage is available currently\r\n */\r\n PnPClientStorageWrapper.prototype.test = function () {\r\n var str = \"t\";\r\n try {\r\n this.store.setItem(str, str);\r\n this.store.removeItem(str);\r\n return true;\r\n }\r\n catch (e) {\r\n return false;\r\n }\r\n };\r\n /**\r\n * Creates the persistable to store\r\n */\r\n PnPClientStorageWrapper.prototype.createPersistable = function (o, expire) {\r\n if (expire === undefined) {\r\n // ensure we are by default inline with the global library setting\r\n var defaultTimeout = DefaultRuntime.get(\"defaultCachingTimeoutSeconds\");\r\n if (this.defaultTimeoutMinutes > 0) {\r\n defaultTimeout = this.defaultTimeoutMinutes * 60;\r\n }\r\n expire = dateAdd(new Date(), \"second\", defaultTimeout);\r\n }\r\n return jsS({ pnp: 1, expiration: expire, value: o });\r\n };\r\n /**\r\n * Deletes expired items added by this library in this.store and sets a timeout to call itself\r\n */\r\n PnPClientStorageWrapper.prototype.cacheExpirationHandler = function () {\r\n var _this = this;\r\n if (!this.enabled) {\r\n return;\r\n }\r\n this.deleteExpired().then(function () {\r\n // call ourself in the future\r\n setTimeout(getCtxCallback(_this, _this.cacheExpirationHandler), DefaultRuntime.get(\"cacheExpirationIntervalMilliseconds\"));\r\n }).catch(console.error);\r\n };\r\n return PnPClientStorageWrapper;\r\n}());\r\nexport { PnPClientStorageWrapper };\r\n/**\r\n * A thin implementation of in-memory storage for use in nodejs\r\n */\r\nvar MemoryStorage = /** @class */ (function () {\r\n function MemoryStorage(_store) {\r\n if (_store === void 0) { _store = new Map(); }\r\n this._store = _store;\r\n }\r\n Object.defineProperty(MemoryStorage.prototype, \"length\", {\r\n get: function () {\r\n return this._store.size;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n MemoryStorage.prototype.clear = function () {\r\n this._store.clear();\r\n };\r\n MemoryStorage.prototype.getItem = function (key) {\r\n return this._store.get(key);\r\n };\r\n MemoryStorage.prototype.key = function (index) {\r\n return Array.from(this._store)[index][0];\r\n };\r\n MemoryStorage.prototype.removeItem = function (key) {\r\n this._store.delete(key);\r\n };\r\n MemoryStorage.prototype.setItem = function (key, data) {\r\n this._store.set(key, data);\r\n };\r\n return MemoryStorage;\r\n}());\r\n/**\r\n * A class that will establish wrappers for both local and session storage\r\n */\r\nvar PnPClientStorage = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of the PnPClientStorage class\r\n *\r\n * @constructor\r\n */\r\n function PnPClientStorage(_local, _session) {\r\n if (_local === void 0) { _local = null; }\r\n if (_session === void 0) { _session = null; }\r\n this._local = _local;\r\n this._session = _session;\r\n }\r\n Object.defineProperty(PnPClientStorage.prototype, \"local\", {\r\n /**\r\n * Provides access to the local storage of the browser\r\n */\r\n get: function () {\r\n if (this._local === null) {\r\n this._local = new PnPClientStorageWrapper(typeof (localStorage) === \"undefined\" ? new MemoryStorage() : localStorage);\r\n }\r\n return this._local;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(PnPClientStorage.prototype, \"session\", {\r\n /**\r\n * Provides access to the session storage of the browser\r\n */\r\n get: function () {\r\n if (this._session === null) {\r\n this._session = new PnPClientStorageWrapper(typeof (sessionStorage) === \"undefined\" ? new MemoryStorage() : sessionStorage);\r\n }\r\n return this._session;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n return PnPClientStorage;\r\n}());\r\nexport { PnPClientStorage };\r\n//# sourceMappingURL=storage.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphhttpclient.js", - "name": "./node_modules/@pnp/graph/graphhttpclient.js", - "index": 722, - "index2": 716, - "size": 4569, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/operations.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "name": "./node_modules/@pnp/graph/operations.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony side effect evaluation", - "userRequest": "./graphhttpclient.js", - "loc": "4:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./graphhttpclient.js", - "loc": "4:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./graphhttpclient.js", - "loc": "4:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "./graphhttpclient.js", - "loc": "5:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "./graphhttpclient.js", - "loc": "9:74-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "./graphhttpclient.js", - "loc": "35:37-52" - } - ], - "usedExports": [ - "GraphHttpClient" - ], - "providedExports": [ - "GraphHttpClient" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { assign, mergeHeaders, getCtxCallback, DefaultRuntime, Runtime, objectDefinedNotNull, } from \"@pnp/common\";\r\nvar GraphHttpClient = /** @class */ (function () {\r\n function GraphHttpClient() {\r\n // constructor(...args: [runtime: Runtime] | [impl: IHttpClientImpl, runtime?: Runtime]) {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n this._runtime = args.length > 0 && args[0] instanceof Runtime ? args[0] : DefaultRuntime;\r\n this._impl = args.length > 1 && objectDefinedNotNull(args[1]) ?\r\n args[1] : this._runtime.get(\"graph\").fetchClientFactory() || null;\r\n if (this._impl === null) {\r\n throw Error(\"Could not generate fetchClientFactory in SPHttpClient.\");\r\n }\r\n }\r\n GraphHttpClient.prototype.fetch = function (url, options) {\r\n var _a;\r\n if (options === void 0) { options = {}; }\r\n var headers = new Headers();\r\n // first we add the global headers so they can be overwritten by any passed in locally to this call\r\n mergeHeaders(headers, (_a = this._runtime.get(\"graph\")) === null || _a === void 0 ? void 0 : _a.headers);\r\n // second we add the local options so we can overwrite the globals\r\n mergeHeaders(headers, options.headers);\r\n if (!headers.has(\"Content-Type\")) {\r\n headers.append(\"Content-Type\", \"application/json\");\r\n }\r\n if (!headers.has(\"SdkVersion\")) {\r\n // this marks the requests for understanding by the service\r\n headers.append(\"SdkVersion\", \"PnPCoreJS/2.4.0\");\r\n }\r\n var opts = assign(options, { headers: headers });\r\n return this.fetchRaw(url, opts);\r\n };\r\n GraphHttpClient.prototype.fetchRaw = function (url, options) {\r\n var _this = this;\r\n if (options === void 0) { options = {}; }\r\n // here we need to normalize the headers\r\n var rawHeaders = new Headers();\r\n mergeHeaders(rawHeaders, options.headers);\r\n options = assign(options, { headers: rawHeaders });\r\n var retry = function (ctx) {\r\n _this._impl.fetch(url, options).then(function (response) { return ctx.resolve(response); }).catch(function (response) {\r\n // Check if request was throttled - http status code 429\r\n // Check if request failed due to server unavailable - http status code 503\r\n // Check if request failed due to gateway timeout - http status code 504\r\n if (response.status !== 429 && response.status !== 503 && response.status !== 504) {\r\n ctx.reject(response);\r\n }\r\n // grab our current delay\r\n var delay = ctx.delay;\r\n // Increment our counters.\r\n ctx.delay *= 2;\r\n ctx.attempts++;\r\n // If we have exceeded the retry count, reject.\r\n if (ctx.retryCount <= ctx.attempts) {\r\n ctx.reject(response);\r\n }\r\n // Set our retry timeout for {delay} milliseconds.\r\n setTimeout(getCtxCallback(_this, retry, ctx), delay);\r\n });\r\n };\r\n return new Promise(function (resolve, reject) {\r\n var retryContext = {\r\n attempts: 0,\r\n delay: 100,\r\n reject: reject,\r\n resolve: resolve,\r\n retryCount: 7,\r\n };\r\n retry.call(_this, retryContext);\r\n });\r\n };\r\n GraphHttpClient.prototype.get = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var opts = assign(options, { method: \"GET\" });\r\n return this.fetch(url, opts);\r\n };\r\n GraphHttpClient.prototype.post = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var opts = assign(options, { method: \"POST\" });\r\n return this.fetch(url, opts);\r\n };\r\n GraphHttpClient.prototype.patch = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var opts = assign(options, { method: \"PATCH\" });\r\n return this.fetch(url, opts);\r\n };\r\n GraphHttpClient.prototype.delete = function (url, options) {\r\n if (options === void 0) { options = {}; }\r\n var opts = assign(options, { method: \"DELETE\" });\r\n return this.fetch(url, opts);\r\n };\r\n return GraphHttpClient;\r\n}());\r\nexport { GraphHttpClient };\r\n//# sourceMappingURL=graphhttpclient.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "name": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "index": 723, - "index2": 718, - "size": 2390, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/operations.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "name": "./node_modules/@pnp/graph/operations.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/toabsoluteurl.js", - "loc": "5:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/toabsoluteurl.js", - "loc": "6:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./utils/toabsoluteurl.js", - "loc": "7:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./utils/toabsoluteurl.js", - "loc": "7:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "./utils/toabsoluteurl.js", - "loc": "24:45-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "./utils/toabsoluteurl.js", - "loc": "55:61-74" - } - ], - "usedExports": [ - "toAbsoluteUrl" - ], - "providedExports": [ - "toAbsoluteUrl" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { combine, isUrlAbsolute, objectDefinedNotNull, DefaultRuntime, stringIsNullOrEmpty } from \"@pnp/common\";\r\n/**\r\n * Ensures that a given url is absolute for the current web based on context\r\n *\r\n * @param candidateUrl The url to make absolute\r\n *\r\n */\r\nexport function toAbsoluteUrl(candidateUrl, runtime) {\r\n var _a, _b, _c;\r\n if (runtime === void 0) { runtime = DefaultRuntime; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var baseUrl, spFxContext, client, e_1;\r\n return __generator(this, function (_d) {\r\n switch (_d.label) {\r\n case 0:\r\n if (isUrlAbsolute(candidateUrl)) {\r\n // if we are already absolute, then just return the url\r\n return [2 /*return*/, candidateUrl];\r\n }\r\n baseUrl = (_a = runtime.get(\"graph\")) === null || _a === void 0 ? void 0 : _a.baseUrl;\r\n if (!stringIsNullOrEmpty(baseUrl)) {\r\n // base url specified either with baseUrl of spfxContext config property\r\n return [2 /*return*/, combine(baseUrl, candidateUrl)];\r\n }\r\n spFxContext = runtime.get(\"spfxContext\");\r\n if (!objectDefinedNotNull(spFxContext)) return [3 /*break*/, 4];\r\n _d.label = 1;\r\n case 1:\r\n _d.trys.push([1, 3, , 4]);\r\n return [4 /*yield*/, spFxContext.msGraphClientFactory.getClient()];\r\n case 2:\r\n client = _d.sent();\r\n baseUrl = (_c = (_b = client) === null || _b === void 0 ? void 0 : _b.constructor) === null || _c === void 0 ? void 0 : _c._graphBaseUrl;\r\n if (!stringIsNullOrEmpty(baseUrl)) {\r\n return [2 /*return*/, combine(baseUrl, candidateUrl)];\r\n }\r\n return [3 /*break*/, 4];\r\n case 3:\r\n e_1 = _d.sent();\r\n return [3 /*break*/, 4];\r\n case 4: \r\n // try one last time with the default\r\n return [2 /*return*/, combine(\"https://graph.microsoft.com\", candidateUrl)];\r\n }\r\n });\r\n });\r\n}\r\n//# sourceMappingURL=toabsoluteurl.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "name": "./node_modules/@pnp/graph/batch.js", - "index": 706, - "index2": 719, - "size": 9195, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/rest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "name": "./node_modules/@pnp/graph/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "name": "./node_modules/@pnp/graph/rest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./batch.js", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./batch.js", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony side effect evaluation", - "userRequest": "./batch.js", - "loc": "3:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "./batch.js", - "loc": "21:19-29" - } - ], - "usedExports": [ - "GraphBatch" - ], - "providedExports": [ - "GraphBatch" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __awaiter, __extends, __generator } from \"tslib\";\r\nimport { Batch } from \"@pnp/odata\";\r\nimport { Logger } from \"@pnp/logging\";\r\nimport { assign, jsS, isUrlAbsolute, hOP, DefaultRuntime } from \"@pnp/common\";\r\nimport { GraphHttpClient } from \"./graphhttpclient.js\";\r\nimport { toAbsoluteUrl } from \"./utils/toabsoluteurl.js\";\r\nvar GraphBatch = /** @class */ (function (_super) {\r\n __extends(GraphBatch, _super);\r\n function GraphBatch(batchUrl, maxRequests, runtime) {\r\n if (batchUrl === void 0) { batchUrl = \"v1.0/$batch\"; }\r\n if (maxRequests === void 0) { maxRequests = 20; }\r\n if (runtime === void 0) { runtime = DefaultRuntime; }\r\n var _this = _super.call(this) || this;\r\n _this.batchUrl = batchUrl;\r\n _this.maxRequests = maxRequests;\r\n _this.runtime = runtime;\r\n return _this;\r\n }\r\n GraphBatch.prototype.setRuntime = function (runtime) {\r\n this.runtime = runtime;\r\n return this;\r\n };\r\n GraphBatch.prototype.executeImpl = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var client, requests, _loop_1, this_1;\r\n var _this = this;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n Logger.write(\"[\" + this.batchId + \"] (\" + (new Date()).getTime() + \") Executing batch with \" + this.requests.length + \" requests.\", 1 /* Info */);\r\n if (this.requests.length < 1) {\r\n Logger.write(\"Resolving empty batch.\", 1 /* Info */);\r\n return [2 /*return*/, Promise.resolve()];\r\n }\r\n client = new GraphHttpClient(this.runtime);\r\n requests = this.requests.slice();\r\n _loop_1 = function () {\r\n var requestsChunk, batchRequest, batchOptions, queryUrl;\r\n return __generator(this, function (_b) {\r\n switch (_b.label) {\r\n case 0:\r\n requestsChunk = requests.splice(0, this_1.maxRequests);\r\n batchRequest = {\r\n requests: this_1.formatRequests(requestsChunk),\r\n };\r\n batchOptions = {\r\n body: jsS(batchRequest),\r\n headers: {\r\n \"Accept\": \"application/json\",\r\n \"Content-Type\": \"application/json\",\r\n },\r\n method: \"POST\",\r\n };\r\n Logger.write(\"[\" + this_1.batchId + \"] (\" + (new Date()).getTime() + \") Sending batch request.\", 1 /* Info */);\r\n return [4 /*yield*/, toAbsoluteUrl(this_1.batchUrl, this_1.runtime)];\r\n case 1:\r\n queryUrl = _b.sent();\r\n return [4 /*yield*/, client.fetch(queryUrl, batchOptions)\r\n .then(function (r) { return r.json(); })\r\n .then(function (j) { return _this.parseResponse(requestsChunk, j); })\r\n .then(function (parsedResponse) {\r\n Logger.write(\"[\" + _this.batchId + \"] (\" + (new Date()).getTime() + \") Resolving batched requests.\", 1 /* Info */);\r\n parsedResponse.responses.reduce(function (chain, response, index) {\r\n var request = requestsChunk[index];\r\n Logger.write(\"[\" + _this.batchId + \"] (\" + (new Date()).getTime() + \") Resolving batched request \" + request.method + \" \" + request.url + \".\", 0 /* Verbose */);\r\n return chain.then(function () { return request.parser.parse(response).then(request.resolve).catch(request.reject); });\r\n }, Promise.resolve());\r\n }).catch(function (e) {\r\n throw e;\r\n })];\r\n case 2:\r\n _b.sent();\r\n return [2 /*return*/];\r\n }\r\n });\r\n };\r\n this_1 = this;\r\n _a.label = 1;\r\n case 1:\r\n if (!(requests.length > 0)) return [3 /*break*/, 3];\r\n return [5 /*yield**/, _loop_1()];\r\n case 2:\r\n _a.sent();\r\n return [3 /*break*/, 1];\r\n case 3: return [2 /*return*/];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Urls come to the batch absolute, but the processor expects relative\r\n * @param url Url to ensure is relative\r\n */\r\n GraphBatch.prototype.makeUrlRelative = function (url) {\r\n if (!isUrlAbsolute(url)) {\r\n // already not absolute, just give it back\r\n return url;\r\n }\r\n var index = url.indexOf(\"/v1.0/\");\r\n if (index < 0) {\r\n index = url.indexOf(\"/beta/\");\r\n if (index > -1) {\r\n // beta url\r\n return url.substr(index + 6);\r\n }\r\n }\r\n else {\r\n // v1.0 url\r\n return url.substr(index + 5);\r\n }\r\n // no idea\r\n return url;\r\n };\r\n GraphBatch.prototype.formatRequests = function (requests) {\r\n var _this = this;\r\n return requests.map(function (reqInfo, index) {\r\n var _a;\r\n var requestFragment = {\r\n id: \"\" + ++index,\r\n method: reqInfo.method,\r\n url: _this.makeUrlRelative(reqInfo.url),\r\n };\r\n var headers = {};\r\n // merge runtime headers\r\n headers = assign(headers, (_a = _this.runtime.get(\"graph\")) === null || _a === void 0 ? void 0 : _a.headers);\r\n if (reqInfo.options !== undefined) {\r\n // merge per request headers\r\n if (reqInfo.options.headers !== undefined && reqInfo.options.headers !== null) {\r\n headers = assign(headers, reqInfo.options.headers);\r\n }\r\n // all non-get requests need their own content-type header\r\n if (reqInfo.method !== \"GET\") {\r\n headers[\"Content-Type\"] = \"application/json\";\r\n }\r\n // add a request body\r\n if (reqInfo.options.body !== undefined && reqInfo.options.body !== null) {\r\n // we need to parse the body which was previously turned into a string\r\n requestFragment = assign(requestFragment, {\r\n body: JSON.parse(reqInfo.options.body),\r\n });\r\n }\r\n }\r\n requestFragment = assign(requestFragment, {\r\n headers: headers,\r\n });\r\n return requestFragment;\r\n });\r\n };\r\n GraphBatch.prototype.parseResponse = function (requests, graphResponse) {\r\n return new Promise(function (resolve, reject) {\r\n // we need to see if we have an error and report that\r\n if (hOP(graphResponse, \"error\")) {\r\n return reject(Error(\"Error Porcessing Batch: (\" + graphResponse.error.code + \") \" + graphResponse.error.message));\r\n }\r\n var parsedResponses = new Array(requests.length).fill(null);\r\n for (var i = 0; i < graphResponse.responses.length; ++i) {\r\n var response = graphResponse.responses[i];\r\n // we create the request id by adding 1 to the index, so we place the response by subtracting one to match\r\n // the array of requests and make it easier to map them by index\r\n var responseId = parseInt(response.id, 10) - 1;\r\n if (response.status === 204) {\r\n parsedResponses[responseId] = new Response();\r\n }\r\n else {\r\n parsedResponses[responseId] = new Response(JSON.stringify(response.body), response);\r\n }\r\n }\r\n resolve({\r\n nextLink: graphResponse.nextLink,\r\n responses: parsedResponses,\r\n });\r\n });\r\n };\r\n return GraphBatch;\r\n}(Batch));\r\nexport { GraphBatch };\r\n//# sourceMappingURL=batch.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "name": "./node_modules/@pnp/graph/rest.js", - "index": 695, - "index2": 720, - "size": 2347, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "name": "./node_modules/@pnp/graph/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rest.js", - "loc": "1:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rest.js", - "loc": "1:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rest.js", - "loc": "1:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../rest.js", - "loc": "1:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "module": "./node_modules/@pnp/graph/groups/index.js", - "moduleName": "./node_modules/@pnp/graph/groups/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../rest.js", - "loc": "1:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony import specifier", - "userRequest": "../rest.js", - "loc": "4:23-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "module": "./node_modules/@pnp/graph/groups/index.js", - "moduleName": "./node_modules/@pnp/graph/groups/index.js", - "type": "harmony import specifier", - "userRequest": "../rest.js", - "loc": "4:23-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony import specifier", - "userRequest": "../rest.js", - "loc": "14:23-32" - } - ], - "usedExports": [ - "graph", - "GraphRest" - ], - "providedExports": [ - "GraphRest", - "graph" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { setup as _setup, } from \"./graphlibconfig.js\";\r\nimport { GraphBatch } from \"./batch.js\";\r\nimport { Runtime, DefaultRuntime } from \"@pnp/common\";\r\nvar GraphRest = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of the SPRest class\r\n *\r\n * @param options Additional options\r\n * @param baseUrl A string that should form the base part of the url\r\n */\r\n function GraphRest(_options, _baseUrl, _runtime) {\r\n if (_options === void 0) { _options = {}; }\r\n if (_baseUrl === void 0) { _baseUrl = \"v1.0\"; }\r\n if (_runtime === void 0) { _runtime = DefaultRuntime; }\r\n this._options = _options;\r\n this._baseUrl = _baseUrl;\r\n this._runtime = _runtime;\r\n }\r\n GraphRest.prototype.createBatch = function () {\r\n return new GraphBatch().setRuntime(this._runtime);\r\n };\r\n GraphRest.prototype.setup = function (config) {\r\n if (config.pageContext) {\r\n _setup({\r\n spfxContext: config,\r\n }, this._runtime);\r\n }\r\n else {\r\n _setup(config, this._runtime);\r\n }\r\n };\r\n GraphRest.prototype.createIsolated = function (init) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var baseUrl, cloneGlobal, options, config, runtime;\r\n return __generator(this, function (_a) {\r\n // merge our defaults\r\n init = Object.assign({\r\n baseUrl: \"v1.0\",\r\n cloneGlobal: true,\r\n config: {},\r\n options: {},\r\n }, init || {});\r\n baseUrl = init.baseUrl, cloneGlobal = init.cloneGlobal, options = init.options, config = init.config;\r\n runtime = cloneGlobal ? new Runtime(DefaultRuntime.export()) : new Runtime();\r\n runtime.assign(config);\r\n return [2 /*return*/, new GraphRest(options, baseUrl, runtime)];\r\n });\r\n });\r\n };\r\n GraphRest.prototype.childConfigHook = function (callback) {\r\n return callback({ options: this._options, baseUrl: this._baseUrl, runtime: this._runtime });\r\n };\r\n return GraphRest;\r\n}());\r\nexport { GraphRest };\r\nexport var graph = new GraphRest();\r\n//# sourceMappingURL=rest.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/types.js", - "name": "./node_modules/@pnp/graph/types.js", - "index": 726, - "index2": 721, - "size": 759, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/graphqueryable.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "name": "./node_modules/@pnp/graph/graphqueryable.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "./types.js", - "loc": "4:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types.js", - "loc": "5:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types.js", - "loc": "5:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "./types.js", - "loc": "95:24-38" - } - ], - "usedExports": [ - "GraphEndpoints" - ], - "providedExports": [ - "GraphEndpoints" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var GraphEndpoints = /** @class */ (function () {\r\n function GraphEndpoints() {\r\n }\r\n /**\r\n *\r\n * @param url The url to set the endpoint\r\n */\r\n GraphEndpoints.ensure = function (url, endpoint) {\r\n var all = [GraphEndpoints.Beta, GraphEndpoints.V1];\r\n var regex = new RegExp(endpoint, \"i\");\r\n var replaces = all.filter(function (s) { return !regex.test(s); }).map(function (s) { return s.replace(\".\", \"\\\\.\"); });\r\n regex = new RegExp(\"/?(\" + replaces.join(\"|\") + \")/?\", \"ig\");\r\n return url.replace(regex, \"/\" + endpoint + \"/\");\r\n };\r\n GraphEndpoints.Beta = \"beta\";\r\n GraphEndpoints.V1 = \"v1.0\";\r\n return GraphEndpoints;\r\n}());\r\nexport { GraphEndpoints };\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "name": "./node_modules/@pnp/graph/operations.js", - "index": 727, - "index2": 722, - "size": 2339, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/groups/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony side effect evaluation", - "userRequest": "./operations.js", - "loc": "2:0-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../operations.js", - "loc": "5:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "./operations.js", - "loc": "5:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../operations.js", - "loc": "6:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./operations.js", - "loc": "6:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./operations.js", - "loc": "6:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "21:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "30:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "35:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "./operations.js", - "loc": "37:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "38:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "41:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "47:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "54:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "./operations.js", - "loc": "56:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "61:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "65:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "./operations.js", - "loc": "76:23-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "./operations.js", - "loc": "77:15-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "./operations.js", - "loc": "80:15-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "./operations.js", - "loc": "95:23-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "./operations.js", - "loc": "115:23-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../operations.js", - "loc": "119:45-54" - } - ], - "usedExports": [ - "graphGet", - "graphPost", - "graphDelete", - "graphPatch" - ], - "providedExports": [ - "registerCustomRequestClientFactory", - "graphGet", - "graphPost", - "graphDelete", - "graphPatch", - "graphPut" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __awaiter, __generator } from \"tslib\";\r\nimport { isFunc, mergeOptions, objectDefinedNotNull } from \"@pnp/common\";\r\nimport { defaultPipelineBinder, cloneQueryableData } from \"@pnp/odata\";\r\nimport { GraphHttpClient } from \"./graphhttpclient.js\";\r\nimport { toAbsoluteUrl } from \"./utils/toabsoluteurl.js\";\r\nexport function registerCustomRequestClientFactory(requestClientFactory) {\r\n httpClientFactory = isFunc(requestClientFactory) ? function () { return requestClientFactory; } : defaultFactory;\r\n}\r\nvar defaultFactory = function (runtime) { return function () { return new GraphHttpClient(runtime); }; };\r\nvar httpClientFactory = defaultFactory;\r\nvar send = function (method) {\r\n return function (o, options) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var runtime, operation, data, batchDependency, url;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n runtime = o.getRuntime();\r\n operation = defaultPipelineBinder(httpClientFactory(runtime))(method);\r\n data = cloneQueryableData(o.data);\r\n batchDependency = objectDefinedNotNull(data.batch) ? data.batch.addDependency() : function () {\r\n return;\r\n };\r\n return [4 /*yield*/, toAbsoluteUrl(o.toUrlAndQuery(), runtime)];\r\n case 1:\r\n url = _a.sent();\r\n mergeOptions(data.options, options);\r\n return [2 /*return*/, operation(Object.assign({}, data, {\r\n batchDependency: batchDependency,\r\n url: url,\r\n }))];\r\n }\r\n });\r\n });\r\n };\r\n};\r\nexport var graphGet = function (o, options) { return send(\"GET\")(o, options); };\r\nexport var graphPost = function (o, options) { return send(\"POST\")(o, options); };\r\nexport var graphDelete = function (o, options) { return send(\"DELETE\")(o, options); };\r\nexport var graphPatch = function (o, options) { return send(\"PATCH\")(o, options); };\r\nexport var graphPut = function (o, options) { return send(\"PUT\")(o, options); };\r\n//# sourceMappingURL=operations.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "name": "./node_modules/@pnp/graph/graphqueryable.js", - "index": 725, - "index2": 723, - "size": 8681, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/directory-objects/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../graphqueryable.js", - "loc": "2:0-113" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../graphqueryable.js", - "loc": "2:0-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./graphqueryable.js", - "loc": "3:0-140" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./graphqueryable.js", - "loc": "3:0-140" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./graphqueryable.js", - "loc": "3:0-140" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./graphqueryable.js", - "loc": "3:0-140" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "module": "./node_modules/@pnp/graph/index.js", - "moduleName": "./node_modules/@pnp/graph/index.js", - "type": "harmony export imported specifier", - "userRequest": "./graphqueryable.js", - "loc": "3:0-140" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../graphqueryable.js", - "loc": "4:0-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "44:2-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "46:29-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "57:18-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "68:2-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "70:19-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "72:2-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "74:30-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "80:2-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "82:19-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "82:20-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "135:2-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../graphqueryable.js", - "loc": "137:20-41" - } - ], - "usedExports": [ - "graphInvokableFactory", - "_GraphQueryableCollection", - "_GraphQueryableInstance" - ], - "providedExports": [ - "graphInvokableFactory", - "_GraphQueryable", - "GraphQueryable", - "_GraphQueryableCollection", - "GraphQueryableCollection", - "_GraphQueryableSearchableCollection", - "GraphQueryableSearchableCollection", - "_GraphQueryableInstance", - "GraphQueryableInstance" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __extends } from \"tslib\";\r\nimport { combine } from \"@pnp/common\";\r\nimport { Queryable, invokableFactory } from \"@pnp/odata\";\r\nimport { GraphEndpoints } from \"./types.js\";\r\nimport { graphGet } from \"./operations.js\";\r\nexport var graphInvokableFactory = function (f) {\r\n return invokableFactory(f);\r\n};\r\n/**\r\n * Queryable Base Class\r\n *\r\n */\r\nvar _GraphQueryable = /** @class */ (function (_super) {\r\n __extends(_GraphQueryable, _super);\r\n /**\r\n * Creates a new instance of the Queryable class\r\n *\r\n * @constructor\r\n * @param baseUrl A string or Queryable that should form the base part of the url\r\n *\r\n */\r\n function _GraphQueryable(baseUrl, path) {\r\n var _this = this;\r\n var url = \"\";\r\n var parentUrl = \"\";\r\n var query = new Map();\r\n if (typeof baseUrl === \"string\") {\r\n parentUrl = baseUrl;\r\n url = combine(parentUrl, path);\r\n }\r\n else {\r\n parentUrl = baseUrl.toUrl();\r\n url = combine(parentUrl, path);\r\n }\r\n _this = _super.call(this, {\r\n parentUrl: parentUrl,\r\n query: query,\r\n url: url,\r\n }) || this;\r\n // post init actions\r\n if (typeof baseUrl !== \"string\") {\r\n _this.configureFrom(baseUrl);\r\n }\r\n return _this;\r\n }\r\n /**\r\n * Choose which fields to return\r\n *\r\n * @param selects One or more fields to return\r\n */\r\n _GraphQueryable.prototype.select = function () {\r\n var selects = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n selects[_i] = arguments[_i];\r\n }\r\n if (selects.length > 0) {\r\n this.query.set(\"$select\", selects.map(encodeURIComponent).join(\",\"));\r\n }\r\n return this;\r\n };\r\n /**\r\n * Expands fields such as lookups to get additional data\r\n *\r\n * @param expands The Fields for which to expand the values\r\n */\r\n _GraphQueryable.prototype.expand = function () {\r\n var expands = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n expands[_i] = arguments[_i];\r\n }\r\n if (expands.length > 0) {\r\n this.query.set(\"$expand\", expands.map(encodeURIComponent).join(\",\"));\r\n }\r\n return this;\r\n };\r\n _GraphQueryable.prototype.defaultAction = function (options) {\r\n return graphGet(this, options);\r\n };\r\n _GraphQueryable.prototype.get = function (options) {\r\n return graphGet(this, options);\r\n };\r\n /**\r\n * Gets the full url with query information\r\n *\r\n */\r\n _GraphQueryable.prototype.toUrlAndQuery = function () {\r\n var url = this.toUrl();\r\n if (this.query.size > 0) {\r\n var char = url.indexOf(\"?\") > -1 ? \"&\" : \"?\";\r\n url += \"\" + char + Array.from(this.query).map(function (v) { return v[0] + \"=\" + v[1]; }).join(\"&\");\r\n }\r\n return url;\r\n };\r\n _GraphQueryable.prototype.setEndpoint = function (endpoint) {\r\n this.data.url = GraphEndpoints.ensure(this.data.url, endpoint);\r\n return this;\r\n };\r\n /**\r\n * Clones this queryable into a new queryable instance of T\r\n * @param factory Constructor used to create the new instance\r\n * @param additionalPath Any additional path to include in the clone\r\n * @param includeBatch If true this instance's batch will be added to the cloned instance\r\n * @param includeQuery If true all of the query values will be copied to the cloned instance\r\n */\r\n _GraphQueryable.prototype.clone = function (factory, additionalPath, includeBatch, includeQuery) {\r\n if (includeBatch === void 0) { includeBatch = true; }\r\n if (includeQuery === void 0) { includeQuery = false; }\r\n return _super.prototype.cloneTo.call(this, factory(this, additionalPath), { includeBatch: includeBatch, includeQuery: includeQuery });\r\n };\r\n /**\r\n * Gets a parent for this instance as specified\r\n *\r\n * @param factory The contructor for the class to create\r\n */\r\n _GraphQueryable.prototype.getParent = function (factory, baseUrl, path) {\r\n if (baseUrl === void 0) { baseUrl = this.parentUrl; }\r\n return new factory(baseUrl, path);\r\n };\r\n /**\r\n * Gets the current base url of this object (https://graph.microsoft.com/v1.0 or https://graph.microsoft.com/beta)\r\n */\r\n _GraphQueryable.prototype.getUrlBase = function () {\r\n var url = this.toUrl();\r\n var index = url.indexOf(\"v1.0/\");\r\n if (index > -1) {\r\n return url.substring(0, index + 5);\r\n }\r\n index = url.indexOf(\"beta/\");\r\n if (index > -1) {\r\n return url.substring(0, index + 5);\r\n }\r\n return url;\r\n };\r\n return _GraphQueryable;\r\n}(Queryable));\r\nexport { _GraphQueryable };\r\nexport var GraphQueryable = graphInvokableFactory(_GraphQueryable);\r\n/**\r\n * Represents a REST collection which can be filtered, paged, and selected\r\n *\r\n */\r\nvar _GraphQueryableCollection = /** @class */ (function (_super) {\r\n __extends(_GraphQueryableCollection, _super);\r\n function _GraphQueryableCollection() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n *\r\n * @param filter The string representing the filter query\r\n */\r\n _GraphQueryableCollection.prototype.filter = function (filter) {\r\n this.query.set(\"$filter\", filter);\r\n return this;\r\n };\r\n /**\r\n * Orders based on the supplied fields\r\n *\r\n * @param orderby The name of the field on which to sort\r\n * @param ascending If false DESC is appended, otherwise ASC (default)\r\n */\r\n _GraphQueryableCollection.prototype.orderBy = function (orderBy, ascending) {\r\n if (ascending === void 0) { ascending = true; }\r\n var o = \"$orderby\";\r\n var query = this.query.has(o) ? this.query.get(o).split(\",\") : [];\r\n query.push(encodeURIComponent(orderBy) + \" \" + (ascending ? \"asc\" : \"desc\"));\r\n this.query.set(o, query.join(\",\"));\r\n return this;\r\n };\r\n /**\r\n * Limits the query to only return the specified number of items\r\n *\r\n * @param top The query row limit\r\n */\r\n _GraphQueryableCollection.prototype.top = function (top) {\r\n this.query.set(\"$top\", top.toString());\r\n return this;\r\n };\r\n /**\r\n * Skips a set number of items in the return set\r\n *\r\n * @param num Number of items to skip\r\n */\r\n _GraphQueryableCollection.prototype.skip = function (num) {\r\n this.query.set(\"$skip\", num.toString());\r\n return this;\r\n };\r\n /**\r\n * \tTo request second and subsequent pages of Graph data\r\n */\r\n _GraphQueryableCollection.prototype.skipToken = function (token) {\r\n this.query.set(\"$skiptoken\", token);\r\n return this;\r\n };\r\n Object.defineProperty(_GraphQueryableCollection.prototype, \"count\", {\r\n /**\r\n * \tRetrieves the total count of matching resources\r\n */\r\n get: function () {\r\n this.query.set(\"$count\", \"true\");\r\n return this;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n return _GraphQueryableCollection;\r\n}(_GraphQueryable));\r\nexport { _GraphQueryableCollection };\r\nexport var GraphQueryableCollection = graphInvokableFactory(_GraphQueryableCollection);\r\nvar _GraphQueryableSearchableCollection = /** @class */ (function (_super) {\r\n __extends(_GraphQueryableSearchableCollection, _super);\r\n function _GraphQueryableSearchableCollection() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * \tTo request second and subsequent pages of Graph data\r\n */\r\n _GraphQueryableSearchableCollection.prototype.search = function (query) {\r\n this.query.set(\"$search\", query);\r\n return this;\r\n };\r\n return _GraphQueryableSearchableCollection;\r\n}(_GraphQueryableCollection));\r\nexport { _GraphQueryableSearchableCollection };\r\nexport var GraphQueryableSearchableCollection = graphInvokableFactory(_GraphQueryableSearchableCollection);\r\n/**\r\n * Represents an instance that can be selected\r\n *\r\n */\r\nvar _GraphQueryableInstance = /** @class */ (function (_super) {\r\n __extends(_GraphQueryableInstance, _super);\r\n function _GraphQueryableInstance() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n return _GraphQueryableInstance;\r\n}(_GraphQueryable));\r\nexport { _GraphQueryableInstance };\r\nexport var GraphQueryableInstance = graphInvokableFactory(_GraphQueryableInstance);\r\n//# sourceMappingURL=graphqueryable.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "name": "./node_modules/@pnp/graph/users/types.js", - "index": 729, - "index2": 727, - "size": 2722, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/users/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "name": "./node_modules/@pnp/graph/users/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types.js", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types.js", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types.js", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types.js", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types.js", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony import specifier", - "userRequest": "./types.js", - "loc": "10:19-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/index.js", - "module": "./node_modules/@pnp/graph/users/index.js", - "moduleName": "./node_modules/@pnp/graph/users/index.js", - "type": "harmony import specifier", - "userRequest": "./types.js", - "loc": "20:19-24" - } - ], - "usedExports": [ - "User", - "Users" - ], - "providedExports": [ - "_User", - "User", - "_Users", - "Users", - "_People", - "People" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __decorate, __extends } from \"tslib\";\r\nimport { _GraphQueryableCollection, graphInvokableFactory } from \"../graphqueryable.js\";\r\nimport { _DirectoryObject, DirectoryObjects } from \"../directory-objects/types.js\";\r\nimport { defaultPath, updateable, deleteable, getById } from \"../decorators.js\";\r\nvar _User = /** @class */ (function (_super) {\r\n __extends(_User, _super);\r\n function _User() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n Object.defineProperty(_User.prototype, \"memberOf\", {\r\n /**\r\n * The groups and directory roles associated with the user\r\n */\r\n get: function () {\r\n return DirectoryObjects(this, \"memberOf\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_User.prototype, \"people\", {\r\n /**\r\n * Retrieve a collection of person objects ordered by their relevance to the user\r\n */\r\n get: function () {\r\n return People(this);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_User.prototype, \"directReports\", {\r\n /**\r\n * People that have direct reports to the user\r\n */\r\n get: function () {\r\n return People(this, \"directReports\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(_User.prototype, \"manager\", {\r\n /**\r\n * The manager associated with this user\r\n */\r\n get: function () {\r\n return User(this, \"manager\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n _User = __decorate([\r\n updateable(),\r\n deleteable()\r\n ], _User);\r\n return _User;\r\n}(_DirectoryObject));\r\nexport { _User };\r\nexport var User = graphInvokableFactory(_User);\r\nvar _Users = /** @class */ (function (_super) {\r\n __extends(_Users, _super);\r\n function _Users() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n _Users = __decorate([\r\n defaultPath(\"users\"),\r\n getById(User)\r\n ], _Users);\r\n return _Users;\r\n}(_GraphQueryableCollection));\r\nexport { _Users };\r\nexport var Users = graphInvokableFactory(_Users);\r\nvar _People = /** @class */ (function (_super) {\r\n __extends(_People, _super);\r\n function _People() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n _People = __decorate([\r\n defaultPath(\"people\")\r\n ], _People);\r\n return _People;\r\n}(_GraphQueryableCollection));\r\nexport { _People };\r\nexport var People = graphInvokableFactory(_People);\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js", - "index": 733, - "index2": 729, - "size": 5671, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/groups/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "module": "./node_modules/@pnp/graph/groups/index.js", - "moduleName": "./node_modules/@pnp/graph/groups/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types.js", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "module": "./node_modules/@pnp/graph/groups/index.js", - "moduleName": "./node_modules/@pnp/graph/groups/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types.js", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "module": "./node_modules/@pnp/graph/groups/index.js", - "moduleName": "./node_modules/@pnp/graph/groups/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types.js", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "module": "./node_modules/@pnp/graph/groups/index.js", - "moduleName": "./node_modules/@pnp/graph/groups/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types.js", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "module": "./node_modules/@pnp/graph/groups/index.js", - "moduleName": "./node_modules/@pnp/graph/groups/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types.js", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "module": "./node_modules/@pnp/graph/groups/index.js", - "moduleName": "./node_modules/@pnp/graph/groups/index.js", - "type": "harmony import specifier", - "userRequest": "./types.js", - "loc": "10:19-25" - } - ], - "usedExports": [ - "Groups" - ], - "providedExports": [ - "GroupType", - "_Group", - "Group", - "_Groups", - "Groups" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __awaiter, __decorate, __extends, __generator } from \"tslib\";\r\nimport { assign } from \"@pnp/common\";\r\nimport { body } from \"@pnp/odata\";\r\nimport { _GraphQueryableCollection, graphInvokableFactory } from \"../graphqueryable.js\";\r\nimport { defaultPath, deleteable, updateable, getById } from \"../decorators.js\";\r\nimport { graphPost } from \"../operations.js\";\r\nimport { _DirectoryObject } from \"../directory-objects/types.js\";\r\nexport var GroupType;\r\n(function (GroupType) {\r\n /**\r\n * Office 365 (aka unified group)\r\n */\r\n GroupType[GroupType[\"Office365\"] = 0] = \"Office365\";\r\n /**\r\n * Dynamic membership\r\n */\r\n GroupType[GroupType[\"Dynamic\"] = 1] = \"Dynamic\";\r\n /**\r\n * Security\r\n */\r\n GroupType[GroupType[\"Security\"] = 2] = \"Security\";\r\n})(GroupType || (GroupType = {}));\r\n/**\r\n * Represents a group entity\r\n */\r\nvar _Group = /** @class */ (function (_super) {\r\n __extends(_Group, _super);\r\n function _Group() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Add the group to the list of the current user's favorite groups. Supported for only Office 365 groups\r\n */\r\n _Group.prototype.addFavorite = function () {\r\n return graphPost(this.clone(Group, \"addFavorite\"));\r\n };\r\n /**\r\n * Remove the group from the list of the current user's favorite groups. Supported for only Office 365 groups\r\n */\r\n _Group.prototype.removeFavorite = function () {\r\n return graphPost(this.clone(Group, \"removeFavorite\"));\r\n };\r\n /**\r\n * Reset the unseenCount of all the posts that the current user has not seen since their last visit\r\n */\r\n _Group.prototype.resetUnseenCount = function () {\r\n return graphPost(this.clone(Group, \"resetUnseenCount\"));\r\n };\r\n /**\r\n * Calling this method will enable the current user to receive email notifications for this group,\r\n * about new posts, events, and files in that group. Supported for only Office 365 groups\r\n */\r\n _Group.prototype.subscribeByMail = function () {\r\n return graphPost(this.clone(Group, \"subscribeByMail\"));\r\n };\r\n /**\r\n * Calling this method will prevent the current user from receiving email notifications for this group\r\n * about new posts, events, and files in that group. Supported for only Office 365 groups\r\n */\r\n _Group.prototype.unsubscribeByMail = function () {\r\n return graphPost(this.clone(Group, \"unsubscribeByMail\"));\r\n };\r\n /**\r\n * Get the occurrences, exceptions, and single instances of events in a calendar view defined by a time range, from the default calendar of a group\r\n *\r\n * @param start Start date and time of the time range\r\n * @param end End date and time of the time range\r\n */\r\n _Group.prototype.getCalendarView = function (start, end) {\r\n var view = this.clone(Group, \"calendarView\");\r\n view.query.set(\"startDateTime\", start.toISOString());\r\n view.query.set(\"endDateTime\", end.toISOString());\r\n return view();\r\n };\r\n _Group = __decorate([\r\n deleteable(),\r\n updateable()\r\n ], _Group);\r\n return _Group;\r\n}(_DirectoryObject));\r\nexport { _Group };\r\nexport var Group = graphInvokableFactory(_Group);\r\n/**\r\n * Describes a collection of Field objects\r\n *\r\n */\r\nvar _Groups = /** @class */ (function (_super) {\r\n __extends(_Groups, _super);\r\n function _Groups() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Create a new group as specified in the request body.\r\n *\r\n * @param name Name to display in the address book for the group\r\n * @param mailNickname Mail alias for the group\r\n * @param groupType Type of group being created\r\n * @param additionalProperties A plain object collection of additional properties you want to set on the new group\r\n */\r\n _Groups.prototype.add = function (name, mailNickname, groupType, additionalProperties) {\r\n if (additionalProperties === void 0) { additionalProperties = {}; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n var postBody, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n postBody = assign({\r\n displayName: name,\r\n mailEnabled: groupType === GroupType.Office365,\r\n mailNickname: mailNickname,\r\n securityEnabled: groupType !== GroupType.Office365,\r\n }, additionalProperties);\r\n // include a group type if required\r\n if (groupType !== GroupType.Security) {\r\n postBody = assign(postBody, {\r\n groupTypes: groupType === GroupType.Office365 ? [\"Unified\"] : [\"DynamicMembership\"],\r\n });\r\n }\r\n return [4 /*yield*/, graphPost(this, body(postBody))];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n group: this.getById(data.id),\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n _Groups = __decorate([\r\n defaultPath(\"groups\"),\r\n getById(Group)\r\n ], _Groups);\r\n return _Groups;\r\n}(_GraphQueryableCollection));\r\nexport { _Groups };\r\nexport var Groups = graphInvokableFactory(_Groups);\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.scss.js", - "index": 896, - "index2": 894, - "size": 663, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "16:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "101:33-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "101:113-119" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "103:103-109" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "103:178-184" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "104:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "105:52-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "106:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "107:60-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "108:95-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "110:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "userRequest": "./PlaceholderComponent.module.scss", - "loc": "112:56-62" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/* tslint:disable */\nrequire(\"./PlaceholderComponent.module.css\");\nvar styles = {\n placeholder: 'placeholder_3a8f9e2d',\n placeholderContainer: 'placeholderContainer_3a8f9e2d',\n placeholderHead: 'placeholderHead_3a8f9e2d',\n placeholderHeadContainer: 'placeholderHeadContainer_3a8f9e2d',\n placeholderIcon: 'placeholderIcon_3a8f9e2d',\n placeholderText: 'placeholderText_3a8f9e2d',\n hide: 'hide_3a8f9e2d',\n placeholderDescription: 'placeholderDescription_3a8f9e2d',\n placeholderDescriptionText: 'placeholderDescriptionText_3a8f9e2d'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=PlaceholderComponent.module.scss.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "index": 302, - "index2": 296, - "size": 3763, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./batch", - "loc": "1:0-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./batch", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Batch" - ], - "providedExports": [ - "Batch" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getGUID } from \"@pnp/common\";\r\nvar Batch = /** @class */ (function () {\r\n function Batch(_batchId) {\r\n if (_batchId === void 0) { _batchId = getGUID(); }\r\n this._batchId = _batchId;\r\n this._reqs = [];\r\n this._deps = [];\r\n this._rDeps = [];\r\n this._index = -1;\r\n }\r\n Object.defineProperty(Batch.prototype, \"batchId\", {\r\n get: function () {\r\n return this._batchId;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(Batch.prototype, \"requests\", {\r\n /**\r\n * The requests contained in this batch\r\n */\r\n get: function () {\r\n // we sort these each time this is accessed\r\n return this._reqs.sort(function (info1, info2) { return info1.index - info2.index; });\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Not meant for use directly\r\n *\r\n * @param batchee The IQueryable for this batch to track in order\r\n */\r\n Batch.prototype.track = function (batchee) {\r\n batchee.data.batch = this;\r\n // we need to track the order requests are added to the batch to ensure we always\r\n // operate on them in order\r\n if (typeof batchee.data.batchIndex === \"undefined\" || batchee.data.batchIndex < 0) {\r\n batchee.data.batchIndex = ++this._index;\r\n }\r\n };\r\n /**\r\n * Adds the given request context to the batch for execution\r\n *\r\n * @param context Details of the request to batch\r\n */\r\n Batch.prototype.add = function (context) {\r\n var info = {\r\n id: context.requestId,\r\n index: context.batchIndex,\r\n method: context.method.toUpperCase(),\r\n options: context.options,\r\n parser: context.parser,\r\n reject: null,\r\n resolve: null,\r\n url: context.url,\r\n };\r\n // we create a new promise that will be resolved within the batch\r\n var p = new Promise(function (resolve, reject) {\r\n info.resolve = resolve;\r\n info.reject = reject;\r\n });\r\n this._reqs.push(info);\r\n return p;\r\n };\r\n /**\r\n * Adds a dependency insuring that some set of actions will occur before a batch is processed.\r\n * MUST be cleared using the returned resolve delegate to allow batches to run\r\n */\r\n Batch.prototype.addDependency = function () {\r\n var resolver = function () { return void (0); };\r\n this._deps.push(new Promise(function (resolve) {\r\n resolver = resolve;\r\n }));\r\n return resolver;\r\n };\r\n /**\r\n * The batch's execute method will not resolve util any promises added here resolve\r\n *\r\n * @param p The dependent promise\r\n */\r\n Batch.prototype.addResolveBatchDependency = function (p) {\r\n this._rDeps.push(p);\r\n };\r\n /**\r\n * Execute the current batch and resolve the associated promises\r\n *\r\n * @returns A promise which will be resolved once all of the batch's child promises have resolved\r\n */\r\n Batch.prototype.execute = function () {\r\n var _this = this;\r\n // we need to check the dependencies twice due to how different engines handle things.\r\n // We can get a second set of promises added during the first set resolving\r\n return Promise.all(this._deps)\r\n .then(function () { return Promise.all(_this._deps); })\r\n .then(function () { return _this.executeImpl(); })\r\n .then(function () { return Promise.all(_this._rDeps); })\r\n .then(function () { return void (0); });\r\n };\r\n return Batch;\r\n}());\r\nexport { Batch };\r\n//# sourceMappingURL=batch.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/caching.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/caching.js", - "index": 303, - "index2": 297, - "size": 1758, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./caching", - "loc": "2:0-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./caching", - "loc": "2:0-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony side effect evaluation", - "userRequest": "./caching", - "loc": "4:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "./caching", - "loc": "107:39-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "./caching", - "loc": "135:37-57" - } - ], - "usedExports": [ - "CachingOptions", - "CachingParserWrapper" - ], - "providedExports": [ - "CachingOptions", - "CachingParserWrapper" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { RuntimeConfig, dateAdd, PnPClientStorage } from \"@pnp/common\";\r\nvar CachingOptions = /** @class */ (function () {\r\n function CachingOptions(key, storeName, expiration) {\r\n if (storeName === void 0) { storeName = RuntimeConfig.defaultCachingStore; }\r\n if (expiration === void 0) { expiration = dateAdd(new Date(), \"second\", RuntimeConfig.defaultCachingTimeoutSeconds); }\r\n this.key = key;\r\n this.storeName = storeName;\r\n this.expiration = expiration;\r\n }\r\n Object.defineProperty(CachingOptions.prototype, \"store\", {\r\n get: function () {\r\n if (this.storeName === \"local\") {\r\n return CachingOptions.storage.local;\r\n }\r\n else {\r\n return CachingOptions.storage.session;\r\n }\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n CachingOptions.storage = new PnPClientStorage();\r\n return CachingOptions;\r\n}());\r\nexport { CachingOptions };\r\nvar CachingParserWrapper = /** @class */ (function () {\r\n function CachingParserWrapper(parser, cacheOptions) {\r\n this.parser = parser;\r\n this.cacheOptions = cacheOptions;\r\n }\r\n CachingParserWrapper.prototype.parse = function (response) {\r\n var _this = this;\r\n return this.parser.parse(response).then(function (r) { return _this.cacheData(r); });\r\n };\r\n CachingParserWrapper.prototype.cacheData = function (data) {\r\n if (this.cacheOptions.store !== null) {\r\n this.cacheOptions.store.put(this.cacheOptions.key, data, this.cacheOptions.expiration);\r\n }\r\n return data;\r\n };\r\n return CachingParserWrapper;\r\n}());\r\nexport { CachingParserWrapper };\r\n//# sourceMappingURL=caching.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/add-prop.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/add-prop.js", - "index": 304, - "index2": 298, - "size": 586, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./add-prop", - "loc": "3:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./add-prop", - "loc": "3:0-27" - } - ], - "usedExports": [ - "addProp" - ], - "providedExports": [ - "addProp" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\r\n * Adds a property to a target instance\r\n *\r\n * @param target The object to whose prototype we will add a property\r\n * @param name Property name\r\n * @param factory Factory method used to produce the property value\r\n * @param path Any additional path required to produce the value\r\n */\r\nexport function addProp(target, name, factory, path) {\r\n Reflect.defineProperty(target.prototype, name, {\r\n configurable: true,\r\n enumerable: true,\r\n get: function () {\r\n return factory(this, path);\r\n },\r\n });\r\n}\r\n//# sourceMappingURL=add-prop.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-extensions.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-extensions.js", - "index": 306, - "index2": 299, - "size": 4270, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "./invokable-extensions", - "loc": "3:0-84" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./invokable-extensions", - "loc": "10:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions", - "loc": "10:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions", - "loc": "10:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions", - "loc": "10:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions", - "loc": "10:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions", - "loc": "10:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions", - "loc": "10:0-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions", - "loc": "25:29-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions", - "loc": "27:27-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions", - "loc": "36:27-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions", - "loc": "45:27-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions", - "loc": "54:27-45" - } - ], - "usedExports": [ - "applyFactoryExtensions", - "extensionOrDefault" - ], - "providedExports": [ - "extendGlobal", - "extendObj", - "extendFactory", - "clearGlobalExtensions", - "disableExtensions", - "enableExtensions", - "applyFactoryExtensions", - "extensionOrDefault" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __read, __spread } from \"tslib\";\r\nimport { isFunc, isArray } from \"@pnp/common\";\r\nvar _enableExtensions = false;\r\nvar globaExtensions = [];\r\nvar ObjExtensionsSym = Symbol(\"__extensions\");\r\n/**\r\n * Creates global extensions across all invokable objects\r\n *\r\n * @param e The global extensions to apply\r\n */\r\nexport var extendGlobal = function (e) {\r\n _enableExtensions = true;\r\n extendCol(globaExtensions, e);\r\n};\r\n/**\r\n * Applies the supplied extensions to a single instance\r\n *\r\n * @param target Object to which extensions are applied\r\n * @param extensions Extensions to apply\r\n */\r\nexport var extendObj = function (target, extensions) {\r\n _enableExtensions = true;\r\n if (!Reflect.has(target, ObjExtensionsSym)) {\r\n Reflect.set(target, ObjExtensionsSym, []);\r\n }\r\n extendCol(Reflect.get(target, ObjExtensionsSym), extensions);\r\n return target;\r\n};\r\n/**\r\n * Allows applying extensions to all instances created from the supplied factory\r\n *\r\n * @param factory The Invokable Factory method to extend\r\n * @param extensions Extensions to apply\r\n */\r\nexport var extendFactory = function (factory, extensions) {\r\n _enableExtensions = true;\r\n if (factory.__proto__[ObjExtensionsSym] === undefined) {\r\n factory.__proto__[ObjExtensionsSym] = [];\r\n }\r\n extendCol(factory.__proto__[ObjExtensionsSym], extensions);\r\n};\r\nfunction extendCol(a, e) {\r\n if (isArray(e)) {\r\n // @ts-ignore\r\n a.push.apply(a, __spread(e));\r\n }\r\n else {\r\n // @ts-ignore\r\n a.push(e);\r\n }\r\n}\r\n/**\r\n * Clears all global extensions\r\n */\r\nexport var clearGlobalExtensions = function () {\r\n globaExtensions.length = 0;\r\n};\r\n/**\r\n * Disables all extensions\r\n */\r\nexport var disableExtensions = function () {\r\n _enableExtensions = false;\r\n};\r\n/**\r\n * Enables all extensions\r\n */\r\nexport var enableExtensions = function () {\r\n _enableExtensions = true;\r\n};\r\n/**\r\n * Applies a set of extension previously applied to a factory using extendFactory to an object created from that factory\r\n *\r\n * @param factory\r\n * @param args\r\n */\r\nexport var applyFactoryExtensions = function (factory, args) {\r\n var o = factory(args);\r\n if (factory.__proto__[ObjExtensionsSym]) {\r\n o = extendObj(o, factory.__proto__[ObjExtensionsSym]);\r\n }\r\n return o;\r\n};\r\nexport function extensionOrDefault(op, or, target) {\r\n var rest = [];\r\n for (var _i = 3; _i < arguments.length; _i++) {\r\n rest[_i - 3] = arguments[_i];\r\n }\r\n if (_enableExtensions) {\r\n var extensions = [];\r\n // we need to first invoke extensions tied to only this object\r\n if (Reflect.has(target, ObjExtensionsSym)) {\r\n extensions.push.apply(extensions, __spread(Reflect.get(target, ObjExtensionsSym)));\r\n }\r\n // second we need to process any global extensions\r\n extensions.push.apply(extensions, __spread(globaExtensions));\r\n for (var i = 0; i < extensions.length; i++) {\r\n var extension = extensions[i];\r\n var result = undefined;\r\n if (isFunc(extension)) {\r\n // this extension is a function which we call\r\n result = extension.apply(void 0, __spread([op, target], rest));\r\n }\r\n else if (op === \"get\" && Reflect.has(extension, rest[0])) {\r\n // this extension is a named extension meaning we are overriding a specific method/property\r\n result = Reflect.get(extension, rest[0], target);\r\n }\r\n else if (Reflect.has(extension, op)) {\r\n // this extension is a ProxyHandler that has a handler defined for {op} so we pass control and see if we get a result\r\n result = Reflect.get(extension, op).apply(void 0, __spread([target], rest));\r\n }\r\n if (typeof result !== \"undefined\") {\r\n // if a extension returned a result, we return that\r\n // this means that this extension overrides any other extensions and no more are executed\r\n // first extension in the list to return \"wins\"\r\n return result;\r\n }\r\n }\r\n }\r\n return or.apply(void 0, __spread([target], rest));\r\n}\r\n//# sourceMappingURL=invokable-extensions.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/invokable-binder.js", - "index": 305, - "index2": 300, - "size": 3035, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./invokable-binder", - "loc": "4:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-binder", - "loc": "4:0-35" - } - ], - "usedExports": [ - "invokableFactory" - ], - "providedExports": [ - "invokableFactory" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __read, __spread } from \"tslib\";\r\nimport { RuntimeConfig } from \"@pnp/common\";\r\nimport { extensionOrDefault, applyFactoryExtensions } from \"./invokable-extensions\";\r\nvar invokableBinder = function (invoker) { return function (constructor) {\r\n return function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n var factory = function (as) {\r\n var r = Object.assign(function () {\r\n var ags = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n ags[_i] = arguments[_i];\r\n }\r\n return invoker.apply(r, ags);\r\n }, new (constructor.bind.apply(constructor, __spread([void 0], as)))());\r\n Reflect.setPrototypeOf(r, constructor.prototype);\r\n return r;\r\n };\r\n if (RuntimeConfig.ie11) {\r\n return factory(args);\r\n }\r\n else {\r\n return new Proxy(applyFactoryExtensions(factory, args), {\r\n apply: function (target, _thisArg, argArray) {\r\n return extensionOrDefault(\"apply\", function () {\r\n var a = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n a[_i] = arguments[_i];\r\n }\r\n return Reflect.apply(a[0], a[1], a[2]);\r\n }, target, _thisArg, argArray);\r\n },\r\n get: function (target, p, receiver) {\r\n return extensionOrDefault(\"get\", function () {\r\n var a = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n a[_i] = arguments[_i];\r\n }\r\n return Reflect.get(a[0], a[1], a[2]);\r\n }, target, p, receiver);\r\n },\r\n has: function (target, p) {\r\n return extensionOrDefault(\"has\", function () {\r\n var a = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n a[_i] = arguments[_i];\r\n }\r\n return Reflect.has(a[0], a[1]);\r\n }, target, p);\r\n },\r\n set: function (target, p, value, receiver) {\r\n return extensionOrDefault(\"set\", function () {\r\n var a = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n a[_i] = arguments[_i];\r\n }\r\n return Reflect.set(a[0], a[1], a[2], a[3]);\r\n }, target, p, value, receiver);\r\n },\r\n });\r\n }\r\n };\r\n}; };\r\nexport var invokableFactory = invokableBinder(function (options) {\r\n return this.defaultAction(options);\r\n});\r\n//# sourceMappingURL=invokable-binder.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/parsers.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/parsers.js", - "index": 308, - "index2": 301, - "size": 5566, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "./parsers", - "loc": "1:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/queryable.js", - "type": "harmony side effect evaluation", - "userRequest": "./parsers", - "loc": "3:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./parsers", - "loc": "6:0-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./parsers", - "loc": "6:0-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "./parsers", - "loc": "27:32-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "./parsers", - "loc": "54:24-35" - } - ], - "usedExports": [ - "ODataParser" - ], - "providedExports": [ - "ODataParser", - "TextParser", - "BlobParser", - "JSONParser", - "BufferParser", - "LambdaParser", - "HttpRequestError" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __awaiter, __extends, __generator } from \"tslib\";\r\nimport { isFunc, hOP } from \"@pnp/common\";\r\nvar ODataParser = /** @class */ (function () {\r\n function ODataParser() {\r\n }\r\n ODataParser.prototype.parse = function (r) {\r\n var _this = this;\r\n return new Promise(function (resolve, reject) {\r\n if (_this.handleError(r, reject)) {\r\n _this.parseImpl(r, resolve, reject);\r\n }\r\n });\r\n };\r\n ODataParser.prototype.parseImpl = function (r, resolve, reject) {\r\n var _this = this;\r\n if ((r.headers.has(\"Content-Length\") && parseFloat(r.headers.get(\"Content-Length\")) === 0) || r.status === 204) {\r\n resolve({});\r\n }\r\n else {\r\n // patch to handle cases of 200 response with no or whitespace only bodies (#487 & #545)\r\n r.text()\r\n .then(function (txt) { return txt.replace(/\\s/ig, \"\").length > 0 ? JSON.parse(txt) : {}; })\r\n .then(function (json) { return resolve(_this.parseODataJSON(json)); })\r\n .catch(function (e) { return reject(e); });\r\n }\r\n };\r\n /**\r\n * Handles a response with ok === false by parsing the body and creating a ProcessHttpClientResponseException\r\n * which is passed to the reject delegate. This method returns true if there is no error, otherwise false\r\n *\r\n * @param r Current response object\r\n * @param reject reject delegate for the surrounding promise\r\n */\r\n ODataParser.prototype.handleError = function (r, reject) {\r\n if (!r.ok) {\r\n HttpRequestError.init(r).then(reject);\r\n }\r\n return r.ok;\r\n };\r\n /**\r\n * Normalizes the json response by removing the various nested levels\r\n *\r\n * @param json json object to parse\r\n */\r\n ODataParser.prototype.parseODataJSON = function (json) {\r\n var result = json;\r\n if (hOP(json, \"d\")) {\r\n if (hOP(json.d, \"results\")) {\r\n result = json.d.results;\r\n }\r\n else {\r\n result = json.d;\r\n }\r\n }\r\n else if (hOP(json, \"value\")) {\r\n result = json.value;\r\n }\r\n return result;\r\n };\r\n return ODataParser;\r\n}());\r\nexport { ODataParser };\r\nvar TextParser = /** @class */ (function (_super) {\r\n __extends(TextParser, _super);\r\n function TextParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n TextParser.prototype.parseImpl = function (r, resolve) {\r\n r.text().then(resolve);\r\n };\r\n return TextParser;\r\n}(ODataParser));\r\nexport { TextParser };\r\nvar BlobParser = /** @class */ (function (_super) {\r\n __extends(BlobParser, _super);\r\n function BlobParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n BlobParser.prototype.parseImpl = function (r, resolve) {\r\n r.blob().then(resolve);\r\n };\r\n return BlobParser;\r\n}(ODataParser));\r\nexport { BlobParser };\r\nvar JSONParser = /** @class */ (function (_super) {\r\n __extends(JSONParser, _super);\r\n function JSONParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n JSONParser.prototype.parseImpl = function (r, resolve) {\r\n r.json().then(resolve);\r\n };\r\n return JSONParser;\r\n}(ODataParser));\r\nexport { JSONParser };\r\nvar BufferParser = /** @class */ (function (_super) {\r\n __extends(BufferParser, _super);\r\n function BufferParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n BufferParser.prototype.parseImpl = function (r, resolve) {\r\n if (isFunc(r.arrayBuffer)) {\r\n r.arrayBuffer().then(resolve);\r\n }\r\n else {\r\n r.buffer().then(resolve);\r\n }\r\n };\r\n return BufferParser;\r\n}(ODataParser));\r\nexport { BufferParser };\r\nvar LambdaParser = /** @class */ (function (_super) {\r\n __extends(LambdaParser, _super);\r\n function LambdaParser(parser) {\r\n var _this = _super.call(this) || this;\r\n _this.parser = parser;\r\n return _this;\r\n }\r\n LambdaParser.prototype.parseImpl = function (r, resolve) {\r\n this.parser(r).then(resolve);\r\n };\r\n return LambdaParser;\r\n}(ODataParser));\r\nexport { LambdaParser };\r\nvar HttpRequestError = /** @class */ (function (_super) {\r\n __extends(HttpRequestError, _super);\r\n function HttpRequestError(message, response, status, statusText) {\r\n if (status === void 0) { status = response.status; }\r\n if (statusText === void 0) { statusText = response.statusText; }\r\n var _this = _super.call(this, message) || this;\r\n _this.response = response;\r\n _this.status = status;\r\n _this.statusText = statusText;\r\n _this.isHttpRequestError = true;\r\n return _this;\r\n }\r\n HttpRequestError.init = function (r) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var t;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, r.clone().text()];\r\n case 1:\r\n t = _a.sent();\r\n return [2 /*return*/, new HttpRequestError(\"Error making HttpClient request in queryable [\" + r.status + \"] \" + r.statusText + \" ::> \" + t, r.clone())];\r\n }\r\n });\r\n });\r\n };\r\n return HttpRequestError;\r\n}(Error));\r\nexport { HttpRequestError };\r\n//# sourceMappingURL=parsers.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/queryable.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/queryable.js", - "index": 309, - "index2": 302, - "size": 8007, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "./queryable", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./queryable", - "loc": "8:0-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./queryable", - "loc": "8:0-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "./queryable", - "loc": "33:19-37" - } - ], - "usedExports": [ - "Queryable", - "cloneQueryableData" - ], - "providedExports": [ - "cloneQueryableData", - "Queryable" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __read, __spread } from \"tslib\";\r\nimport { combine, RuntimeConfig, mergeOptions, objectDefinedNotNull, assign, } from \"@pnp/common\";\r\nimport { ODataParser } from \"./parsers\";\r\nexport function cloneQueryableData(source) {\r\n var s = JSON.stringify(source, function (key, value) {\r\n switch (key) {\r\n case \"query\":\r\n return JSON.stringify(__spread(value));\r\n case \"batch\":\r\n return \"-\";\r\n case \"batchDependency\":\r\n return \"-\";\r\n case \"cachingOptions\":\r\n return \"-\";\r\n case \"clientFactory\":\r\n return \"-\";\r\n case \"parser\":\r\n return \"-\";\r\n default:\r\n return value;\r\n }\r\n }, 0);\r\n var parsed = JSON.parse(s, function (key, value) {\r\n switch (key) {\r\n case \"query\":\r\n return new Map(JSON.parse(value));\r\n case \"batch\":\r\n return source.batch;\r\n case \"batchDependency\":\r\n return source.batchDependency;\r\n case \"cachingOptions\":\r\n return source.cachingOptions;\r\n case \"clientFactory\":\r\n return source.clientFactory;\r\n case \"parser\":\r\n return source.parser;\r\n default:\r\n return value;\r\n }\r\n });\r\n // this handles bodies that cannot be JSON encoded (Blob, etc)\r\n if (source.options && source.options.body) {\r\n parsed.options.body = source.options.body;\r\n }\r\n return parsed;\r\n}\r\nvar Queryable = /** @class */ (function () {\r\n function Queryable(dataSeed) {\r\n if (dataSeed === void 0) { dataSeed = {}; }\r\n this._data = Object.assign({}, {\r\n cloneParentWasCaching: false,\r\n options: {},\r\n parentUrl: \"\",\r\n parser: new ODataParser(),\r\n query: new Map(),\r\n url: \"\",\r\n useCaching: false,\r\n }, cloneQueryableData(dataSeed));\r\n }\r\n Object.defineProperty(Queryable.prototype, \"data\", {\r\n get: function () {\r\n return this._data;\r\n },\r\n set: function (value) {\r\n this._data = Object.assign({}, cloneQueryableData(this.data), cloneQueryableData(value));\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Gets the current url\r\n *\r\n */\r\n Queryable.prototype.toUrl = function () {\r\n return this.data.url;\r\n };\r\n /**\r\n * Directly concatenates the supplied string to the current url, not normalizing \"/\" chars\r\n *\r\n * @param pathPart The string to concatenate to the url\r\n */\r\n Queryable.prototype.concat = function (pathPart) {\r\n this.data.url += pathPart;\r\n return this;\r\n };\r\n Object.defineProperty(Queryable.prototype, \"query\", {\r\n /**\r\n * Provides access to the query builder for this url\r\n *\r\n */\r\n get: function () {\r\n return this.data.query;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Sets custom options for current object and all derived objects accessible via chaining\r\n *\r\n * @param options custom options\r\n */\r\n Queryable.prototype.configure = function (options) {\r\n mergeOptions(this.data.options, options);\r\n return this;\r\n };\r\n /**\r\n * Configures this instance from the configure options of the supplied instance\r\n *\r\n * @param o Instance from which options should be taken\r\n */\r\n Queryable.prototype.configureFrom = function (o) {\r\n mergeOptions(this.data.options, o.data.options);\r\n return this;\r\n };\r\n /**\r\n * Enables caching for this request\r\n *\r\n * @param options Defines the options used when caching this request\r\n */\r\n Queryable.prototype.usingCaching = function (options) {\r\n if (!RuntimeConfig.globalCacheDisable) {\r\n this.data.useCaching = true;\r\n if (options !== undefined) {\r\n this.data.cachingOptions = options;\r\n }\r\n }\r\n return this;\r\n };\r\n Queryable.prototype.usingParser = function (parser) {\r\n this.data.parser = parser;\r\n return this;\r\n };\r\n /**\r\n * Allows you to set a request specific processing pipeline\r\n *\r\n * @param pipeline The set of methods, in order, to execute a given request\r\n */\r\n Queryable.prototype.withPipeline = function (pipeline) {\r\n this.data.pipes = pipeline.slice(0);\r\n return this;\r\n };\r\n /**\r\n * Appends the given string and normalizes \"/\" chars\r\n *\r\n * @param pathPart The string to append\r\n */\r\n Queryable.prototype.append = function (pathPart) {\r\n this.data.url = combine(this.data.url, pathPart);\r\n };\r\n /**\r\n * Adds this query to the supplied batch\r\n *\r\n * @example\r\n * ```\r\n *\r\n * let b = pnp.sp.createBatch();\r\n * pnp.sp.web.inBatch(b).get().then(...);\r\n * b.execute().then(...)\r\n * ```\r\n */\r\n Queryable.prototype.inBatch = function (batch) {\r\n if (this.hasBatch) {\r\n throw Error(\"This query is already part of a batch.\");\r\n }\r\n if (objectDefinedNotNull(batch)) {\r\n batch.track(this);\r\n }\r\n return this;\r\n };\r\n /**\r\n * Blocks a batch call from occuring, MUST be cleared by calling the returned function\r\n */\r\n Queryable.prototype.addBatchDependency = function () {\r\n if (objectDefinedNotNull(this.data.batch)) {\r\n return this.data.batch.addDependency();\r\n }\r\n return function () { return null; };\r\n };\r\n Object.defineProperty(Queryable.prototype, \"hasBatch\", {\r\n /**\r\n * Indicates if the current query has a batch associated\r\n *\r\n */\r\n get: function () {\r\n return objectDefinedNotNull(this.data.batch);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(Queryable.prototype, \"batch\", {\r\n /**\r\n * The batch currently associated with this query or null\r\n *\r\n */\r\n get: function () {\r\n return this.hasBatch ? this.data.batch : null;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(Queryable.prototype, \"parentUrl\", {\r\n /**\r\n * Gets the parent url used when creating this instance\r\n *\r\n */\r\n get: function () {\r\n return this.data.parentUrl;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Clones this instance's data to target\r\n *\r\n * @param target Instance to which data is written\r\n * @param settings [Optional] Settings controlling how clone is applied\r\n */\r\n Queryable.prototype.cloneTo = function (target, settings) {\r\n if (settings === void 0) { settings = {}; }\r\n // default values for settings\r\n settings = assign({\r\n includeBatch: true,\r\n includeQuery: false,\r\n }, settings);\r\n target.data = Object.assign({}, cloneQueryableData(this.data), {\r\n batch: null,\r\n cloneParentCacheOptions: null,\r\n cloneParentWasCaching: false,\r\n }, cloneQueryableData(target.data));\r\n target.configureFrom(this);\r\n if (settings.includeBatch) {\r\n target.inBatch(this.batch);\r\n }\r\n if (settings.includeQuery && this.query.size > 0) {\r\n this.query.forEach(function (v, k) { return target.query.set(k, v); });\r\n }\r\n if (this.data.useCaching) {\r\n target.data.cloneParentWasCaching = true;\r\n target.data.cloneParentCacheOptions = this.data.cachingOptions;\r\n }\r\n return target;\r\n };\r\n return Queryable;\r\n}());\r\nexport { Queryable };\r\n//# sourceMappingURL=queryable.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/logger.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/logging/logger.js", - "index": 312, - "index2": 303, - "size": 4868, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./logger", - "loc": "1:0-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "type": "harmony export imported specifier", - "userRequest": "./logger", - "loc": "1:0-25" - } - ], - "usedExports": [ - "Logger" - ], - "providedExports": [ - "Logger", - "LogLevel" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\r\n * Class used to subscribe ILogListener and log messages throughout an application\r\n *\r\n */\r\nvar Logger = /** @class */ (function () {\r\n function Logger() {\r\n }\r\n Object.defineProperty(Logger, \"activeLogLevel\", {\r\n /**\r\n * Gets or sets the active log level to apply for log filtering\r\n */\r\n get: function () {\r\n return Logger.instance.activeLogLevel;\r\n },\r\n set: function (value) {\r\n Logger.instance.activeLogLevel = value;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(Logger, \"instance\", {\r\n get: function () {\r\n if (Logger._instance === undefined || Logger._instance === null) {\r\n Logger._instance = new LoggerImpl();\r\n }\r\n return Logger._instance;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Adds ILogListener instances to the set of subscribed listeners\r\n *\r\n * @param listeners One or more listeners to subscribe to this log\r\n */\r\n Logger.subscribe = function () {\r\n var listeners = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n listeners[_i] = arguments[_i];\r\n }\r\n listeners.forEach(function (listener) { return Logger.instance.subscribe(listener); });\r\n };\r\n /**\r\n * Clears the subscribers collection, returning the collection before modification\r\n */\r\n Logger.clearSubscribers = function () {\r\n return Logger.instance.clearSubscribers();\r\n };\r\n Object.defineProperty(Logger, \"count\", {\r\n /**\r\n * Gets the current subscriber count\r\n */\r\n get: function () {\r\n return Logger.instance.count;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Writes the supplied string to the subscribed listeners\r\n *\r\n * @param message The message to write\r\n * @param level [Optional] if supplied will be used as the level of the entry (Default: LogLevel.Info)\r\n */\r\n Logger.write = function (message, level) {\r\n if (level === void 0) { level = 1 /* Info */; }\r\n Logger.instance.log({ level: level, message: message });\r\n };\r\n /**\r\n * Writes the supplied string to the subscribed listeners\r\n *\r\n * @param json The json object to stringify and write\r\n * @param level [Optional] if supplied will be used as the level of the entry (Default: LogLevel.Info)\r\n */\r\n Logger.writeJSON = function (json, level) {\r\n if (level === void 0) { level = 1 /* Info */; }\r\n this.write(JSON.stringify(json), level);\r\n };\r\n /**\r\n * Logs the supplied entry to the subscribed listeners\r\n *\r\n * @param entry The message to log\r\n */\r\n Logger.log = function (entry) {\r\n Logger.instance.log(entry);\r\n };\r\n /**\r\n * Logs an error object to the subscribed listeners\r\n *\r\n * @param err The error object\r\n */\r\n Logger.error = function (err) {\r\n Logger.instance.log({ data: err, level: 3 /* Error */, message: err.message });\r\n };\r\n return Logger;\r\n}());\r\nexport { Logger };\r\nvar LoggerImpl = /** @class */ (function () {\r\n function LoggerImpl(activeLogLevel, subscribers) {\r\n if (activeLogLevel === void 0) { activeLogLevel = 2 /* Warning */; }\r\n if (subscribers === void 0) { subscribers = []; }\r\n this.activeLogLevel = activeLogLevel;\r\n this.subscribers = subscribers;\r\n }\r\n LoggerImpl.prototype.subscribe = function (listener) {\r\n this.subscribers.push(listener);\r\n };\r\n LoggerImpl.prototype.clearSubscribers = function () {\r\n var s = this.subscribers.slice(0);\r\n this.subscribers.length = 0;\r\n return s;\r\n };\r\n Object.defineProperty(LoggerImpl.prototype, \"count\", {\r\n get: function () {\r\n return this.subscribers.length;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n LoggerImpl.prototype.write = function (message, level) {\r\n if (level === void 0) { level = 1 /* Info */; }\r\n this.log({ level: level, message: message });\r\n };\r\n LoggerImpl.prototype.log = function (entry) {\r\n if (entry !== undefined && this.activeLogLevel <= entry.level) {\r\n this.subscribers.map(function (subscriber) { return subscriber.log(entry); });\r\n }\r\n };\r\n return LoggerImpl;\r\n}());\r\n/**\r\n * A set of logging levels\r\n */\r\nexport var LogLevel;\r\n(function (LogLevel) {\r\n LogLevel[LogLevel[\"Verbose\"] = 0] = \"Verbose\";\r\n LogLevel[LogLevel[\"Info\"] = 1] = \"Info\";\r\n LogLevel[LogLevel[\"Warning\"] = 2] = \"Warning\";\r\n LogLevel[LogLevel[\"Error\"] = 3] = \"Error\";\r\n LogLevel[LogLevel[\"Off\"] = 99] = \"Off\";\r\n})(LogLevel || (LogLevel = {}));\r\n//# sourceMappingURL=logger.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/listeners.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/logging/listeners.js", - "index": 313, - "index2": 304, - "size": 2168, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./listeners", - "loc": "2:0-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/logging/index.js", - "type": "harmony export imported specifier", - "userRequest": "./listeners", - "loc": "2:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "ConsoleListener", - "FunctionListener" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\r\n * Implementation of LogListener which logs to the console\r\n *\r\n */\r\nvar ConsoleListener = /** @class */ (function () {\r\n function ConsoleListener() {\r\n }\r\n /**\r\n * Any associated data that a given logging listener may choose to log or ignore\r\n *\r\n * @param entry The information to be logged\r\n */\r\n ConsoleListener.prototype.log = function (entry) {\r\n var msg = this.format(entry);\r\n switch (entry.level) {\r\n case 0 /* Verbose */:\r\n case 1 /* Info */:\r\n console.log(msg);\r\n break;\r\n case 2 /* Warning */:\r\n console.warn(msg);\r\n break;\r\n case 3 /* Error */:\r\n console.error(msg);\r\n break;\r\n }\r\n };\r\n /**\r\n * Formats the message\r\n *\r\n * @param entry The information to format into a string\r\n */\r\n ConsoleListener.prototype.format = function (entry) {\r\n var msg = [];\r\n msg.push(\"Message: \" + entry.message);\r\n if (entry.data !== undefined) {\r\n try {\r\n msg.push(\" Data: \" + JSON.stringify(entry.data));\r\n }\r\n catch (e) {\r\n msg.push(\" Data: Error in stringify of supplied data \" + e);\r\n }\r\n }\r\n return msg.join(\"\");\r\n };\r\n return ConsoleListener;\r\n}());\r\nexport { ConsoleListener };\r\n/**\r\n * Implementation of LogListener which logs to the supplied function\r\n *\r\n */\r\nvar FunctionListener = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of the FunctionListener class\r\n *\r\n * @constructor\r\n * @param method The method to which any logging data will be passed\r\n */\r\n function FunctionListener(method) {\r\n this.method = method;\r\n }\r\n /**\r\n * Any associated data that a given logging listener may choose to log or ignore\r\n *\r\n * @param entry The information to be logged\r\n */\r\n FunctionListener.prototype.log = function (entry) {\r\n this.method(entry);\r\n };\r\n return FunctionListener;\r\n}());\r\nexport { FunctionListener };\r\n//# sourceMappingURL=listeners.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline.js", - "index": 310, - "index2": 306, - "size": 9596, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "./pipeline", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./pipeline", - "loc": "7:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./pipeline", - "loc": "7:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "./pipeline", - "loc": "14:23-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "./pipeline", - "loc": "38:50-68" - } - ], - "usedExports": [ - "pipe", - "getDefaultPipeline" - ], - "providedExports": [ - "setResult", - "pipe", - "requestPipelineMethod", - "PipelineMethods", - "getDefaultPipeline" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __decorate } from \"tslib\";\r\nimport { assign, isFunc, hOP } from \"@pnp/common\";\r\nimport { Logger } from \"@pnp/logging\";\r\nimport { CachingOptions, CachingParserWrapper } from \"./caching\";\r\n/**\r\n * Resolves the context's result value\r\n *\r\n * @param context The current context\r\n */\r\nfunction returnResult(context) {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 0 /* Verbose */ ? context.result : {},\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Returning result from pipeline. Set logging to verbose to see data.\",\r\n });\r\n return Promise.resolve(context.result);\r\n}\r\n/**\r\n * Sets the result on the context\r\n */\r\nexport function setResult(context, value) {\r\n return new Promise(function (resolve) {\r\n context.result = value;\r\n context.hasResult = true;\r\n resolve(context);\r\n });\r\n}\r\n/**\r\n * Invokes the next method in the provided context's pipeline\r\n *\r\n * @param c The current request context\r\n */\r\nfunction next(c) {\r\n return c.pipes.length > 0 ? c.pipes.shift()(c) : Promise.resolve(c);\r\n}\r\n/**\r\n * Executes the current request context's pipeline\r\n *\r\n * @param context Current context\r\n */\r\nexport function pipe(context) {\r\n if (context.pipes.length < 1) {\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Request pipeline contains no methods!\", 3 /* Error */);\r\n throw Error(\"Request pipeline contains no methods!\");\r\n }\r\n var promise = next(context).then(function (ctx) { return returnResult(ctx); }).catch(function (e) {\r\n Logger.error(e);\r\n throw e;\r\n });\r\n if (context.isBatched) {\r\n // this will block the batch's execute method from returning until the child requests have been resolved\r\n context.batch.addResolveBatchDependency(promise);\r\n }\r\n return promise;\r\n}\r\n/**\r\n * decorator factory applied to methods in the pipeline to control behavior\r\n */\r\nexport function requestPipelineMethod(alwaysRun) {\r\n if (alwaysRun === void 0) { alwaysRun = false; }\r\n return function (target, propertyKey, descriptor) {\r\n var method = descriptor.value;\r\n descriptor.value = function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n // if we have a result already in the pipeline, pass it along and don't call the tagged method\r\n if (!alwaysRun && args.length > 0 && hOP(args[0], \"hasResult\") && args[0].hasResult) {\r\n Logger.write(\"[\" + args[0].requestId + \"] (\" + (new Date()).getTime() + \") Skipping request pipeline method \" + propertyKey + \", existing result in pipeline.\", 0 /* Verbose */);\r\n return Promise.resolve(args[0]);\r\n }\r\n // apply the tagged method\r\n Logger.write(\"[\" + args[0].requestId + \"] (\" + (new Date()).getTime() + \") Calling request pipeline method \" + propertyKey + \".\", 0 /* Verbose */);\r\n // then chain the next method in the context's pipeline - allows for dynamic pipeline\r\n return method.apply(target, args).then(function (ctx) { return next(ctx); });\r\n };\r\n };\r\n}\r\n/**\r\n * Contains the methods used within the request pipeline\r\n */\r\nvar PipelineMethods = /** @class */ (function () {\r\n function PipelineMethods() {\r\n }\r\n /**\r\n * Logs the start of the request\r\n */\r\n PipelineMethods.logStart = function (context) {\r\n return new Promise(function (resolve) {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 1 /* Info */ ? {} : context,\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Beginning \" + context.method + \" request (\" + context.url + \")\",\r\n });\r\n resolve(context);\r\n });\r\n };\r\n /**\r\n * Handles caching of the request\r\n */\r\n PipelineMethods.caching = function (context) {\r\n return new Promise(function (resolve) {\r\n // handle caching, if applicable\r\n if (context.useCaching) {\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Caching is enabled for request, checking cache...\", 1 /* Info */);\r\n var cacheOptions = new CachingOptions(context.url.toLowerCase());\r\n if (context.cachingOptions !== undefined) {\r\n cacheOptions = assign(cacheOptions, context.cachingOptions);\r\n }\r\n // we may not have a valid store\r\n if (cacheOptions.store !== null) {\r\n // check if we have the data in cache and if so resolve the promise and return\r\n var data = cacheOptions.store.get(cacheOptions.key);\r\n if (data !== null) {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 1 /* Info */ ? {} : data,\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Value returned from cache.\",\r\n });\r\n // ensure we clear any held batch dependency we are resolving from the cache\r\n if (isFunc(context.batchDependency)) {\r\n context.batchDependency();\r\n }\r\n // handle the case where a parser needs to take special actions with a cached result\r\n if (hOP(context.parser, \"hydrate\")) {\r\n data = context.parser.hydrate(data);\r\n }\r\n return setResult(context, data).then(function (ctx) { return resolve(ctx); });\r\n }\r\n }\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Value not found in cache.\", 1 /* Info */);\r\n // if we don't then wrap the supplied parser in the caching parser wrapper\r\n // and send things on their way\r\n context.parser = new CachingParserWrapper(context.parser, cacheOptions);\r\n }\r\n return resolve(context);\r\n });\r\n };\r\n /**\r\n * Sends the request\r\n */\r\n PipelineMethods.send = function (context) {\r\n return new Promise(function (resolve, reject) {\r\n // send or batch the request\r\n if (context.isBatched) {\r\n var p = context.batch.add(context);\r\n // we release the dependency here to ensure the batch does not execute until the request is added to the batch\r\n if (isFunc(context.batchDependency)) {\r\n context.batchDependency();\r\n }\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Batching request in batch \" + context.batch.batchId + \".\", 1 /* Info */);\r\n // we set the result as the promise which will be resolved by the batch's execution\r\n resolve(setResult(context, p));\r\n }\r\n else {\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Sending request.\", 1 /* Info */);\r\n // we are not part of a batch, so proceed as normal\r\n var client = context.clientFactory();\r\n var opts = assign(context.options || {}, { method: context.method });\r\n client.fetch(context.url, opts)\r\n .then(function (response) { return context.parser.parse(response); })\r\n .then(function (result) { return setResult(context, result); })\r\n .then(function (ctx) { return resolve(ctx); })\r\n .catch(function (e) { return reject(e); });\r\n }\r\n });\r\n };\r\n /**\r\n * Logs the end of the request\r\n */\r\n PipelineMethods.logEnd = function (context) {\r\n return new Promise(function (resolve) {\r\n if (context.isBatched) {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 1 /* Info */ ? {} : context,\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") \" + context.method + \" request will complete in batch \" + context.batch.batchId + \".\",\r\n });\r\n }\r\n else {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 1 /* Info */ ? {} : context,\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Completing \" + context.method + \" request.\",\r\n });\r\n }\r\n resolve(context);\r\n });\r\n };\r\n __decorate([\r\n requestPipelineMethod(true)\r\n ], PipelineMethods, \"logStart\", null);\r\n __decorate([\r\n requestPipelineMethod()\r\n ], PipelineMethods, \"caching\", null);\r\n __decorate([\r\n requestPipelineMethod()\r\n ], PipelineMethods, \"send\", null);\r\n __decorate([\r\n requestPipelineMethod(true)\r\n ], PipelineMethods, \"logEnd\", null);\r\n return PipelineMethods;\r\n}());\r\nexport { PipelineMethods };\r\nexport function getDefaultPipeline() {\r\n return [\r\n PipelineMethods.logStart,\r\n PipelineMethods.caching,\r\n PipelineMethods.send,\r\n PipelineMethods.logEnd,\r\n ].slice(0);\r\n}\r\n//# sourceMappingURL=pipeline.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/pipeline-binder.js", - "index": 307, - "index2": 307, - "size": 1881, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./pipeline-binder", - "loc": "5:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./pipeline-binder", - "loc": "5:0-34" - } - ], - "usedExports": [ - "defaultPipelineBinder" - ], - "providedExports": [ - "pipelineBinder", - "defaultPipelineBinder" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { ODataParser } from \"./parsers\";\r\nimport { getGUID, objectDefinedNotNull } from \"@pnp/common\";\r\nimport { cloneQueryableData } from \"./queryable\";\r\nimport { pipe, getDefaultPipeline } from \"./pipeline\";\r\n// first we bind the pipeline we will use for all requests within this closure\r\nexport function pipelineBinder(pipes) {\r\n // then we bind the client factory we'll use (typically done in an implementing library such as sp)\r\n return function (clientFactory) {\r\n // then we create a binder we can apply for each type of method (GET, POST, etc.)\r\n return function (method) {\r\n // finally we get a function back to which we can pass an IQueryableData instance and execute the request it defines\r\n return function (o) {\r\n // send the IQueryableData down the pipeline\r\n return pipe(Object.assign({}, {\r\n batch: null,\r\n batchDependency: null,\r\n batchIndex: -1,\r\n cachingOptions: null,\r\n clientFactory: clientFactory,\r\n cloneParentCacheOptions: null,\r\n cloneParentWasCaching: false,\r\n hasResult: false,\r\n isBatched: objectDefinedNotNull(o.batch),\r\n method: method,\r\n options: null,\r\n parentUrl: \"\",\r\n parser: new ODataParser(),\r\n pipes: pipes.slice(0),\r\n query: new Map(),\r\n requestId: getGUID(),\r\n url: \"\",\r\n useCaching: /^get$/i.test(o.method) && o.useCaching,\r\n }, cloneQueryableData(o)));\r\n };\r\n };\r\n };\r\n}\r\nexport var defaultPipelineBinder = pipelineBinder(getDefaultPipeline());\r\n//# sourceMappingURL=pipeline-binder.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/request-builders.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/request-builders.js", - "index": 314, - "index2": 308, - "size": 271, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./request-builders", - "loc": "9:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./request-builders", - "loc": "9:0-35" - } - ], - "usedExports": [ - "body", - "headers" - ], - "providedExports": [ - "body", - "headers" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { jsS } from \"@pnp/common\";\r\nexport function body(o, previous) {\r\n return Object.assign({ body: jsS(o) }, previous);\r\n}\r\nexport function headers(o, previous) {\r\n return Object.assign({ headers: o }, previous);\r\n}\r\n//# sourceMappingURL=request-builders.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/types.js", - "name": "./node_modules/@pnp/sp/sites/types.js", - "index": 332, - "index2": 327, - "size": 14563, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/sites/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/index.js", - "name": "./node_modules/@pnp/sp/webs/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/webs/types.js", - "name": "./node_modules/@pnp/sp/webs/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "name": "./node_modules/@pnp/sp/sites/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "module": "./node_modules/@pnp/sp/sites/index.js", - "moduleName": "./node_modules/@pnp/sp/sites/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "module": "./node_modules/@pnp/sp/sites/index.js", - "moduleName": "./node_modules/@pnp/sp/sites/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./types", - "loc": "3:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "module": "./node_modules/@pnp/sp/sites/index.js", - "moduleName": "./node_modules/@pnp/sp/sites/index.js", - "type": "harmony export imported specifier", - "userRequest": "./types", - "loc": "3:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sites/index.js", - "module": "./node_modules/@pnp/sp/sites/index.js", - "moduleName": "./node_modules/@pnp/sp/sites/index.js", - "type": "harmony import specifier", - "userRequest": "./types", - "loc": "8:15-19" - } - ], - "usedExports": [ - "Site" - ], - "providedExports": [ - "_Site", - "Site" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __awaiter, __decorate, __extends, __generator } from \"tslib\";\r\nimport { SharePointQueryable, _SharePointQueryableInstance, spInvokableFactory } from \"../sharepointqueryable\";\r\nimport { defaultPath } from \"../decorators\";\r\nimport { Web } from \"../webs/types\";\r\nimport { hOP, assign } from \"@pnp/common\";\r\nimport { body } from \"@pnp/odata\";\r\nimport { odataUrlFrom } from \"../odata\";\r\nimport { spPost } from \"../operations\";\r\nimport { SPBatch } from \"../batch\";\r\nimport { escapeQueryStrValue } from \"../utils/escapeQueryStrValue\";\r\nimport { tag } from \"../telemetry\";\r\nimport { metadata } from \"../utils/metadata\";\r\nimport { extractWebUrl } from \"../utils/extractweburl\";\r\nimport { emptyGuid } from \"../splibconfig\";\r\nvar _Site = /** @class */ (function (_super) {\r\n __extends(_Site, _super);\r\n function _Site() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n Object.defineProperty(_Site.prototype, \"rootWeb\", {\r\n /**\r\n * Gets the root web of the site collection\r\n *\r\n */\r\n get: function () {\r\n return tag.configure(Web(this, \"rootweb\"), \"si.rootWeb\");\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Gets a Web instance representing the root web of the site collection\r\n * correctly setup for chaining within the library\r\n */\r\n _Site.prototype.getRootWeb = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var web;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, this.rootWeb.select(\"Url\")()];\r\n case 1:\r\n web = _a.sent();\r\n return [2 /*return*/, tag.configure(Web(web.Url), \"si.getRootWeb\")];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Gets the context information for this site collection\r\n */\r\n _Site.prototype.getContextInfo = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var q, data, info;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n q = tag.configure(Site(this.parentUrl, \"_api/contextinfo\"), \"si.getContextInfo\");\r\n return [4 /*yield*/, spPost(q)];\r\n case 1:\r\n data = _a.sent();\r\n if (hOP(data, \"GetContextWebInformation\")) {\r\n info = data.GetContextWebInformation;\r\n info.SupportedSchemaVersions = info.SupportedSchemaVersions.results;\r\n return [2 /*return*/, info];\r\n }\r\n else {\r\n return [2 /*return*/, data];\r\n }\r\n return [2 /*return*/];\r\n }\r\n });\r\n });\r\n };\r\n _Site.prototype.createBatch = function () {\r\n return new SPBatch(this.parentUrl);\r\n };\r\n /**\r\n * Deletes the current site\r\n *\r\n */\r\n _Site.prototype.delete = function () {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var site, q;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, this.clone(Site, \"\").select(\"Id\")()];\r\n case 1:\r\n site = _a.sent();\r\n q = tag.configure(Site(this.parentUrl, \"_api/SPSiteManager/Delete\"), \"si.delete\");\r\n return [4 /*yield*/, spPost(q, body({ siteId: site.Id }))];\r\n case 2:\r\n _a.sent();\r\n return [2 /*return*/];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Gets the document libraries on a site. Static method. (SharePoint Online only)\r\n *\r\n * @param absoluteWebUrl The absolute url of the web whose document libraries should be returned\r\n */\r\n _Site.prototype.getDocumentLibraries = function (absoluteWebUrl) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var q, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n q = tag.configure(SharePointQueryable(\"\", \"_api/sp.web.getdocumentlibraries(@v)\"), \"si.getDocumentLibraries\");\r\n q.query.set(\"@v\", \"'\" + escapeQueryStrValue(absoluteWebUrl) + \"'\");\r\n return [4 /*yield*/, q()];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, hOP(data, \"GetDocumentLibraries\") ? data.GetDocumentLibraries : data];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Gets the site url from a page url\r\n *\r\n * @param absolutePageUrl The absolute url of the page\r\n */\r\n _Site.prototype.getWebUrlFromPageUrl = function (absolutePageUrl) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var q, data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n q = tag.configure(SharePointQueryable(\"\", \"_api/sp.web.getweburlfrompageurl(@v)\"), \"si.getWebUrlFromPageUrl\");\r\n q.query.set(\"@v\", \"'\" + escapeQueryStrValue(absolutePageUrl) + \"'\");\r\n return [4 /*yield*/, q()];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, hOP(data, \"GetWebUrlFromPageUrl\") ? data.GetWebUrlFromPageUrl : data];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Returns the collection of changes from the change log that have occurred within the list, based on the specified query\r\n *\r\n * @param query The change query\r\n */\r\n _Site.prototype.getChanges = function (query) {\r\n var postBody = body({ \"query\": assign(metadata(\"SP.ChangeQuery\"), query) });\r\n return spPost(this.clone(Web, \"getchanges\"), postBody);\r\n };\r\n /**\r\n * Opens a web by id (using POST)\r\n *\r\n * @param webId The GUID id of the web to open\r\n */\r\n _Site.prototype.openWebById = function (webId) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var data;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, spPost(this.clone(Site, \"openWebById('\" + webId + \"')\"))];\r\n case 1:\r\n data = _a.sent();\r\n return [2 /*return*/, {\r\n data: data,\r\n web: Web(extractWebUrl(odataUrlFrom(data))),\r\n }];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Creates a Modern communication site.\r\n *\r\n * @param title The title of the site to create\r\n * @param lcid The language to use for the site. If not specified will default to 1033 (English).\r\n * @param shareByEmailEnabled If set to true, it will enable sharing files via Email. By default it is set to false\r\n * @param url The fully qualified URL (e.g. https://yourtenant.sharepoint.com/sites/mysitecollection) of the site.\r\n * @param description The description of the communication site.\r\n * @param classification The Site classification to use. For instance 'Contoso Classified'. See https://www.youtube.com/watch?v=E-8Z2ggHcS0 for more information\r\n * @param siteDesignId The Guid of the site design to be used.\r\n * You can use the below default OOTB GUIDs:\r\n * Topic: 00000000-0000-0000-0000-000000000000\r\n * Showcase: 6142d2a0-63a5-4ba0-aede-d9fefca2c767\r\n * Blank: f6cc5403-0d63-442e-96c0-285923709ffc\r\n * @param hubSiteId The id of the hub site to which the new site should be associated\r\n * @param owner Optional owner value, required if executing the method in app only mode\r\n */\r\n _Site.prototype.createCommunicationSite = function (title, lcid, shareByEmailEnabled, url, description, classification, siteDesignId, hubSiteId, owner) {\r\n if (lcid === void 0) { lcid = 1033; }\r\n if (shareByEmailEnabled === void 0) { shareByEmailEnabled = false; }\r\n return __awaiter(this, void 0, void 0, function () {\r\n return __generator(this, function (_a) {\r\n return [2 /*return*/, this.createCommunicationSiteFromProps({\r\n Classification: classification,\r\n Description: description,\r\n HubSiteId: hubSiteId,\r\n Lcid: lcid,\r\n Owner: owner,\r\n ShareByEmailEnabled: shareByEmailEnabled,\r\n SiteDesignId: siteDesignId,\r\n Title: title,\r\n Url: url,\r\n })];\r\n });\r\n });\r\n };\r\n _Site.prototype.createCommunicationSiteFromProps = function (props) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var p, postBody;\r\n return __generator(this, function (_a) {\r\n p = Object.assign({}, {\r\n Classification: \"\",\r\n Description: \"\",\r\n HubSiteId: emptyGuid,\r\n Lcid: 1033,\r\n ShareByEmailEnabled: false,\r\n SiteDesignId: emptyGuid,\r\n WebTemplate: \"SITEPAGEPUBLISHING#0\",\r\n WebTemplateExtensionId: emptyGuid,\r\n }, props);\r\n postBody = body({\r\n \"request\": assign(metadata(\"Microsoft.SharePoint.Portal.SPSiteCreationRequest\"), p),\r\n });\r\n return [2 /*return*/, spPost(Site(extractWebUrl(this.toUrl()), \"/_api/SPSiteManager/Create\"), postBody)];\r\n });\r\n });\r\n };\r\n /**\r\n *\r\n * @param url Site Url that you want to check if exists\r\n */\r\n _Site.prototype.exists = function (url) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var postBody, value;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0:\r\n postBody = body({ url: url });\r\n return [4 /*yield*/, spPost(Site(extractWebUrl(this.toUrl()), \"/_api/SP.Site.Exists\"), postBody)];\r\n case 1:\r\n value = _a.sent();\r\n return [2 /*return*/, value];\r\n }\r\n });\r\n });\r\n };\r\n /**\r\n * Creates a Modern team site backed by Office 365 group. For use in SP Online only. This will not work with App-only tokens\r\n *\r\n * @param displayName The title or display name of the Modern team site to be created\r\n * @param alias Alias of the underlying Office 365 Group\r\n * @param isPublic Defines whether the Office 365 Group will be public (default), or private.\r\n * @param lcid The language to use for the site. If not specified will default to English (1033).\r\n * @param description The description of the site to be created.\r\n * @param classification The Site classification to use. For instance 'Contoso Classified'. See https://www.youtube.com/watch?v=E-8Z2ggHcS0 for more information\r\n * @param owners The Owners of the site to be created\r\n */\r\n _Site.prototype.createModernTeamSite = function (displayName, alias, isPublic, lcid, description, classification, owners, hubSiteId, siteDesignId) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n return __generator(this, function (_a) {\r\n return [2 /*return*/, this.createModernTeamSiteFromProps({\r\n alias: alias,\r\n classification: classification,\r\n description: description,\r\n displayName: displayName,\r\n hubSiteId: hubSiteId,\r\n isPublic: isPublic,\r\n lcid: lcid,\r\n owners: owners,\r\n siteDesignId: siteDesignId,\r\n })];\r\n });\r\n });\r\n };\r\n _Site.prototype.createModernTeamSiteFromProps = function (props) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var p, postBody;\r\n return __generator(this, function (_a) {\r\n p = Object.assign({}, {\r\n classification: \"\",\r\n description: \"\",\r\n hubSiteId: emptyGuid,\r\n isPublic: true,\r\n lcid: 1033,\r\n owners: [],\r\n }, props);\r\n postBody = {\r\n alias: p.alias,\r\n displayName: p.displayName,\r\n isPublic: p.isPublic,\r\n optionalParams: {\r\n Classification: p.classification,\r\n CreationOptions: {\r\n \"results\": [\"SPSiteLanguage:\" + p.lcid, \"HubSiteId:\" + p.hubSiteId],\r\n },\r\n Description: p.description,\r\n Owners: {\r\n \"results\": p.owners,\r\n },\r\n },\r\n };\r\n if (p.siteDesignId) {\r\n postBody.optionalParams.CreationOptions.results.push(\"implicit_formula_292aa8a00786498a87a5ca52d9f4214a_\" + p.siteDesignId);\r\n }\r\n return [2 /*return*/, spPost(Site(extractWebUrl(this.toUrl()), \"/_api/GroupSiteManager/CreateGroupEx\"), body(postBody))];\r\n });\r\n });\r\n };\r\n __decorate([\r\n tag(\"si.getChanges\")\r\n ], _Site.prototype, \"getChanges\", null);\r\n __decorate([\r\n tag(\"si.openWebById\")\r\n ], _Site.prototype, \"openWebById\", null);\r\n _Site = __decorate([\r\n defaultPath(\"_api/site\")\r\n ], _Site);\r\n return _Site;\r\n}(_SharePointQueryableInstance));\r\nexport { _Site };\r\nexport var Site = spInvokableFactory(_Site);\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "index": 748, - "index2": 742, - "size": 944, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "tl8G", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Check.js", - "name": "./node_modules/office-ui-fabric-react/lib/Check.js" - }, - { - "id": "r9+k", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "type": "harmony side effect evaluation", - "userRequest": "./Check.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "type": "harmony import specifier", - "userRequest": "./Check.base", - "loc": "4:26-35" - }, - { - "moduleId": "r9+k", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Check.base", - "loc": "2:0-29" - }, - { - "moduleId": "r9+k", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Check.base", - "loc": "2:0-29" - } - ], - "usedExports": [ - "CheckBase" - ], - "providedExports": [ - "CheckBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as React from 'react';\nimport { Icon, FontIcon } from '../../Icon';\nimport { classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nexport var CheckBase = function (props) {\n var _a = props.checked, checked = _a === void 0 ? false : _a, className = props.className, theme = props.theme, styles = props.styles, _b = props.useFastIcons, useFastIcons = _b === void 0 ? true : _b;\n var classNames = getClassNames(styles, { theme: theme, className: className, checked: checked });\n var IconComponent = useFastIcons ? FontIcon : Icon;\n return (React.createElement(\"div\", { className: classNames.root },\n React.createElement(IconComponent, { iconName: \"CircleRing\", className: classNames.circle }),\n React.createElement(IconComponent, { iconName: \"StatusCircleCheckmark\", className: classNames.check })));\n};\nCheckBase.displayName = 'CheckBase';\n//# sourceMappingURL=Check.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "index": 747, - "index2": 744, - "size": 252, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "issuerId": "r9+k", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "tl8G", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Check.js", - "name": "./node_modules/office-ui-fabric-react/lib/Check.js" - }, - { - "id": "r9+k", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Check", - "loc": "36:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Check", - "loc": "39:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Check", - "loc": "132:35-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Check", - "loc": "144:31-36" - }, - { - "moduleId": "r9+k", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Check", - "loc": "1:0-24" - }, - { - "moduleId": "r9+k", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Check", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Check" - ], - "providedExports": [ - "Check" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { CheckBase } from './Check.base';\nimport { getStyles } from './Check.styles';\nexport var Check = styled(CheckBase, getStyles, undefined, {\n scope: 'Check',\n}, true);\n//# sourceMappingURL=Check.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupSpacer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupSpacer.js", - "index": 743, - "index2": 739, - "size": 504, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupSpacer", - "loc": "3:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupSpacer", - "loc": "5:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupSpacer", - "loc": "6:0-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "6:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "6:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupSpacer", - "loc": "7:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "8:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "type": "harmony import specifier", - "userRequest": "./GroupSpacer", - "loc": "10:32-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "type": "harmony import specifier", - "userRequest": "./GroupSpacer", - "loc": "17:32-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "18:0-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./GroupSpacer", - "loc": "121:437-448" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "userRequest": "./GroupSpacer", - "loc": "122:36-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "141:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "userRequest": "./GroupSpacer", - "loc": "144:23-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "201:32-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "490:32-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "723:62-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../GroupedList/GroupSpacer", - "loc": "765:62-80" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupSpacer", - "loc": "7:0-44" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupSpacer", - "loc": "7:0-44" - } - ], - "usedExports": [ - "SPACER_WIDTH", - "GroupSpacer" - ], - "providedExports": [ - "SPACER_WIDTH", - "GroupSpacer" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as React from 'react';\nexport var SPACER_WIDTH = 36;\nexport var GroupSpacer = function (props) {\n var count = props.count, _a = props.indentWidth, indentWidth = _a === void 0 ? SPACER_WIDTH : _a, _b = props.role, role = _b === void 0 ? 'presentation' : _b;\n var width = count * indentWidth;\n return count > 0 ? (React.createElement(\"span\", { className: 'ms-GroupSpacer', style: { display: 'inline-block', width: width }, role: role })) : null;\n};\n//# sourceMappingURL=GroupSpacer.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "index": 751, - "index2": 745, - "size": 10627, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsHeader.styles", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsHeader.styles", - "loc": "3:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsHeader.styles", - "loc": "4:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.js", - "type": "harmony import specifier", - "userRequest": "./DetailsHeader.styles", - "loc": "4:53-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony import specifier", - "userRequest": "./DetailsHeader.styles", - "loc": "15:28-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "userRequest": "./DetailsHeader.styles", - "loc": "50:12-25" - } - ], - "usedExports": [ - "HEADER_HEIGHT", - "getStyles", - "getCellStyles" - ], - "providedExports": [ - "HEADER_HEIGHT", - "getCellStyles", - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { getFocusStyle, focusClear, getGlobalClassNames, HighContrastSelector, hiddenContentStyle, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { getRTL, IsFocusVisibleClassName } from '../../Utilities';\nimport { DEFAULT_CELL_STYLE_PROPS } from './DetailsRow.styles';\n// For every group level there is a GroupSpacer added. Importing this const to have the source value in one place.\nimport { SPACER_WIDTH as GROUP_EXPANDER_WIDTH } from '../GroupedList/GroupSpacer';\nvar GlobalClassNames = {\n tooltipHost: 'ms-TooltipHost',\n root: 'ms-DetailsHeader',\n cell: 'ms-DetailsHeader-cell',\n cellIsCheck: 'ms-DetailsHeader-cellIsCheck',\n collapseButton: 'ms-DetailsHeader-collapseButton',\n isCollapsed: 'is-collapsed',\n isAllSelected: 'is-allSelected',\n isSelectAllHidden: 'is-selectAllHidden',\n isResizingColumn: 'is-resizingColumn',\n cellSizer: 'ms-DetailsHeader-cellSizer',\n isResizing: 'is-resizing',\n dropHintCircleStyle: 'ms-DetailsHeader-dropHintCircleStyle',\n dropHintCaretStyle: 'ms-DetailsHeader-dropHintCaretStyle',\n dropHintLineStyle: 'ms-DetailsHeader-dropHintLineStyle',\n cellTitle: 'ms-DetailsHeader-cellTitle',\n cellName: 'ms-DetailsHeader-cellName',\n filterChevron: 'ms-DetailsHeader-filterChevron',\n gripperBarVertical: 'ms-DetailsColumn-gripperBarVertical',\n checkTooltip: 'ms-DetailsHeader-checkTooltip',\n check: 'ms-DetailsHeader-check',\n};\nexport var HEADER_HEIGHT = 42;\nexport var getCellStyles = function (props) {\n var theme = props.theme, _a = props.cellStyleProps, cellStyleProps = _a === void 0 ? DEFAULT_CELL_STYLE_PROPS : _a;\n var semanticColors = theme.semanticColors;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return [\n classNames.cell,\n getFocusStyle(theme),\n {\n color: semanticColors.bodyText,\n position: 'relative',\n display: 'inline-block',\n boxSizing: 'border-box',\n padding: \"0 \" + cellStyleProps.cellRightPadding + \"px 0 \" + cellStyleProps.cellLeftPadding + \"px\",\n lineHeight: 'inherit',\n margin: '0',\n height: HEADER_HEIGHT,\n verticalAlign: 'top',\n whiteSpace: 'nowrap',\n textOverflow: 'ellipsis',\n textAlign: 'left',\n },\n ];\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d;\n var theme = props.theme, className = props.className, isAllSelected = props.isAllSelected, isResizingColumn = props.isResizingColumn, isSizing = props.isSizing, isAllCollapsed = props.isAllCollapsed, _e = props.cellStyleProps, cellStyleProps = _e === void 0 ? DEFAULT_CELL_STYLE_PROPS : _e;\n var semanticColors = theme.semanticColors, palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var colors = {\n iconForegroundColor: semanticColors.bodySubtext,\n headerForegroundColor: semanticColors.bodyText,\n headerBackgroundColor: semanticColors.bodyBackground,\n resizerColor: palette.neutralTertiaryAlt,\n };\n var cellSizerFadeInStyles = {\n opacity: 1,\n transition: 'opacity 0.3s linear',\n };\n var cellStyles = getCellStyles(props);\n return {\n root: [\n classNames.root,\n fonts.small,\n {\n display: 'inline-block',\n background: colors.headerBackgroundColor,\n position: 'relative',\n minWidth: '100%',\n verticalAlign: 'top',\n height: HEADER_HEIGHT,\n lineHeight: HEADER_HEIGHT,\n whiteSpace: 'nowrap',\n boxSizing: 'content-box',\n paddingBottom: '1px',\n paddingTop: '16px',\n borderBottom: \"1px solid \" + semanticColors.bodyDivider,\n cursor: 'default',\n userSelect: 'none',\n selectors: (_a = {},\n _a[\"&:hover .\" + classNames.check] = {\n opacity: 1,\n },\n _a[\"& .\" + classNames.tooltipHost + \" .\" + classNames.checkTooltip] = {\n display: 'block',\n },\n _a),\n },\n isAllSelected && classNames.isAllSelected,\n isResizingColumn && classNames.isResizingColumn,\n className,\n ],\n check: [\n classNames.check,\n {\n height: HEADER_HEIGHT,\n },\n {\n selectors: (_b = {},\n _b[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n opacity: 1,\n },\n _b),\n },\n ],\n cellWrapperPadded: {\n paddingRight: cellStyleProps.cellExtraRightPadding + cellStyleProps.cellRightPadding,\n },\n cellIsCheck: [\n cellStyles,\n classNames.cellIsCheck,\n {\n position: 'relative',\n padding: 0,\n margin: 0,\n display: 'inline-flex',\n alignItems: 'center',\n border: 'none',\n },\n isAllSelected && {\n opacity: 1,\n },\n ],\n cellIsGroupExpander: [\n cellStyles,\n {\n display: 'inline-flex',\n alignItems: 'center',\n justifyContent: 'center',\n fontSize: fonts.small.fontSize,\n padding: 0,\n border: 'none',\n width: GROUP_EXPANDER_WIDTH,\n color: palette.neutralSecondary,\n selectors: {\n ':hover': {\n backgroundColor: palette.neutralLighter,\n },\n ':active': {\n backgroundColor: palette.neutralLight,\n },\n },\n },\n ],\n cellIsActionable: {\n selectors: {\n ':hover': {\n color: semanticColors.bodyText,\n background: semanticColors.listHeaderBackgroundHovered,\n },\n ':active': {\n background: semanticColors.listHeaderBackgroundPressed,\n },\n },\n },\n cellIsEmpty: {\n textOverflow: 'clip',\n },\n cellSizer: [\n classNames.cellSizer,\n focusClear(),\n {\n display: 'inline-block',\n position: 'relative',\n cursor: 'ew-resize',\n bottom: 0,\n top: 0,\n overflow: 'hidden',\n height: 'inherit',\n background: 'transparent',\n zIndex: 1,\n width: 16,\n selectors: (_c = {\n ':after': {\n content: '\"\"',\n position: 'absolute',\n top: 0,\n bottom: 0,\n width: 1,\n background: colors.resizerColor,\n opacity: 0,\n left: '50%',\n },\n ':focus:after': cellSizerFadeInStyles,\n ':hover:after': cellSizerFadeInStyles\n },\n _c[\"&.\" + classNames.isResizing + \":after\"] = [\n cellSizerFadeInStyles,\n {\n boxShadow: '0 0 5px 0 rgba(0, 0, 0, 0.4)',\n },\n ],\n _c),\n },\n ],\n cellIsResizing: classNames.isResizing,\n cellSizerStart: {\n margin: '0 -8px',\n },\n cellSizerEnd: {\n margin: 0,\n marginLeft: -16,\n },\n collapseButton: [\n classNames.collapseButton,\n {\n transformOrigin: '50% 50%',\n transition: 'transform .1s linear',\n },\n isAllCollapsed\n ? [\n classNames.isCollapsed,\n {\n transform: 'rotate(0deg)',\n },\n ]\n : {\n transform: getRTL(theme) ? 'rotate(-90deg)' : 'rotate(90deg)',\n },\n ],\n checkTooltip: classNames.checkTooltip,\n sizingOverlay: isSizing && {\n position: 'absolute',\n left: 0,\n top: 0,\n right: 0,\n bottom: 0,\n cursor: 'ew-resize',\n background: 'rgba(255, 255, 255, 0)',\n selectors: (_d = {},\n _d[HighContrastSelector] = __assign({ background: 'transparent' }, getHighContrastNoAdjustStyle()),\n _d),\n },\n accessibleLabel: hiddenContentStyle,\n dropHintCircleStyle: [\n classNames.dropHintCircleStyle,\n {\n display: 'inline-block',\n visibility: 'hidden',\n position: 'absolute',\n bottom: 0,\n height: 9,\n width: 9,\n borderRadius: '50%',\n marginLeft: -5,\n top: 34,\n overflow: 'visible',\n zIndex: 10,\n border: \"1px solid \" + palette.themePrimary,\n background: palette.white,\n },\n ],\n dropHintCaretStyle: [\n classNames.dropHintCaretStyle,\n {\n display: 'none',\n position: 'absolute',\n top: -28,\n left: -6.5,\n fontSize: fonts.medium.fontSize,\n color: palette.themePrimary,\n overflow: 'visible',\n zIndex: 10,\n },\n ],\n dropHintLineStyle: [\n classNames.dropHintLineStyle,\n {\n display: 'none',\n position: 'absolute',\n bottom: 0,\n top: 0,\n overflow: 'hidden',\n height: 42,\n width: 1,\n background: palette.themePrimary,\n zIndex: 10,\n },\n ],\n dropHintStyle: {\n display: 'inline-block',\n position: 'absolute',\n },\n };\n};\n//# sourceMappingURL=DetailsHeader.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "index": 750, - "index2": 746, - "size": 1953, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../DetailsList/DetailsRowCheck.styles", - "loc": "4:0-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRowCheck.styles", - "loc": "5:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsRowCheck.styles", - "loc": "16:0-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRowCheck.styles", - "loc": "44:57-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "userRequest": "../DetailsList/DetailsRowCheck.styles", - "loc": "127:23-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRowCheck.styles", - "loc": "722:119-133" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "./DetailsRowCheck.styles", - "loc": "764:119-133" - } - ], - "usedExports": [ - "CHECK_CELL_WIDTH", - "getStyles" - ], - "providedExports": [ - "CHECK_CELL_WIDTH", - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getGlobalClassNames, getFocusStyle } from '../../Styling';\nimport { DEFAULT_ROW_HEIGHTS } from './DetailsRow.styles';\nimport { HEADER_HEIGHT } from './DetailsHeader.styles';\nimport { CheckGlobalClassNames } from '../Check/Check.styles';\nvar GlobalClassNames = {\n root: 'ms-DetailsRow-check',\n isDisabled: 'ms-DetailsRow-check--isDisabled',\n isHeader: 'ms-DetailsRow-check--isHeader',\n};\nexport var CHECK_CELL_WIDTH = 48;\nexport var getStyles = function (props) {\n var theme = props.theme, className = props.className, isHeader = props.isHeader, selected = props.selected, anySelected = props.anySelected, canSelect = props.canSelect, compact = props.compact, isVisible = props.isVisible;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var rowHeight = DEFAULT_ROW_HEIGHTS.rowHeight, compactRowHeight = DEFAULT_ROW_HEIGHTS.compactRowHeight;\n var height = isHeader ? HEADER_HEIGHT : compact ? compactRowHeight : rowHeight;\n var isCheckVisible = isVisible || selected || anySelected;\n return {\n root: [classNames.root, className],\n check: [\n !canSelect && classNames.isDisabled,\n isHeader && classNames.isHeader,\n getFocusStyle(theme),\n theme.fonts.small,\n CheckGlobalClassNames.checkHost,\n {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n cursor: 'default',\n boxSizing: 'border-box',\n verticalAlign: 'top',\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n opacity: isCheckVisible ? 1 : 0,\n height: height,\n width: CHECK_CELL_WIDTH,\n padding: 0,\n margin: 0,\n },\n ],\n isDisabled: [],\n };\n};\n//# sourceMappingURL=DetailsRowCheck.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/renderFunction/composeRenderFunction.js", - "name": "./node_modules/@uifabric/utilities/lib/renderFunction/composeRenderFunction.js", - "index": 746, - "index2": 741, - "size": 987, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "13:10-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "66:14-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "72:14-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "101:14-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "124:14-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "127:14-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "203:14-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "362:14-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "365:14-35" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "125:14-35" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "38:18-39" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./renderFunction/composeRenderFunction", - "loc": "48:0-55" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./renderFunction/composeRenderFunction", - "loc": "48:0-55" - } - ], - "usedExports": [ - "composeRenderFunction" - ], - "providedExports": [ - "composeRenderFunction" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { createMemoizer } from '../memoize';\nfunction createComposedRenderFunction(outer) {\n var outerMemoizer = createMemoizer(function (inner) {\n var innerMemoizer = createMemoizer(function (defaultRender) {\n return function (innerProps) {\n return inner(innerProps, defaultRender);\n };\n });\n return function (outerProps, defaultRender) {\n return outer(outerProps, defaultRender ? innerMemoizer(defaultRender) : inner);\n };\n });\n return outerMemoizer;\n}\nvar memoizer = createMemoizer(createComposedRenderFunction);\n/**\n * Composes two 'render functions' to produce a final render function that renders\n * the outer function, passing the inner function as 'default render'. The inner function\n * is then passed the original 'default render' prop.\n * @public\n */\nexport function composeRenderFunction(outer, inner) {\n return memoizer(outer)(inner);\n}\n//# sourceMappingURL=composeRenderFunction.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "index": 754, - "index2": 750, - "size": 14585, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "issuerId": "Hy/Y", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "44Od", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DragDrop.js", - "name": "./node_modules/office-ui-fabric-react/lib/DragDrop.js" - }, - { - "id": "Hy/Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/dragdrop/DragDropHelper", - "loc": "10:0-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dragdrop/index", - "loc": "385:36-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/dragdrop/DragDropHelper", - "loc": "406:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/dragdrop/DragDropHelper", - "loc": "541:18-32" - }, - { - "moduleId": "Hy/Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DragDropHelper", - "loc": "1:0-33" - }, - { - "moduleId": "Hy/Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DragDropHelper", - "loc": "1:0-33" - } - ], - "usedExports": [ - "DragDropHelper" - ], - "providedExports": [ - "DragDropHelper" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { EventGroup, getDocument } from '../../Utilities';\nvar MOUSEDOWN_PRIMARY_BUTTON = 0; // for mouse down event we are using ev.button property, 0 means left button\nvar MOUSEMOVE_PRIMARY_BUTTON = 1; // for mouse move event we are using ev.buttons property, 1 means left button\nvar DragDropHelper = /** @class */ (function () {\n function DragDropHelper(params) {\n this._selection = params.selection;\n this._dragEnterCounts = {};\n this._activeTargets = {};\n this._lastId = 0;\n // To make this class cheap to create, which allows simplifying some logic elsewhere,\n // only initialize the event group and global event handlers as needed.\n this._initialized = false;\n }\n DragDropHelper.prototype.dispose = function () {\n if (this._events) {\n this._events.dispose();\n }\n };\n DragDropHelper.prototype.subscribe = function (root, events, dragDropOptions) {\n var _this = this;\n if (!this._initialized) {\n this._events = new EventGroup(this);\n var doc = getDocument();\n // clear drag data when mouse up, use capture event to ensure it will be run\n if (doc) {\n this._events.on(doc.body, 'mouseup', this._onMouseUp.bind(this), true);\n this._events.on(doc, 'mouseup', this._onDocumentMouseUp.bind(this), true);\n }\n this._initialized = true;\n }\n var _a = dragDropOptions.key, key = _a === void 0 ? \"\" + ++this._lastId : _a;\n var handlers = [];\n var onDragStart;\n var onDragLeave;\n var onDragEnter;\n var onDragEnd;\n var onDrop;\n var onDragOver;\n var onMouseDown;\n var isDraggable;\n var isDroppable;\n var activeTarget;\n if (dragDropOptions && root) {\n var eventMap = dragDropOptions.eventMap, context = dragDropOptions.context, updateDropState_1 = dragDropOptions.updateDropState;\n var dragDropTarget = {\n root: root,\n options: dragDropOptions,\n key: key,\n };\n isDraggable = this._isDraggable(dragDropTarget);\n isDroppable = this._isDroppable(dragDropTarget);\n if (isDraggable || isDroppable) {\n if (eventMap) {\n for (var _i = 0, eventMap_1 = eventMap; _i < eventMap_1.length; _i++) {\n var event_1 = eventMap_1[_i];\n var handler = {\n callback: event_1.callback.bind(null, context),\n eventName: event_1.eventName,\n };\n handlers.push(handler);\n this._events.on(root, handler.eventName, handler.callback);\n }\n }\n }\n if (isDroppable) {\n // If the target is droppable, wire up global event listeners to track drop-related events.\n onDragLeave = function (event) {\n if (!event.isHandled) {\n event.isHandled = true;\n _this._dragEnterCounts[key]--;\n if (_this._dragEnterCounts[key] === 0) {\n updateDropState_1(false /* isDropping */, event);\n }\n }\n };\n onDragEnter = function (event) {\n event.preventDefault(); // needed for IE\n if (!event.isHandled) {\n event.isHandled = true;\n _this._dragEnterCounts[key]++;\n if (_this._dragEnterCounts[key] === 1) {\n updateDropState_1(true /* isDropping */, event);\n }\n }\n };\n onDragEnd = function (event) {\n _this._dragEnterCounts[key] = 0;\n updateDropState_1(false /* isDropping */, event);\n };\n onDrop = function (event) {\n _this._dragEnterCounts[key] = 0;\n updateDropState_1(false /* isDropping */, event);\n if (dragDropOptions.onDrop) {\n dragDropOptions.onDrop(dragDropOptions.context.data, event);\n }\n };\n onDragOver = function (event) {\n event.preventDefault();\n if (dragDropOptions.onDragOver) {\n dragDropOptions.onDragOver(dragDropOptions.context.data, event);\n }\n };\n this._dragEnterCounts[key] = 0;\n // dragenter and dragleave will be fired when hover to the child element\n // but we only want to change state when enter or leave the current element\n // use the count to ensure it.\n events.on(root, 'dragenter', onDragEnter);\n events.on(root, 'dragleave', onDragLeave);\n events.on(root, 'dragend', onDragEnd);\n events.on(root, 'drop', onDrop);\n events.on(root, 'dragover', onDragOver);\n }\n if (isDraggable) {\n // If the target is draggable, wire up local event listeners for mouse events.\n onMouseDown = this._onMouseDown.bind(this, dragDropTarget);\n onDragEnd = this._onDragEnd.bind(this, dragDropTarget);\n // We need to add in data so that on Firefox we show the ghost element when dragging\n onDragStart = function (event) {\n var options = dragDropOptions;\n if (options && options.onDragStart) {\n options.onDragStart(options.context.data, options.context.index, _this._selection.getSelection(), event);\n }\n _this._isDragging = true;\n if (event.dataTransfer) {\n event.dataTransfer.setData('id', root.id);\n }\n };\n events.on(root, 'dragstart', onDragStart);\n events.on(root, 'mousedown', onMouseDown);\n events.on(root, 'dragend', onDragEnd);\n }\n activeTarget = {\n target: dragDropTarget,\n dispose: function () {\n if (_this._activeTargets[key] === activeTarget) {\n delete _this._activeTargets[key];\n }\n if (root) {\n for (var _i = 0, handlers_1 = handlers; _i < handlers_1.length; _i++) {\n var handler = handlers_1[_i];\n _this._events.off(root, handler.eventName, handler.callback);\n }\n if (isDroppable) {\n events.off(root, 'dragenter', onDragEnter);\n events.off(root, 'dragleave', onDragLeave);\n events.off(root, 'dragend', onDragEnd);\n events.off(root, 'dragover', onDragOver);\n events.off(root, 'drop', onDrop);\n }\n if (isDraggable) {\n events.off(root, 'dragstart', onDragStart);\n events.off(root, 'mousedown', onMouseDown);\n events.off(root, 'dragend', onDragEnd);\n }\n }\n },\n };\n this._activeTargets[key] = activeTarget;\n }\n return {\n key: key,\n dispose: function () {\n if (activeTarget) {\n activeTarget.dispose();\n }\n },\n };\n };\n DragDropHelper.prototype.unsubscribe = function (root, key) {\n var activeTarget = this._activeTargets[key];\n if (activeTarget) {\n activeTarget.dispose();\n }\n };\n DragDropHelper.prototype._onDragEnd = function (target, event) {\n var options = target.options;\n if (options.onDragEnd) {\n options.onDragEnd(options.context.data, event);\n }\n };\n /**\n * clear drag data when mouse up on body\n */\n DragDropHelper.prototype._onMouseUp = function (event) {\n this._isDragging = false;\n if (this._dragData) {\n for (var _i = 0, _a = Object.keys(this._activeTargets); _i < _a.length; _i++) {\n var key = _a[_i];\n var activeTarget = this._activeTargets[key];\n if (activeTarget.target.root) {\n this._events.off(activeTarget.target.root, 'mousemove');\n this._events.off(activeTarget.target.root, 'mouseleave');\n }\n }\n if (this._dragData.dropTarget) {\n // raise dragleave event to let dropTarget know it need to remove dropping style\n EventGroup.raise(this._dragData.dropTarget.root, 'dragleave');\n EventGroup.raise(this._dragData.dropTarget.root, 'drop');\n }\n }\n this._dragData = null;\n };\n /**\n * clear drag data when mouse up outside of the document\n */\n DragDropHelper.prototype._onDocumentMouseUp = function (event) {\n var doc = getDocument();\n if (doc && event.target === doc.documentElement) {\n this._onMouseUp(event);\n }\n };\n /**\n * when mouse move over a new drop target while dragging some items,\n * fire dragleave on the old target and fire dragenter to the new target\n * The target will handle style change on dragenter and dragleave events.\n */\n DragDropHelper.prototype._onMouseMove = function (target, event) {\n var \n // use buttons property here since ev.button in some edge case is not updating well during the move.\n // but firefox doesn't support it, so we set the default value when it is not defined.\n _a = event.buttons, \n // use buttons property here since ev.button in some edge case is not updating well during the move.\n // but firefox doesn't support it, so we set the default value when it is not defined.\n buttons = _a === void 0 ? MOUSEMOVE_PRIMARY_BUTTON : _a;\n if (this._dragData && buttons !== MOUSEMOVE_PRIMARY_BUTTON) {\n // cancel mouse down event and return early when the primary button is not pressed\n this._onMouseUp(event);\n return;\n }\n var root = target.root, key = target.key;\n if (this._isDragging) {\n if (this._isDroppable(target)) {\n // we can have nested drop targets in the DOM, like a folder inside a group. In that case, when we drag into\n // the inner target (folder), we first set dropTarget to the inner element. But the same event is bubbled to the\n // outer target too, and we need to prevent the outer one from taking over.\n // So, check if the last dropTarget is not a child of the current.\n if (this._dragData) {\n if (this._dragData.dropTarget &&\n this._dragData.dropTarget.key !== key &&\n !this._isChild(root, this._dragData.dropTarget.root)) {\n if (this._dragEnterCounts[this._dragData.dropTarget.key] > 0) {\n EventGroup.raise(this._dragData.dropTarget.root, 'dragleave');\n EventGroup.raise(root, 'dragenter');\n this._dragData.dropTarget = target;\n }\n }\n }\n }\n }\n };\n /**\n * when mouse leave a target while dragging some items, fire dragleave to the target\n */\n DragDropHelper.prototype._onMouseLeave = function (target, event) {\n if (this._isDragging) {\n if (this._dragData && this._dragData.dropTarget && this._dragData.dropTarget.key === target.key) {\n EventGroup.raise(target.root, 'dragleave');\n this._dragData.dropTarget = undefined;\n }\n }\n };\n /**\n * when mouse down on a draggable item, we start to track dragdata.\n */\n DragDropHelper.prototype._onMouseDown = function (target, event) {\n if (event.button !== MOUSEDOWN_PRIMARY_BUTTON) {\n // Ignore anything except the primary button.\n return;\n }\n if (this._isDraggable(target)) {\n this._dragData = {\n clientX: event.clientX,\n clientY: event.clientY,\n eventTarget: event.target,\n dragTarget: target,\n };\n for (var _i = 0, _a = Object.keys(this._activeTargets); _i < _a.length; _i++) {\n var key = _a[_i];\n var activeTarget = this._activeTargets[key];\n if (activeTarget.target.root) {\n this._events.on(activeTarget.target.root, 'mousemove', this._onMouseMove.bind(this, activeTarget.target));\n this._events.on(activeTarget.target.root, 'mouseleave', this._onMouseLeave.bind(this, activeTarget.target));\n }\n }\n }\n else {\n this._dragData = null;\n }\n };\n /**\n * determine whether the child target is a descendant of the parent\n */\n DragDropHelper.prototype._isChild = function (parentElement, childElement) {\n while (childElement && childElement.parentElement) {\n if (childElement.parentElement === parentElement) {\n return true;\n }\n childElement = childElement.parentElement;\n }\n return false;\n };\n DragDropHelper.prototype._isDraggable = function (target) {\n var options = target.options;\n return !!(options.canDrag && options.canDrag(options.context.data));\n };\n DragDropHelper.prototype._isDroppable = function (target) {\n // TODO: take the drag item into consideration to prevent dragging an item into the same group\n var options = target.options;\n var dragContext = this._dragData && this._dragData.dragTarget ? this._dragData.dragTarget.options.context : undefined;\n return !!(options.canDrop && options.canDrop(options.context, dragContext));\n };\n return DragDropHelper;\n}());\nexport { DragDropHelper };\n//# sourceMappingURL=DragDropHelper.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "index": 756, - "index2": 754, - "size": 297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../components/DetailsList/DetailsColumn", - "loc": "13:0-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "userRequest": "../../components/DetailsList/DetailsColumn", - "loc": "499:40-53" - } - ], - "usedExports": [ - "DetailsColumn" - ], - "providedExports": [ - "DetailsColumn" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { DetailsColumnBase } from './DetailsColumn.base';\nimport { getStyles } from './DetailsColumn.styles';\nexport var DetailsColumn = styled(DetailsColumnBase, getStyles, undefined, { scope: 'DetailsColumn' });\n//# sourceMappingURL=DetailsColumn.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.types.js", - "index": 813, - "index2": 809, - "size": 785, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+EKj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/MessageBar.js" - }, - { - "id": "PUtH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBar.types", - "loc": "4:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBar.types", - "loc": "6:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "14:15-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "15:15-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "16:15-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "17:15-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "18:15-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "19:15-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "28:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "29:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "30:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "31:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "32:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "33:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "36:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "37:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "38:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "39:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "40:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "41:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "44:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "45:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "46:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "47:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "48:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "49:7-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "53:252-266" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "95:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "96:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "97:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "98:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "99:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "107:46-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "118:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "119:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "120:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.types", - "loc": "126:24-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "918:74-88" - }, - { - "moduleId": "PUtH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBar.types", - "loc": "3:0-35" - }, - { - "moduleId": "PUtH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "type": "harmony export imported specifier", - "userRequest": "./MessageBar.types", - "loc": "3:0-35" - } - ], - "usedExports": [ - "MessageBarType" - ], - "providedExports": [ - "MessageBarType" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * {@docCategory MessageBar}\n */\nexport var MessageBarType;\n(function (MessageBarType) {\n /** Info styled MessageBar */\n MessageBarType[MessageBarType[\"info\"] = 0] = \"info\";\n /** Error styled MessageBar */\n MessageBarType[MessageBarType[\"error\"] = 1] = \"error\";\n /** Blocked styled MessageBar */\n MessageBarType[MessageBarType[\"blocked\"] = 2] = \"blocked\";\n /** SevereWarning styled MessageBar */\n MessageBarType[MessageBarType[\"severeWarning\"] = 3] = \"severeWarning\";\n /** Success styled MessageBar */\n MessageBarType[MessageBarType[\"success\"] = 4] = \"success\";\n /** Warning styled MessageBar */\n MessageBarType[MessageBarType[\"warning\"] = 5] = \"warning\";\n})(MessageBarType || (MessageBarType = {}));\n//# sourceMappingURL=MessageBar.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "index": 812, - "index2": 810, - "size": 6868, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+EKj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/MessageBar.js" - }, - { - "id": "PUtH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBar.base", - "loc": "2:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.base", - "loc": "4:31-45" - }, - { - "moduleId": "PUtH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBar.base", - "loc": "2:0-34" - }, - { - "moduleId": "PUtH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "type": "harmony export imported specifier", - "userRequest": "./MessageBar.base", - "loc": "2:0-34" - } - ], - "usedExports": [ - "MessageBarBase" - ], - "providedExports": [ - "MessageBarBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { DelayedRender, getId, classNamesFunction, getNativeProps, htmlElementProperties, css, initializeComponentRef, } from '../../Utilities';\nimport { IconButton } from '../../Button';\nimport { Icon } from '../../Icon';\nimport { MessageBarType } from './MessageBar.types';\nvar getClassNames = classNamesFunction();\nvar MessageBarBase = /** @class */ (function (_super) {\n __extends(MessageBarBase, _super);\n function MessageBarBase(props) {\n var _a;\n var _this = _super.call(this, props) || this;\n _this.ICON_MAP = (_a = {},\n _a[MessageBarType.info] = 'Info',\n _a[MessageBarType.warning] = 'Info',\n _a[MessageBarType.error] = 'ErrorBadge',\n _a[MessageBarType.blocked] = 'Blocked2',\n _a[MessageBarType.severeWarning] = 'Warning',\n _a[MessageBarType.success] = 'Completed',\n _a);\n _this._getRegionProps = function () {\n var hasActions = !!_this._getActionsDiv() || !!_this._getDismissDiv();\n var regionProps = {\n 'aria-describedby': _this.state.labelId,\n role: 'region',\n };\n return hasActions ? regionProps : {};\n };\n _this._onClick = function (ev) {\n _this.setState({ expandSingleLine: !_this.state.expandSingleLine });\n };\n initializeComponentRef(_this);\n _this.state = {\n labelId: getId('MessageBar'),\n // eslint-disable-next-line react/no-unused-state\n showContent: false,\n expandSingleLine: false,\n };\n return _this;\n }\n MessageBarBase.prototype.render = function () {\n var isMultiline = this.props.isMultiline;\n this._classNames = this._getClassNames();\n return isMultiline ? this._renderMultiLine() : this._renderSingleLine();\n };\n MessageBarBase.prototype._getActionsDiv = function () {\n if (this.props.actions) {\n return React.createElement(\"div\", { className: this._classNames.actions }, this.props.actions);\n }\n return null;\n };\n MessageBarBase.prototype._getDismissDiv = function () {\n var _a = this.props, onDismiss = _a.onDismiss, dismissIconProps = _a.dismissIconProps;\n if (onDismiss) {\n return (React.createElement(IconButton, { disabled: false, className: this._classNames.dismissal, onClick: onDismiss, iconProps: dismissIconProps ? dismissIconProps : { iconName: 'Clear' }, title: this.props.dismissButtonAriaLabel, ariaLabel: this.props.dismissButtonAriaLabel }));\n }\n return null;\n };\n MessageBarBase.prototype._getDismissSingleLine = function () {\n if (this.props.onDismiss) {\n return React.createElement(\"div\", { className: this._classNames.dismissSingleLine }, this._getDismissDiv());\n }\n return null;\n };\n MessageBarBase.prototype._getExpandSingleLine = function () {\n if (!this.props.actions && this.props.truncated) {\n return (React.createElement(\"div\", { className: this._classNames.expandSingleLine },\n React.createElement(IconButton, { disabled: false, className: this._classNames.expand, onClick: this._onClick, iconProps: { iconName: this.state.expandSingleLine ? 'DoubleChevronUp' : 'DoubleChevronDown' }, ariaLabel: this.props.overflowButtonAriaLabel, \"aria-expanded\": this.state.expandSingleLine })));\n }\n return null;\n };\n MessageBarBase.prototype._getIconSpan = function () {\n var messageBarIconProps = this.props.messageBarIconProps;\n return (React.createElement(\"div\", { className: this._classNames.iconContainer, \"aria-hidden\": true }, messageBarIconProps ? (React.createElement(Icon, __assign({}, messageBarIconProps, { className: css(this._classNames.icon, messageBarIconProps.className) }))) : (React.createElement(Icon, { iconName: this.ICON_MAP[this.props.messageBarType], className: this._classNames.icon }))));\n };\n MessageBarBase.prototype._renderMultiLine = function () {\n return (React.createElement(\"div\", __assign({ className: this._classNames.root }, this._getRegionProps()),\n React.createElement(\"div\", { className: this._classNames.content },\n this._getIconSpan(),\n this._renderInnerText(),\n this._getDismissDiv()),\n this._getActionsDiv()));\n };\n MessageBarBase.prototype._renderSingleLine = function () {\n return (React.createElement(\"div\", __assign({ className: this._classNames.root }, this._getRegionProps()),\n React.createElement(\"div\", { className: this._classNames.content },\n this._getIconSpan(),\n this._renderInnerText(),\n this._getExpandSingleLine(),\n this._getActionsDiv(),\n this._getDismissSingleLine())));\n };\n MessageBarBase.prototype._renderInnerText = function () {\n var nativeProps = getNativeProps(this.props, htmlElementProperties, [\n 'className',\n ]);\n return (React.createElement(\"div\", { className: this._classNames.text, id: this.state.labelId, role: \"status\", \"aria-live\": this._getAnnouncementPriority() },\n React.createElement(\"span\", __assign({ className: this._classNames.innerText }, nativeProps),\n React.createElement(DelayedRender, null,\n React.createElement(\"span\", null, this.props.children)))));\n };\n MessageBarBase.prototype._getClassNames = function () {\n var _a = this.props, theme = _a.theme, className = _a.className, messageBarType = _a.messageBarType, onDismiss = _a.onDismiss, actions = _a.actions, truncated = _a.truncated, isMultiline = _a.isMultiline;\n var expandSingleLine = this.state.expandSingleLine;\n return getClassNames(this.props.styles, {\n theme: theme,\n messageBarType: messageBarType || MessageBarType.info,\n onDismiss: onDismiss !== undefined,\n actions: actions !== undefined,\n truncated: truncated,\n isMultiline: isMultiline,\n expandSingleLine: expandSingleLine,\n className: className,\n });\n };\n MessageBarBase.prototype._getAnnouncementPriority = function () {\n switch (this.props.messageBarType) {\n case MessageBarType.blocked:\n case MessageBarType.error:\n case MessageBarType.severeWarning:\n return 'assertive';\n }\n return 'polite';\n };\n MessageBarBase.defaultProps = {\n messageBarType: MessageBarType.info,\n onDismiss: undefined,\n isMultiline: true,\n };\n return MessageBarBase;\n}(React.Component));\nexport { MessageBarBase };\n//# sourceMappingURL=MessageBar.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "index": 811, - "index2": 812, - "size": 281, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "issuerId": "PUtH", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+EKj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/MessageBar.js" - }, - { - "id": "PUtH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "918:44-54" - }, - { - "moduleId": "PUtH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBar", - "loc": "1:0-29" - }, - { - "moduleId": "PUtH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "type": "harmony export imported specifier", - "userRequest": "./MessageBar", - "loc": "1:0-29" - } - ], - "usedExports": [ - "MessageBar" - ], - "providedExports": [ - "MessageBar" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { MessageBarBase } from './MessageBar.base';\nimport { getStyles } from './MessageBar.styles';\nexport var MessageBar = styled(MessageBarBase, getStyles, undefined, {\n scope: 'MessageBar',\n});\n//# sourceMappingURL=MessageBar.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "index": 839, - "index2": 833, - "size": 26530, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "issuerId": "Ox9w", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - }, - { - "id": "Ox9w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "353:177-190" - }, - { - "moduleId": "Ox9w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SelectionZone", - "loc": "3:0-32" - }, - { - "moduleId": "Ox9w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SelectionZone", - "loc": "3:0-32" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "501:36-49" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "782:32-45" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Selection", - "loc": "199:36-49" - } - ], - "usedExports": [ - "SelectionZone" - ], - "providedExports": [ - "SelectionZone" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async, EventGroup, KeyCodes, elementContains, findScrollableParent, getParent, getDocument, getWindow, isElementTabbable, css, initializeComponentRef, FocusRects, } from '../../Utilities';\nimport { SelectionMode } from './interfaces';\n// Selection definitions:\n//\n// Anchor index: the point from which a range selection starts.\n// Focus index: the point from which layout movement originates from.\n//\n// These two can differ. Tests:\n//\n// If you start at index 5\n// Shift click to index 10\n// The focus is 10, the anchor is 5.\n// If you shift click at index 0\n// The anchor remains at 5, the items between 0 and 5 are selected and everything else is cleared.\n// If you click index 8\n// The anchor and focus are set to 8.\nvar SELECTION_DISABLED_ATTRIBUTE_NAME = 'data-selection-disabled';\nvar SELECTION_INDEX_ATTRIBUTE_NAME = 'data-selection-index';\nvar SELECTION_TOGGLE_ATTRIBUTE_NAME = 'data-selection-toggle';\nvar SELECTION_INVOKE_ATTRIBUTE_NAME = 'data-selection-invoke';\nvar SELECTION_INVOKE_TOUCH_ATTRIBUTE_NAME = 'data-selection-touch-invoke';\nvar SELECTALL_TOGGLE_ALL_ATTRIBUTE_NAME = 'data-selection-all-toggle';\nvar SELECTION_SELECT_ATTRIBUTE_NAME = 'data-selection-select';\n/**\n * {@docCategory Selection}\n */\nvar SelectionZone = /** @class */ (function (_super) {\n __extends(SelectionZone, _super);\n function SelectionZone(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n /**\n * In some cases, the consuming scenario requires to set focus on a row without having SelectionZone\n * react to the event. Note that focus events in IE \\<= 11 will occur asynchronously after .focus() has\n * been called on an element, so we need a flag to store the idea that we will bypass the \"next\"\n * focus event that occurs. This method does that.\n */\n _this.ignoreNextFocus = function () {\n _this._handleNextFocus(false);\n };\n _this._onSelectionChange = function () {\n var selection = _this.props.selection;\n var isModal = selection.isModal && selection.isModal();\n _this.setState({\n isModal: isModal,\n });\n };\n _this._onMouseDownCapture = function (ev) {\n var target = ev.target;\n if (document.activeElement !== target && !elementContains(document.activeElement, target)) {\n _this.ignoreNextFocus();\n return;\n }\n if (!elementContains(target, _this._root.current)) {\n return;\n }\n while (target !== _this._root.current) {\n if (_this._hasAttribute(target, SELECTION_INVOKE_ATTRIBUTE_NAME)) {\n _this.ignoreNextFocus();\n break;\n }\n target = getParent(target);\n }\n };\n /**\n * When we focus an item, for single/multi select scenarios, we should try to select it immediately\n * as long as the focus did not originate from a mouse down/touch event. For those cases, we handle them\n * specially.\n */\n _this._onFocus = function (ev) {\n var target = ev.target;\n var selection = _this.props.selection;\n var isToggleModifierPressed = _this._isCtrlPressed || _this._isMetaPressed;\n var selectionMode = _this._getSelectionMode();\n if (_this._shouldHandleFocus && selectionMode !== SelectionMode.none) {\n var isToggle = _this._hasAttribute(target, SELECTION_TOGGLE_ATTRIBUTE_NAME);\n var itemRoot = _this._findItemRoot(target);\n if (!isToggle && itemRoot) {\n var index = _this._getItemIndex(itemRoot);\n if (isToggleModifierPressed) {\n // set anchor only.\n selection.setIndexSelected(index, selection.isIndexSelected(index), true);\n if (_this.props.enterModalOnTouch && _this._isTouch && selection.setModal) {\n selection.setModal(true);\n _this._setIsTouch(false);\n }\n }\n else {\n if (_this.props.isSelectedOnFocus) {\n _this._onItemSurfaceClick(ev, index);\n }\n }\n }\n }\n _this._handleNextFocus(false);\n };\n _this._onMouseDown = function (ev) {\n _this._updateModifiers(ev);\n var target = ev.target;\n var itemRoot = _this._findItemRoot(target);\n // No-op if selection is disabled\n if (_this._isSelectionDisabled(target)) {\n return;\n }\n while (target !== _this._root.current) {\n if (_this._hasAttribute(target, SELECTALL_TOGGLE_ALL_ATTRIBUTE_NAME)) {\n break;\n }\n else if (itemRoot) {\n if (_this._hasAttribute(target, SELECTION_TOGGLE_ATTRIBUTE_NAME)) {\n break;\n }\n else if (_this._hasAttribute(target, SELECTION_INVOKE_ATTRIBUTE_NAME)) {\n break;\n }\n else if ((target === itemRoot || _this._shouldAutoSelect(target)) &&\n !_this._isShiftPressed &&\n !_this._isCtrlPressed &&\n !_this._isMetaPressed) {\n _this._onInvokeMouseDown(ev, _this._getItemIndex(itemRoot));\n break;\n }\n else if (_this.props.disableAutoSelectOnInputElements &&\n (target.tagName === 'A' || target.tagName === 'BUTTON' || target.tagName === 'INPUT')) {\n return;\n }\n }\n target = getParent(target);\n }\n };\n _this._onTouchStartCapture = function (ev) {\n _this._setIsTouch(true);\n };\n _this._onClick = function (ev) {\n var _a = _this.props.enableTouchInvocationTarget, enableTouchInvocationTarget = _a === void 0 ? false : _a;\n _this._updateModifiers(ev);\n var target = ev.target;\n var itemRoot = _this._findItemRoot(target);\n var isSelectionDisabled = _this._isSelectionDisabled(target);\n while (target !== _this._root.current) {\n if (_this._hasAttribute(target, SELECTALL_TOGGLE_ALL_ATTRIBUTE_NAME)) {\n if (!isSelectionDisabled) {\n _this._onToggleAllClick(ev);\n }\n break;\n }\n else if (itemRoot) {\n var index = _this._getItemIndex(itemRoot);\n if (_this._hasAttribute(target, SELECTION_TOGGLE_ATTRIBUTE_NAME)) {\n if (!isSelectionDisabled) {\n if (_this._isShiftPressed) {\n _this._onItemSurfaceClick(ev, index);\n }\n else {\n _this._onToggleClick(ev, index);\n }\n }\n break;\n }\n else if ((_this._isTouch &&\n enableTouchInvocationTarget &&\n _this._hasAttribute(target, SELECTION_INVOKE_TOUCH_ATTRIBUTE_NAME)) ||\n _this._hasAttribute(target, SELECTION_INVOKE_ATTRIBUTE_NAME)) {\n // Items should be invokable even if selection is disabled.\n _this._onInvokeClick(ev, index);\n break;\n }\n else if (target === itemRoot) {\n if (!isSelectionDisabled) {\n _this._onItemSurfaceClick(ev, index);\n }\n break;\n }\n else if (target.tagName === 'A' || target.tagName === 'BUTTON' || target.tagName === 'INPUT') {\n return;\n }\n }\n target = getParent(target);\n }\n };\n _this._onContextMenu = function (ev) {\n var target = ev.target;\n var _a = _this.props, onItemContextMenu = _a.onItemContextMenu, selection = _a.selection;\n if (onItemContextMenu) {\n var itemRoot = _this._findItemRoot(target);\n if (itemRoot) {\n var index = _this._getItemIndex(itemRoot);\n _this._onInvokeMouseDown(ev, index);\n var skipPreventDefault = onItemContextMenu(selection.getItems()[index], index, ev.nativeEvent);\n // In order to keep back compat, if the value here is undefined, then we should still\n // call preventDefault(). Only in the case where true is explicitly returned should\n // the call be skipped.\n if (!skipPreventDefault) {\n ev.preventDefault();\n }\n }\n }\n };\n /**\n * In multi selection, if you double click within an item's root (but not within the invoke element or\n * input elements), we should execute the invoke handler.\n */\n _this._onDoubleClick = function (ev) {\n var target = ev.target;\n var onItemInvoked = _this.props.onItemInvoked;\n var itemRoot = _this._findItemRoot(target);\n if (itemRoot && onItemInvoked && !_this._isInputElement(target)) {\n var index = _this._getItemIndex(itemRoot);\n while (target !== _this._root.current) {\n if (_this._hasAttribute(target, SELECTION_TOGGLE_ATTRIBUTE_NAME) ||\n _this._hasAttribute(target, SELECTION_INVOKE_ATTRIBUTE_NAME)) {\n break;\n }\n else if (target === itemRoot) {\n _this._onInvokeClick(ev, index);\n break;\n }\n target = getParent(target);\n }\n target = getParent(target);\n }\n };\n _this._onKeyDownCapture = function (ev) {\n _this._updateModifiers(ev);\n _this._handleNextFocus(true);\n };\n _this._onKeyDown = function (ev) {\n _this._updateModifiers(ev);\n var target = ev.target;\n var isSelectionDisabled = _this._isSelectionDisabled(target);\n var selection = _this.props.selection;\n var isSelectAllKey = ev.which === KeyCodes.a && (_this._isCtrlPressed || _this._isMetaPressed);\n var isClearSelectionKey = ev.which === KeyCodes.escape;\n // Ignore key downs from input elements.\n if (_this._isInputElement(target)) {\n // A key was pressed while an item in this zone was focused.\n return;\n }\n var selectionMode = _this._getSelectionMode();\n // If ctrl-a is pressed, select all (if all are not already selected.)\n if (isSelectAllKey && selectionMode === SelectionMode.multiple && !selection.isAllSelected()) {\n if (!isSelectionDisabled) {\n selection.setAllSelected(true);\n }\n ev.stopPropagation();\n ev.preventDefault();\n return;\n }\n // If escape is pressed, clear selection (if any are selected.)\n if (isClearSelectionKey && selection.getSelectedCount() > 0) {\n if (!isSelectionDisabled) {\n selection.setAllSelected(false);\n }\n ev.stopPropagation();\n ev.preventDefault();\n return;\n }\n var itemRoot = _this._findItemRoot(target);\n // If a key was pressed within an item, we should treat \"enters\" as invokes and \"space\" as toggle\n if (itemRoot) {\n var index = _this._getItemIndex(itemRoot);\n while (target !== _this._root.current) {\n if (_this._hasAttribute(target, SELECTION_TOGGLE_ATTRIBUTE_NAME)) {\n // For toggle elements, assuming they are rendered as buttons, they will generate a click event,\n // so we can no-op for any keydowns in this case.\n break;\n }\n else if (_this._shouldAutoSelect(target)) {\n if (!isSelectionDisabled) {\n // If the event went to an element which should trigger auto-select, select it and then let\n // the default behavior kick in.\n _this._onInvokeMouseDown(ev, index);\n }\n break;\n }\n else if ((ev.which === KeyCodes.enter || ev.which === KeyCodes.space) &&\n (target.tagName === 'BUTTON' || target.tagName === 'A' || target.tagName === 'INPUT')) {\n return false;\n }\n else if (target === itemRoot) {\n if (ev.which === KeyCodes.enter) {\n // Items should be invokable even if selection is disabled.\n _this._onInvokeClick(ev, index);\n ev.preventDefault();\n return;\n }\n else if (ev.which === KeyCodes.space) {\n if (!isSelectionDisabled) {\n _this._onToggleClick(ev, index);\n }\n ev.preventDefault();\n return;\n }\n break;\n }\n target = getParent(target);\n }\n }\n };\n _this._events = new EventGroup(_this);\n _this._async = new Async(_this);\n initializeComponentRef(_this);\n var selection = _this.props.selection;\n // Reflect the initial modal state of selection into the state.\n var isModal = selection.isModal && selection.isModal();\n _this.state = {\n isModal: isModal,\n };\n return _this;\n }\n SelectionZone.getDerivedStateFromProps = function (nextProps, prevState) {\n var isModal = nextProps.selection.isModal && nextProps.selection.isModal();\n return __assign(__assign({}, prevState), { isModal: isModal });\n };\n SelectionZone.prototype.componentDidMount = function () {\n var win = getWindow(this._root.current);\n // Track the latest modifier keys globally.\n this._events.on(win, 'keydown, keyup', this._updateModifiers, true);\n this._events.on(document, 'click', this._findScrollParentAndTryClearOnEmptyClick);\n this._events.on(document.body, 'touchstart', this._onTouchStartCapture, true);\n this._events.on(document.body, 'touchend', this._onTouchStartCapture, true);\n // Subscribe to the selection to keep modal state updated.\n this._events.on(this.props.selection, 'change', this._onSelectionChange);\n };\n SelectionZone.prototype.render = function () {\n var isModal = this.state.isModal;\n return (React.createElement(\"div\", { className: css('ms-SelectionZone', this.props.className, {\n 'ms-SelectionZone--modal': !!isModal,\n }), ref: this._root, onKeyDown: this._onKeyDown, onMouseDown: this._onMouseDown, onKeyDownCapture: this._onKeyDownCapture, onClick: this._onClick, role: \"presentation\", onDoubleClick: this._onDoubleClick, onContextMenu: this._onContextMenu, onMouseDownCapture: this._onMouseDownCapture, onFocusCapture: this._onFocus, \"data-selection-is-modal\": isModal ? true : undefined },\n this.props.children,\n React.createElement(FocusRects, null)));\n };\n SelectionZone.prototype.componentDidUpdate = function (previousProps) {\n var selection = this.props.selection;\n if (selection !== previousProps.selection) {\n // Whenever selection changes, update the subscripton to keep modal state updated.\n this._events.off(previousProps.selection);\n this._events.on(selection, 'change', this._onSelectionChange);\n }\n };\n SelectionZone.prototype.componentWillUnmount = function () {\n this._events.dispose();\n this._async.dispose();\n };\n SelectionZone.prototype._isSelectionDisabled = function (target) {\n if (this._getSelectionMode() === SelectionMode.none) {\n return true;\n }\n while (target !== this._root.current) {\n if (this._hasAttribute(target, SELECTION_DISABLED_ATTRIBUTE_NAME)) {\n return true;\n }\n target = getParent(target);\n }\n return false;\n };\n SelectionZone.prototype._onToggleAllClick = function (ev) {\n var selection = this.props.selection;\n var selectionMode = this._getSelectionMode();\n if (selectionMode === SelectionMode.multiple) {\n selection.toggleAllSelected();\n ev.stopPropagation();\n ev.preventDefault();\n }\n };\n SelectionZone.prototype._onToggleClick = function (ev, index) {\n var selection = this.props.selection;\n var selectionMode = this._getSelectionMode();\n selection.setChangeEvents(false);\n if (this.props.enterModalOnTouch && this._isTouch && !selection.isIndexSelected(index) && selection.setModal) {\n selection.setModal(true);\n this._setIsTouch(false);\n }\n if (selectionMode === SelectionMode.multiple) {\n selection.toggleIndexSelected(index);\n }\n else if (selectionMode === SelectionMode.single) {\n var isSelected = selection.isIndexSelected(index);\n var isModal = selection.isModal && selection.isModal();\n selection.setAllSelected(false);\n selection.setIndexSelected(index, !isSelected, true);\n if (isModal && selection.setModal) {\n // Since the above call to setAllSelected(false) clears modal state,\n // restore it. This occurs because the SelectionMode of the Selection\n // may differ from the SelectionZone.\n selection.setModal(true);\n }\n }\n else {\n selection.setChangeEvents(true);\n return;\n }\n selection.setChangeEvents(true);\n ev.stopPropagation();\n // NOTE: ev.preventDefault is not called for toggle clicks, because this will kill the browser behavior\n // for checkboxes if you use a checkbox for the toggle.\n };\n SelectionZone.prototype._onInvokeClick = function (ev, index) {\n var _a = this.props, selection = _a.selection, onItemInvoked = _a.onItemInvoked;\n if (onItemInvoked) {\n onItemInvoked(selection.getItems()[index], index, ev.nativeEvent);\n ev.preventDefault();\n ev.stopPropagation();\n }\n };\n SelectionZone.prototype._onItemSurfaceClick = function (ev, index) {\n var selection = this.props.selection;\n var isToggleModifierPressed = this._isCtrlPressed || this._isMetaPressed;\n var selectionMode = this._getSelectionMode();\n if (selectionMode === SelectionMode.multiple) {\n if (this._isShiftPressed && !this._isTabPressed) {\n selection.selectToIndex(index, !isToggleModifierPressed);\n }\n else if (isToggleModifierPressed) {\n selection.toggleIndexSelected(index);\n }\n else {\n this._clearAndSelectIndex(index);\n }\n }\n else if (selectionMode === SelectionMode.single) {\n this._clearAndSelectIndex(index);\n }\n };\n SelectionZone.prototype._onInvokeMouseDown = function (ev, index) {\n var selection = this.props.selection;\n // Only do work if item is not selected.\n if (selection.isIndexSelected(index)) {\n return;\n }\n this._clearAndSelectIndex(index);\n };\n /**\n * To avoid high startup cost of traversing the DOM on component mount,\n * defer finding the scrollable parent until a click interaction.\n *\n * The styles will probably already calculated since we're running in a click handler,\n * so this is less likely to cause layout thrashing then doing it in mount.\n */\n SelectionZone.prototype._findScrollParentAndTryClearOnEmptyClick = function (ev) {\n var scrollParent = findScrollableParent(this._root.current);\n // unbind this handler and replace binding with a binding on the actual scrollable parent\n this._events.off(document, 'click', this._findScrollParentAndTryClearOnEmptyClick);\n this._events.on(scrollParent, 'click', this._tryClearOnEmptyClick);\n // If we clicked inside the scrollable parent, call through to the handler on this click.\n if ((scrollParent && ev.target instanceof Node && scrollParent.contains(ev.target)) || scrollParent === ev.target) {\n this._tryClearOnEmptyClick(ev);\n }\n };\n SelectionZone.prototype._tryClearOnEmptyClick = function (ev) {\n if (!this.props.selectionPreservedOnEmptyClick && this._isNonHandledClick(ev.target)) {\n this.props.selection.setAllSelected(false);\n }\n };\n SelectionZone.prototype._clearAndSelectIndex = function (index) {\n var selection = this.props.selection;\n var isAlreadySingleSelected = selection.getSelectedCount() === 1 && selection.isIndexSelected(index);\n if (!isAlreadySingleSelected) {\n var isModal = selection.isModal && selection.isModal();\n selection.setChangeEvents(false);\n selection.setAllSelected(false);\n selection.setIndexSelected(index, true, true);\n if (isModal || (this.props.enterModalOnTouch && this._isTouch)) {\n if (selection.setModal) {\n selection.setModal(true);\n }\n if (this._isTouch) {\n this._setIsTouch(false);\n }\n }\n selection.setChangeEvents(true);\n }\n };\n /**\n * We need to track the modifier key states so that when focus events occur, which do not contain\n * modifier states in the Event object, we know how to behave.\n */\n SelectionZone.prototype._updateModifiers = function (ev) {\n this._isShiftPressed = ev.shiftKey;\n this._isCtrlPressed = ev.ctrlKey;\n this._isMetaPressed = ev.metaKey;\n var keyCode = ev.keyCode;\n this._isTabPressed = keyCode ? keyCode === KeyCodes.tab : false;\n };\n SelectionZone.prototype._findItemRoot = function (target) {\n var selection = this.props.selection;\n while (target !== this._root.current) {\n var indexValue = target.getAttribute(SELECTION_INDEX_ATTRIBUTE_NAME);\n var index = Number(indexValue);\n if (indexValue !== null && index >= 0 && index < selection.getItems().length) {\n break;\n }\n target = getParent(target);\n }\n if (target === this._root.current) {\n return undefined;\n }\n return target;\n };\n SelectionZone.prototype._getItemIndex = function (itemRoot) {\n return Number(itemRoot.getAttribute(SELECTION_INDEX_ATTRIBUTE_NAME));\n };\n SelectionZone.prototype._shouldAutoSelect = function (element) {\n return this._hasAttribute(element, SELECTION_SELECT_ATTRIBUTE_NAME);\n };\n SelectionZone.prototype._hasAttribute = function (element, attributeName) {\n var isToggle = false;\n while (!isToggle && element !== this._root.current) {\n isToggle = element.getAttribute(attributeName) === 'true';\n element = getParent(element);\n }\n return isToggle;\n };\n SelectionZone.prototype._isInputElement = function (element) {\n return element.tagName === 'INPUT' || element.tagName === 'TEXTAREA';\n };\n SelectionZone.prototype._isNonHandledClick = function (element) {\n var doc = getDocument();\n if (doc && element) {\n while (element && element !== doc.documentElement) {\n if (isElementTabbable(element)) {\n return false;\n }\n element = getParent(element);\n }\n }\n return true;\n };\n SelectionZone.prototype._handleNextFocus = function (handleFocus) {\n var _this = this;\n if (this._shouldHandleFocusTimeoutId) {\n this._async.clearTimeout(this._shouldHandleFocusTimeoutId);\n this._shouldHandleFocusTimeoutId = undefined;\n }\n this._shouldHandleFocus = handleFocus;\n if (handleFocus) {\n this._async.setTimeout(function () {\n _this._shouldHandleFocus = false;\n }, 100);\n }\n };\n SelectionZone.prototype._setIsTouch = function (isTouch) {\n var _this = this;\n if (this._isTouchTimeoutId) {\n this._async.clearTimeout(this._isTouchTimeoutId);\n this._isTouchTimeoutId = undefined;\n }\n this._isTouch = true;\n if (isTouch) {\n this._async.setTimeout(function () {\n _this._isTouch = false;\n }, 300);\n }\n };\n SelectionZone.prototype._getSelectionMode = function () {\n var selection = this.props.selection;\n var _a = this.props.selectionMode, selectionMode = _a === void 0 ? selection ? selection.mode : SelectionMode.none : _a;\n return selectionMode;\n };\n SelectionZone.defaultProps = {\n isSelectedOnFocus: true,\n selectionMode: SelectionMode.multiple,\n };\n return SelectionZone;\n}(React.Component));\nexport { SelectionZone };\n//# sourceMappingURL=SelectionZone.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "index": 823, - "index2": 820, - "size": 288, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupHeader", - "loc": "5:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "userRequest": "./GroupHeader", - "loc": "19:39-50" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupHeader", - "loc": "4:0-30" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupHeader", - "loc": "4:0-30" - } - ], - "usedExports": [ - "GroupHeader" - ], - "providedExports": [ - "GroupHeader" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { getStyles } from './GroupHeader.styles';\nimport { GroupHeaderBase } from './GroupHeader.base';\nexport var GroupHeader = styled(GroupHeaderBase, getStyles, undefined, {\n scope: 'GroupHeader',\n});\n//# sourceMappingURL=GroupHeader.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "index": 830, - "index2": 823, - "size": 290, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupShowAll", - "loc": "6:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "userRequest": "./GroupShowAll", - "loc": "22:39-51" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupShowAll", - "loc": "6:0-31" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupShowAll", - "loc": "6:0-31" - } - ], - "usedExports": [ - "GroupShowAll" - ], - "providedExports": [ - "GroupShowAll" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { getStyles } from './GroupShowAll.styles';\nimport { GroupShowAllBase } from './GroupShowAll.base';\nexport var GroupShowAll = styled(GroupShowAllBase, getStyles, undefined, { scope: 'GroupShowAll' });\n//# sourceMappingURL=GroupShowAll.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "index": 833, - "index2": 826, - "size": 288, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupFooter", - "loc": "7:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "userRequest": "./GroupFooter", - "loc": "25:39-50" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupFooter", - "loc": "5:0-30" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupFooter", - "loc": "5:0-30" - } - ], - "usedExports": [ - "GroupFooter" - ], - "providedExports": [ - "GroupFooter" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { getStyles } from './GroupFooter.styles';\nimport { GroupFooterBase } from './GroupFooter.base';\nexport var GroupFooter = styled(GroupFooterBase, getStyles, undefined, {\n scope: 'GroupFooter',\n});\n//# sourceMappingURL=GroupFooter.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/List/List.types.js", - "index": 837, - "index2": 827, - "size": 624, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "bSH+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/List.js", - "name": "./node_modules/office-ui-fabric-react/lib/List.js" - }, - { - "id": "g4Ya", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/List/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/List/List.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony side effect evaluation", - "userRequest": "./List.types", - "loc": "4:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "userRequest": "./List.types", - "loc": "157:54-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "userRequest": "./List.types", - "loc": "187:29-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "userRequest": "./List.types", - "loc": "190:29-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "userRequest": "./List.types", - "loc": "193:29-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "userRequest": "./List.types", - "loc": "196:29-41" - }, - { - "moduleId": "g4Ya", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./List.types", - "loc": "2:0-29" - }, - { - "moduleId": "g4Ya", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "type": "harmony export imported specifier", - "userRequest": "./List.types", - "loc": "2:0-29" - } - ], - "usedExports": [ - "ScrollToMode" - ], - "providedExports": [ - "ScrollToMode" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * {@docCategory List}\n */\nexport var ScrollToMode = {\n /**\n * Does not make any consideration to where in the viewport the item should align to.\n */\n auto: 0,\n /**\n * Attempts to scroll the list so the top of the desired item is aligned with the top of the viewport.\n */\n top: 1,\n /**\n * Attempts to scroll the list so the bottom of the desired item is aligned with the bottom of the viewport.\n */\n bottom: 2,\n /**\n * Attempts to scroll the list so the desired item is in the exact center of the viewport.\n */\n center: 3,\n};\n//# sourceMappingURL=List.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "index": 836, - "index2": 828, - "size": 41884, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/index.js", - "issuerId": "g4Ya", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "bSH+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/List.js", - "name": "./node_modules/office-ui-fabric-react/lib/List.js" - }, - { - "id": "g4Ya", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/List/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../List", - "loc": "149:87-91" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../List", - "loc": "156:386-390" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../List", - "loc": "199:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../List", - "loc": "295:28-32" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../List", - "loc": "17:40-44" - }, - { - "moduleId": "g4Ya", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./List", - "loc": "1:0-23" - }, - { - "moduleId": "g4Ya", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/index.js", - "type": "harmony export imported specifier", - "userRequest": "./List", - "loc": "1:0-23" - } - ], - "usedExports": [ - "List" - ], - "providedExports": [ - "List" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { Async, EventGroup, css, divProperties, findIndex, findScrollableParent, getNativeProps, getParent, getWindow, initializeComponentRef, } from '../../Utilities';\nimport { ScrollToMode, } from './List.types';\nimport { composeRenderFunction } from '../../Utilities';\nvar RESIZE_DELAY = 16;\nvar MIN_SCROLL_UPDATE_DELAY = 100;\nvar MAX_SCROLL_UPDATE_DELAY = 500;\nvar IDLE_DEBOUNCE_DELAY = 200;\n// The amount of time to wait before declaring that the list isn't scrolling\nvar DONE_SCROLLING_WAIT = 500;\nvar DEFAULT_ITEMS_PER_PAGE = 10;\nvar DEFAULT_PAGE_HEIGHT = 30;\nvar DEFAULT_RENDERED_WINDOWS_BEHIND = 2;\nvar DEFAULT_RENDERED_WINDOWS_AHEAD = 2;\nvar PAGE_KEY_PREFIX = 'page-';\nvar SPACER_KEY_PREFIX = 'spacer-';\nvar EMPTY_RECT = {\n top: -1,\n bottom: -1,\n left: -1,\n right: -1,\n width: 0,\n height: 0,\n};\n// Naming expensive measures so that they're named in profiles.\nvar _measurePageRect = function (element) { return element.getBoundingClientRect(); };\nvar _measureSurfaceRect = _measurePageRect;\nvar _measureScrollRect = _measurePageRect;\n/**\n * The List renders virtualized pages of items. Each page's item count is determined by the getItemCountForPage callback\n * if provided by the caller, or 10 as default. Each page's height is determined by the getPageHeight callback if\n * provided by the caller, or by cached measurements if available, or by a running average, or a default fallback.\n *\n * The algorithm for rendering pages works like this:\n *\n * 1. Predict visible pages based on \"current measure data\" (page heights, surface position, visible window)\n * 2. If changes are necessary, apply changes (add/remove pages)\n * 3. For pages that are added, measure the page heights if we need to using getBoundingClientRect\n * 4. If measurements don't match predictions, update measure data and goto step 1 asynchronously\n *\n * Measuring too frequently can pull performance down significantly. To compensate, we cache measured values so that\n * we can avoid re-measuring during operations that should not alter heights, like scrolling.\n *\n * To optimize glass rendering performance, onShouldVirtualize can be set. When onShouldVirtualize return false,\n * List will run in fast mode (not virtualized) to render all items without any measurements to improve page load time.\n * And we start doing measurements and rendering in virtualized mode when items grows larger than this threshold.\n *\n * However, certain operations can make measure data stale. For example, resizing the list, or passing in new props,\n * or forcing an update change cause pages to shrink/grow. When these operations occur, we increment a measureVersion\n * number, which we associate with cached measurements and use to determine if a remeasure should occur.\n */\nvar List = /** @class */ (function (_super) {\n __extends(List, _super);\n function List(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._surface = React.createRef();\n _this._pageRefs = {};\n _this._getDerivedStateFromProps = function (nextProps, previousState) {\n if (nextProps.items !== _this.props.items ||\n nextProps.renderCount !== _this.props.renderCount ||\n nextProps.startIndex !== _this.props.startIndex ||\n nextProps.version !== _this.props.version) {\n // We have received new items so we want to make sure that initially we only render a single window to\n // fill the currently visible rect, and then later render additional windows.\n _this._resetRequiredWindows();\n _this._requiredRect = null;\n _this._measureVersion++;\n _this._invalidatePageCache();\n return _this._updatePages(nextProps, previousState);\n }\n return previousState;\n };\n _this._onRenderRoot = function (props) {\n var rootRef = props.rootRef, surfaceElement = props.surfaceElement, divProps = props.divProps;\n return (React.createElement(\"div\", __assign({ ref: rootRef }, divProps), surfaceElement));\n };\n _this._onRenderSurface = function (props) {\n var surfaceRef = props.surfaceRef, pageElements = props.pageElements, divProps = props.divProps;\n return (React.createElement(\"div\", __assign({ ref: surfaceRef }, divProps), pageElements));\n };\n _this._onRenderPage = function (pageProps, defaultRender) {\n var _a = _this.props, onRenderCell = _a.onRenderCell, role = _a.role;\n var _b = pageProps.page, _c = _b.items, items = _c === void 0 ? [] : _c, startIndex = _b.startIndex, divProps = __rest(pageProps, [\"page\"]);\n // only assign list item role if no role is assigned\n var cellRole = role === undefined ? 'listitem' : 'presentation';\n var cells = [];\n for (var i = 0; i < items.length; i++) {\n var index = startIndex + i;\n var item = items[i];\n var itemKey = _this.props.getKey ? _this.props.getKey(item, index) : item && item.key;\n if (itemKey === null || itemKey === undefined) {\n itemKey = index;\n }\n cells.push(React.createElement(\"div\", { role: cellRole, className: 'ms-List-cell', key: itemKey, \"data-list-index\": index, \"data-automationid\": \"ListCell\" }, onRenderCell &&\n onRenderCell(item, index, !_this.props.ignoreScrollingState ? _this.state.isScrolling : undefined)));\n }\n return React.createElement(\"div\", __assign({}, divProps), cells);\n };\n initializeComponentRef(_this);\n _this.state = {\n pages: [],\n isScrolling: false,\n getDerivedStateFromProps: _this._getDerivedStateFromProps,\n };\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n _this._estimatedPageHeight = 0;\n _this._totalEstimates = 0;\n _this._requiredWindowsAhead = 0;\n _this._requiredWindowsBehind = 0;\n // Track the measure version for everything.\n _this._measureVersion = 0;\n // Ensure that scrolls are lazy updated.\n _this._onAsyncScroll = _this._async.debounce(_this._onAsyncScroll, MIN_SCROLL_UPDATE_DELAY, {\n leading: false,\n maxWait: MAX_SCROLL_UPDATE_DELAY,\n });\n _this._onAsyncIdle = _this._async.debounce(_this._onAsyncIdle, IDLE_DEBOUNCE_DELAY, {\n leading: false,\n });\n _this._onAsyncResize = _this._async.debounce(_this._onAsyncResize, RESIZE_DELAY, {\n leading: false,\n });\n _this._onScrollingDone = _this._async.debounce(_this._onScrollingDone, DONE_SCROLLING_WAIT, {\n leading: false,\n });\n _this._cachedPageHeights = {};\n _this._estimatedPageHeight = 0;\n _this._focusedIndex = -1;\n _this._pageCache = {};\n return _this;\n }\n List.getDerivedStateFromProps = function (nextProps, previousState) {\n return previousState.getDerivedStateFromProps(nextProps, previousState);\n };\n Object.defineProperty(List.prototype, \"pageRefs\", {\n get: function () {\n return this._pageRefs;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Scroll to the given index. By default will bring the page the specified item is on into the view. If a callback\n * to measure the height of an individual item is specified, will only scroll to bring the specific item into view.\n *\n * Note: with items of variable height and no passed in `getPageHeight` method, the list might jump after scrolling\n * when windows before/ahead are being rendered, and the estimated height is replaced using actual elements.\n *\n * @param index - Index of item to scroll to\n * @param measureItem - Optional callback to measure the height of an individual item\n * @param scrollToMode - Optional defines where in the window the item should be positioned to when scrolling\n */\n List.prototype.scrollToIndex = function (index, measureItem, scrollToMode) {\n if (scrollToMode === void 0) { scrollToMode = ScrollToMode.auto; }\n var startIndex = this.props.startIndex;\n var renderCount = this._getRenderCount();\n var endIndex = startIndex + renderCount;\n var allowedRect = this._allowedRect;\n var scrollTop = 0;\n var itemsPerPage = 1;\n for (var itemIndex = startIndex; itemIndex < endIndex; itemIndex += itemsPerPage) {\n var pageSpecification = this._getPageSpecification(itemIndex, allowedRect);\n var pageHeight = pageSpecification.height;\n itemsPerPage = pageSpecification.itemCount;\n var requestedIndexIsInPage = itemIndex <= index && itemIndex + itemsPerPage > index;\n if (requestedIndexIsInPage) {\n // We have found the page. If the user provided a way to measure an individual item, we will try to scroll in\n // just the given item, otherwise we'll only bring the page into view\n if (measureItem && this._scrollElement) {\n var scrollRect = _measureScrollRect(this._scrollElement);\n var scrollWindow = {\n top: this._scrollElement.scrollTop,\n bottom: this._scrollElement.scrollTop + scrollRect.height,\n };\n // Adjust for actual item position within page\n var itemPositionWithinPage = index - itemIndex;\n for (var itemIndexInPage = 0; itemIndexInPage < itemPositionWithinPage; ++itemIndexInPage) {\n scrollTop += measureItem(itemIndex + itemIndexInPage);\n }\n var scrollBottom = scrollTop + measureItem(index);\n // If scrollToMode is set to something other than auto, we always want to\n // scroll the item into a specific position on the page.\n switch (scrollToMode) {\n case ScrollToMode.top:\n this._scrollElement.scrollTop = scrollTop;\n return;\n case ScrollToMode.bottom:\n this._scrollElement.scrollTop = scrollBottom - scrollRect.height;\n return;\n case ScrollToMode.center:\n this._scrollElement.scrollTop = (scrollTop + scrollBottom - scrollRect.height) / 2;\n return;\n case ScrollToMode.auto:\n default:\n break;\n }\n var itemIsFullyVisible = scrollTop >= scrollWindow.top && scrollBottom <= scrollWindow.bottom;\n if (itemIsFullyVisible) {\n // Item is already visible, do nothing.\n return;\n }\n var itemIsPartiallyAbove = scrollTop < scrollWindow.top;\n var itemIsPartiallyBelow = scrollBottom > scrollWindow.bottom;\n if (itemIsPartiallyAbove) {\n // We will just scroll to 'scrollTop'\n // .------. - scrollTop\n // |Item |\n // | .----|-. - scrollWindow.top\n // '------' |\n // | |\n // '------'\n }\n else if (itemIsPartiallyBelow) {\n // Adjust scrollTop position to just bring in the element\n // .------. - scrollTop\n // | |\n // | .------.\n // '-|----' | - scrollWindow.bottom\n // | Item |\n // '------' - scrollBottom\n scrollTop = scrollBottom - scrollRect.height;\n }\n }\n this._scrollElement.scrollTop = scrollTop;\n return;\n }\n scrollTop += pageHeight;\n }\n };\n List.prototype.getStartItemIndexInView = function (measureItem) {\n var pages = this.state.pages || [];\n for (var _i = 0, pages_1 = pages; _i < pages_1.length; _i++) {\n var page = pages_1[_i];\n var isPageVisible = !page.isSpacer && (this._scrollTop || 0) >= page.top && (this._scrollTop || 0) <= page.top + page.height;\n if (isPageVisible) {\n if (!measureItem) {\n var rowHeight = Math.floor(page.height / page.itemCount);\n return page.startIndex + Math.floor((this._scrollTop - page.top) / rowHeight);\n }\n else {\n var totalRowHeight = 0;\n for (var itemIndex = page.startIndex; itemIndex < page.startIndex + page.itemCount; itemIndex++) {\n var rowHeight = measureItem(itemIndex);\n if (page.top + totalRowHeight <= this._scrollTop &&\n this._scrollTop < page.top + totalRowHeight + rowHeight) {\n return itemIndex;\n }\n else {\n totalRowHeight += rowHeight;\n }\n }\n }\n }\n }\n return 0;\n };\n List.prototype.componentDidMount = function () {\n this.setState(this._updatePages(this.props, this.state));\n this._measureVersion++;\n this._scrollElement = findScrollableParent(this._root.current);\n this._events.on(window, 'resize', this._onAsyncResize);\n if (this._root.current) {\n this._events.on(this._root.current, 'focus', this._onFocus, true);\n }\n if (this._scrollElement) {\n this._events.on(this._scrollElement, 'scroll', this._onScroll);\n this._events.on(this._scrollElement, 'scroll', this._onAsyncScroll);\n }\n };\n List.prototype.componentDidUpdate = function (previousProps, previousState) {\n var finalProps = this.props;\n var finalState = this.state;\n if (this.state.pagesVersion !== previousState.pagesVersion) {\n // If we weren't provided with the page height, measure the pages\n if (!finalProps.getPageHeight) {\n // If measured version is invalid since we've updated the DOM\n var heightsChanged = this._updatePageMeasurements(finalState.pages);\n // On first render, we should re-measure so that we don't get a visual glitch.\n if (heightsChanged) {\n this._materializedRect = null;\n if (!this._hasCompletedFirstRender) {\n this._hasCompletedFirstRender = true;\n this.setState(this._updatePages(finalProps, finalState));\n }\n else {\n this._onAsyncScroll();\n }\n }\n else {\n // Enqueue an idle bump.\n this._onAsyncIdle();\n }\n }\n else {\n // Enqueue an idle bump\n this._onAsyncIdle();\n }\n // Notify the caller that rendering the new pages has completed\n if (finalProps.onPagesUpdated) {\n finalProps.onPagesUpdated(finalState.pages);\n }\n }\n };\n List.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n delete this._scrollElement;\n };\n List.prototype.shouldComponentUpdate = function (newProps, newState) {\n var oldPages = this.state.pages;\n var newPages = newState.pages;\n var shouldComponentUpdate = false;\n // Update if the page stops scrolling\n if (!newState.isScrolling && this.state.isScrolling) {\n return true;\n }\n if (newProps.version !== this.props.version) {\n return true;\n }\n if (newProps.items === this.props.items && oldPages.length === newPages.length) {\n for (var i = 0; i < oldPages.length; i++) {\n var oldPage = oldPages[i];\n var newPage = newPages[i];\n if (oldPage.key !== newPage.key || oldPage.itemCount !== newPage.itemCount) {\n shouldComponentUpdate = true;\n break;\n }\n }\n }\n else {\n shouldComponentUpdate = true;\n }\n return shouldComponentUpdate;\n };\n List.prototype.forceUpdate = function () {\n this._invalidatePageCache();\n // Ensure that when the list is force updated we update the pages first before render.\n this._updateRenderRects(this.props, this.state, true);\n this.setState(this._updatePages(this.props, this.state));\n this._measureVersion++;\n _super.prototype.forceUpdate.call(this);\n };\n /**\n * Get the current height the list and it's pages.\n */\n List.prototype.getTotalListHeight = function () {\n return this._surfaceRect.height;\n };\n List.prototype.render = function () {\n var _a = this.props, className = _a.className, _b = _a.role, role = _b === void 0 ? 'list' : _b, onRenderSurface = _a.onRenderSurface, onRenderRoot = _a.onRenderRoot;\n var _c = this.state.pages, pages = _c === void 0 ? [] : _c;\n var pageElements = [];\n var divProps = getNativeProps(this.props, divProperties);\n for (var _i = 0, pages_2 = pages; _i < pages_2.length; _i++) {\n var page = pages_2[_i];\n pageElements.push(this._renderPage(page));\n }\n var finalOnRenderSurface = onRenderSurface\n ? composeRenderFunction(onRenderSurface, this._onRenderSurface)\n : this._onRenderSurface;\n var finalOnRenderRoot = onRenderRoot\n ? composeRenderFunction(onRenderRoot, this._onRenderRoot)\n : this._onRenderRoot;\n return finalOnRenderRoot({\n rootRef: this._root,\n pages: pages,\n surfaceElement: finalOnRenderSurface({\n surfaceRef: this._surface,\n pages: pages,\n pageElements: pageElements,\n divProps: {\n role: 'presentation',\n className: 'ms-List-surface',\n },\n }),\n divProps: __assign(__assign({}, divProps), { className: css('ms-List', className), role: pageElements.length > 0 ? role : undefined }),\n });\n };\n List.prototype._shouldVirtualize = function (props) {\n if (props === void 0) { props = this.props; }\n var onShouldVirtualize = props.onShouldVirtualize;\n return !onShouldVirtualize || onShouldVirtualize(props);\n };\n /**\n * when props.items change or forceUpdate called, throw away cached pages\n */\n List.prototype._invalidatePageCache = function () {\n this._pageCache = {};\n };\n List.prototype._renderPage = function (page) {\n var _this = this;\n var usePageCache = this.props.usePageCache;\n var cachedPage;\n // if usePageCache is set and cached page element can be found, just return cached page\n if (usePageCache) {\n cachedPage = this._pageCache[page.key];\n if (cachedPage && cachedPage.pageElement) {\n return cachedPage.pageElement;\n }\n }\n var pageStyle = this._getPageStyle(page);\n var _a = this.props.onRenderPage, onRenderPage = _a === void 0 ? this._onRenderPage : _a;\n var pageElement = onRenderPage({\n page: page,\n className: 'ms-List-page',\n key: page.key,\n ref: function (newRef) {\n _this._pageRefs[page.key] = newRef;\n },\n style: pageStyle,\n role: 'presentation',\n }, this._onRenderPage);\n // cache the first page for now since it is re-rendered a lot times unnecessarily.\n // todo: a more aggresive caching mechanism is to cache pages constaining the items not changed.\n // now we re-render pages too frequently, for example, props.items increased from 30 to 60, although the\n // first 30 items did not change, we still re-rendered all of them in this props.items change.\n if (usePageCache && page.startIndex === 0) {\n this._pageCache[page.key] = {\n page: page,\n pageElement: pageElement,\n };\n }\n return pageElement;\n };\n /** Generate the style object for the page. */\n List.prototype._getPageStyle = function (page) {\n var getPageStyle = this.props.getPageStyle;\n return __assign(__assign({}, (getPageStyle ? getPageStyle(page) : {})), (!page.items\n ? {\n height: page.height,\n }\n : {}));\n };\n /** Track the last item index focused so that we ensure we keep it rendered. */\n List.prototype._onFocus = function (ev) {\n var target = ev.target;\n while (target !== this._surface.current) {\n var indexString = target.getAttribute('data-list-index');\n if (indexString) {\n this._focusedIndex = Number(indexString);\n break;\n }\n target = getParent(target);\n }\n };\n /**\n * Called synchronously to reset the required render range to 0 on scrolling. After async scroll has executed,\n * we will call onAsyncIdle which will reset it back to it's correct value.\n */\n List.prototype._onScroll = function () {\n if (!this.state.isScrolling && !this.props.ignoreScrollingState) {\n this.setState({ isScrolling: true });\n }\n this._resetRequiredWindows();\n this._onScrollingDone();\n };\n List.prototype._resetRequiredWindows = function () {\n this._requiredWindowsAhead = 0;\n this._requiredWindowsBehind = 0;\n };\n /**\n * Debounced method to asynchronously update the visible region on a scroll event.\n */\n List.prototype._onAsyncScroll = function () {\n this._updateRenderRects(this.props, this.state);\n // Only update pages when the visible rect falls outside of the materialized rect.\n if (!this._materializedRect || !_isContainedWithin(this._requiredRect, this._materializedRect)) {\n this.setState(this._updatePages(this.props, this.state));\n }\n else {\n // console.log('requiredRect contained in materialized', this._requiredRect, this._materializedRect);\n }\n };\n /**\n * This is an async debounced method that will try and increment the windows we render. If we can increment\n * either, we increase the amount we render and re-evaluate.\n */\n List.prototype._onAsyncIdle = function () {\n var _a = this.props, renderedWindowsAhead = _a.renderedWindowsAhead, renderedWindowsBehind = _a.renderedWindowsBehind;\n var _b = this, requiredWindowsAhead = _b._requiredWindowsAhead, requiredWindowsBehind = _b._requiredWindowsBehind;\n var windowsAhead = Math.min(renderedWindowsAhead, requiredWindowsAhead + 1);\n var windowsBehind = Math.min(renderedWindowsBehind, requiredWindowsBehind + 1);\n if (windowsAhead !== requiredWindowsAhead || windowsBehind !== requiredWindowsBehind) {\n // console.log('idling', windowsBehind, windowsAhead);\n this._requiredWindowsAhead = windowsAhead;\n this._requiredWindowsBehind = windowsBehind;\n this._updateRenderRects(this.props, this.state);\n this.setState(this._updatePages(this.props, this.state));\n }\n if (renderedWindowsAhead > windowsAhead || renderedWindowsBehind > windowsBehind) {\n // Async increment on next tick.\n this._onAsyncIdle();\n }\n };\n /**\n * Function to call when the list is done scrolling.\n * This function is debounced.\n */\n List.prototype._onScrollingDone = function () {\n if (!this.props.ignoreScrollingState) {\n this.setState({ isScrolling: false });\n }\n };\n List.prototype._onAsyncResize = function () {\n this.forceUpdate();\n };\n List.prototype._updatePages = function (nextProps, previousState) {\n // console.log('updating pages');\n if (!this._requiredRect) {\n this._updateRenderRects(nextProps, previousState);\n }\n var newListState = this._buildPages(nextProps, previousState);\n var oldListPages = previousState.pages;\n this._notifyPageChanges(oldListPages, newListState.pages, this.props);\n return __assign(__assign(__assign({}, previousState), newListState), { pagesVersion: {} });\n };\n /**\n * Notify consumers that the rendered pages have changed\n * @param oldPages - The old pages\n * @param newPages - The new pages\n * @param props - The props to use\n */\n List.prototype._notifyPageChanges = function (oldPages, newPages, props) {\n var onPageAdded = props.onPageAdded, onPageRemoved = props.onPageRemoved;\n if (onPageAdded || onPageRemoved) {\n var renderedIndexes = {};\n for (var _i = 0, oldPages_1 = oldPages; _i < oldPages_1.length; _i++) {\n var page = oldPages_1[_i];\n if (page.items) {\n renderedIndexes[page.startIndex] = page;\n }\n }\n for (var _a = 0, newPages_1 = newPages; _a < newPages_1.length; _a++) {\n var page = newPages_1[_a];\n if (page.items) {\n if (!renderedIndexes[page.startIndex]) {\n this._onPageAdded(page);\n }\n else {\n delete renderedIndexes[page.startIndex];\n }\n }\n }\n for (var index in renderedIndexes) {\n if (renderedIndexes.hasOwnProperty(index)) {\n this._onPageRemoved(renderedIndexes[index]);\n }\n }\n }\n };\n List.prototype._updatePageMeasurements = function (pages) {\n var heightChanged = false;\n // when not in virtualize mode, we render all the items without page measurement\n if (!this._shouldVirtualize()) {\n return heightChanged;\n }\n for (var i = 0; i < pages.length; i++) {\n var page = pages[i];\n if (page.items) {\n heightChanged = this._measurePage(page) || heightChanged;\n }\n }\n return heightChanged;\n };\n /**\n * Given a page, measure its dimensions, update cache.\n * @returns True if the height has changed.\n */\n List.prototype._measurePage = function (page) {\n var hasChangedHeight = false;\n var pageElement = this._pageRefs[page.key];\n var cachedHeight = this._cachedPageHeights[page.startIndex];\n // console.log(' * measure attempt', page.startIndex, cachedHeight);\n if (pageElement &&\n this._shouldVirtualize() &&\n (!cachedHeight || cachedHeight.measureVersion !== this._measureVersion)) {\n var newClientRect = {\n width: pageElement.clientWidth,\n height: pageElement.clientHeight,\n };\n if (newClientRect.height || newClientRect.width) {\n hasChangedHeight = page.height !== newClientRect.height;\n // console.warn(' *** expensive page measure', page.startIndex, page.height, newClientRect.height);\n page.height = newClientRect.height;\n this._cachedPageHeights[page.startIndex] = {\n height: newClientRect.height,\n measureVersion: this._measureVersion,\n };\n this._estimatedPageHeight = Math.round((this._estimatedPageHeight * this._totalEstimates + newClientRect.height) / (this._totalEstimates + 1));\n this._totalEstimates++;\n }\n }\n return hasChangedHeight;\n };\n /** Called when a page has been added to the DOM. */\n List.prototype._onPageAdded = function (page) {\n var onPageAdded = this.props.onPageAdded;\n // console.log('page added', page.startIndex, this.state.pages.map(page => page.key).join(', '));\n if (onPageAdded) {\n onPageAdded(page);\n }\n };\n /** Called when a page has been removed from the DOM. */\n List.prototype._onPageRemoved = function (page) {\n var onPageRemoved = this.props.onPageRemoved;\n // console.log(' --- page removed', page.startIndex, this.state.pages.map(page => page.key).join(', '));\n if (onPageRemoved) {\n onPageRemoved(page);\n }\n };\n /** Build up the pages that should be rendered. */\n List.prototype._buildPages = function (props, state) {\n var renderCount = props.renderCount;\n var items = props.items, startIndex = props.startIndex, getPageHeight = props.getPageHeight;\n renderCount = this._getRenderCount(props);\n var materializedRect = __assign({}, EMPTY_RECT);\n var pages = [];\n var itemsPerPage = 1;\n var pageTop = 0;\n var currentSpacer = null;\n var focusedIndex = this._focusedIndex;\n var endIndex = startIndex + renderCount;\n var shouldVirtualize = this._shouldVirtualize(props);\n // First render is very important to track; when we render cells, we have no idea of estimated page height.\n // So we should default to rendering only the first page so that we can get information.\n // However if the user provides a measure function, let's just assume they know the right heights.\n var isFirstRender = this._estimatedPageHeight === 0 && !getPageHeight;\n var allowedRect = this._allowedRect;\n var _loop_1 = function (itemIndex) {\n var pageSpecification = this_1._getPageSpecification(itemIndex, allowedRect);\n var pageHeight = pageSpecification.height;\n var pageData = pageSpecification.data;\n var key = pageSpecification.key;\n itemsPerPage = pageSpecification.itemCount;\n var pageBottom = pageTop + pageHeight - 1;\n var isPageRendered = findIndex(state.pages, function (page) { return !!page.items && page.startIndex === itemIndex; }) > -1;\n var isPageInAllowedRange = !allowedRect || (pageBottom >= allowedRect.top && pageTop <= allowedRect.bottom);\n var isPageInRequiredRange = !this_1._requiredRect || (pageBottom >= this_1._requiredRect.top && pageTop <= this_1._requiredRect.bottom);\n var isPageVisible = (!isFirstRender && (isPageInRequiredRange || (isPageInAllowedRange && isPageRendered))) || !shouldVirtualize;\n var isPageFocused = focusedIndex >= itemIndex && focusedIndex < itemIndex + itemsPerPage;\n var isFirstPage = itemIndex === startIndex;\n // console.log('building page', itemIndex, 'pageTop: ' + pageTop, 'inAllowed: ' +\n // isPageInAllowedRange, 'inRequired: ' + isPageInRequiredRange);\n // Only render whats visible, focused, or first page,\n // or when running in fast rendering mode (not in virtualized mode), we render all current items in pages\n if (isPageVisible || isPageFocused || isFirstPage) {\n if (currentSpacer) {\n pages.push(currentSpacer);\n currentSpacer = null;\n }\n var itemsInPage = Math.min(itemsPerPage, endIndex - itemIndex);\n var newPage = this_1._createPage(key, items.slice(itemIndex, itemIndex + itemsInPage), itemIndex, undefined, undefined, pageData);\n newPage.top = pageTop;\n newPage.height = pageHeight;\n if (this_1._visibleRect && this_1._visibleRect.bottom) {\n newPage.isVisible = pageBottom >= this_1._visibleRect.top && pageTop <= this_1._visibleRect.bottom;\n }\n pages.push(newPage);\n if (isPageInRequiredRange && this_1._allowedRect) {\n _mergeRect(materializedRect, {\n top: pageTop,\n bottom: pageBottom,\n height: pageHeight,\n left: allowedRect.left,\n right: allowedRect.right,\n width: allowedRect.width,\n });\n }\n }\n else {\n if (!currentSpacer) {\n currentSpacer = this_1._createPage(SPACER_KEY_PREFIX + itemIndex, undefined, itemIndex, 0, undefined, pageData, true /*isSpacer*/);\n }\n currentSpacer.height = (currentSpacer.height || 0) + (pageBottom - pageTop) + 1;\n currentSpacer.itemCount += itemsPerPage;\n }\n pageTop += pageBottom - pageTop + 1;\n // in virtualized mode, we render need to render first page then break and measure,\n // otherwise, we render all items without measurement to make rendering fast\n if (isFirstRender && shouldVirtualize) {\n return \"break\";\n }\n };\n var this_1 = this;\n for (var itemIndex = startIndex; itemIndex < endIndex; itemIndex += itemsPerPage) {\n var state_1 = _loop_1(itemIndex);\n if (state_1 === \"break\")\n break;\n }\n if (currentSpacer) {\n currentSpacer.key = SPACER_KEY_PREFIX + 'end';\n pages.push(currentSpacer);\n }\n this._materializedRect = materializedRect;\n // console.log('materialized: ', materializedRect);\n return __assign(__assign({}, state), { pages: pages, measureVersion: this._measureVersion });\n };\n List.prototype._getPageSpecification = function (itemIndex, visibleRect) {\n var getPageSpecification = this.props.getPageSpecification;\n if (getPageSpecification) {\n var pageData = getPageSpecification(itemIndex, visibleRect);\n var _a = pageData.itemCount, itemCount = _a === void 0 ? this._getItemCountForPage(itemIndex, visibleRect) : _a;\n var _b = pageData.height, height = _b === void 0 ? this._getPageHeight(itemIndex, visibleRect, itemCount) : _b;\n return {\n itemCount: itemCount,\n height: height,\n data: pageData.data,\n key: pageData.key,\n };\n }\n else {\n var itemCount = this._getItemCountForPage(itemIndex, visibleRect);\n return {\n itemCount: itemCount,\n height: this._getPageHeight(itemIndex, visibleRect, itemCount),\n };\n }\n };\n /**\n * Get the pixel height of a give page. Will use the props getPageHeight first, and if not provided, fallback to\n * cached height, or estimated page height, or default page height.\n */\n List.prototype._getPageHeight = function (itemIndex, visibleRect, itemsPerPage) {\n if (this.props.getPageHeight) {\n return this.props.getPageHeight(itemIndex, visibleRect, itemsPerPage);\n }\n else {\n var cachedHeight = this._cachedPageHeights[itemIndex];\n return cachedHeight ? cachedHeight.height : this._estimatedPageHeight || DEFAULT_PAGE_HEIGHT;\n }\n };\n List.prototype._getItemCountForPage = function (itemIndex, visibileRect) {\n var itemsPerPage = this.props.getItemCountForPage\n ? this.props.getItemCountForPage(itemIndex, visibileRect)\n : DEFAULT_ITEMS_PER_PAGE;\n return itemsPerPage ? itemsPerPage : DEFAULT_ITEMS_PER_PAGE;\n };\n List.prototype._createPage = function (pageKey, items, startIndex, count, style, data, isSpacer) {\n if (startIndex === void 0) { startIndex = -1; }\n if (count === void 0) { count = items ? items.length : 0; }\n if (style === void 0) { style = {}; }\n pageKey = pageKey || PAGE_KEY_PREFIX + startIndex;\n var cachedPage = this._pageCache[pageKey];\n if (cachedPage && cachedPage.page) {\n return cachedPage.page;\n }\n return {\n key: pageKey,\n startIndex: startIndex,\n itemCount: count,\n items: items,\n style: style,\n top: 0,\n height: 0,\n data: data,\n isSpacer: isSpacer || false,\n };\n };\n List.prototype._getRenderCount = function (props) {\n var _a = props || this.props, items = _a.items, startIndex = _a.startIndex, renderCount = _a.renderCount;\n return renderCount === undefined ? (items ? items.length - startIndex : 0) : renderCount;\n };\n /** Calculate the visible rect within the list where top: 0 and left: 0 is the top/left of the list. */\n List.prototype._updateRenderRects = function (props, state, forceUpdate) {\n var renderedWindowsAhead = props.renderedWindowsAhead, renderedWindowsBehind = props.renderedWindowsBehind;\n var pages = state.pages;\n // when not in virtualize mode, we render all items without measurement to optimize page rendering perf\n if (!this._shouldVirtualize(props)) {\n return;\n }\n var surfaceRect = this._surfaceRect || __assign({}, EMPTY_RECT);\n var scrollHeight = this._scrollElement && this._scrollElement.scrollHeight;\n var scrollTop = this._scrollElement ? this._scrollElement.scrollTop : 0;\n // WARNING: EXPENSIVE CALL! We need to know the surface top relative to the window.\n // This needs to be called to recalculate when new pages should be loaded.\n // We check to see how far we've scrolled and if it's further than a third of a page we run it again.\n if (this._surface.current &&\n (forceUpdate ||\n !pages ||\n !this._surfaceRect ||\n !scrollHeight ||\n scrollHeight !== this._scrollHeight ||\n Math.abs(this._scrollTop - scrollTop) > this._estimatedPageHeight / 3)) {\n surfaceRect = this._surfaceRect = _measureSurfaceRect(this._surface.current);\n this._scrollTop = scrollTop;\n }\n // If the scroll height has changed, something in the container likely resized and\n // we should redo the page heights incase their content resized.\n if (forceUpdate || !scrollHeight || scrollHeight !== this._scrollHeight) {\n this._measureVersion++;\n }\n this._scrollHeight = scrollHeight;\n // If the surface is above the container top or below the container bottom, or if this is not the first\n // render return empty rect.\n // The first time the list gets rendered we need to calculate the rectangle. The width of the list is\n // used to calculate the width of the list items.\n var visibleTop = Math.max(0, -surfaceRect.top);\n var win = getWindow(this._root.current);\n var visibleRect = {\n top: visibleTop,\n left: surfaceRect.left,\n bottom: visibleTop + win.innerHeight,\n right: surfaceRect.right,\n width: surfaceRect.width,\n height: win.innerHeight,\n };\n // The required/allowed rects are adjusted versions of the visible rect.\n this._requiredRect = _expandRect(visibleRect, this._requiredWindowsBehind, this._requiredWindowsAhead);\n this._allowedRect = _expandRect(visibleRect, renderedWindowsBehind, renderedWindowsAhead);\n // store the visible rect for later use.\n this._visibleRect = visibleRect;\n };\n List.defaultProps = {\n startIndex: 0,\n onRenderCell: function (item, index, containsFocus) { return React.createElement(React.Fragment, null, (item && item.name) || ''); },\n renderedWindowsAhead: DEFAULT_RENDERED_WINDOWS_AHEAD,\n renderedWindowsBehind: DEFAULT_RENDERED_WINDOWS_BEHIND,\n };\n return List;\n}(React.Component));\nexport { List };\nfunction _expandRect(rect, pagesBefore, pagesAfter) {\n var top = rect.top - pagesBefore * rect.height;\n var height = rect.height + (pagesBefore + pagesAfter) * rect.height;\n return {\n top: top,\n bottom: top + height,\n height: height,\n left: rect.left,\n right: rect.right,\n width: rect.width,\n };\n}\nfunction _isContainedWithin(innerRect, outerRect) {\n return (innerRect.top >= outerRect.top &&\n innerRect.left >= outerRect.left &&\n innerRect.bottom <= outerRect.bottom &&\n innerRect.right <= outerRect.right);\n}\nfunction _mergeRect(targetRect, newRect) {\n targetRect.top = newRect.top < targetRect.top || targetRect.top === -1 ? newRect.top : targetRect.top;\n targetRect.left = newRect.left < targetRect.left || targetRect.left === -1 ? newRect.left : targetRect.left;\n targetRect.bottom =\n newRect.bottom > targetRect.bottom || targetRect.bottom === -1 ? newRect.bottom : targetRect.bottom;\n targetRect.right = newRect.right > targetRect.right || targetRect.right === -1 ? newRect.right : targetRect.right;\n targetRect.width = targetRect.right - targetRect.left + 1;\n targetRect.height = targetRect.bottom - targetRect.top + 1;\n return targetRect;\n}\n//# sourceMappingURL=List.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "index": 822, - "index2": 829, - "size": 13809, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupedListSection", - "loc": "4:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "userRequest": "./GroupedListSection", - "loc": "32:40-58" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupedListSection", - "loc": "8:0-37" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupedListSection", - "loc": "8:0-37" - } - ], - "usedExports": [ - "GroupedListSection" - ], - "providedExports": [ - "GroupedListSection" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, css, getId, EventGroup } from '../../Utilities';\nimport { SELECTION_CHANGE } from '../../utilities/selection/index';\nimport { GroupHeader } from './GroupHeader';\nimport { GroupShowAll } from './GroupShowAll';\nimport { GroupFooter } from './GroupFooter';\nimport { List } from '../../List';\nvar DEFAULT_DROPPING_CSS_CLASS = 'is-dropping';\nvar GroupedListSection = /** @class */ (function (_super) {\n __extends(GroupedListSection, _super);\n function GroupedListSection(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._list = React.createRef();\n _this._subGroupRefs = {};\n _this._droppingClassName = '';\n _this._onRenderGroupHeader = function (props) {\n return React.createElement(GroupHeader, __assign({}, props));\n };\n _this._onRenderGroupShowAll = function (props) {\n return React.createElement(GroupShowAll, __assign({}, props));\n };\n _this._onRenderGroupFooter = function (props) {\n return React.createElement(GroupFooter, __assign({}, props));\n };\n _this._renderSubGroup = function (subGroup, subGroupIndex) {\n var _a = _this.props, dragDropEvents = _a.dragDropEvents, dragDropHelper = _a.dragDropHelper, eventsToRegister = _a.eventsToRegister, getGroupItemLimit = _a.getGroupItemLimit, groupNestingDepth = _a.groupNestingDepth, groupProps = _a.groupProps, items = _a.items, headerProps = _a.headerProps, showAllProps = _a.showAllProps, footerProps = _a.footerProps, listProps = _a.listProps, onRenderCell = _a.onRenderCell, selection = _a.selection, selectionMode = _a.selectionMode, viewport = _a.viewport, onRenderGroupHeader = _a.onRenderGroupHeader, onRenderGroupShowAll = _a.onRenderGroupShowAll, onRenderGroupFooter = _a.onRenderGroupFooter, onShouldVirtualize = _a.onShouldVirtualize, group = _a.group, compact = _a.compact;\n var nestingDepth = subGroup.level ? subGroup.level + 1 : groupNestingDepth;\n return !subGroup || subGroup.count > 0 || (groupProps && groupProps.showEmptyGroups) ? (React.createElement(GroupedListSection, { ref: function (ref) { return (_this._subGroupRefs['subGroup_' + subGroupIndex] = ref); }, key: _this._getGroupKey(subGroup, subGroupIndex), dragDropEvents: dragDropEvents, dragDropHelper: dragDropHelper, eventsToRegister: eventsToRegister, footerProps: footerProps, getGroupItemLimit: getGroupItemLimit, group: subGroup, groupIndex: subGroupIndex, groupNestingDepth: nestingDepth, groupProps: groupProps, headerProps: headerProps, items: items, listProps: listProps, onRenderCell: onRenderCell, selection: selection, selectionMode: selectionMode, showAllProps: showAllProps, viewport: viewport, onRenderGroupHeader: onRenderGroupHeader, onRenderGroupShowAll: onRenderGroupShowAll, onRenderGroupFooter: onRenderGroupFooter, onShouldVirtualize: onShouldVirtualize, groups: group ? group.children : [], compact: compact })) : null;\n };\n /**\n * collect all the data we need to enable drag/drop for a group\n */\n _this._getGroupDragDropOptions = function () {\n var _a = _this.props, group = _a.group, groupIndex = _a.groupIndex, dragDropEvents = _a.dragDropEvents, eventsToRegister = _a.eventsToRegister;\n var options = {\n eventMap: eventsToRegister,\n selectionIndex: -1,\n context: { data: group, index: groupIndex, isGroup: true },\n updateDropState: _this._updateDroppingState,\n canDrag: dragDropEvents.canDrag,\n canDrop: dragDropEvents.canDrop,\n onDrop: dragDropEvents.onDrop,\n onDragStart: dragDropEvents.onDragStart,\n onDragEnter: dragDropEvents.onDragEnter,\n onDragLeave: dragDropEvents.onDragLeave,\n onDragEnd: dragDropEvents.onDragEnd,\n onDragOver: dragDropEvents.onDragOver,\n };\n return options;\n };\n /**\n * update groupIsDropping state based on the input value, which is used to change style during drag and drop\n *\n * @param newValue - new isDropping state value\n * @param event - the event trigger dropping state change which can be dragenter, dragleave etc\n */\n _this._updateDroppingState = function (newIsDropping, event) {\n var isDropping = _this.state.isDropping;\n var _a = _this.props, dragDropEvents = _a.dragDropEvents, group = _a.group;\n if (isDropping !== newIsDropping) {\n if (isDropping) {\n if (dragDropEvents && dragDropEvents.onDragLeave) {\n dragDropEvents.onDragLeave(group, event);\n }\n }\n else {\n if (dragDropEvents && dragDropEvents.onDragEnter) {\n _this._droppingClassName = dragDropEvents.onDragEnter(group, event);\n }\n }\n _this.setState({ isDropping: newIsDropping });\n }\n };\n var selection = props.selection, group = props.group;\n initializeComponentRef(_this);\n _this._id = getId('GroupedListSection');\n _this.state = {\n isDropping: false,\n isSelected: selection && group ? selection.isRangeSelected(group.startIndex, group.count) : false,\n };\n _this._events = new EventGroup(_this);\n return _this;\n }\n GroupedListSection.prototype.componentDidMount = function () {\n var _a = this.props, dragDropHelper = _a.dragDropHelper, selection = _a.selection;\n if (dragDropHelper && this._root.current) {\n this._dragDropSubscription = dragDropHelper.subscribe(this._root.current, this._events, this._getGroupDragDropOptions());\n }\n if (selection) {\n this._events.on(selection, SELECTION_CHANGE, this._onSelectionChange);\n }\n };\n GroupedListSection.prototype.componentWillUnmount = function () {\n this._events.dispose();\n if (this._dragDropSubscription) {\n this._dragDropSubscription.dispose();\n }\n };\n GroupedListSection.prototype.componentDidUpdate = function (previousProps) {\n if (this.props.group !== previousProps.group ||\n this.props.groupIndex !== previousProps.groupIndex ||\n this.props.dragDropHelper !== previousProps.dragDropHelper) {\n if (this._dragDropSubscription) {\n this._dragDropSubscription.dispose();\n delete this._dragDropSubscription;\n }\n if (this.props.dragDropHelper && this._root.current) {\n this._dragDropSubscription = this.props.dragDropHelper.subscribe(this._root.current, this._events, this._getGroupDragDropOptions());\n }\n }\n };\n GroupedListSection.prototype.render = function () {\n var _a = this.props, getGroupItemLimit = _a.getGroupItemLimit, group = _a.group, groupIndex = _a.groupIndex, headerProps = _a.headerProps, showAllProps = _a.showAllProps, footerProps = _a.footerProps, viewport = _a.viewport, selectionMode = _a.selectionMode, _b = _a.onRenderGroupHeader, onRenderGroupHeader = _b === void 0 ? this._onRenderGroupHeader : _b, _c = _a.onRenderGroupShowAll, onRenderGroupShowAll = _c === void 0 ? this._onRenderGroupShowAll : _c, _d = _a.onRenderGroupFooter, onRenderGroupFooter = _d === void 0 ? this._onRenderGroupFooter : _d, onShouldVirtualize = _a.onShouldVirtualize, groupedListClassNames = _a.groupedListClassNames, groups = _a.groups, compact = _a.compact, _e = _a.listProps, listProps = _e === void 0 ? {} : _e;\n var isSelected = this.state.isSelected;\n var renderCount = group && getGroupItemLimit ? getGroupItemLimit(group) : Infinity;\n var isShowAllVisible = group &&\n !group.children &&\n !group.isCollapsed &&\n !group.isShowingAll &&\n (group.count > renderCount || group.hasMoreData);\n var hasNestedGroups = group && group.children && group.children.length > 0;\n var version = listProps.version;\n var dividerProps = {\n group: group,\n groupIndex: groupIndex,\n groupLevel: group ? group.level : 0,\n isSelected: isSelected,\n selected: isSelected,\n viewport: viewport,\n selectionMode: selectionMode,\n groups: groups,\n compact: compact,\n };\n var ariaControlsProps = {\n groupedListId: this._id,\n ariaSetSize: groups ? groups.length : undefined,\n ariaPosInSet: groupIndex !== undefined ? groupIndex + 1 : undefined,\n };\n var groupHeaderProps = __assign(__assign(__assign({}, headerProps), dividerProps), ariaControlsProps);\n var groupShowAllProps = __assign(__assign({}, showAllProps), dividerProps);\n var groupFooterProps = __assign(__assign({}, footerProps), dividerProps);\n var isDraggable = !!this.props.dragDropHelper &&\n this._getGroupDragDropOptions().canDrag(group) &&\n !!this.props.dragDropEvents.canDragGroups;\n return (React.createElement(\"div\", __assign({ ref: this._root }, (isDraggable && { draggable: true }), { className: css(groupedListClassNames && groupedListClassNames.group, this._getDroppingClassName()), role: \"presentation\" }),\n onRenderGroupHeader(groupHeaderProps, this._onRenderGroupHeader),\n group && group.isCollapsed ? null : hasNestedGroups ? (React.createElement(List, { role: \"presentation\", ref: this._list, items: group ? group.children : [], onRenderCell: this._renderSubGroup, getItemCountForPage: this._returnOne, onShouldVirtualize: onShouldVirtualize, version: version, id: this._id })) : (this._onRenderGroup(renderCount)),\n group && group.isCollapsed\n ? null\n : isShowAllVisible && onRenderGroupShowAll(groupShowAllProps, this._onRenderGroupShowAll),\n onRenderGroupFooter(groupFooterProps, this._onRenderGroupFooter)));\n };\n GroupedListSection.prototype.forceUpdate = function () {\n _super.prototype.forceUpdate.call(this);\n this.forceListUpdate();\n };\n GroupedListSection.prototype.forceListUpdate = function () {\n var group = this.props.group;\n if (this._list.current) {\n this._list.current.forceUpdate();\n if (group && group.children && group.children.length > 0) {\n var subGroupCount = group.children.length;\n for (var i = 0; i < subGroupCount; i++) {\n var subGroup = this._list.current.pageRefs['subGroup_' + String(i)];\n if (subGroup) {\n subGroup.forceListUpdate();\n }\n }\n }\n }\n else {\n var subGroup = this._subGroupRefs['subGroup_' + String(0)];\n if (subGroup) {\n subGroup.forceListUpdate();\n }\n }\n };\n GroupedListSection.prototype._onSelectionChange = function () {\n var _a = this.props, group = _a.group, selection = _a.selection;\n if (selection && group) {\n var isSelected = selection.isRangeSelected(group.startIndex, group.count);\n if (isSelected !== this.state.isSelected) {\n this.setState({ isSelected: isSelected });\n }\n }\n };\n GroupedListSection.prototype._onRenderGroupCell = function (onRenderCell, groupNestingDepth) {\n return function (item, itemIndex) {\n return onRenderCell(groupNestingDepth, item, itemIndex);\n };\n };\n GroupedListSection.prototype._onRenderGroup = function (renderCount) {\n var _a;\n var _b = this.props, group = _b.group, items = _b.items, onRenderCell = _b.onRenderCell, listProps = _b.listProps, groupNestingDepth = _b.groupNestingDepth, onShouldVirtualize = _b.onShouldVirtualize, groupProps = _b.groupProps;\n var count = group && !group.isShowingAll ? group.count : items.length;\n var startIndex = group ? group.startIndex : 0;\n return (React.createElement(List, __assign({ role: groupProps && groupProps.role ? groupProps.role : 'rowgroup', \"aria-label\": (_a = group) === null || _a === void 0 ? void 0 : _a.name, items: items, onRenderCell: this._onRenderGroupCell(onRenderCell, groupNestingDepth), ref: this._list, renderCount: Math.min(count, renderCount), startIndex: startIndex, onShouldVirtualize: onShouldVirtualize, id: this._id }, listProps)));\n };\n GroupedListSection.prototype._returnOne = function () {\n return 1;\n };\n GroupedListSection.prototype._getGroupKey = function (group, index) {\n return 'group-' + (group && group.key ? group.key : String(group.level) + String(index));\n };\n /**\n * get the correct css class to reflect the dropping state for a given group\n *\n * If the group is the current drop target, return the default dropping class name\n * Otherwise, return '';\n *\n */\n GroupedListSection.prototype._getDroppingClassName = function () {\n var isDropping = this.state.isDropping;\n var _a = this.props, group = _a.group, groupedListClassNames = _a.groupedListClassNames;\n isDropping = !!(group && isDropping);\n return css(isDropping && this._droppingClassName, isDropping && DEFAULT_DROPPING_CSS_CLASS, isDropping && groupedListClassNames && groupedListClassNames.groupIsDropping);\n };\n return GroupedListSection;\n}(React.Component));\nexport { GroupedListSection };\n//# sourceMappingURL=GroupedListSection.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "index": 821, - "index2": 830, - "size": 12726, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupedList.base", - "loc": "3:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "type": "harmony import specifier", - "userRequest": "./GroupedList.base", - "loc": "4:32-47" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupedList.base", - "loc": "2:0-35" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupedList.base", - "loc": "2:0-35" - } - ], - "usedExports": [ - "GroupedListBase" - ], - "providedExports": [ - "GroupedListBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, classNamesFunction, KeyCodes, getRTLSafeKeyCode, css } from '../../Utilities';\nimport { GroupedListSection } from './GroupedListSection';\nimport { List } from '../../List';\nimport { SelectionMode } from '../../utilities/selection/index';\nimport { DEFAULT_ROW_HEIGHTS } from '../DetailsList/DetailsRow.styles';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nvar getClassNames = classNamesFunction();\nvar ROW_HEIGHT = DEFAULT_ROW_HEIGHTS.rowHeight, COMPACT_ROW_HEIGHT = DEFAULT_ROW_HEIGHTS.compactRowHeight;\nvar GroupedListBase = /** @class */ (function (_super) {\n __extends(GroupedListBase, _super);\n function GroupedListBase(props) {\n var _this = _super.call(this, props) || this;\n _this._list = React.createRef();\n _this._renderGroup = function (group, groupIndex) {\n var _a = _this.props, dragDropEvents = _a.dragDropEvents, dragDropHelper = _a.dragDropHelper, eventsToRegister = _a.eventsToRegister, groupProps = _a.groupProps, items = _a.items, listProps = _a.listProps, onRenderCell = _a.onRenderCell, selectionMode = _a.selectionMode, selection = _a.selection, viewport = _a.viewport, onShouldVirtualize = _a.onShouldVirtualize, groups = _a.groups, compact = _a.compact;\n // override group header/footer props as needed\n var dividerProps = {\n onToggleSelectGroup: _this._onToggleSelectGroup,\n onToggleCollapse: _this._onToggleCollapse,\n onToggleSummarize: _this._onToggleSummarize,\n };\n var headerProps = __assign(__assign({}, groupProps.headerProps), dividerProps);\n var showAllProps = __assign(__assign({}, groupProps.showAllProps), dividerProps);\n var footerProps = __assign(__assign({}, groupProps.footerProps), dividerProps);\n var groupNestingDepth = _this._getGroupNestingDepth();\n if (!groupProps.showEmptyGroups && group && group.count === 0) {\n return null;\n }\n var finalListProps = __assign(__assign({}, (listProps || {})), { version: _this.state.version });\n return (React.createElement(GroupedListSection, { key: _this._getGroupKey(group, groupIndex), dragDropEvents: dragDropEvents, dragDropHelper: dragDropHelper, eventsToRegister: eventsToRegister, footerProps: footerProps, getGroupItemLimit: groupProps && groupProps.getGroupItemLimit, group: group, groupIndex: groupIndex, groupNestingDepth: groupNestingDepth, groupProps: groupProps, headerProps: headerProps, listProps: finalListProps, items: items, onRenderCell: onRenderCell, onRenderGroupHeader: groupProps.onRenderHeader, onRenderGroupShowAll: groupProps.onRenderShowAll, onRenderGroupFooter: groupProps.onRenderFooter, selectionMode: selectionMode, selection: selection, showAllProps: showAllProps, viewport: viewport, onShouldVirtualize: onShouldVirtualize, groupedListClassNames: _this._classNames, groups: groups, compact: compact }));\n };\n _this._getDefaultGroupItemLimit = function (group) {\n return group.count;\n };\n _this._getGroupItemLimit = function (group) {\n var groupProps = _this.props.groupProps;\n var getGroupItemLimit = groupProps && groupProps.getGroupItemLimit ? groupProps.getGroupItemLimit : _this._getDefaultGroupItemLimit;\n return getGroupItemLimit(group);\n };\n _this._getGroupHeight = function (group) {\n var rowHeight = _this.props.compact ? COMPACT_ROW_HEIGHT : ROW_HEIGHT;\n return rowHeight + (group.isCollapsed ? 0 : rowHeight * _this._getGroupItemLimit(group));\n };\n _this._getPageHeight = function (itemIndex) {\n var groups = _this.state.groups;\n var _a = _this.props.getGroupHeight, getGroupHeight = _a === void 0 ? _this._getGroupHeight : _a;\n var pageGroup = groups && groups[itemIndex];\n if (pageGroup) {\n return getGroupHeight(pageGroup, itemIndex);\n }\n else {\n return 0;\n }\n };\n _this._onToggleCollapse = function (group) {\n var groupProps = _this.props.groupProps;\n var onToggleCollapse = groupProps && groupProps.headerProps && groupProps.headerProps.onToggleCollapse;\n if (group) {\n if (onToggleCollapse) {\n onToggleCollapse(group);\n }\n group.isCollapsed = !group.isCollapsed;\n _this._updateIsSomeGroupExpanded();\n _this.forceUpdate();\n }\n };\n _this._onToggleSelectGroup = function (group) {\n var _a = _this.props, selection = _a.selection, selectionMode = _a.selectionMode;\n if (group && selection && selectionMode === SelectionMode.multiple) {\n selection.toggleRangeSelected(group.startIndex, group.count);\n }\n };\n _this._isInnerZoneKeystroke = function (ev) {\n return ev.which === getRTLSafeKeyCode(KeyCodes.right);\n };\n _this._onToggleSummarize = function (group) {\n var groupProps = _this.props.groupProps;\n var onToggleSummarize = groupProps && groupProps.showAllProps && groupProps.showAllProps.onToggleSummarize;\n if (onToggleSummarize) {\n onToggleSummarize(group);\n }\n else {\n if (group) {\n group.isShowingAll = !group.isShowingAll;\n }\n _this.forceUpdate();\n }\n };\n _this._getPageSpecification = function (itemIndex) {\n var groups = _this.state.groups;\n var pageGroup = groups && groups[itemIndex];\n return {\n key: pageGroup && pageGroup.key,\n };\n };\n initializeComponentRef(_this);\n _this._isSomeGroupExpanded = _this._computeIsSomeGroupExpanded(props.groups);\n var _a = props.listProps, _b = (_a === void 0 ? {} : _a).version, version = _b === void 0 ? {} : _b;\n _this.state = {\n groups: props.groups,\n items: props.items,\n listProps: props.listProps,\n version: version,\n };\n return _this;\n }\n GroupedListBase.getDerivedStateFromProps = function (nextProps, previousState) {\n var groups = nextProps.groups, selectionMode = nextProps.selectionMode, compact = nextProps.compact, items = nextProps.items, listProps = nextProps.listProps;\n var listVersion = listProps && listProps.version;\n var nextState = __assign(__assign({}, previousState), { selectionMode: selectionMode,\n compact: compact,\n groups: groups,\n listProps: listProps });\n var shouldForceUpdates = false;\n var previousListVersion = previousState.listProps && previousState.listProps.version;\n if (listVersion !== previousListVersion ||\n items !== previousState.items ||\n groups !== previousState.groups ||\n selectionMode !== previousState.selectionMode ||\n compact !== previousState.compact) {\n // If there are any props not passed explicitly to `List` which have an impact on the behavior of `onRenderCell`,\n // these need to 'force-update' this component by revving the version. Otherwise, the List might render with stale\n // data.\n shouldForceUpdates = true;\n }\n if (shouldForceUpdates) {\n nextState = __assign(__assign({}, nextState), { version: {} });\n }\n return nextState;\n };\n GroupedListBase.prototype.scrollToIndex = function (index, measureItem, scrollToMode) {\n if (this._list.current) {\n this._list.current.scrollToIndex(index, measureItem, scrollToMode);\n }\n };\n GroupedListBase.prototype.getStartItemIndexInView = function () {\n return this._list.current.getStartItemIndexInView() || 0;\n };\n GroupedListBase.prototype.componentDidMount = function () {\n var _a = this.props, groupProps = _a.groupProps, _b = _a.groups, groups = _b === void 0 ? [] : _b;\n if (groupProps && groupProps.isAllGroupsCollapsed) {\n this._setGroupsCollapsedState(groups, groupProps.isAllGroupsCollapsed);\n }\n };\n GroupedListBase.prototype.render = function () {\n var _a = this.props, className = _a.className, usePageCache = _a.usePageCache, onShouldVirtualize = _a.onShouldVirtualize, theme = _a.theme, _b = _a.role, role = _b === void 0 ? 'treegrid' : _b, styles = _a.styles, compact = _a.compact, _c = _a.focusZoneProps, focusZoneProps = _c === void 0 ? {} : _c, _d = _a.rootListProps, rootListProps = _d === void 0 ? {} : _d;\n var _e = this.state, groups = _e.groups, version = _e.version;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n compact: compact,\n });\n var _f = focusZoneProps.shouldEnterInnerZone, shouldEnterInnerZone = _f === void 0 ? this._isInnerZoneKeystroke : _f;\n return (React.createElement(FocusZone, __assign({ direction: FocusZoneDirection.vertical, \"data-automationid\": \"GroupedList\", \"data-is-scrollable\": \"false\", role: \"presentation\" }, focusZoneProps, { shouldEnterInnerZone: shouldEnterInnerZone, className: css(this._classNames.root, focusZoneProps.className) }), !groups ? (this._renderGroup(undefined, 0)) : (React.createElement(List, __assign({ ref: this._list, role: role, items: groups, onRenderCell: this._renderGroup, getItemCountForPage: this._returnOne, getPageHeight: this._getPageHeight, getPageSpecification: this._getPageSpecification, usePageCache: usePageCache, onShouldVirtualize: onShouldVirtualize, version: version }, rootListProps)))));\n };\n GroupedListBase.prototype.forceUpdate = function () {\n _super.prototype.forceUpdate.call(this);\n this._forceListUpdates();\n };\n GroupedListBase.prototype.toggleCollapseAll = function (allCollapsed) {\n var _a = this.state.groups, groups = _a === void 0 ? [] : _a;\n var groupProps = this.props.groupProps;\n var onToggleCollapseAll = groupProps && groupProps.onToggleCollapseAll;\n if (groups.length > 0) {\n if (onToggleCollapseAll) {\n onToggleCollapseAll(allCollapsed);\n }\n this._setGroupsCollapsedState(groups, allCollapsed);\n this._updateIsSomeGroupExpanded();\n this.forceUpdate();\n }\n };\n GroupedListBase.prototype._setGroupsCollapsedState = function (groups, isCollapsed) {\n for (var groupIndex = 0; groupIndex < groups.length; groupIndex++) {\n groups[groupIndex].isCollapsed = isCollapsed;\n }\n };\n GroupedListBase.prototype._returnOne = function () {\n return 1;\n };\n GroupedListBase.prototype._getGroupKey = function (group, index) {\n return 'group-' + (group && group.key ? group.key : String(index));\n };\n GroupedListBase.prototype._getGroupNestingDepth = function () {\n var groups = this.state.groups;\n var level = 0;\n var groupsInLevel = groups;\n while (groupsInLevel && groupsInLevel.length > 0) {\n level++;\n groupsInLevel = groupsInLevel[0].children;\n }\n return level;\n };\n GroupedListBase.prototype._forceListUpdates = function (groups) {\n this.setState({\n version: {},\n });\n };\n GroupedListBase.prototype._computeIsSomeGroupExpanded = function (groups) {\n var _this = this;\n return !!(groups &&\n groups.some(function (group) { return (group.children ? _this._computeIsSomeGroupExpanded(group.children) : !group.isCollapsed); }));\n };\n GroupedListBase.prototype._updateIsSomeGroupExpanded = function () {\n var groups = this.state.groups;\n var onGroupExpandStateChanged = this.props.onGroupExpandStateChanged;\n var newIsSomeGroupExpanded = this._computeIsSomeGroupExpanded(groups);\n if (this._isSomeGroupExpanded !== newIsSomeGroupExpanded) {\n if (onGroupExpandStateChanged) {\n onGroupExpandStateChanged(newIsSomeGroupExpanded);\n }\n this._isSomeGroupExpanded = newIsSomeGroupExpanded;\n }\n };\n GroupedListBase.defaultProps = {\n selectionMode: SelectionMode.multiple,\n isHeaderVisible: true,\n groupProps: {},\n compact: false,\n };\n return GroupedListBase;\n}(React.Component));\nexport { GroupedListBase };\n//# sourceMappingURL=GroupedList.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "index": 820, - "index2": 832, - "size": 288, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "issuerId": "D63i", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../GroupedList", - "loc": "294:45-56" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupedList", - "loc": "1:0-30" - }, - { - "moduleId": "D63i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupedList", - "loc": "1:0-30" - } - ], - "usedExports": [ - "GroupedList" - ], - "providedExports": [ - "GroupedList" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { getStyles } from './GroupedList.styles';\nimport { GroupedListBase } from './GroupedList.base';\nexport var GroupedList = styled(GroupedListBase, getStyles, undefined, {\n scope: 'GroupedList',\n});\n//# sourceMappingURL=GroupedList.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "index": 841, - "index2": 836, - "size": 6239, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withViewport", - "loc": "13:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withViewport", - "loc": "855:8-20" - } - ], - "usedExports": [ - "withViewport" - ], - "providedExports": [ - "withViewport" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseDecorator } from './BaseDecorator';\nimport { findScrollableParent, getRect, getWindow, Async, EventGroup } from '../../Utilities';\nvar RESIZE_DELAY = 500;\nvar MAX_RESIZE_ATTEMPTS = 3;\n/**\n * A decorator to update decorated component on viewport or window resize events.\n *\n * @param ComposedComponent decorated React component reference.\n */\nexport function withViewport(ComposedComponent) {\n return /** @class */ (function (_super) {\n __extends(WithViewportComponent, _super);\n function WithViewportComponent(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._registerResizeObserver = function () {\n var win = getWindow(_this._root.current);\n _this._viewportResizeObserver = new win.ResizeObserver(_this._onAsyncResize);\n _this._viewportResizeObserver.observe(_this._root.current);\n };\n _this._unregisterResizeObserver = function () {\n if (_this._viewportResizeObserver) {\n _this._viewportResizeObserver.disconnect();\n delete _this._viewportResizeObserver;\n }\n };\n /* Note: using lambda here because decorators don't seem to work in decorators. */\n _this._updateViewport = function (withForceUpdate) {\n var viewport = _this.state.viewport;\n var viewportElement = _this._root.current;\n var scrollElement = findScrollableParent(viewportElement);\n var scrollRect = getRect(scrollElement);\n var clientRect = getRect(viewportElement);\n var updateComponent = function () {\n if (withForceUpdate && _this._composedComponentInstance) {\n _this._composedComponentInstance.forceUpdate();\n }\n };\n var isSizeChanged = (clientRect && clientRect.width) !== viewport.width || (scrollRect && scrollRect.height) !== viewport.height;\n if (isSizeChanged && _this._resizeAttempts < MAX_RESIZE_ATTEMPTS && clientRect && scrollRect) {\n _this._resizeAttempts++;\n _this.setState({\n viewport: {\n width: clientRect.width,\n height: scrollRect.height,\n },\n }, function () {\n _this._updateViewport(withForceUpdate);\n });\n }\n else {\n _this._resizeAttempts = 0;\n updateComponent();\n }\n };\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n _this._resizeAttempts = 0;\n _this.state = {\n viewport: {\n width: 0,\n height: 0,\n },\n };\n return _this;\n }\n WithViewportComponent.prototype.componentDidMount = function () {\n var _a = this.props, skipViewportMeasures = _a.skipViewportMeasures, disableResizeObserver = _a.disableResizeObserver;\n var win = getWindow(this._root.current);\n this._onAsyncResize = this._async.debounce(this._onAsyncResize, RESIZE_DELAY, {\n leading: false,\n });\n if (!skipViewportMeasures) {\n if (!disableResizeObserver && this._isResizeObserverAvailable()) {\n this._registerResizeObserver();\n }\n else {\n this._events.on(win, 'resize', this._onAsyncResize);\n }\n this._updateViewport();\n }\n };\n WithViewportComponent.prototype.componentDidUpdate = function (previousProps) {\n var previousSkipViewportMeasures = previousProps.skipViewportMeasures;\n var _a = this.props, skipViewportMeasures = _a.skipViewportMeasures, disableResizeObserver = _a.disableResizeObserver;\n var win = getWindow(this._root.current);\n if (skipViewportMeasures !== previousSkipViewportMeasures) {\n if (!skipViewportMeasures) {\n if (!disableResizeObserver && this._isResizeObserverAvailable()) {\n if (!this._viewportResizeObserver) {\n this._registerResizeObserver();\n }\n }\n else {\n this._events.on(win, 'resize', this._onAsyncResize);\n }\n this._updateViewport();\n }\n else {\n this._unregisterResizeObserver();\n this._events.off(win, 'resize', this._onAsyncResize);\n }\n }\n };\n WithViewportComponent.prototype.componentWillUnmount = function () {\n this._events.dispose();\n this._async.dispose();\n this._unregisterResizeObserver();\n };\n WithViewportComponent.prototype.render = function () {\n var viewport = this.state.viewport;\n var newViewport = viewport.width > 0 && viewport.height > 0 ? viewport : undefined;\n return (React.createElement(\"div\", { className: \"ms-Viewport\", ref: this._root, style: { minWidth: 1, minHeight: 1 } },\n React.createElement(ComposedComponent, __assign({ ref: this._updateComposedComponentRef, viewport: newViewport }, this.props))));\n };\n WithViewportComponent.prototype.forceUpdate = function () {\n this._updateViewport(true);\n };\n WithViewportComponent.prototype._onAsyncResize = function () {\n this._updateViewport();\n };\n WithViewportComponent.prototype._isResizeObserverAvailable = function () {\n var win = getWindow(this._root.current);\n return win && win.ResizeObserver;\n };\n return WithViewportComponent;\n }(BaseDecorator));\n}\n//# sourceMappingURL=withViewport.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/groupedList/GroupedListUtility.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/groupedList/GroupedListUtility.js", - "index": 819, - "index2": 813, - "size": 732, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/groupedList/GroupedListUtility", - "loc": "14:0-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/groupedList/GroupedListUtility", - "loc": "121:47-60" - } - ], - "usedExports": [ - "GetGroupCount" - ], - "providedExports": [ - "GetGroupCount" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __spreadArrays } from \"tslib\";\n/**\n * Takes an array of groups and returns a count of the groups and all descendant groups.\n * @param groups - The array of groups to count.\n */\nexport var GetGroupCount = function (groups) {\n var total = 0;\n if (groups) {\n var remainingGroups = __spreadArrays(groups);\n var currentGroup = void 0;\n while (remainingGroups && remainingGroups.length > 0) {\n ++total;\n currentGroup = remainingGroups.pop();\n if (currentGroup && currentGroup.children) {\n remainingGroups.push.apply(remainingGroups, currentGroup.children);\n }\n }\n }\n return total;\n};\n//# sourceMappingURL=GroupedListUtility.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.styles.js", - "index": 843, - "index2": 838, - "size": 2125, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsList.styles", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.js", - "type": "harmony import specifier", - "userRequest": "./DetailsList.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-DetailsList',\n compact: 'ms-DetailsList--Compact',\n contentWrapper: 'ms-DetailsList-contentWrapper',\n headerWrapper: 'ms-DetailsList-headerWrapper',\n isFixed: 'is-fixed',\n isHorizontalConstrained: 'is-horizontalConstrained',\n listCell: 'ms-List-cell',\n};\nexport var getStyles = function (props) {\n var _a, _b;\n var theme = props.theme, className = props.className, isHorizontalConstrained = props.isHorizontalConstrained, compact = props.compact, isFixed = props.isFixed;\n var semanticColors = theme.semanticColors;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.small,\n {\n position: 'relative',\n color: semanticColors.listText,\n selectors: (_a = {},\n _a[\"& .\" + classNames.listCell] = {\n minHeight: 38,\n wordBreak: 'break-word',\n },\n _a),\n },\n isFixed && classNames.isFixed,\n compact && [\n classNames.compact,\n {\n selectors: (_b = {},\n _b[\".\" + classNames.listCell] = {\n minHeight: 32,\n },\n _b),\n },\n ],\n isHorizontalConstrained && [\n classNames.isHorizontalConstrained,\n {\n overflowX: 'auto',\n overflowY: 'visible',\n WebkitOverflowScrolling: 'touch',\n },\n ],\n className,\n ],\n focusZone: [\n {\n display: 'inline-block',\n minWidth: '100%',\n minHeight: 1,\n },\n ],\n headerWrapper: classNames.headerWrapper,\n contentWrapper: classNames.contentWrapper,\n };\n};\n//# sourceMappingURL=DetailsList.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "index": 779, - "index2": 776, - "size": 4732, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "type": "harmony side effect evaluation", - "userRequest": "./Shimmer.styles", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "type": "harmony import specifier", - "userRequest": "./Shimmer.styles", - "loc": "4:41-50" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { keyframes, getGlobalClassNames, hiddenContentStyle, HighContrastSelector, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { getRTL, memoizeFunction } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Shimmer-container',\n shimmerWrapper: 'ms-Shimmer-shimmerWrapper',\n shimmerGradient: 'ms-Shimmer-shimmerGradient',\n dataWrapper: 'ms-Shimmer-dataWrapper',\n};\nvar BACKGROUND_OFF_SCREEN_POSITION = '100%';\nvar shimmerAnimation = memoizeFunction(function () {\n return keyframes({\n '0%': {\n transform: \"translateX(-\" + BACKGROUND_OFF_SCREEN_POSITION + \")\",\n },\n '100%': {\n transform: \"translateX(\" + BACKGROUND_OFF_SCREEN_POSITION + \")\",\n },\n });\n});\nvar shimmerAnimationRTL = memoizeFunction(function () {\n return keyframes({\n '100%': {\n transform: \"translateX(-\" + BACKGROUND_OFF_SCREEN_POSITION + \")\",\n },\n '0%': {\n transform: \"translateX(\" + BACKGROUND_OFF_SCREEN_POSITION + \")\",\n },\n });\n});\nexport function getStyles(props) {\n var _a;\n var isDataLoaded = props.isDataLoaded, className = props.className, theme = props.theme, transitionAnimationInterval = props.transitionAnimationInterval, shimmerColor = props.shimmerColor, shimmerWaveColor = props.shimmerWaveColor;\n var semanticColors = theme.semanticColors;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var isRTL = getRTL(theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n position: 'relative',\n height: 'auto',\n },\n className,\n ],\n shimmerWrapper: [\n classNames.shimmerWrapper,\n {\n position: 'relative',\n overflow: 'hidden',\n transform: 'translateZ(0)',\n backgroundColor: shimmerColor || semanticColors.disabledBackground,\n transition: \"opacity \" + transitionAnimationInterval + \"ms\",\n selectors: (_a = {\n '> *': {\n transform: 'translateZ(0)',\n }\n },\n _a[HighContrastSelector] = __assign({ background: \"WindowText\\n linear-gradient(\\n to right,\\n transparent 0%,\\n Window 50%,\\n transparent 100%)\\n 0 0 / 90% 100%\\n no-repeat\" }, getHighContrastNoAdjustStyle()),\n _a),\n },\n isDataLoaded && {\n opacity: '0',\n position: 'absolute',\n top: '0',\n bottom: '0',\n left: '0',\n right: '0',\n },\n ],\n shimmerGradient: [\n classNames.shimmerGradient,\n {\n position: 'absolute',\n top: 0,\n left: 0,\n width: '100%',\n height: '100%',\n background: (shimmerColor || semanticColors.disabledBackground) + \"\\n linear-gradient(\\n to right,\\n \" + (shimmerColor || semanticColors.disabledBackground) + \" 0%,\\n \" + (shimmerWaveColor || semanticColors.bodyDivider) + \" 50%,\\n \" + (shimmerColor || semanticColors.disabledBackground) + \" 100%)\\n 0 0 / 90% 100%\\n no-repeat\",\n transform: \"translateX(-\" + BACKGROUND_OFF_SCREEN_POSITION + \")\",\n animationDuration: '2s',\n animationTimingFunction: 'ease-in-out',\n animationDirection: 'normal',\n animationIterationCount: 'infinite',\n animationName: isRTL ? shimmerAnimationRTL() : shimmerAnimation(),\n },\n ],\n dataWrapper: [\n classNames.dataWrapper,\n {\n position: 'absolute',\n top: '0',\n bottom: '0',\n left: '0',\n right: '0',\n opacity: '0',\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n transition: \"opacity \" + transitionAnimationInterval + \"ms\",\n },\n isDataLoaded && {\n opacity: '1',\n position: 'static',\n },\n ],\n screenReaderText: hiddenContentStyle,\n };\n}\n//# sourceMappingURL=Shimmer.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "index": 777, - "index2": 770, - "size": 2496, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerLine.styles", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerLine.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getGlobalClassNames, HighContrastSelector } from '../../../Styling';\nvar GlobalClassNames = {\n root: 'ms-ShimmerLine-root',\n topLeftCorner: 'ms-ShimmerLine-topLeftCorner',\n topRightCorner: 'ms-ShimmerLine-topRightCorner',\n bottomLeftCorner: 'ms-ShimmerLine-bottomLeftCorner',\n bottomRightCorner: 'ms-ShimmerLine-bottomRightCorner',\n};\nexport function getStyles(props) {\n var _a;\n // eslint-disable-next-line deprecation/deprecation\n var height = props.height, borderStyle = props.borderStyle, theme = props.theme;\n var semanticColors = theme.semanticColors;\n var globalClassNames = getGlobalClassNames(GlobalClassNames, theme);\n var borderStyles = borderStyle || {};\n var sharedCornerStyles = {\n position: 'absolute',\n fill: semanticColors.bodyBackground,\n };\n return {\n root: [\n globalClassNames.root,\n theme.fonts.medium,\n {\n height: height + \"px\",\n boxSizing: 'content-box',\n position: 'relative',\n borderTopStyle: 'solid',\n borderBottomStyle: 'solid',\n borderColor: semanticColors.bodyBackground,\n borderWidth: 0,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Window',\n selectors: {\n '> *': {\n fill: 'Window',\n },\n },\n },\n _a),\n },\n borderStyles,\n ],\n topLeftCorner: [\n globalClassNames.topLeftCorner,\n {\n top: '0',\n left: '0',\n },\n sharedCornerStyles,\n ],\n topRightCorner: [\n globalClassNames.topRightCorner,\n {\n top: '0',\n right: '0',\n },\n sharedCornerStyles,\n ],\n bottomRightCorner: [\n globalClassNames.bottomRightCorner,\n {\n bottom: '0',\n right: '0',\n },\n sharedCornerStyles,\n ],\n bottomLeftCorner: [\n globalClassNames.bottomLeftCorner,\n {\n bottom: '0',\n left: '0',\n },\n sharedCornerStyles,\n ],\n };\n}\n//# sourceMappingURL=ShimmerLine.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "index": 774, - "index2": 767, - "size": 1226, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerGap.styles", - "loc": "3:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerGap.styles", - "loc": "4:47-56" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getGlobalClassNames, HighContrastSelector } from '../../../Styling';\nvar GlobalClassNames = {\n root: 'ms-ShimmerGap-root',\n};\nexport function getStyles(props) {\n var _a;\n // eslint-disable-next-line deprecation/deprecation\n var height = props.height, borderStyle = props.borderStyle, theme = props.theme;\n var semanticColors = theme.semanticColors;\n var globalClassNames = getGlobalClassNames(GlobalClassNames, theme);\n var borderStyles = borderStyle || {};\n return {\n root: [\n globalClassNames.root,\n theme.fonts.medium,\n {\n backgroundColor: semanticColors.bodyBackground,\n height: height + \"px\",\n boxSizing: 'content-box',\n borderTopStyle: 'solid',\n borderBottomStyle: 'solid',\n borderColor: semanticColors.bodyBackground,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n backgroundColor: 'Window',\n borderColor: 'Window',\n },\n _a),\n },\n borderStyles,\n ],\n };\n}\n//# sourceMappingURL=ShimmerGap.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "index": 771, - "index2": 764, - "size": 1583, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerCircle.styles", - "loc": "2:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerCircle.styles", - "loc": "4:53-62" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getGlobalClassNames, HighContrastSelector } from '../../../Styling';\nvar GlobalClassNames = {\n root: 'ms-ShimmerCircle-root',\n svg: 'ms-ShimmerCircle-svg',\n};\nexport function getStyles(props) {\n var _a, _b;\n // eslint-disable-next-line deprecation/deprecation\n var height = props.height, borderStyle = props.borderStyle, theme = props.theme;\n var semanticColors = theme.semanticColors;\n var globalClassNames = getGlobalClassNames(GlobalClassNames, theme);\n var borderStyles = borderStyle || {};\n return {\n root: [\n globalClassNames.root,\n theme.fonts.medium,\n {\n width: height + \"px\",\n height: height + \"px\",\n minWidth: height + \"px\",\n boxSizing: 'content-box',\n borderTopStyle: 'solid',\n borderBottomStyle: 'solid',\n borderColor: semanticColors.bodyBackground,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Window',\n },\n _a),\n },\n borderStyles,\n ],\n svg: [\n globalClassNames.svg,\n {\n display: 'block',\n fill: semanticColors.bodyBackground,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n fill: 'Window',\n },\n _b),\n },\n ],\n };\n}\n//# sourceMappingURL=ShimmerCircle.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.js", - "index": 778, - "index2": 773, - "size": 643, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sGZj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Shimmer.js" - }, - { - "id": "XrpE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmerElementsGroup.styles", - "loc": "3:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.js", - "type": "harmony import specifier", - "userRequest": "./ShimmerElementsGroup.styles", - "loc": "4:67-76" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getGlobalClassNames } from '../../../Styling';\nvar GlobalClassNames = {\n root: 'ms-ShimmerElementsGroup-root',\n};\nexport function getStyles(props) {\n var flexWrap = props.flexWrap, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n display: 'flex',\n alignItems: 'center',\n flexWrap: flexWrap ? 'wrap' : 'nowrap',\n position: 'relative',\n },\n ],\n };\n}\n//# sourceMappingURL=ShimmerElementsGroup.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.styles.js", - "index": 844, - "index2": 841, - "size": 742, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "gR01", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "type": "harmony side effect evaluation", - "userRequest": "./ShimmeredDetailsList.styles", - "loc": "3:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js", - "type": "harmony import specifier", - "userRequest": "./ShimmeredDetailsList.styles", - "loc": "4:67-76" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var getStyles = function (props) {\n var theme = props.theme;\n var palette = theme.palette;\n return {\n root: {\n position: 'relative',\n selectors: {\n ':after': {\n content: '\"\"',\n position: 'absolute',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n // eslint-disable-next-line @fluentui/max-len\n backgroundImage: \"linear-gradient(to bottom, transparent 30%, \" + palette.whiteTranslucent40 + \" 65%,\" + palette.white + \" 100%)\",\n },\n },\n },\n };\n};\n//# sourceMappingURL=ShimmeredDetailsList.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "index": 761, - "index2": 757, - "size": 3972, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "yb4Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "Nong", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony import specifier", - "userRequest": "./Modal.styles", - "loc": "4:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal.styles", - "loc": "5:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "userRequest": "./Modal.styles", - "loc": "229:92-109" - } - ], - "usedExports": [ - "getStyles", - "animationDuration" - ], - "providedExports": [ - "animationDuration", - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { AnimationVariables, getGlobalClassNames, ZIndexes } from '../../Styling';\nexport var animationDuration = AnimationVariables.durationValue2;\nvar globalClassNames = {\n root: 'ms-Modal',\n main: 'ms-Dialog-main',\n scrollableContent: 'ms-Modal-scrollableContent',\n isOpen: 'is-open',\n layer: 'ms-Modal-Layer',\n};\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, containerClassName = props.containerClassName, scrollableContentClassName = props.scrollableContentClassName, isOpen = props.isOpen, isVisible = props.isVisible, hasBeenOpened = props.hasBeenOpened, modalRectangleTop = props.modalRectangleTop, theme = props.theme, topOffsetFixed = props.topOffsetFixed, isModeless = props.isModeless, layerClassName = props.layerClassName, isDefaultDragHandle = props.isDefaultDragHandle;\n var palette = theme.palette, effects = theme.effects, fonts = theme.fonts;\n var classNames = getGlobalClassNames(globalClassNames, theme);\n return {\n root: [\n classNames.root,\n fonts.medium,\n {\n backgroundColor: 'transparent',\n position: isModeless ? 'absolute' : 'fixed',\n height: '100%',\n width: '100%',\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n opacity: 0,\n pointerEvents: 'none',\n transition: \"opacity \" + animationDuration,\n },\n topOffsetFixed &&\n typeof modalRectangleTop === 'number' &&\n hasBeenOpened && {\n alignItems: 'flex-start',\n },\n isOpen && classNames.isOpen,\n isVisible && {\n opacity: 1,\n pointerEvents: 'auto',\n },\n className,\n ],\n main: [\n classNames.main,\n {\n boxShadow: effects.elevation64,\n borderRadius: effects.roundedCorner2,\n backgroundColor: palette.white,\n boxSizing: 'border-box',\n position: 'relative',\n textAlign: 'left',\n outline: '3px solid transparent',\n maxHeight: 'calc(100% - 32px)',\n maxWidth: 'calc(100% - 32px)',\n minHeight: '176px',\n minWidth: '288px',\n overflowY: 'auto',\n zIndex: isModeless ? ZIndexes.Layer : undefined,\n },\n topOffsetFixed &&\n typeof modalRectangleTop === 'number' &&\n hasBeenOpened && {\n top: modalRectangleTop,\n },\n isDefaultDragHandle && {\n cursor: 'move',\n },\n containerClassName,\n ],\n scrollableContent: [\n classNames.scrollableContent,\n {\n overflowY: 'auto',\n flexGrow: 1,\n maxHeight: '100vh',\n selectors: (_a = {},\n _a['@supports (-webkit-overflow-scrolling: touch)'] = {\n maxHeight: window.innerHeight,\n },\n _a),\n },\n scrollableContentClassName,\n ],\n layer: isModeless && [\n layerClassName,\n classNames.layer,\n {\n position: 'static',\n width: 'unset',\n height: 'unset',\n },\n ],\n keyboardMoveIconContainer: {\n position: 'absolute',\n display: 'flex',\n justifyContent: 'center',\n width: '100%',\n padding: '3px 0px',\n },\n keyboardMoveIcon: {\n // eslint-disable-next-line deprecation/deprecation\n fontSize: fonts.xLargePlus.fontSize,\n width: '24px',\n },\n };\n};\n//# sourceMappingURL=Modal.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "index": 782, - "index2": 779, - "size": 8555, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "ZmcE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Toggle.js", - "name": "./node_modules/office-ui-fabric-react/lib/Toggle.js" - }, - { - "id": "U3py", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "type": "harmony side effect evaluation", - "userRequest": "./Toggle.styles", - "loc": "3:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.js", - "type": "harmony import specifier", - "userRequest": "./Toggle.styles", - "loc": "4:39-48" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, getFocusStyle, FontWeights, getHighContrastNoAdjustStyle } from '../../Styling';\nvar DEFAULT_PILL_WIDTH = 40;\nvar DEFAULT_PILL_HEIGHT = 20;\nvar DEFAULT_THUMB_SIZE = 12;\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g;\n var theme = props.theme, className = props.className, disabled = props.disabled, checked = props.checked, inlineLabel = props.inlineLabel, onOffMissing = props.onOffMissing;\n var semanticColors = theme.semanticColors, palette = theme.palette;\n // Tokens\n var pillUncheckedBackground = semanticColors.bodyBackground;\n var pillCheckedBackground = semanticColors.inputBackgroundChecked;\n var pillCheckedHoveredBackground = semanticColors.inputBackgroundCheckedHovered;\n var thumbUncheckedHoveredBackground = palette.neutralDark;\n var pillCheckedDisabledBackground = semanticColors.disabledBodySubtext;\n var thumbBackground = semanticColors.smallInputBorder;\n var thumbCheckedBackground = semanticColors.inputForegroundChecked;\n var thumbDisabledBackground = semanticColors.disabledBodySubtext;\n var thumbCheckedDisabledBackground = semanticColors.disabledBackground;\n var pillBorderColor = semanticColors.smallInputBorder;\n var pillBorderHoveredColor = semanticColors.inputBorderHovered;\n var pillBorderDisabledColor = semanticColors.disabledBodySubtext;\n var textDisabledColor = semanticColors.disabledText;\n return {\n root: [\n 'ms-Toggle',\n checked && 'is-checked',\n !disabled && 'is-enabled',\n disabled && 'is-disabled',\n theme.fonts.medium,\n {\n marginBottom: '8px',\n },\n inlineLabel && {\n display: 'flex',\n alignItems: 'center',\n },\n className,\n ],\n label: [\n 'ms-Toggle-label',\n { display: 'inline-block' },\n disabled && {\n color: textDisabledColor,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'GrayText',\n },\n _a),\n },\n inlineLabel &&\n !onOffMissing && {\n marginRight: 16,\n },\n onOffMissing &&\n inlineLabel && {\n order: 1,\n marginLeft: 16,\n },\n inlineLabel && { wordBreak: 'break-all' },\n ],\n container: [\n 'ms-Toggle-innerContainer',\n {\n display: 'flex',\n position: 'relative',\n },\n ],\n pill: [\n 'ms-Toggle-background',\n getFocusStyle(theme, { inset: -3 }),\n {\n fontSize: '20px',\n boxSizing: 'border-box',\n width: DEFAULT_PILL_WIDTH,\n height: DEFAULT_PILL_HEIGHT,\n borderRadius: DEFAULT_PILL_HEIGHT / 2,\n transition: 'all 0.1s ease',\n border: \"1px solid \" + pillBorderColor,\n background: pillUncheckedBackground,\n cursor: 'pointer',\n display: 'flex',\n alignItems: 'center',\n padding: '0 3px',\n },\n !disabled && [\n !checked && {\n selectors: {\n ':hover': [\n {\n borderColor: pillBorderHoveredColor,\n },\n ],\n ':hover .ms-Toggle-thumb': [\n {\n backgroundColor: thumbUncheckedHoveredBackground,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _b),\n },\n ],\n },\n },\n checked && [\n {\n background: pillCheckedBackground,\n borderColor: 'transparent',\n justifyContent: 'flex-end',\n },\n {\n selectors: (_c = {\n ':hover': [\n {\n backgroundColor: pillCheckedHoveredBackground,\n borderColor: 'transparent',\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n backgroundColor: 'Highlight',\n },\n _d),\n },\n ]\n },\n _c[HighContrastSelector] = __assign({ backgroundColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _c),\n },\n ],\n ],\n disabled && [\n {\n cursor: 'default',\n },\n !checked && [\n {\n borderColor: pillBorderDisabledColor,\n },\n ],\n checked && [\n {\n backgroundColor: pillCheckedDisabledBackground,\n borderColor: 'transparent',\n justifyContent: 'flex-end',\n },\n ],\n ],\n !disabled && {\n selectors: {\n '&:hover': {\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _e),\n },\n },\n },\n ],\n thumb: [\n 'ms-Toggle-thumb',\n {\n display: 'block',\n width: DEFAULT_THUMB_SIZE,\n height: DEFAULT_THUMB_SIZE,\n borderRadius: '50%',\n transition: 'all 0.1s ease',\n backgroundColor: thumbBackground,\n /* Border is added to handle high contrast mode for Firefox */\n borderColor: 'transparent',\n borderWidth: DEFAULT_THUMB_SIZE / 2,\n borderStyle: 'solid',\n boxSizing: 'border-box',\n },\n !disabled &&\n checked && [\n {\n backgroundColor: thumbCheckedBackground,\n selectors: (_f = {},\n _f[HighContrastSelector] = {\n backgroundColor: 'Window',\n borderColor: 'Window',\n },\n _f),\n },\n ],\n disabled && [\n !checked && [\n {\n backgroundColor: thumbDisabledBackground,\n },\n ],\n checked && [\n {\n backgroundColor: thumbCheckedDisabledBackground,\n },\n ],\n ],\n ],\n text: [\n 'ms-Toggle-stateText',\n {\n selectors: {\n // Workaround: make rules more specific than Label rules.\n '&&': {\n padding: '0',\n margin: '0 8px',\n userSelect: 'none',\n fontWeight: FontWeights.regular,\n },\n },\n },\n disabled && {\n selectors: {\n '&&': {\n color: textDisabledColor,\n selectors: (_g = {},\n _g[HighContrastSelector] = {\n color: 'GrayText',\n },\n _g),\n },\n },\n },\n ],\n };\n};\n//# sourceMappingURL=Toggle.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/overflow.js", - "name": "./node_modules/@uifabric/utilities/lib/overflow.js", - "index": 798, - "index2": 792, - "size": 918, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "49:40-51" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./overflow", - "loc": "46:0-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./overflow", - "loc": "46:0-27" - } - ], - "usedExports": [ - "hasOverflow" - ], - "providedExports": [ - "hasHorizontalOverflow", - "hasVerticalOverflow", - "hasOverflow" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Detects whether an element's content has horizontal overflow\n *\n * @public\n * @param element - Element to check for overflow\n * @returns True if element's content overflows\n */\nexport function hasHorizontalOverflow(element) {\n return element.clientWidth < element.scrollWidth;\n}\n/**\n * Detects whether an element's content has vertical overflow\n *\n * @public\n * @param element - Element to check for overflow\n * @returns True if element's content overflows\n */\nexport function hasVerticalOverflow(element) {\n return element.clientHeight < element.scrollHeight;\n}\n/**\n * Detects whether an element's content has overflow in any direction\n *\n * @public\n * @param element - Element to check for overflow\n * @returns True if element's content overflows\n */\nexport function hasOverflow(element) {\n return hasHorizontalOverflow(element) || hasVerticalOverflow(element);\n}\n//# sourceMappingURL=overflow.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.types.js", - "index": 797, - "index2": 791, - "size": 578, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerId": "kzwK", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js" - }, - { - "id": "kzwK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./TooltipHost.types", - "loc": "5:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "userRequest": "./TooltipHost.types", - "loc": "32:25-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "userRequest": "./TooltipHost.types", - "loc": "34:25-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Tooltip", - "loc": "105:88-107" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Tooltip", - "loc": "113:93-112" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Tooltip", - "loc": "118:93-112" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TooltipHost.types", - "loc": "6:0-36" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TooltipHost.types", - "loc": "6:0-36" - } - ], - "usedExports": [ - "TooltipOverflowMode" - ], - "providedExports": [ - "TooltipOverflowMode" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * {@docCategory Tooltip}\n */\nexport var TooltipOverflowMode;\n(function (TooltipOverflowMode) {\n /** Only show tooltip if parent DOM element is overflowing */\n TooltipOverflowMode[TooltipOverflowMode[\"Parent\"] = 0] = \"Parent\";\n /**\n * Only show tooltip if tooltip host's content is overflowing.\n * Note that this does not check the children for overflow, only the TooltipHost root.\n */\n TooltipOverflowMode[TooltipOverflowMode[\"Self\"] = 1] = \"Self\";\n})(TooltipOverflowMode || (TooltipOverflowMode = {}));\n//# sourceMappingURL=TooltipHost.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "index": 801, - "index2": 794, - "size": 2400, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js" - }, - { - "id": "kzwK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "type": "harmony side effect evaluation", - "userRequest": "./Tooltip.base", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "type": "harmony import specifier", - "userRequest": "./Tooltip.base", - "loc": "4:28-39" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Tooltip.base", - "loc": "2:0-31" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Tooltip.base", - "loc": "2:0-31" - } - ], - "usedExports": [ - "TooltipBase" - ], - "providedExports": [ - "TooltipBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, divProperties, getNativeProps } from '../../Utilities';\nimport { Callout } from '../../Callout';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nvar getClassNames = classNamesFunction();\nvar TooltipBase = /** @class */ (function (_super) {\n __extends(TooltipBase, _super);\n function TooltipBase() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onRenderContent = function (props) {\n return React.createElement(\"p\", { className: _this._classNames.subText }, props.content);\n };\n return _this;\n }\n TooltipBase.prototype.render = function () {\n var _a = this.props, className = _a.className, calloutProps = _a.calloutProps, directionalHint = _a.directionalHint, directionalHintForRTL = _a.directionalHintForRTL, styles = _a.styles, id = _a.id, maxWidth = _a.maxWidth, _b = _a.onRenderContent, onRenderContent = _b === void 0 ? this._onRenderContent : _b, targetElement = _a.targetElement, theme = _a.theme;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className || (calloutProps && calloutProps.className),\n beakWidth: calloutProps && calloutProps.beakWidth,\n gapSpace: calloutProps && calloutProps.gapSpace,\n maxWidth: maxWidth,\n });\n return (React.createElement(Callout, __assign({ target: targetElement, directionalHint: directionalHint, directionalHintForRTL: directionalHintForRTL }, calloutProps, getNativeProps(this.props, divProperties, ['id']), { className: this._classNames.root }),\n React.createElement(\"div\", { className: this._classNames.content, id: id, role: \"tooltip\", onMouseEnter: this.props.onMouseEnter, onMouseLeave: this.props.onMouseLeave }, onRenderContent(this.props, this._onRenderContent))));\n };\n // Specify default props values\n TooltipBase.defaultProps = {\n directionalHint: DirectionalHint.topCenter,\n maxWidth: '364px',\n calloutProps: {\n isBeakVisible: true,\n beakWidth: 16,\n gapSpace: 0,\n setInitialFocus: true,\n doNotLayer: false,\n },\n };\n return TooltipBase;\n}(React.Component));\nexport { TooltipBase };\n//# sourceMappingURL=Tooltip.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "index": 800, - "index2": 796, - "size": 260, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerId": "kzwK", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js" - }, - { - "id": "kzwK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Tooltip", - "loc": "6:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "userRequest": "./Tooltip", - "loc": "143:48-55" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Tooltip", - "loc": "1:0-26" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Tooltip", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Tooltip" - ], - "providedExports": [ - "Tooltip" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { TooltipBase } from './Tooltip.base';\nimport { getStyles } from './Tooltip.styles';\nexport var Tooltip = styled(TooltipBase, getStyles, undefined, {\n scope: 'Tooltip',\n});\n//# sourceMappingURL=Tooltip.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.types.js", - "index": 799, - "index2": 793, - "size": 432, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerId": "kzwK", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js" - }, - { - "id": "kzwK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Tooltip.types", - "loc": "7:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "userRequest": "./Tooltip.types", - "loc": "59:26-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "userRequest": "./Tooltip.types", - "loc": "112:21-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "userRequest": "./Tooltip.types", - "loc": "114:21-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "userRequest": "./Tooltip.types", - "loc": "157:15-27" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Tooltip.types", - "loc": "3:0-32" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Tooltip.types", - "loc": "3:0-32" - } - ], - "usedExports": [ - "TooltipDelay" - ], - "providedExports": [ - "TooltipDelay" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * {@docCategory Tooltip}\n */\nexport var TooltipDelay;\n(function (TooltipDelay) {\n TooltipDelay[TooltipDelay[\"zero\"] = 0] = \"zero\";\n /** 300 ms delay before showng the tooltip */\n TooltipDelay[TooltipDelay[\"medium\"] = 1] = \"medium\";\n /** 500 ms delay before showing the tooltip */\n TooltipDelay[TooltipDelay[\"long\"] = 2] = \"long\";\n})(TooltipDelay || (TooltipDelay = {}));\n//# sourceMappingURL=Tooltip.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "index": 796, - "index2": 797, - "size": 8165, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerId": "kzwK", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js" - }, - { - "id": "kzwK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "type": "harmony side effect evaluation", - "userRequest": "./TooltipHost.base", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "type": "harmony import specifier", - "userRequest": "./TooltipHost.base", - "loc": "4:32-47" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TooltipHost.base", - "loc": "5:0-35" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TooltipHost.base", - "loc": "5:0-35" - } - ], - "usedExports": [ - "TooltipHostBase" - ], - "providedExports": [ - "TooltipHostBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { hiddenContentStyle } from '../../Styling';\nimport { initializeComponentRef, Async, divProperties, getNativeProps, getId, assign, hasOverflow, portalContainsElement, classNamesFunction, KeyCodes, } from '../../Utilities';\nimport { TooltipOverflowMode, } from './TooltipHost.types';\nimport { Tooltip } from './Tooltip';\nimport { TooltipDelay } from './Tooltip.types';\nvar getClassNames = classNamesFunction();\nvar TooltipHostBase = /** @class */ (function (_super) {\n __extends(TooltipHostBase, _super);\n // Constructor\n function TooltipHostBase(props) {\n var _this = _super.call(this, props) || this;\n // The wrapping div that gets the hover events\n _this._tooltipHost = React.createRef();\n _this._defaultTooltipId = getId('tooltip');\n _this.show = function () {\n _this._toggleTooltip(true);\n };\n _this.dismiss = function () {\n _this._hideTooltip();\n };\n _this._getTargetElement = function () {\n if (!_this._tooltipHost.current) {\n return undefined;\n }\n var overflowMode = _this.props.overflowMode;\n // Select target element based on overflow mode. For parent mode, you want to position the tooltip relative\n // to the parent element, otherwise it might look off.\n if (overflowMode !== undefined) {\n switch (overflowMode) {\n case TooltipOverflowMode.Parent:\n return _this._tooltipHost.current.parentElement;\n case TooltipOverflowMode.Self:\n return _this._tooltipHost.current;\n }\n }\n return _this._tooltipHost.current;\n };\n // Show Tooltip\n _this._onTooltipMouseEnter = function (ev) {\n var _a = _this.props, overflowMode = _a.overflowMode, delay = _a.delay;\n if (TooltipHostBase._currentVisibleTooltip && TooltipHostBase._currentVisibleTooltip !== _this) {\n TooltipHostBase._currentVisibleTooltip.dismiss();\n }\n TooltipHostBase._currentVisibleTooltip = _this;\n if (overflowMode !== undefined) {\n var overflowElement = _this._getTargetElement();\n if (overflowElement && !hasOverflow(overflowElement)) {\n return;\n }\n }\n if (ev.target && portalContainsElement(ev.target, _this._getTargetElement())) {\n // Do not show tooltip when target is inside a portal relative to TooltipHost.\n return;\n }\n _this._clearDismissTimer();\n _this._clearOpenTimer();\n if (delay !== TooltipDelay.zero) {\n _this.setState({ isAriaPlaceholderRendered: true });\n var delayTime = _this._getDelayTime(delay); // non-null assertion because we set it in `defaultProps`\n _this._openTimerId = _this._async.setTimeout(function () {\n _this._toggleTooltip(true);\n }, delayTime);\n }\n else {\n _this._toggleTooltip(true);\n }\n };\n // Hide Tooltip\n _this._onTooltipMouseLeave = function (ev) {\n var closeDelay = _this.props.closeDelay;\n _this._clearDismissTimer();\n _this._clearOpenTimer();\n if (closeDelay) {\n _this._dismissTimerId = _this._async.setTimeout(function () {\n _this._toggleTooltip(false);\n }, closeDelay);\n }\n else {\n _this._toggleTooltip(false);\n }\n if (TooltipHostBase._currentVisibleTooltip === _this) {\n TooltipHostBase._currentVisibleTooltip = undefined;\n }\n };\n _this._onTooltipKeyDown = function (ev) {\n if ((ev.which === KeyCodes.escape || ev.ctrlKey) && _this.state.isTooltipVisible) {\n _this._hideTooltip();\n ev.stopPropagation();\n }\n };\n _this._clearDismissTimer = function () {\n _this._async.clearTimeout(_this._dismissTimerId);\n };\n _this._clearOpenTimer = function () {\n _this._async.clearTimeout(_this._openTimerId);\n };\n // Hide Tooltip\n _this._hideTooltip = function () {\n _this._clearOpenTimer();\n _this._clearDismissTimer();\n _this._toggleTooltip(false);\n };\n _this._toggleTooltip = function (isTooltipVisible) {\n if (_this.state.isTooltipVisible !== isTooltipVisible) {\n _this.setState({ isAriaPlaceholderRendered: false, isTooltipVisible: isTooltipVisible }, function () { return _this.props.onTooltipToggle && _this.props.onTooltipToggle(isTooltipVisible); });\n }\n };\n _this._getDelayTime = function (delay) {\n switch (delay) {\n case TooltipDelay.medium:\n return 300;\n case TooltipDelay.long:\n return 500;\n default:\n return 0;\n }\n };\n initializeComponentRef(_this);\n _this.state = {\n isAriaPlaceholderRendered: false,\n isTooltipVisible: false,\n };\n _this._async = new Async(_this);\n return _this;\n }\n // Render\n TooltipHostBase.prototype.render = function () {\n var _a = this.props, calloutProps = _a.calloutProps, children = _a.children, content = _a.content, directionalHint = _a.directionalHint, directionalHintForRTL = _a.directionalHintForRTL, className = _a.hostClassName, id = _a.id, _b = _a.setAriaDescribedBy, setAriaDescribedBy = _b === void 0 ? true : _b, tooltipProps = _a.tooltipProps, styles = _a.styles, theme = _a.theme;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n });\n var _c = this.state, isAriaPlaceholderRendered = _c.isAriaPlaceholderRendered, isTooltipVisible = _c.isTooltipVisible;\n var tooltipId = id || this._defaultTooltipId;\n var isContentPresent = !!(content ||\n (tooltipProps && tooltipProps.onRenderContent && tooltipProps.onRenderContent()));\n var showTooltip = isTooltipVisible && isContentPresent;\n var ariaDescribedBy = setAriaDescribedBy && isTooltipVisible && isContentPresent ? tooltipId : undefined;\n return (React.createElement(\"div\", __assign({ className: this._classNames.root, ref: this._tooltipHost }, { onFocusCapture: this._onTooltipMouseEnter }, { onBlurCapture: this._hideTooltip }, { onMouseEnter: this._onTooltipMouseEnter, onMouseLeave: this._onTooltipMouseLeave, onKeyDown: this._onTooltipKeyDown, \"aria-describedby\": ariaDescribedBy }),\n children,\n showTooltip && (React.createElement(Tooltip, __assign({ id: tooltipId, content: content, targetElement: this._getTargetElement(), directionalHint: directionalHint, directionalHintForRTL: directionalHintForRTL, calloutProps: assign({}, calloutProps, {\n onDismiss: this._hideTooltip,\n onMouseEnter: this._onTooltipMouseEnter,\n onMouseLeave: this._onTooltipMouseLeave,\n }), onMouseEnter: this._onTooltipMouseEnter, onMouseLeave: this._onTooltipMouseLeave }, getNativeProps(this.props, divProperties), tooltipProps))),\n isAriaPlaceholderRendered && (React.createElement(\"div\", { id: tooltipId, style: hiddenContentStyle }, content))));\n };\n TooltipHostBase.prototype.componentWillUnmount = function () {\n if (TooltipHostBase._currentVisibleTooltip && TooltipHostBase._currentVisibleTooltip === this) {\n TooltipHostBase._currentVisibleTooltip = undefined;\n }\n this._async.dispose();\n };\n TooltipHostBase.defaultProps = {\n delay: TooltipDelay.medium,\n };\n return TooltipHostBase;\n}(React.Component));\nexport { TooltipHostBase };\n//# sourceMappingURL=TooltipHost.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "index": 795, - "index2": 799, - "size": 288, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerId": "kzwK", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js" - }, - { - "id": "kzwK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Tooltip", - "loc": "105:44-55" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Tooltip", - "loc": "113:40-51" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Tooltip", - "loc": "118:40-51" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TooltipHost", - "loc": "4:0-30" - }, - { - "moduleId": "kzwK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TooltipHost", - "loc": "4:0-30" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Tooltip", - "loc": "32:44-55" - } - ], - "usedExports": [ - "TooltipHost" - ], - "providedExports": [ - "TooltipHost" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { TooltipHostBase } from './TooltipHost.base';\nimport { getStyles } from './TooltipHost.styles';\nexport var TooltipHost = styled(TooltipHostBase, getStyles, undefined, {\n scope: 'TooltipHost',\n});\n//# sourceMappingURL=TooltipHost.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initials.js", - "name": "./node_modules/@uifabric/utilities/lib/initials.js", - "index": 790, - "index2": 784, - "size": 3189, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "52:45-56" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "39:41-52" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./initials", - "loc": "36:0-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./initials", - "loc": "36:0-27" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "96:41-52" - } - ], - "usedExports": [ - "getInitials" - ], - "providedExports": [ - "getInitials" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Regular expression matching characters to ignore when calculating the initials.\n */\n/**\n * Regular expression matching characters within various types of enclosures, including the enclosures themselves\n * so for example, (xyz) [xyz] {xyz} all would be ignored\n */\nvar UNWANTED_ENCLOSURES_REGEX = /[\\(\\[\\{][^\\)\\]\\}]*[\\)\\]\\}]/g;\n/**\n * Regular expression matching special ASCII characters except space, plus some unicode special characters.\n * Applies after unwanted enclosures have been removed\n */\nvar UNWANTED_CHARS_REGEX = /[\\0-\\u001F\\!-/:-@\\[-`\\{-\\u00BF\\u0250-\\u036F\\uD800-\\uFFFF]/g;\n/**\n * Regular expression matching phone numbers. Applied after chars matching UNWANTED_CHARS_REGEX have been removed\n * and number has been trimmed for whitespaces\n */\nvar PHONENUMBER_REGEX = /^\\d+[\\d\\s]*(:?ext|x|)\\s*\\d+$/i;\n/** Regular expression matching one or more spaces. */\nvar MULTIPLE_WHITESPACES_REGEX = /\\s+/g;\n/**\n * Regular expression matching languages for which we currently don't support initials.\n * Arabic: Arabic, Arabic Supplement, Arabic Extended-A.\n * Korean: Hangul Jamo, Hangul Compatibility Jamo, Hangul Jamo Extended-A, Hangul Syllables, Hangul Jamo Extended-B.\n * Japanese: Hiragana, Katakana.\n * CJK: CJK Unified Ideographs Extension A, CJK Unified Ideographs, CJK Compatibility Ideographs,\n * CJK Unified Ideographs Extension B\n */\n// eslint-disable-next-line @fluentui/max-len\nvar UNSUPPORTED_TEXT_REGEX = /[\\u0600-\\u06FF\\u0750-\\u077F\\u08A0-\\u08FF\\u1100-\\u11FF\\u3130-\\u318F\\uA960-\\uA97F\\uAC00-\\uD7AF\\uD7B0-\\uD7FF\\u3040-\\u309F\\u30A0-\\u30FF\\u3400-\\u4DBF\\u4E00-\\u9FFF\\uF900-\\uFAFF]|[\\uD840-\\uD869][\\uDC00-\\uDED6]/;\nfunction getInitialsLatin(displayName, isRtl) {\n var initials = '';\n var splits = displayName.split(' ');\n if (splits.length === 2) {\n initials += splits[0].charAt(0).toUpperCase();\n initials += splits[1].charAt(0).toUpperCase();\n }\n else if (splits.length === 3) {\n initials += splits[0].charAt(0).toUpperCase();\n initials += splits[2].charAt(0).toUpperCase();\n }\n else if (splits.length !== 0) {\n initials += splits[0].charAt(0).toUpperCase();\n }\n if (isRtl && initials.length > 1) {\n return initials.charAt(1) + initials.charAt(0);\n }\n return initials;\n}\nfunction cleanupDisplayName(displayName) {\n displayName = displayName.replace(UNWANTED_ENCLOSURES_REGEX, '');\n displayName = displayName.replace(UNWANTED_CHARS_REGEX, '');\n displayName = displayName.replace(MULTIPLE_WHITESPACES_REGEX, ' ');\n displayName = displayName.trim();\n return displayName;\n}\n/**\n * Get (up to 2 characters) initials based on display name of the persona.\n *\n * @public\n */\nexport function getInitials(displayName, isRtl, allowPhoneInitials) {\n if (!displayName) {\n return '';\n }\n displayName = cleanupDisplayName(displayName);\n // For names containing CJK characters, and phone numbers, we don't display initials\n if (UNSUPPORTED_TEXT_REGEX.test(displayName) || (!allowPhoneInitials && PHONENUMBER_REGEX.test(displayName))) {\n return '';\n }\n return getInitialsLatin(displayName, isRtl);\n}\n//# sourceMappingURL=initials.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "index": 786, - "index2": 788, - "size": 8326, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaCoin.base", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "type": "harmony import specifier", - "userRequest": "./PersonaCoin.base", - "loc": "7:32-47" - }, - { - "moduleId": "Xgwh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaCoin.base", - "loc": "2:0-35" - }, - { - "moduleId": "Xgwh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PersonaCoin.base", - "loc": "2:0-35" - } - ], - "usedExports": [ - "PersonaCoinBase" - ], - "providedExports": [ - "PersonaCoinBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { warnDeprecations, classNamesFunction, divProperties, memoizeFunction, getInitials, getNativeProps, getRTL, } from '../../../Utilities';\nimport { mergeStyles } from '../../../Styling';\nimport { PersonaPresence } from '../PersonaPresence/index';\nimport { Icon } from '../../../Icon';\nimport { Image, ImageFit, ImageLoadState } from '../../../Image';\nimport { PersonaPresence as PersonaPresenceEnum, PersonaSize, } from '../Persona.types';\nimport { getPersonaInitialsColor } from '../PersonaInitialsColor';\nimport { sizeToPixels } from '../PersonaConsts';\nvar getClassNames = classNamesFunction({\n // There can be many PersonaCoin rendered with different sizes.\n // Therefore setting a larger cache size.\n cacheSize: 100,\n});\nvar getInitialsStyles = memoizeFunction(function (className, initialsColor, initialsTextColor, text, primaryText, showUnknownPersonaCoin) {\n return mergeStyles(className, !showUnknownPersonaCoin && {\n backgroundColor: getPersonaInitialsColor({ text: text, initialsColor: initialsColor, primaryText: primaryText }),\n color: initialsTextColor,\n });\n});\n/**\n * PersonaCoin with no default styles.\n * [Use the `getStyles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Styling)\n */\nvar PersonaCoinBase = /** @class */ (function (_super) {\n __extends(PersonaCoinBase, _super);\n function PersonaCoinBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onRenderCoin = function (props) {\n var _a = _this.props, coinSize = _a.coinSize, styles = _a.styles, imageUrl = _a.imageUrl, imageAlt = _a.imageAlt, imageShouldFadeIn = _a.imageShouldFadeIn, imageShouldStartVisible = _a.imageShouldStartVisible, theme = _a.theme, showUnknownPersonaCoin = _a.showUnknownPersonaCoin;\n // Render the Image component only if an image URL is provided\n if (!imageUrl) {\n return null;\n }\n var size = _this.props.size;\n var classNames = getClassNames(styles, {\n theme: theme,\n size: size,\n showUnknownPersonaCoin: showUnknownPersonaCoin,\n });\n var dimension = coinSize || sizeToPixels[size];\n return (React.createElement(Image, { className: classNames.image, imageFit: ImageFit.cover, src: imageUrl, width: dimension, height: dimension, alt: imageAlt, shouldFadeIn: imageShouldFadeIn, shouldStartVisible: imageShouldStartVisible, onLoadingStateChange: _this._onPhotoLoadingStateChange }));\n };\n _this._onRenderInitials = function (props) {\n var imageInitials = props.imageInitials;\n var allowPhoneInitials = props.allowPhoneInitials, showUnknownPersonaCoin = props.showUnknownPersonaCoin;\n if (showUnknownPersonaCoin) {\n return React.createElement(Icon, { iconName: \"Help\" });\n }\n var isRTL = getRTL(_this.props.theme);\n imageInitials = imageInitials || getInitials(_this._getText(), isRTL, allowPhoneInitials);\n return imageInitials !== '' ? React.createElement(\"span\", null, imageInitials) : React.createElement(Icon, { iconName: \"Contact\" });\n };\n _this._onPhotoLoadingStateChange = function (loadState) {\n _this.setState({\n isImageLoaded: loadState === ImageLoadState.loaded,\n isImageError: loadState === ImageLoadState.error,\n });\n _this.props.onPhotoLoadingStateChange && _this.props.onPhotoLoadingStateChange(loadState);\n };\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('PersonaCoin', props, { primaryText: 'text' });\n }\n _this.state = {\n isImageLoaded: false,\n isImageError: false,\n };\n return _this;\n }\n PersonaCoinBase.prototype.UNSAFE_componentWillReceiveProps = function (nextProps) {\n if (nextProps.imageUrl !== this.props.imageUrl) {\n this.setState({\n isImageLoaded: false,\n isImageError: false,\n });\n }\n };\n PersonaCoinBase.prototype.render = function () {\n var _a = this.props, className = _a.className, coinProps = _a.coinProps, showUnknownPersonaCoin = _a.showUnknownPersonaCoin, coinSize = _a.coinSize, styles = _a.styles, imageUrl = _a.imageUrl, initialsColor = _a.initialsColor, initialsTextColor = _a.initialsTextColor, isOutOfOffice = _a.isOutOfOffice, \n /* eslint-disable deprecation/deprecation */\n _b = _a.onRenderCoin, \n /* eslint-disable deprecation/deprecation */\n onRenderCoin = _b === void 0 ? this._onRenderCoin : _b, _c = _a.onRenderPersonaCoin, onRenderPersonaCoin = _c === void 0 ? onRenderCoin : _c, \n /* eslint-enable deprecation/deprecation */\n _d = _a.onRenderInitials, \n /* eslint-enable deprecation/deprecation */\n onRenderInitials = _d === void 0 ? this._onRenderInitials : _d, presence = _a.presence, presenceTitle = _a.presenceTitle, presenceColors = _a.presenceColors, \n // eslint-disable-next-line deprecation/deprecation\n primaryText = _a.primaryText, showInitialsUntilImageLoads = _a.showInitialsUntilImageLoads, text = _a.text, theme = _a.theme;\n var size = this.props.size;\n var divProps = getNativeProps(this.props, divProperties);\n var divCoinProps = getNativeProps(coinProps || {}, divProperties);\n var coinSizeStyle = coinSize ? { width: coinSize, height: coinSize } : undefined;\n var hideImage = showUnknownPersonaCoin;\n var personaPresenceProps = {\n coinSize: coinSize,\n isOutOfOffice: isOutOfOffice,\n presence: presence,\n presenceTitle: presenceTitle,\n presenceColors: presenceColors,\n size: size,\n theme: theme,\n };\n // Use getStyles from props, or fall back to getStyles from styles file.\n var classNames = getClassNames(styles, {\n theme: theme,\n className: coinProps && coinProps.className ? coinProps.className : className,\n size: size,\n coinSize: coinSize,\n showUnknownPersonaCoin: showUnknownPersonaCoin,\n });\n var shouldRenderInitials = Boolean(!this.state.isImageLoaded &&\n ((showInitialsUntilImageLoads && imageUrl) || !imageUrl || this.state.isImageError || hideImage));\n return (React.createElement(\"div\", __assign({ role: \"presentation\" }, divProps, { className: classNames.coin }),\n // eslint-disable-next-line deprecation/deprecation\n size !== PersonaSize.size8 && size !== PersonaSize.size10 && size !== PersonaSize.tiny ? (React.createElement(\"div\", __assign({ role: \"presentation\" }, divCoinProps, { className: classNames.imageArea, style: coinSizeStyle }),\n shouldRenderInitials && (React.createElement(\"div\", { className: getInitialsStyles(classNames.initials, initialsColor, initialsTextColor, text, primaryText, showUnknownPersonaCoin), style: coinSizeStyle, \"aria-hidden\": \"true\" }, onRenderInitials(this.props, this._onRenderInitials))),\n !hideImage && onRenderPersonaCoin(this.props, this._onRenderCoin),\n React.createElement(PersonaPresence, __assign({}, personaPresenceProps)))) : // Otherwise, render just PersonaPresence.\n this.props.presence ? (React.createElement(PersonaPresence, __assign({}, personaPresenceProps))) : (\n // Just render Contact Icon if there isn't a Presence prop.\n React.createElement(Icon, { iconName: \"Contact\", className: classNames.size10WithoutPresenceIcon })),\n this.props.children));\n };\n /**\n * Deprecation helper for getting text.\n */\n PersonaCoinBase.prototype._getText = function () {\n // eslint-disable-next-line deprecation/deprecation\n return this.props.text || this.props.primaryText || '';\n };\n PersonaCoinBase.defaultProps = {\n size: PersonaSize.size48,\n presence: PersonaPresenceEnum.none,\n imageAlt: '',\n };\n return PersonaCoinBase;\n}(React.Component));\nexport { PersonaCoinBase };\n//# sourceMappingURL=PersonaCoin.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "index": 785, - "index2": 790, - "size": 369, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaCoin/PersonaCoin", - "loc": "5:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "userRequest": "./PersonaCoin/PersonaCoin", - "loc": "17:39-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../PersonaCoin", - "loc": "33:40-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../PersonaCoin", - "loc": "121:32-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../PersonaCoin", - "loc": "128:32-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../PersonaCoin", - "loc": "134:32-43" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Persona", - "loc": "67:59-70" - }, - { - "moduleId": "Xgwh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaCoin", - "loc": "1:0-30" - }, - { - "moduleId": "Xgwh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PersonaCoin", - "loc": "1:0-30" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../PersonaCoin", - "loc": "40:32-43" - } - ], - "usedExports": [ - "PersonaCoin" - ], - "providedExports": [ - "PersonaCoin" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../../Utilities';\nimport { PersonaCoinBase } from './PersonaCoin.base';\nimport { getStyles } from './PersonaCoin.styles';\n/**\n * PersonaCoin is used to render an individual's avatar and presence.\n */\nexport var PersonaCoin = styled(PersonaCoinBase, getStyles, undefined, {\n scope: 'PersonaCoin',\n});\n//# sourceMappingURL=PersonaCoin.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "index": 804, - "index2": 801, - "size": 9362, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "type": "harmony side effect evaluation", - "userRequest": "./Persona.styles", - "loc": "3:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "type": "harmony import specifier", - "userRequest": "./Persona.styles", - "loc": "8:41-50" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { FontWeights, normalize, noWrap, getGlobalClassNames } from '../../Styling';\nimport { personaSize, presenceBoolean, sizeBoolean } from './PersonaConsts';\nvar GlobalClassNames = {\n root: 'ms-Persona',\n size8: 'ms-Persona--size8',\n size10: 'ms-Persona--size10',\n size16: 'ms-Persona--size16',\n size24: 'ms-Persona--size24',\n size28: 'ms-Persona--size28',\n size32: 'ms-Persona--size32',\n size40: 'ms-Persona--size40',\n size48: 'ms-Persona--size48',\n size56: 'ms-Persona--size56',\n size72: 'ms-Persona--size72',\n size100: 'ms-Persona--size100',\n size120: 'ms-Persona--size120',\n available: 'ms-Persona--online',\n away: 'ms-Persona--away',\n blocked: 'ms-Persona--blocked',\n busy: 'ms-Persona--busy',\n doNotDisturb: 'ms-Persona--donotdisturb',\n offline: 'ms-Persona--offline',\n details: 'ms-Persona-details',\n primaryText: 'ms-Persona-primaryText',\n secondaryText: 'ms-Persona-secondaryText',\n tertiaryText: 'ms-Persona-tertiaryText',\n optionalText: 'ms-Persona-optionalText',\n textContent: 'ms-Persona-textContent',\n};\nexport var getStyles = function (props) {\n var className = props.className, showSecondaryText = props.showSecondaryText, theme = props.theme;\n var semanticColors = theme.semanticColors, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var size = sizeBoolean(props.size);\n var presence = presenceBoolean(props.presence);\n var showSecondaryTextDefaultHeight = '16px';\n var sharedTextStyles = {\n color: semanticColors.bodySubtext,\n fontWeight: FontWeights.regular,\n fontSize: fonts.small.fontSize,\n };\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n normalize,\n {\n color: semanticColors.bodyText,\n position: 'relative',\n height: personaSize.size48,\n minWidth: personaSize.size48,\n display: 'flex',\n alignItems: 'center',\n selectors: {\n '.contextualHost': {\n display: 'none',\n },\n },\n },\n size.isSize8 && [\n classNames.size8,\n {\n height: personaSize.size8,\n minWidth: personaSize.size8,\n },\n ],\n // TODO: Deprecated size and needs to be removed in a future major release.\n size.isSize10 && [\n classNames.size10,\n {\n height: personaSize.size10,\n minWidth: personaSize.size10,\n },\n ],\n // TODO: Deprecated size and needs to be removed in a future major release.\n size.isSize16 && [\n classNames.size16,\n {\n height: personaSize.size16,\n minWidth: personaSize.size16,\n },\n ],\n size.isSize24 && [\n classNames.size24,\n {\n height: personaSize.size24,\n minWidth: personaSize.size24,\n },\n ],\n size.isSize24 &&\n showSecondaryText && {\n height: '36px',\n },\n // TODO: Deprecated size and needs to be removed in a future major release.\n size.isSize28 && [\n classNames.size28,\n {\n height: personaSize.size28,\n minWidth: personaSize.size28,\n },\n ],\n size.isSize28 &&\n showSecondaryText && {\n height: '32px',\n },\n size.isSize32 && [\n classNames.size32,\n {\n height: personaSize.size32,\n minWidth: personaSize.size32,\n },\n ],\n size.isSize40 && [\n classNames.size40,\n {\n height: personaSize.size40,\n minWidth: personaSize.size40,\n },\n ],\n size.isSize48 && classNames.size48,\n size.isSize56 && [\n classNames.size56,\n {\n height: personaSize.size56,\n minWidth: personaSize.size56,\n },\n ],\n size.isSize72 && [\n classNames.size72,\n {\n height: personaSize.size72,\n minWidth: personaSize.size72,\n },\n ],\n size.isSize100 && [\n classNames.size100,\n {\n height: personaSize.size100,\n minWidth: personaSize.size100,\n },\n ],\n size.isSize120 && [\n classNames.size120,\n {\n height: personaSize.size120,\n minWidth: personaSize.size120,\n },\n ],\n /**\n * Modifiers: presence\n */\n presence.isAvailable && classNames.available,\n presence.isAway && classNames.away,\n presence.isBlocked && classNames.blocked,\n presence.isBusy && classNames.busy,\n presence.isDoNotDisturb && classNames.doNotDisturb,\n presence.isOffline && classNames.offline,\n className,\n ],\n details: [\n classNames.details,\n {\n padding: '0 24px 0 16px',\n minWidth: 0,\n width: '100%',\n textAlign: 'left',\n display: 'flex',\n flexDirection: 'column',\n justifyContent: 'space-around',\n },\n (size.isSize8 || size.isSize10) && {\n paddingLeft: 17,\n },\n (size.isSize24 || size.isSize28 || size.isSize32) && {\n padding: '0 8px',\n },\n (size.isSize40 || size.isSize48) && {\n padding: '0 12px',\n },\n ],\n primaryText: [\n classNames.primaryText,\n noWrap,\n {\n color: semanticColors.bodyText,\n fontWeight: FontWeights.regular,\n fontSize: fonts.medium.fontSize,\n selectors: {\n ':hover': {\n color: semanticColors.inputTextHovered,\n },\n },\n },\n showSecondaryText && {\n height: showSecondaryTextDefaultHeight,\n lineHeight: showSecondaryTextDefaultHeight,\n overflowX: 'hidden',\n },\n (size.isSize8 || size.isSize10) && {\n fontSize: fonts.small.fontSize,\n lineHeight: personaSize.size8,\n },\n size.isSize16 && {\n lineHeight: personaSize.size28,\n },\n (size.isSize24 || size.isSize28 || size.isSize32 || size.isSize40 || size.isSize48) &&\n showSecondaryText && {\n height: 18,\n },\n (size.isSize56 || size.isSize72 || size.isSize100 || size.isSize120) && {\n fontSize: fonts.xLarge.fontSize,\n },\n (size.isSize56 || size.isSize72 || size.isSize100 || size.isSize120) &&\n showSecondaryText && {\n height: 22,\n },\n ],\n secondaryText: [\n classNames.secondaryText,\n noWrap,\n sharedTextStyles,\n (size.isSize8 || size.isSize10 || size.isSize16 || size.isSize24 || size.isSize28 || size.isSize32) && {\n display: 'none',\n },\n showSecondaryText && {\n display: 'block',\n height: showSecondaryTextDefaultHeight,\n lineHeight: showSecondaryTextDefaultHeight,\n overflowX: 'hidden',\n },\n size.isSize24 &&\n showSecondaryText && {\n height: 18,\n },\n (size.isSize56 || size.isSize72 || size.isSize100 || size.isSize120) && {\n fontSize: fonts.medium.fontSize,\n },\n (size.isSize56 || size.isSize72 || size.isSize100 || size.isSize120) &&\n showSecondaryText && {\n height: 18,\n },\n ],\n tertiaryText: [\n classNames.tertiaryText,\n noWrap,\n sharedTextStyles,\n {\n display: 'none',\n fontSize: fonts.medium.fontSize,\n },\n (size.isSize72 || size.isSize100 || size.isSize120) && {\n display: 'block',\n },\n ],\n optionalText: [\n classNames.optionalText,\n noWrap,\n sharedTextStyles,\n {\n display: 'none',\n fontSize: fonts.medium.fontSize,\n },\n (size.isSize100 || size.isSize120) && {\n display: 'block',\n },\n ],\n textContent: [classNames.textContent, noWrap],\n };\n};\n//# sourceMappingURL=Persona.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "index": 807, - "index2": 804, - "size": 1123, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "fYfa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Facepile.js", - "name": "./node_modules/office-ui-fabric-react/lib/Facepile.js" - }, - { - "id": "fANu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./FacepileButton", - "loc": "5:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "userRequest": "./FacepileButton", - "loc": "81:36-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "userRequest": "./FacepileButton", - "loc": "120:36-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "userRequest": "./FacepileButton", - "loc": "127:36-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "userRequest": "./FacepileButton", - "loc": "133:36-50" - } - ], - "usedExports": [ - "FacepileButton" - ], - "providedExports": [ - "FacepileButton" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __decorate, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../../Button';\nimport { customizable, nullRender } from '../../Utilities';\nimport { getStyles } from './FacepileButton.styles';\nvar FacepileButton = /** @class */ (function (_super) {\n __extends(FacepileButton, _super);\n function FacepileButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n FacepileButton.prototype.render = function () {\n var _a = this.props, className = _a.className, styles = _a.styles, rest = __rest(_a, [\"className\", \"styles\"]);\n var customStyles = getStyles(this.props.theme, className, styles);\n return (React.createElement(BaseButton, __assign({}, rest, { variantClassName: \"ms-Button--facepile\", styles: customStyles, onRenderDescription: nullRender })));\n };\n FacepileButton = __decorate([\n customizable('FacepileButton', ['theme', 'styles'], true)\n ], FacepileButton);\n return FacepileButton;\n}(React.Component));\nexport { FacepileButton };\n//# sourceMappingURL=FacepileButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "index": 810, - "index2": 807, - "size": 4286, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "fYfa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Facepile.js", - "name": "./node_modules/office-ui-fabric-react/lib/Facepile.js" - }, - { - "id": "fANu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "type": "harmony side effect evaluation", - "userRequest": "./Facepile.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.js", - "type": "harmony import specifier", - "userRequest": "./Facepile.styles", - "loc": "7:43-49" - } - ], - "usedExports": [ - "styles" - ], - "providedExports": [ - "styles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { hiddenContentStyle, HighContrastSelector, getFocusStyle, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Facepile',\n addButton: 'ms-Facepile-addButton ms-Facepile-itemButton',\n descriptiveOverflowButton: 'ms-Facepile-descriptiveOverflowButton ms-Facepile-itemButton',\n itemButton: 'ms-Facepile-itemButton ms-Facepile-person',\n itemContainer: 'ms-Facepile-itemContainer',\n members: 'ms-Facepile-members',\n member: 'ms-Facepile-member',\n overflowButton: 'ms-Facepile-overflowButton ms-Facepile-itemButton',\n};\nexport var styles = function (props) {\n var _a;\n var className = props.className, theme = props.theme, _b = props.spacingAroundItemButton, spacingAroundItemButton = _b === void 0 ? 2 : _b;\n var palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var ItemButtonStyles = {\n textAlign: 'center',\n padding: 0,\n borderRadius: '50%',\n verticalAlign: 'top',\n display: 'inline',\n backgroundColor: 'transparent',\n border: 'none',\n selectors: {\n '&::-moz-focus-inner': {\n padding: 0,\n border: 0,\n },\n },\n };\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n width: 'auto',\n },\n className,\n ],\n addButton: [\n classNames.addButton,\n getFocusStyle(theme, { inset: -1 }),\n ItemButtonStyles,\n {\n fontSize: fonts.medium.fontSize,\n color: palette.white,\n backgroundColor: palette.themePrimary,\n marginRight: spacingAroundItemButton * 2 + 'px',\n selectors: {\n '&:hover': {\n backgroundColor: palette.themeDark,\n },\n '&:focus': {\n backgroundColor: palette.themeDark,\n },\n '&:active': {\n backgroundColor: palette.themeDarker,\n },\n '&:disabled': {\n backgroundColor: palette.neutralTertiaryAlt,\n },\n },\n },\n ],\n descriptiveOverflowButton: [\n classNames.descriptiveOverflowButton,\n getFocusStyle(theme, { inset: -1 }),\n ItemButtonStyles,\n {\n fontSize: fonts.small.fontSize,\n color: palette.neutralSecondary,\n backgroundColor: palette.neutralLighter,\n marginLeft: spacingAroundItemButton * 2 + \"px\",\n },\n ],\n itemButton: [classNames.itemButton, ItemButtonStyles],\n itemContainer: [\n classNames.itemContainer,\n {\n display: 'flex',\n },\n ],\n members: [\n classNames.members,\n {\n display: 'flex',\n overflow: 'hidden',\n listStyleType: 'none',\n padding: 0,\n margin: \"-\" + spacingAroundItemButton + \"px\",\n },\n ],\n member: [\n classNames.member,\n {\n display: 'inline-flex',\n flex: '0 0 auto',\n margin: spacingAroundItemButton + \"px\",\n },\n ],\n overflowButton: [\n classNames.overflowButton,\n getFocusStyle(theme, { inset: -1 }),\n ItemButtonStyles,\n {\n fontSize: fonts.medium.fontSize,\n color: palette.neutralSecondary,\n backgroundColor: palette.neutralLighter,\n marginLeft: spacingAroundItemButton * 2 + \"px\",\n },\n ],\n overflowInitialsIcon: [\n {\n color: palette.neutralPrimary,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'WindowText',\n },\n _a),\n },\n ],\n screenReaderOnly: hiddenContentStyle,\n };\n};\n//# sourceMappingURL=Facepile.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/common/telemetry/version.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/common/telemetry/version.js", - "index": 363, - "index2": 357, - "size": 65, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "13:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/common/telemetry/index.js", - "type": "harmony import specifier", - "userRequest": "./version", - "loc": "26:60-67" - } - ], - "usedExports": [ - "version" - ], - "providedExports": [ - "version" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var version = \"2.4.0\";\n//# sourceMappingURL=version.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.types.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.types.js", - "index": 384, - "index2": 377, - "size": 883, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerId": "lpIF", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.types", - "loc": "3:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "./Icon.types", - "loc": "31:46-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "./Icon.types", - "loc": "31:88-96" - }, - { - "moduleId": "lpIF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.types", - "loc": "3:0-29" - }, - { - "moduleId": "lpIF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon.types", - "loc": "3:0-29" - } - ], - "usedExports": [ - "IconType" - ], - "providedExports": [ - "IconType" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\nexport var IconType;\n(function (IconType) {\n /**\n * Render using the fabric icon font.\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"default\"] = 0] = \"default\";\n /**\n * Render using an image, where imageProps would be used.\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"image\"] = 1] = \"image\";\n /**\n * Deprecated, use `default`.\n * @deprecated Use `default`.\n */\n IconType[IconType[\"Default\"] = 100000] = \"Default\";\n /**\n * Deprecated, use `image`.\n * @deprecated Use `image`.\n */\n IconType[IconType[\"Image\"] = 100001] = \"Image\";\n})(IconType || (IconType = {}));\n//# sourceMappingURL=Icon.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "index": 385, - "index2": 426, - "size": 1873, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerId": "lpIF", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./FontIcon", - "loc": "7:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "./FontIcon", - "loc": "32:17-31" - }, - { - "moduleId": "lpIF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FontIcon", - "loc": "4:0-27" - }, - { - "moduleId": "lpIF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FontIcon", - "loc": "4:0-27" - } - ], - "usedExports": [ - "getIconContent" - ], - "providedExports": [ - "getIconContent", - "FontIcon", - "getFontIcon" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { classNames, MS_ICON } from './Icon.styles';\nimport { css, getNativeProps, htmlElementProperties, memoizeFunction } from '../../Utilities';\nimport { getIcon } from '../../Styling';\nexport var getIconContent = memoizeFunction(function (iconName) {\n var iconDefinition = getIcon(iconName) || {\n subset: {\n className: undefined\n },\n code: undefined\n };\n return {\n children: iconDefinition.code,\n iconClassName: iconDefinition.subset.className\n };\n});\n/**\n * Fast icon component which only supports font glyphs (not images) and isn't themeable.\n * To style the icon, use `className` or reference `ms-Icon` in CSS.\n */\nexport var FontIcon = function (props) {\n var iconName = props.iconName, className = props.className;\n var _a = getIconContent(iconName), iconClassName = _a.iconClassName, children = _a.children;\n var nativeProps = getNativeProps(props, htmlElementProperties);\n var containerProps = props['aria-label']\n ? {}\n : {\n role: 'presentation',\n 'aria-hidden': true\n };\n return (React.createElement(\"i\", tslib_1.__assign({ \"data-icon-name\": iconName }, containerProps, nativeProps, { className: css(MS_ICON, classNames.root, iconClassName, !iconName && classNames.placeholder, className) }), children));\n};\n/**\n * Memoized helper for rendering a FontIcon.\n * @param iconName - The name of the icon to use from the icon font.\n * @param className - Class name for styling the icon.\n * @param ariaLabel - Label for the icon for the benefit of screen readers.\n */\nexport var getFontIcon = memoizeFunction(function (iconName, className, ariaLabel) {\n return FontIcon({ iconName: iconName, className: className, 'aria-label': ariaLabel });\n});\n//# sourceMappingURL=FontIcon.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "index": 372, - "index2": 430, - "size": 2881, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerId": "lpIF", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.base", - "loc": "2:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.base", - "loc": "8:25-33" - }, - { - "moduleId": "lpIF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.base", - "loc": "2:0-28" - }, - { - "moduleId": "lpIF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon.base", - "loc": "2:0-28" - } - ], - "usedExports": [ - "IconBase" - ], - "providedExports": [ - "IconBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { IconType } from './Icon.types';\nimport { Image } from '../Image/Image';\nimport { ImageLoadState } from '../Image/Image.types';\nimport { getNativeProps, htmlElementProperties, classNamesFunction } from '../../Utilities';\nimport { getIconContent } from './FontIcon';\nvar getClassNames = classNamesFunction({\n disableCaching: true\n});\nvar IconBase = /** @class */ (function (_super) {\n tslib_1.__extends(IconBase, _super);\n function IconBase(props) {\n var _this = _super.call(this, props) || this;\n _this.onImageLoadingStateChange = function (state) {\n if (_this.props.imageProps && _this.props.imageProps.onLoadingStateChange) {\n _this.props.imageProps.onLoadingStateChange(state);\n }\n if (state === ImageLoadState.error) {\n _this.setState({ imageLoadError: true });\n }\n };\n _this.state = {\n imageLoadError: false\n };\n return _this;\n }\n IconBase.prototype.render = function () {\n var _a = this.props, className = _a.className, styles = _a.styles, iconName = _a.iconName, imageErrorAs = _a.imageErrorAs, theme = _a.theme;\n var isPlaceholder = typeof iconName === 'string' && iconName.length === 0;\n var isImage = this.props.iconType === IconType.image || this.props.iconType === IconType.Image || !!this.props.imageProps;\n var _b = getIconContent(iconName), iconClassName = _b.iconClassName, children = _b.children;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n iconClassName: iconClassName,\n isImage: isImage,\n isPlaceholder: isPlaceholder\n });\n var RootType = isImage ? 'div' : 'i';\n var nativeProps = getNativeProps(this.props, htmlElementProperties, ['aria-label']);\n var imageLoadError = this.state.imageLoadError;\n var imageProps = tslib_1.__assign({}, this.props.imageProps, { onLoadingStateChange: this.onImageLoadingStateChange });\n var ImageType = (imageLoadError && imageErrorAs) || Image;\n var ariaLabel = this.props.ariaLabel || this.props['aria-label'];\n var containerProps = ariaLabel\n ? {\n 'aria-label': ariaLabel\n }\n : {\n role: 'presentation',\n 'aria-hidden': imageProps.alt || imageProps['aria-labelledby'] ? false : true\n };\n return (React.createElement(RootType, tslib_1.__assign({ \"data-icon-name\": iconName }, containerProps, nativeProps, { className: classNames.root }), isImage ? React.createElement(ImageType, tslib_1.__assign({}, imageProps)) : children));\n };\n return IconBase;\n}(React.Component));\nexport { IconBase };\n//# sourceMappingURL=Icon.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "index": 364, - "index2": 431, - "size": 383, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerId": "lpIF", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "15:31-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "25:43-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "44:35-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "73:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "108:56-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "222:46-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "225:46-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "225:189-193" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "225:276-280" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "233:53-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "236:53-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "239:53-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "242:53-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/fileTypeIcon/FileTypeIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "251:42-46" - }, - { - "moduleId": "lpIF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "lpIF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon", - "loc": "1:0-23" - } - ], - "usedExports": [ - "Icon" - ], - "providedExports": [ - "Icon" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { IconBase } from './Icon.base';\nimport { getStyles } from './Icon.styles';\n/**\n * Icons are used for rendering an individual's avatar, presence and details.\n * They are used within the PeoplePicker components.\n */\nexport var Icon = styled(IconBase, getStyles, undefined, {\n scope: 'Icon'\n}, true);\n//# sourceMappingURL=Icon.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.scss.js", - "index": 690, - "index2": 687, - "size": 295, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "type": "harmony side effect evaluation", - "userRequest": "./WebPartTitle.module.scss", - "loc": "17:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "type": "harmony import specifier", - "userRequest": "./WebPartTitle.module.scss", - "loc": "49:60-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "type": "harmony import specifier", - "userRequest": "./WebPartTitle.module.scss", - "loc": "50:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "type": "harmony import specifier", - "userRequest": "./WebPartTitle.module.scss", - "loc": "53:81-87" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/* tslint:disable */\nrequire(\"./WebPartTitle.module.css\");\nvar styles = {\n webPartHeader: 'webPartHeader_c186cb54',\n webPartTitle: 'webPartTitle_c186cb54',\n moreLink: 'moreLink_c186cb54'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=WebPartTitle.module.scss.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/node_modules/tslib/tslib.es6.js", - "name": "./node_modules/@pnp/graph/node_modules/tslib/tslib.es6.js", - "index": 724, - "index2": 717, - "size": 11605, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/rest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "name": "./node_modules/@pnp/graph/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "name": "./node_modules/@pnp/graph/rest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/utils/toabsoluteurl.js", - "module": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "moduleName": "./node_modules/@pnp/graph/utils/toabsoluteurl.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:15-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:35-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:23-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "50:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "50:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "52:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "59:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:13-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "67:24-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "71:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "72:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:13-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "76:14-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "88:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "89:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "102:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "110:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "128:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "130:14-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "143:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "210:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "230:4-13" - } - ], - "usedExports": [ - "__awaiter", - "__generator", - "__extends", - "__decorate" - ], - "providedExports": [ - "__extends", - "__assign", - "__rest", - "__decorate", - "__param", - "__metadata", - "__awaiter", - "__generator", - "__createBinding", - "__exportStar", - "__values", - "__read", - "__spread", - "__spreadArrays", - "__spreadArray", - "__await", - "__asyncGenerator", - "__asyncDelegator", - "__asyncValues", - "__makeTemplateObject", - "__importStar", - "__importDefault", - "__classPrivateFieldGet", - "__classPrivateFieldSet" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from) {\r\n for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)\r\n to[j] = from[i];\r\n return to;\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/node_modules/tslib/tslib.es6.js", - "name": "./node_modules/@pnp/common/node_modules/tslib/tslib.es6.js", - "index": 701, - "index2": 693, - "size": 11605, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/storage.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "name": "./node_modules/@pnp/common/storage.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/common/libconfig.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/common/libconfig.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "67:26-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/common/libconfig.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "68:25-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "77:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "80:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "96:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "102:65-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "122:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "124:19-30" - } - ], - "usedExports": [ - "__awaiter", - "__generator", - "__values", - "__read", - "__extends" - ], - "providedExports": [ - "__extends", - "__assign", - "__rest", - "__decorate", - "__param", - "__metadata", - "__awaiter", - "__generator", - "__createBinding", - "__exportStar", - "__values", - "__read", - "__spread", - "__spreadArrays", - "__spreadArray", - "__await", - "__asyncGenerator", - "__asyncDelegator", - "__asyncValues", - "__makeTemplateObject", - "__importStar", - "__importDefault", - "__classPrivateFieldGet", - "__classPrivateFieldSet" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from) {\r\n for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)\r\n to[j] = from[i];\r\n return to;\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphlibconfig.js", - "name": "./node_modules/@pnp/graph/graphlibconfig.js", - "index": 696, - "index2": 700, - "size": 900, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/rest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/index.js", - "name": "./node_modules/@pnp/graph/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "name": "./node_modules/@pnp/graph/rest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony side effect evaluation", - "userRequest": "./graphlibconfig.js", - "loc": "2:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "./graphlibconfig.js", - "loc": "25:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/rest.js", - "module": "./node_modules/@pnp/graph/rest.js", - "moduleName": "./node_modules/@pnp/graph/rest.js", - "type": "harmony import specifier", - "userRequest": "./graphlibconfig.js", - "loc": "30:12-18" - } - ], - "usedExports": [ - "setup" - ], - "providedExports": [ - "setup" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { SPFxAdalClient, DefaultRuntime, onRuntimeCreate, objectDefinedNotNull } from \"@pnp/common\";\r\nonRuntimeCreate(function (runtime) {\r\n var existing = runtime.get(\"graph\");\r\n var graphPart = Object.assign({}, {\r\n fetchClientFactory: function () {\r\n // we keep a ref to the runtime within which we are assigned\r\n var context = runtime.get(\"spfxContext\");\r\n if (objectDefinedNotNull(context)) {\r\n return new SPFxAdalClient(context);\r\n }\r\n throw Error(\"There is no Graph Client available, either set one using configuration or provide a valid SPFx Context.\");\r\n },\r\n }, existing);\r\n runtime.assign({ graph: graphPart });\r\n});\r\nexport function setup(config, runtime) {\r\n if (runtime === void 0) { runtime = DefaultRuntime; }\r\n runtime.assign(config);\r\n}\r\n//# sourceMappingURL=graphlibconfig.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "name": "./node_modules/@pnp/logging/index.js", - "index": 718, - "index2": 711, - "size": 96, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/pipeline.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "name": "./node_modules/@pnp/odata/pipeline.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/logging", - "loc": "3:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/logging", - "loc": "3:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "11:4-10" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "12:14-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "30:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "32:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "43:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "47:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "54:40-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "62:48-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "65:52-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "70:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "74:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "91:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "92:22-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "106:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "116:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "117:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "132:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "152:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "157:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "175:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "176:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "182:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "@pnp/logging", - "loc": "183:26-32" - } - ], - "usedExports": [ - "Logger" - ], - "providedExports": [ - "Logger", - "LogLevel", - "ConsoleListener", - "FunctionListener" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export * from \"./logger.js\";\r\nexport * from \"./listeners.js\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js", - "index": 707, - "index2": 715, - "size": 486, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/directory-objects/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "2:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "3:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "3:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "3:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/odata", - "loc": "4:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "7:11-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "19:36-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/operations.js", - "module": "./node_modules/@pnp/graph/operations.js", - "moduleName": "./node_modules/@pnp/graph/operations.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "20:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "21:74-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "30:73-77" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "38:75-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "56:41-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "65:67-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "76:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "95:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "95:52-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "module": "./node_modules/@pnp/graph/decorators.js", - "moduleName": "./node_modules/@pnp/graph/decorators.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "115:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "119:61-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/graphqueryable.js", - "module": "./node_modules/@pnp/graph/graphqueryable.js", - "moduleName": "./node_modules/@pnp/graph/graphqueryable.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "135:2-11" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/batch.js", - "module": "./node_modules/@pnp/graph/batch.js", - "moduleName": "./node_modules/@pnp/graph/batch.js", - "type": "harmony import specifier", - "userRequest": "@pnp/odata", - "loc": "175:2-7" - } - ], - "usedExports": [ - "defaultPipelineBinder", - "cloneQueryableData", - "invokableFactory", - "Queryable", - "Batch", - "body", - "headers" - ], - "providedExports": [ - "Batch", - "CachingOptions", - "CachingParserWrapper", - "addProp", - "invokableFactory", - "pipelineBinder", - "defaultPipelineBinder", - "ODataParser", - "TextParser", - "BlobParser", - "JSONParser", - "BufferParser", - "LambdaParser", - "HttpRequestError", - "setResult", - "pipe", - "requestPipelineMethod", - "PipelineMethods", - "getDefaultPipeline", - "cloneQueryableData", - "Queryable", - "body", - "headers", - "extendGlobal", - "extendObj", - "extendFactory", - "clearGlobalExtensions", - "enableExtensions", - "disableExtensions" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export * from \"./batch.js\";\r\nexport * from \"./caching.js\";\r\nexport * from \"./add-prop.js\";\r\nexport * from \"./invokable-binder.js\";\r\nexport * from \"./pipeline-binder.js\";\r\nexport * from \"./parsers.js\";\r\nexport * from \"./pipeline.js\";\r\nexport * from \"./queryable.js\";\r\nexport * from \"./request-builders.js\";\r\nexport { extendGlobal, extendObj, extendFactory, clearGlobalExtensions, enableExtensions, disableExtensions, } from \"./invokable-extensions.js\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/decorators.js", - "name": "./node_modules/@pnp/graph/decorators.js", - "index": 731, - "index2": 725, - "size": 4703, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/groups/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators.js", - "loc": "3:0-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators.js", - "loc": "4:0-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../decorators.js", - "loc": "5:0-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "41:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "51:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "52:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "64:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "65:8-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "68:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "module": "./node_modules/@pnp/graph/directory-objects/types.js", - "moduleName": "./node_modules/@pnp/graph/directory-objects/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "69:8-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "76:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "77:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "77:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "131:8-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../decorators.js", - "loc": "132:8-15" - } - ], - "usedExports": [ - "deleteable", - "updateable", - "defaultPath", - "getById" - ], - "providedExports": [ - "defaultPath", - "deleteable", - "deleteableWithETag", - "updateable", - "updateableWithETag", - "addable", - "getById" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __extends } from \"tslib\";\r\nimport { graphDelete, graphPatch, graphPost } from \"./operations.js\";\r\nimport { body, headers } from \"@pnp/odata\";\r\n/**\r\n * Decorator used to specify the default path for Queryable objects\r\n *\r\n * @param path\r\n */\r\nexport function defaultPath(path) {\r\n // eslint-disable-next-line @typescript-eslint/ban-types\r\n return function (target) {\r\n return /** @class */ (function (_super) {\r\n __extends(class_1, _super);\r\n function class_1() {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n return _super.call(this, args[0], args.length > 1 && args[1] !== undefined ? args[1] : path) || this;\r\n }\r\n return class_1;\r\n }(target));\r\n };\r\n}\r\n/**\r\n * Adds the delete method to the tagged class\r\n */\r\nexport function deleteable() {\r\n // eslint-disable-next-line @typescript-eslint/ban-types\r\n return function (target) {\r\n return /** @class */ (function (_super) {\r\n __extends(class_2, _super);\r\n function class_2() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n class_2.prototype.delete = function () {\r\n return graphDelete(this);\r\n };\r\n return class_2;\r\n }(target));\r\n };\r\n}\r\n/**\r\n * Adds the delete method to the tagged class\r\n */\r\nexport function deleteableWithETag() {\r\n // eslint-disable-next-line @typescript-eslint/ban-types\r\n return function (target) {\r\n return /** @class */ (function (_super) {\r\n __extends(class_3, _super);\r\n function class_3() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n class_3.prototype.delete = function (eTag) {\r\n if (eTag === void 0) { eTag = \"*\"; }\r\n return graphDelete(this, headers({\r\n \"If-Match\": eTag,\r\n }));\r\n };\r\n return class_3;\r\n }(target));\r\n };\r\n}\r\n/**\r\n * Adds the update method to the tagged class\r\n */\r\nexport function updateable() {\r\n // eslint-disable-next-line @typescript-eslint/ban-types\r\n return function (target) {\r\n return /** @class */ (function (_super) {\r\n __extends(class_4, _super);\r\n function class_4() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n class_4.prototype.update = function (props) {\r\n return graphPatch(this, body(props));\r\n };\r\n return class_4;\r\n }(target));\r\n };\r\n}\r\n/**\r\n * Adds the update method to the tagged class\r\n */\r\nexport function updateableWithETag() {\r\n // eslint-disable-next-line @typescript-eslint/ban-types\r\n return function (target) {\r\n return /** @class */ (function (_super) {\r\n __extends(class_5, _super);\r\n function class_5() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n class_5.prototype.update = function (props, eTag) {\r\n if (eTag === void 0) { eTag = \"*\"; }\r\n return graphPatch(this, body(props, headers({\r\n \"If-Match\": eTag,\r\n })));\r\n };\r\n return class_5;\r\n }(target));\r\n };\r\n}\r\n/**\r\n * Adds the add method to the tagged class\r\n */\r\nexport function addable() {\r\n // eslint-disable-next-line @typescript-eslint/ban-types\r\n return function (target) {\r\n return /** @class */ (function (_super) {\r\n __extends(class_6, _super);\r\n function class_6() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n class_6.prototype.add = function (props) {\r\n return graphPost(this, body(props));\r\n };\r\n return class_6;\r\n }(target));\r\n };\r\n}\r\n/**\r\n * Adds the getById method to a collection\r\n */\r\nexport function getById(factory) {\r\n // eslint-disable-next-line @typescript-eslint/ban-types\r\n return function (target) {\r\n return /** @class */ (function (_super) {\r\n __extends(class_7, _super);\r\n function class_7() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n class_7.prototype.getById = function (id) {\r\n return factory(this, id);\r\n };\r\n return class_7;\r\n }(target));\r\n };\r\n}\r\n//# sourceMappingURL=decorators.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js", - "index": 730, - "index2": 726, - "size": 4260, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/graph/groups/types.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../directory-objects/types.js", - "loc": "3:0-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony side effect evaluation", - "userRequest": "../directory-objects/types.js", - "loc": "7:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../directory-objects/types.js", - "loc": "15:19-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/users/types.js", - "module": "./node_modules/@pnp/graph/users/types.js", - "moduleName": "./node_modules/@pnp/graph/users/types.js", - "type": "harmony import specifier", - "userRequest": "../directory-objects/types.js", - "loc": "55:2-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "module": "./node_modules/@pnp/graph/groups/types.js", - "moduleName": "./node_modules/@pnp/graph/groups/types.js", - "type": "harmony import specifier", - "userRequest": "../directory-objects/types.js", - "loc": "80:2-18" - } - ], - "usedExports": [ - "_DirectoryObject", - "DirectoryObjects" - ], - "providedExports": [ - "_DirectoryObject", - "DirectoryObject", - "_DirectoryObjects", - "DirectoryObjects", - "DirectoryObjectTypes" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __decorate, __extends } from \"tslib\";\r\nimport { _GraphQueryableCollection, _GraphQueryableInstance, graphInvokableFactory } from \"../graphqueryable.js\";\r\nimport { defaultPath, getById, deleteable } from \"../decorators.js\";\r\nimport { body } from \"@pnp/odata\";\r\nimport { graphPost } from \"../operations.js\";\r\n/**\r\n * Represents a Directory Object entity\r\n */\r\nvar _DirectoryObject = /** @class */ (function (_super) {\r\n __extends(_DirectoryObject, _super);\r\n function _DirectoryObject() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Returns all the groups and directory roles that the specified Directory Object is a member of. The check is transitive\r\n *\r\n * @param securityEnabledOnly\r\n */\r\n _DirectoryObject.prototype.getMemberObjects = function (securityEnabledOnly) {\r\n if (securityEnabledOnly === void 0) { securityEnabledOnly = false; }\r\n return graphPost(this.clone(DirectoryObject, \"getMemberObjects\"), body({ securityEnabledOnly: securityEnabledOnly }));\r\n };\r\n /**\r\n * Returns all the groups that the specified Directory Object is a member of. The check is transitive\r\n *\r\n * @param securityEnabledOnly\r\n */\r\n _DirectoryObject.prototype.getMemberGroups = function (securityEnabledOnly) {\r\n if (securityEnabledOnly === void 0) { securityEnabledOnly = false; }\r\n return graphPost(this.clone(DirectoryObject, \"getMemberGroups\"), body({ securityEnabledOnly: securityEnabledOnly }));\r\n };\r\n /**\r\n * Check for membership in a specified list of groups, and returns from that list those groups of which the specified user, group, or directory object is a member.\r\n * This function is transitive.\r\n * @param groupIds A collection that contains the object IDs of the groups in which to check membership. Up to 20 groups may be specified.\r\n */\r\n _DirectoryObject.prototype.checkMemberGroups = function (groupIds) {\r\n return graphPost(this.clone(DirectoryObject, \"checkMemberGroups\"), body({ groupIds: groupIds }));\r\n };\r\n _DirectoryObject = __decorate([\r\n deleteable()\r\n ], _DirectoryObject);\r\n return _DirectoryObject;\r\n}(_GraphQueryableInstance));\r\nexport { _DirectoryObject };\r\nexport var DirectoryObject = graphInvokableFactory(_DirectoryObject);\r\n/**\r\n * Describes a collection of Directory Objects\r\n *\r\n */\r\nvar _DirectoryObjects = /** @class */ (function (_super) {\r\n __extends(_DirectoryObjects, _super);\r\n function _DirectoryObjects() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n /**\r\n * Returns the directory objects specified in a list of ids. NOTE: The directory objects returned are the full objects containing all their properties.\r\n * The $select query option is not available for this operation.\r\n *\r\n * @param ids A collection of ids for which to return objects. You can specify up to 1000 ids.\r\n * @param type A collection of resource types that specifies the set of resource collections to search. Default is directoryObject.\r\n */\r\n _DirectoryObjects.prototype.getByIds = function (ids, type) {\r\n if (type === void 0) { type = DirectoryObjectTypes.directoryObject; }\r\n return graphPost(this.clone(DirectoryObjects, \"getByIds\"), body({ ids: ids, type: type }));\r\n };\r\n _DirectoryObjects = __decorate([\r\n defaultPath(\"directoryObjects\"),\r\n getById(DirectoryObject)\r\n ], _DirectoryObjects);\r\n return _DirectoryObjects;\r\n}(_GraphQueryableCollection));\r\nexport { _DirectoryObjects };\r\nexport var DirectoryObjects = graphInvokableFactory(_DirectoryObjects);\r\n/**\r\n * DirectoryObjectTypes\r\n */\r\nexport var DirectoryObjectTypes;\r\n(function (DirectoryObjectTypes) {\r\n /**\r\n * Directory Objects\r\n */\r\n DirectoryObjectTypes[DirectoryObjectTypes[\"directoryObject\"] = 0] = \"directoryObject\";\r\n /**\r\n * User\r\n */\r\n DirectoryObjectTypes[DirectoryObjectTypes[\"user\"] = 1] = \"user\";\r\n /**\r\n * Group\r\n */\r\n DirectoryObjectTypes[DirectoryObjectTypes[\"group\"] = 2] = \"group\";\r\n /**\r\n * Device\r\n */\r\n DirectoryObjectTypes[DirectoryObjectTypes[\"device\"] = 3] = \"device\";\r\n})(DirectoryObjectTypes || (DirectoryObjectTypes = {}));\r\n//# sourceMappingURL=types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "index": 749, - "index2": 743, - "size": 4351, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "tl8G", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Check.js", - "name": "./node_modules/office-ui-fabric-react/lib/Check.js" - }, - { - "id": "r9+k", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Check/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "type": "harmony side effect evaluation", - "userRequest": "./Check.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../Check/Check.styles", - "loc": "4:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.js", - "type": "harmony import specifier", - "userRequest": "./Check.styles", - "loc": "4:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony import specifier", - "userRequest": "../Check/Check.styles", - "loc": "24:12-33" - } - ], - "usedExports": [ - "CheckGlobalClassNames", - "getStyles" - ], - "providedExports": [ - "CheckGlobalClassNames", - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, getGlobalClassNames, IconFontSizes, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { getRTL } from '../../Utilities';\nexport var CheckGlobalClassNames = {\n root: 'ms-Check',\n circle: 'ms-Check-circle',\n check: 'ms-Check-check',\n /** Must be manually applied to the parent element of the check. */\n checkHost: 'ms-Check-checkHost',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e;\n // eslint-disable-next-line deprecation/deprecation\n var _f = props.height, height = _f === void 0 ? props.checkBoxHeight || '18px' : _f, checked = props.checked, className = props.className, theme = props.theme;\n var palette = theme.palette, semanticColors = theme.semanticColors, fonts = theme.fonts;\n var isRTL = getRTL(theme);\n var classNames = getGlobalClassNames(CheckGlobalClassNames, theme);\n var sharedCircleCheck = {\n fontSize: height,\n position: 'absolute',\n left: 0,\n top: 0,\n width: height,\n height: height,\n textAlign: 'center',\n verticalAlign: 'middle',\n };\n return {\n root: [\n classNames.root,\n fonts.medium,\n {\n // lineHeight currently needs to be a string to output without 'px'\n lineHeight: '1',\n width: height,\n height: height,\n verticalAlign: 'top',\n position: 'relative',\n userSelect: 'none',\n selectors: (_a = {\n ':before': {\n content: '\"\"',\n position: 'absolute',\n top: '1px',\n right: '1px',\n bottom: '1px',\n left: '1px',\n borderRadius: '50%',\n opacity: 1,\n background: semanticColors.bodyBackground,\n }\n },\n _a[\".\" + classNames.checkHost + \":hover &, .\" + classNames.checkHost + \":focus &, &:hover, &:focus\"] = {\n opacity: 1,\n },\n _a),\n },\n checked && [\n 'is-checked',\n {\n selectors: {\n ':before': {\n background: palette.themePrimary,\n opacity: 1,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n background: 'Window',\n },\n _b),\n },\n },\n },\n ],\n className,\n ],\n circle: [\n classNames.circle,\n sharedCircleCheck,\n {\n color: palette.neutralSecondary,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'WindowText',\n },\n _c),\n },\n checked && {\n color: palette.white,\n },\n ],\n check: [\n classNames.check,\n sharedCircleCheck,\n {\n opacity: 0,\n color: palette.neutralSecondary,\n fontSize: IconFontSizes.medium,\n left: isRTL ? '-0.5px' : '.5px',\n selectors: (_d = {\n ':hover': {\n opacity: 1,\n }\n },\n _d[HighContrastSelector] = __assign({}, getHighContrastNoAdjustStyle()),\n _d),\n },\n checked && {\n opacity: 1,\n color: palette.white,\n fontWeight: 900,\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n border: 'none',\n color: 'WindowText',\n },\n _e),\n },\n ],\n checkHost: classNames.checkHost,\n };\n};\n//# sourceMappingURL=Check.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.types.js", - "name": "./node_modules/@uifabric/utilities/lib/selection/Selection.types.js", - "index": 739, - "index2": 735, - "size": 696, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/index.js", - "issuerId": "dp/N", - "issuerName": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "dp/N", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/index.js", - "name": "./node_modules/@uifabric/utilities/lib/selection/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony side effect evaluation", - "userRequest": "./Selection.types", - "loc": "1:0-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "20:262-275" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/interfaces", - "loc": "30:49-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "42:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "45:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "71:56-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/interfaces", - "loc": "75:39-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "77:62-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "92:39-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Selection", - "loc": "104:47-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Selection", - "loc": "121:395-408" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/interfaces", - "loc": "147:54-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/interfaces", - "loc": "148:45-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/interfaces", - "loc": "149:45-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "185:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "200:43-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "218:23-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "223:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "236:44-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "243:52-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "261:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "264:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "290:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "294:335-348" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "295:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "317:43-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "337:35-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "348:41-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "362:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "376:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "379:35-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/interfaces", - "loc": "397:35-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "412:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "423:35-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/interfaces", - "loc": "475:131-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/interfaces", - "loc": "545:33-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "559:104-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./interfaces", - "loc": "564:23-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "722:46-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "764:46-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "847:23-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/DetailsList", - "loc": "938:329-342" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "501:95-108" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "782:91-104" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Selection", - "loc": "199:95-108" - }, - { - "moduleId": "dp/N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/index.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Selection.types", - "loc": "1:0-34" - }, - { - "moduleId": "dp/N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/index.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Selection.types", - "loc": "1:0-34" - }, - { - "moduleId": "rDEu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1:0-90" - }, - { - "moduleId": "rDEu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1:0-90" - }, - { - "moduleId": "rDEu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/interfaces.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1:0-90" - } - ], - "usedExports": [ - "SelectionMode", - "SELECTION_CHANGE" - ], - "providedExports": [ - "SELECTION_CHANGE", - "SelectionMode", - "SelectionDirection" - ], - "optimizationBailout": [], - "depth": 6, - "source": "export var SELECTION_CHANGE = 'change';\n/**\n * {@docCategory Selection}\n */\nexport var SelectionMode;\n(function (SelectionMode) {\n SelectionMode[SelectionMode[\"none\"] = 0] = \"none\";\n SelectionMode[SelectionMode[\"single\"] = 1] = \"single\";\n SelectionMode[SelectionMode[\"multiple\"] = 2] = \"multiple\";\n})(SelectionMode || (SelectionMode = {}));\n/**\n * {@docCategory Selection}\n */\nexport var SelectionDirection;\n(function (SelectionDirection) {\n SelectionDirection[SelectionDirection[\"horizontal\"] = 0] = \"horizontal\";\n SelectionDirection[SelectionDirection[\"vertical\"] = 1] = \"vertical\";\n})(SelectionDirection || (SelectionDirection = {}));\n//# sourceMappingURL=Selection.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "index": 758, - "index2": 753, - "size": 6223, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "type": "harmony side effect evaluation", - "userRequest": "./DetailsColumn.styles", - "loc": "3:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.js", - "type": "harmony import specifier", - "userRequest": "./DetailsColumn.styles", - "loc": "4:53-62" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { getFocusStyle, getGlobalClassNames, hiddenContentStyle, FontWeights } from '../../Styling';\nimport { DEFAULT_CELL_STYLE_PROPS } from './DetailsRow.styles';\nimport { getCellStyles } from './DetailsHeader.styles';\nvar GlobalClassNames = {\n isActionable: 'is-actionable',\n cellIsCheck: 'ms-DetailsHeader-cellIsCheck',\n collapseButton: 'ms-DetailsHeader-collapseButton',\n isCollapsed: 'is-collapsed',\n isAllSelected: 'is-allSelected',\n isSelectAllHidden: 'is-selectAllHidden',\n isResizingColumn: 'is-resizingColumn',\n isEmpty: 'is-empty',\n isIconVisible: 'is-icon-visible',\n cellSizer: 'ms-DetailsHeader-cellSizer',\n isResizing: 'is-resizing',\n dropHintCircleStyle: 'ms-DetailsHeader-dropHintCircleStyle',\n dropHintLineStyle: 'ms-DetailsHeader-dropHintLineStyle',\n cellTitle: 'ms-DetailsHeader-cellTitle',\n cellName: 'ms-DetailsHeader-cellName',\n filterChevron: 'ms-DetailsHeader-filterChevron',\n gripperBarVerticalStyle: 'ms-DetailsColumn-gripperBar',\n nearIcon: 'ms-DetailsColumn-nearIcon',\n};\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, headerClassName = props.headerClassName, iconClassName = props.iconClassName, isActionable = props.isActionable, isEmpty = props.isEmpty, isIconVisible = props.isIconVisible, isPadded = props.isPadded, isIconOnly = props.isIconOnly, _b = props.cellStyleProps, cellStyleProps = _b === void 0 ? DEFAULT_CELL_STYLE_PROPS : _b, transitionDurationDrag = props.transitionDurationDrag, transitionDurationDrop = props.transitionDurationDrop;\n var semanticColors = theme.semanticColors, palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var colors = {\n iconForegroundColor: semanticColors.bodySubtext,\n headerForegroundColor: semanticColors.bodyText,\n headerBackgroundColor: semanticColors.bodyBackground,\n dropdownChevronForegroundColor: palette.neutralSecondary,\n resizerColor: palette.neutralTertiaryAlt,\n };\n var nearIconStyle = {\n color: colors.iconForegroundColor,\n opacity: 1,\n paddingLeft: 8,\n };\n var borderWhileDragging = {\n outline: \"1px solid \" + palette.themePrimary,\n };\n var borderAfterDragOrDrop = {\n outlineColor: 'transparent',\n };\n return {\n root: [\n getCellStyles(props),\n fonts.small,\n isActionable && [\n classNames.isActionable,\n {\n selectors: {\n ':hover': {\n color: semanticColors.bodyText,\n background: semanticColors.listHeaderBackgroundHovered,\n },\n ':active': {\n background: semanticColors.listHeaderBackgroundPressed,\n },\n },\n },\n ],\n isEmpty && [\n classNames.isEmpty,\n {\n textOverflow: 'clip',\n },\n ],\n isIconVisible && classNames.isIconVisible,\n isPadded && {\n paddingRight: cellStyleProps.cellExtraRightPadding + cellStyleProps.cellRightPadding,\n },\n {\n selectors: {\n ':hover i[data-icon-name=\"GripperBarVertical\"]': {\n display: 'block',\n },\n },\n },\n headerClassName,\n ],\n gripperBarVerticalStyle: {\n display: 'none',\n position: 'absolute',\n textAlign: 'left',\n color: palette.neutralTertiary,\n left: 1,\n },\n nearIcon: [classNames.nearIcon, nearIconStyle],\n sortIcon: [\n nearIconStyle,\n {\n paddingLeft: 4,\n position: 'relative',\n top: 1,\n },\n ],\n iconClassName: [\n {\n color: colors.iconForegroundColor,\n opacity: 1,\n },\n iconClassName,\n ],\n filterChevron: [\n classNames.filterChevron,\n {\n color: colors.dropdownChevronForegroundColor,\n paddingLeft: 6,\n verticalAlign: 'middle',\n fontSize: fonts.small.fontSize,\n },\n ],\n cellTitle: [\n classNames.cellTitle,\n getFocusStyle(theme),\n __assign({ display: 'flex', flexDirection: 'row', justifyContent: 'flex-start', alignItems: 'stretch', boxSizing: 'border-box', overflow: 'hidden', padding: \"0 \" + cellStyleProps.cellRightPadding + \"px 0 \" + cellStyleProps.cellLeftPadding + \"px\" }, (isIconOnly\n ? {\n alignContent: 'flex-end',\n maxHeight: '100%',\n flexWrap: 'wrap-reverse',\n }\n : {})),\n ],\n cellName: [\n classNames.cellName,\n {\n flex: '0 1 auto',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n fontWeight: FontWeights.semibold,\n fontSize: fonts.medium.fontSize,\n },\n isIconOnly && {\n selectors: (_a = {},\n _a[\".\" + classNames.nearIcon] = {\n paddingLeft: 0,\n },\n _a),\n },\n ],\n cellTooltip: {\n display: 'block',\n position: 'absolute',\n top: 0,\n left: 0,\n bottom: 0,\n right: 0,\n },\n accessibleLabel: hiddenContentStyle,\n borderWhileDragging: borderWhileDragging,\n noBorderWhileDragging: [borderAfterDragOrDrop, { transition: \"outline \" + transitionDurationDrag + \"ms ease\" }],\n borderAfterDropping: borderWhileDragging,\n noBorderAfterDropping: [borderAfterDragOrDrop, { transition: \"outline \" + transitionDurationDrop + \"ms ease\" }],\n };\n};\n//# sourceMappingURL=DetailsColumn.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "index": 814, - "index2": 811, - "size": 9003, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+EKj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/MessageBar.js" - }, - { - "id": "PUtH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBar.styles", - "loc": "3:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.js", - "type": "harmony import specifier", - "userRequest": "./MessageBar.styles", - "loc": "4:47-56" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "var _a, _b, _c;\nimport { __assign } from \"tslib\";\nimport { HighContrastSelector, ScreenWidthMaxSmall, getScreenSelector, getGlobalClassNames, getFocusStyle, IconFontSizes, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { MessageBarType } from './MessageBar.types';\nvar GlobalClassNames = {\n root: 'ms-MessageBar',\n error: 'ms-MessageBar--error',\n blocked: 'ms-MessageBar--blocked',\n severeWarning: 'ms-MessageBar--severeWarning',\n success: 'ms-MessageBar--success',\n warning: 'ms-MessageBar--warning',\n multiline: 'ms-MessageBar-multiline',\n singleline: 'ms-MessageBar-singleline',\n dismissalSingleLine: 'ms-MessageBar-dismissalSingleLine',\n expandingSingleLine: 'ms-MessageBar-expandingSingleLine',\n content: 'ms-MessageBar-content',\n iconContainer: 'ms-MessageBar-icon',\n text: 'ms-MessageBar-text',\n innerText: 'ms-MessageBar-innerText',\n dismissSingleLine: 'ms-MessageBar-dismissSingleLine',\n expandSingleLine: 'ms-MessageBar-expandSingleLine',\n dismissal: 'ms-MessageBar-dismissal',\n expand: 'ms-MessageBar-expand',\n actions: 'ms-MessageBar-actions',\n actionsSingleline: 'ms-MessageBar-actionsSingleLine',\n};\nvar backgroundColor = (_a = {},\n _a[MessageBarType.error] = 'errorBackground',\n _a[MessageBarType.blocked] = 'errorBackground',\n _a[MessageBarType.success] = 'successBackground',\n _a[MessageBarType.warning] = 'warningBackground',\n _a[MessageBarType.severeWarning] = 'severeWarningBackground',\n _a[MessageBarType.info] = 'infoBackground',\n _a);\nvar highContrastBackgroundColor = (_b = {},\n _b[MessageBarType.error] = 'rgba(255, 0, 0, 0.3)',\n _b[MessageBarType.blocked] = 'rgba(255, 0, 0, 0.3)',\n _b[MessageBarType.success] = 'rgba(48, 241, 73, 0.3)',\n _b[MessageBarType.warning] = 'rgba(255, 254, 57, 0.3)',\n _b[MessageBarType.severeWarning] = 'rgba(255, 0, 0, 0.3)',\n _b[MessageBarType.info] = 'Window',\n _b);\nvar iconColor = (_c = {},\n _c[MessageBarType.error] = 'errorIcon',\n _c[MessageBarType.blocked] = 'errorIcon',\n _c[MessageBarType.success] = 'successIcon',\n _c[MessageBarType.warning] = 'warningIcon',\n _c[MessageBarType.severeWarning] = 'severeWarningIcon',\n _c[MessageBarType.info] = 'infoIcon',\n _c);\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e;\n var theme = props.theme, className = props.className, onDismiss = props.onDismiss, truncated = props.truncated, isMultiline = props.isMultiline, expandSingleLine = props.expandSingleLine, _f = props.messageBarType, messageBarType = _f === void 0 ? MessageBarType.info : _f;\n var semanticColors = theme.semanticColors, fonts = theme.fonts;\n var SmallScreenSelector = getScreenSelector(0, ScreenWidthMaxSmall);\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var dismissalAndExpandIconStyle = {\n fontSize: IconFontSizes.xSmall,\n height: 10,\n lineHeight: '10px',\n color: semanticColors.messageText,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign(__assign({}, getHighContrastNoAdjustStyle()), { color: 'WindowText' }),\n _a),\n };\n var dismissalAndExpandStyle = [\n getFocusStyle(theme, {\n inset: 1,\n highContrastStyle: {\n outlineOffset: '-6px',\n outline: '1px solid Highlight',\n },\n borderColor: 'transparent',\n }),\n {\n flexShrink: 0,\n width: 32,\n height: 32,\n padding: '8px 12px',\n selectors: {\n '& .ms-Button-icon': dismissalAndExpandIconStyle,\n ':hover': {\n backgroundColor: 'transparent',\n },\n ':active': {\n backgroundColor: 'transparent',\n },\n },\n },\n ];\n return {\n root: [\n classNames.root,\n fonts.medium,\n messageBarType === MessageBarType.error && classNames.error,\n messageBarType === MessageBarType.blocked && classNames.blocked,\n messageBarType === MessageBarType.severeWarning && classNames.severeWarning,\n messageBarType === MessageBarType.success && classNames.success,\n messageBarType === MessageBarType.warning && classNames.warning,\n isMultiline ? classNames.multiline : classNames.singleline,\n !isMultiline && onDismiss && classNames.dismissalSingleLine,\n !isMultiline && truncated && classNames.expandingSingleLine,\n {\n background: semanticColors[backgroundColor[messageBarType]],\n color: semanticColors.messageText,\n minHeight: 32,\n width: '100%',\n display: 'flex',\n wordBreak: 'break-word',\n selectors: (_b = {\n '.ms-Link': {\n color: semanticColors.messageLink,\n selectors: {\n ':hover': {\n color: semanticColors.messageLinkHovered,\n },\n },\n }\n },\n _b[HighContrastSelector] = __assign(__assign({}, getHighContrastNoAdjustStyle()), { background: highContrastBackgroundColor[messageBarType], border: '1px solid WindowText', color: 'WindowText' }),\n _b),\n },\n isMultiline && {\n flexDirection: 'column',\n },\n className,\n ],\n content: [\n classNames.content,\n {\n display: 'flex',\n width: '100%',\n lineHeight: 'normal',\n },\n ],\n iconContainer: [\n classNames.iconContainer,\n {\n fontSize: IconFontSizes.medium,\n minWidth: 16,\n minHeight: 16,\n display: 'flex',\n flexShrink: 0,\n margin: '8px 0 8px 12px',\n },\n ],\n icon: {\n color: semanticColors[iconColor[messageBarType]],\n selectors: (_c = {},\n _c[HighContrastSelector] = __assign(__assign({}, getHighContrastNoAdjustStyle()), { color: 'WindowText' }),\n _c),\n },\n text: [\n classNames.text,\n __assign(__assign({ minWidth: 0, display: 'flex', flexGrow: 1, margin: 8 }, fonts.small), { selectors: (_d = {},\n _d[HighContrastSelector] = __assign({}, getHighContrastNoAdjustStyle()),\n _d) }),\n !onDismiss && {\n marginRight: 12,\n },\n ],\n innerText: [\n classNames.innerText,\n {\n lineHeight: 16,\n selectors: {\n '& span a': {\n paddingLeft: 4,\n },\n },\n },\n truncated && {\n overflow: 'visible',\n whiteSpace: 'pre-wrap',\n },\n !isMultiline && {\n // In high contrast this causes the top and bottom of links' focus outline to be clipped\n // (not sure of a good way around that while still maintaining text clipping)\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n },\n !isMultiline &&\n !truncated && {\n selectors: (_e = {},\n _e[SmallScreenSelector] = {\n overflow: 'visible',\n whiteSpace: 'pre-wrap',\n },\n _e),\n },\n expandSingleLine && {\n overflow: 'visible',\n whiteSpace: 'pre-wrap',\n },\n ],\n dismissSingleLine: classNames.dismissSingleLine,\n expandSingleLine: classNames.expandSingleLine,\n dismissal: [classNames.dismissal, dismissalAndExpandStyle],\n expand: [classNames.expand, dismissalAndExpandStyle],\n actions: [\n isMultiline ? classNames.actions : classNames.actionsSingleline,\n {\n display: 'flex',\n flexGrow: 0,\n flexShrink: 0,\n flexBasis: 'auto',\n flexDirection: 'row-reverse',\n alignItems: 'center',\n margin: '0 12px 0 8px',\n selectors: {\n '& button:nth-child(n+2)': {\n marginLeft: 8,\n },\n },\n },\n isMultiline && {\n marginBottom: 8,\n },\n onDismiss &&\n !isMultiline && {\n marginRight: 0,\n },\n ],\n };\n};\n//# sourceMappingURL=MessageBar.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "name": "./node_modules/@uifabric/utilities/lib/selection/Selection.js", - "index": 840, - "index2": 834, - "size": 14614, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/index.js", - "issuerId": "dp/N", - "issuerName": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "dp/N", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/index.js", - "name": "./node_modules/@uifabric/utilities/lib/selection/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "532:20-29" - }, - { - "moduleId": "1uzz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/Selection.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/Selection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/Selection.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1:0-48" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selection/index", - "loc": "401:30-39" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Selection", - "loc": "129:30-39" - }, - { - "moduleId": "dp/N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/index.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Selection", - "loc": "2:0-28" - }, - { - "moduleId": "dp/N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/selection/index.js", - "module": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/selection/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Selection", - "loc": "2:0-28" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Selection", - "loc": "107:18-27" - } - ], - "usedExports": [ - "Selection" - ], - "providedExports": [ - "Selection" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { SELECTION_CHANGE, SelectionMode } from './Selection.types';\nimport { EventGroup } from '../EventGroup';\n/**\n * {@docCategory Selection}\n */\nvar Selection = /** @class */ (function () {\n /**\n * Create a new Selection. If `TItem` does not have a `key` property, you must provide an options\n * object with a `getKey` implementation. Providing options is optional otherwise.\n * (At most one `options` object is accepted.)\n */\n function Selection() {\n var options = []; // Otherwise, arguments require options with `getKey`.\n for (var _i = 0 // Otherwise, arguments require options with `getKey`.\n ; _i < arguments.length // Otherwise, arguments require options with `getKey`.\n ; _i++ // Otherwise, arguments require options with `getKey`.\n ) {\n options[_i] = arguments[_i]; // Otherwise, arguments require options with `getKey`.\n }\n var _a = options[0] || {}, onSelectionChanged = _a.onSelectionChanged, getKey = _a.getKey, _b = _a.canSelectItem, canSelectItem = _b === void 0 ? function () { return true; } : _b, items = _a.items, _c = _a.selectionMode, selectionMode = _c === void 0 ? SelectionMode.multiple : _c;\n this.mode = selectionMode;\n this._getKey = getKey || defaultGetKey;\n this._changeEventSuppressionCount = 0;\n this._exemptedCount = 0;\n this._anchoredIndex = 0;\n this._unselectableCount = 0;\n this._onSelectionChanged = onSelectionChanged;\n this._canSelectItem = canSelectItem;\n this._isModal = false;\n this.setItems(items || [], true);\n this.count = this.getSelectedCount();\n }\n Selection.prototype.canSelectItem = function (item, index) {\n if (typeof index === 'number' && index < 0) {\n return false;\n }\n return this._canSelectItem(item, index);\n };\n Selection.prototype.getKey = function (item, index) {\n var key = this._getKey(item, index);\n return typeof key === 'number' || key ? \"\" + key : '';\n };\n Selection.prototype.setChangeEvents = function (isEnabled, suppressChange) {\n this._changeEventSuppressionCount += isEnabled ? -1 : 1;\n if (this._changeEventSuppressionCount === 0 && this._hasChanged) {\n this._hasChanged = false;\n if (!suppressChange) {\n this._change();\n }\n }\n };\n Selection.prototype.isModal = function () {\n return this._isModal;\n };\n Selection.prototype.setModal = function (isModal) {\n if (this._isModal !== isModal) {\n this.setChangeEvents(false);\n this._isModal = isModal;\n if (!isModal) {\n this.setAllSelected(false);\n }\n this._change();\n this.setChangeEvents(true);\n }\n };\n /**\n * Selection needs the items, call this method to set them. If the set\n * of items is the same, this will re-evaluate selection and index maps.\n * Otherwise, shouldClear should be set to true, so that selection is\n * cleared.\n */\n Selection.prototype.setItems = function (items, shouldClear) {\n if (shouldClear === void 0) { shouldClear = true; }\n var newKeyToIndexMap = {};\n var newUnselectableIndices = {};\n var hasSelectionChanged = false;\n this.setChangeEvents(false);\n // Reset the unselectable count.\n this._unselectableCount = 0;\n // Build lookup table for quick selection evaluation.\n for (var i = 0; i < items.length; i++) {\n var item = items[i];\n if (item) {\n var key = this.getKey(item, i);\n if (key) {\n newKeyToIndexMap[key] = i;\n }\n }\n newUnselectableIndices[i] = item && !this.canSelectItem(item);\n if (newUnselectableIndices[i]) {\n this._unselectableCount++;\n }\n }\n if (shouldClear || items.length === 0) {\n this._setAllSelected(false, true);\n }\n // Check the exemption list for discrepencies.\n var newExemptedIndicies = {};\n var newExemptedCount = 0;\n for (var indexProperty in this._exemptedIndices) {\n if (this._exemptedIndices.hasOwnProperty(indexProperty)) {\n var index = Number(indexProperty);\n var item = this._items[index];\n var exemptKey = item ? this.getKey(item, Number(index)) : undefined;\n var newIndex = exemptKey ? newKeyToIndexMap[exemptKey] : index;\n if (newIndex === undefined) {\n // The item has likely been replaced or removed.\n hasSelectionChanged = true;\n }\n else {\n // We know the new index of the item. update the existing exemption table.\n newExemptedIndicies[newIndex] = true;\n newExemptedCount++;\n hasSelectionChanged = hasSelectionChanged || newIndex !== index;\n }\n }\n }\n if (this._items && this._exemptedCount === 0 && items.length !== this._items.length && this._isAllSelected) {\n // If everything was selected but the number of items has changed, selection has changed.\n hasSelectionChanged = true;\n }\n this._exemptedIndices = newExemptedIndicies;\n this._exemptedCount = newExemptedCount;\n this._keyToIndexMap = newKeyToIndexMap;\n this._unselectableIndices = newUnselectableIndices;\n this._items = items;\n this._selectedItems = null;\n if (hasSelectionChanged) {\n this._updateCount();\n this._change();\n }\n this.setChangeEvents(true);\n };\n Selection.prototype.getItems = function () {\n return this._items;\n };\n Selection.prototype.getSelection = function () {\n if (!this._selectedItems) {\n this._selectedItems = [];\n var items = this._items;\n if (items) {\n for (var i = 0; i < items.length; i++) {\n if (this.isIndexSelected(i)) {\n this._selectedItems.push(items[i]);\n }\n }\n }\n }\n return this._selectedItems;\n };\n Selection.prototype.getSelectedCount = function () {\n return this._isAllSelected\n ? this._items.length - this._exemptedCount - this._unselectableCount\n : this._exemptedCount;\n };\n Selection.prototype.getSelectedIndices = function () {\n if (!this._selectedIndices) {\n this._selectedIndices = [];\n var items = this._items;\n if (items) {\n for (var i = 0; i < items.length; i++) {\n if (this.isIndexSelected(i)) {\n this._selectedIndices.push(i);\n }\n }\n }\n }\n return this._selectedIndices;\n };\n Selection.prototype.isRangeSelected = function (fromIndex, count) {\n if (count === 0) {\n return false;\n }\n var endIndex = fromIndex + count;\n for (var i = fromIndex; i < endIndex; i++) {\n if (!this.isIndexSelected(i)) {\n return false;\n }\n }\n return true;\n };\n Selection.prototype.isAllSelected = function () {\n var selectableCount = this._items.length - this._unselectableCount;\n // In single mode, we can only have a max of 1 item.\n if (this.mode === SelectionMode.single) {\n selectableCount = Math.min(selectableCount, 1);\n }\n return ((this.count > 0 && this._isAllSelected && this._exemptedCount === 0) ||\n (!this._isAllSelected && this._exemptedCount === selectableCount && selectableCount > 0));\n };\n Selection.prototype.isKeySelected = function (key) {\n var index = this._keyToIndexMap[key];\n return this.isIndexSelected(index);\n };\n Selection.prototype.isIndexSelected = function (index) {\n return !!((this.count > 0 && this._isAllSelected && !this._exemptedIndices[index] && !this._unselectableIndices[index]) ||\n (!this._isAllSelected && this._exemptedIndices[index]));\n };\n Selection.prototype.setAllSelected = function (isAllSelected) {\n if (isAllSelected && this.mode !== SelectionMode.multiple) {\n return;\n }\n var selectableCount = this._items ? this._items.length - this._unselectableCount : 0;\n this.setChangeEvents(false);\n if (selectableCount > 0 && (this._exemptedCount > 0 || isAllSelected !== this._isAllSelected)) {\n this._exemptedIndices = {};\n if (isAllSelected !== this._isAllSelected || this._exemptedCount > 0) {\n this._exemptedCount = 0;\n this._isAllSelected = isAllSelected;\n this._change();\n }\n this._updateCount();\n }\n this.setChangeEvents(true);\n };\n Selection.prototype.setKeySelected = function (key, isSelected, shouldAnchor) {\n var index = this._keyToIndexMap[key];\n if (index >= 0) {\n this.setIndexSelected(index, isSelected, shouldAnchor);\n }\n };\n Selection.prototype.setIndexSelected = function (index, isSelected, shouldAnchor) {\n if (this.mode === SelectionMode.none) {\n return;\n }\n // Clamp the index.\n index = Math.min(Math.max(0, index), this._items.length - 1);\n // No-op on out of bounds selections.\n if (index < 0 || index >= this._items.length) {\n return;\n }\n this.setChangeEvents(false);\n var isExempt = this._exemptedIndices[index];\n var canSelect = !this._unselectableIndices[index];\n if (canSelect) {\n if (isSelected && this.mode === SelectionMode.single) {\n // If this is single-select, the previous selection should be removed.\n this._setAllSelected(false, true);\n }\n // Determine if we need to remove the exemption.\n if (isExempt && ((isSelected && this._isAllSelected) || (!isSelected && !this._isAllSelected))) {\n delete this._exemptedIndices[index];\n this._exemptedCount--;\n }\n // Determine if we need to add the exemption.\n if (!isExempt && ((isSelected && !this._isAllSelected) || (!isSelected && this._isAllSelected))) {\n this._exemptedIndices[index] = true;\n this._exemptedCount++;\n }\n if (shouldAnchor) {\n this._anchoredIndex = index;\n }\n }\n this._updateCount();\n this.setChangeEvents(true);\n };\n Selection.prototype.selectToKey = function (key, clearSelection) {\n this.selectToIndex(this._keyToIndexMap[key], clearSelection);\n };\n Selection.prototype.selectToIndex = function (index, clearSelection) {\n if (this.mode === SelectionMode.none) {\n return;\n }\n if (this.mode === SelectionMode.single) {\n this.setIndexSelected(index, true, true);\n return;\n }\n var anchorIndex = this._anchoredIndex || 0;\n var startIndex = Math.min(index, anchorIndex);\n var endIndex = Math.max(index, anchorIndex);\n this.setChangeEvents(false);\n if (clearSelection) {\n this._setAllSelected(false, true);\n }\n for (; startIndex <= endIndex; startIndex++) {\n this.setIndexSelected(startIndex, true, false);\n }\n this.setChangeEvents(true);\n };\n Selection.prototype.toggleAllSelected = function () {\n this.setAllSelected(!this.isAllSelected());\n };\n Selection.prototype.toggleKeySelected = function (key) {\n this.setKeySelected(key, !this.isKeySelected(key), true);\n };\n Selection.prototype.toggleIndexSelected = function (index) {\n this.setIndexSelected(index, !this.isIndexSelected(index), true);\n };\n Selection.prototype.toggleRangeSelected = function (fromIndex, count) {\n if (this.mode === SelectionMode.none) {\n return;\n }\n var isRangeSelected = this.isRangeSelected(fromIndex, count);\n var endIndex = fromIndex + count;\n if (this.mode === SelectionMode.single && count > 1) {\n return;\n }\n this.setChangeEvents(false);\n for (var i = fromIndex; i < endIndex; i++) {\n this.setIndexSelected(i, !isRangeSelected, false);\n }\n this.setChangeEvents(true);\n };\n Selection.prototype._updateCount = function (preserveModalState) {\n if (preserveModalState === void 0) { preserveModalState = false; }\n var count = this.getSelectedCount();\n if (count !== this.count) {\n this.count = count;\n this._change();\n }\n if (!this.count && !preserveModalState) {\n this.setModal(false);\n }\n };\n Selection.prototype._setAllSelected = function (isAllSelected, preserveModalState) {\n if (preserveModalState === void 0) { preserveModalState = false; }\n if (isAllSelected && this.mode !== SelectionMode.multiple) {\n return;\n }\n var selectableCount = this._items ? this._items.length - this._unselectableCount : 0;\n this.setChangeEvents(false);\n if (selectableCount > 0 && (this._exemptedCount > 0 || isAllSelected !== this._isAllSelected)) {\n this._exemptedIndices = {};\n if (isAllSelected !== this._isAllSelected || this._exemptedCount > 0) {\n this._exemptedCount = 0;\n this._isAllSelected = isAllSelected;\n this._change();\n }\n this._updateCount(preserveModalState);\n }\n this.setChangeEvents(true);\n };\n Selection.prototype._change = function () {\n if (this._changeEventSuppressionCount === 0) {\n this._selectedItems = null;\n this._selectedIndices = undefined;\n EventGroup.raise(this, SELECTION_CHANGE);\n if (this._onSelectionChanged) {\n this._onSelectionChanged();\n }\n }\n else {\n this._hasChanged = true;\n }\n };\n return Selection;\n}());\nexport { Selection };\nfunction defaultGetKey(item, index) {\n // 0 may be used as a key\n var _a = (item || {}).key, key = _a === void 0 ? \"\" + index : _a;\n return key;\n}\n//# sourceMappingURL=Selection.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "index": 838, - "index2": 831, - "size": 1604, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupedList.styles", - "loc": "2:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "type": "harmony import specifier", - "userRequest": "./GroupedList.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames, AnimationVariables } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-GroupedList',\n compact: 'ms-GroupedList--Compact',\n group: 'ms-GroupedList-group',\n link: 'ms-Link',\n listCell: 'ms-List-cell',\n};\nvar beziers = {\n easeInOutSine: 'cubic-bezier(0.445, 0.050, 0.550, 0.950)',\n};\nexport var getStyles = function (props) {\n var _a, _b;\n var theme = props.theme, className = props.className, compact = props.compact;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.small,\n {\n position: 'relative',\n selectors: (_a = {},\n _a[\".\" + classNames.listCell] = {\n minHeight: 38,\n },\n _a),\n },\n compact && [\n classNames.compact,\n {\n selectors: (_b = {},\n _b[\".\" + classNames.listCell] = {\n minHeight: 32,\n },\n _b),\n },\n ],\n className,\n ],\n group: [\n classNames.group,\n {\n transition: \"background-color \" + AnimationVariables.durationValue2 + \" \" + beziers.easeInOutSine,\n },\n ],\n groupIsDropping: {\n backgroundColor: palette.neutralLight,\n },\n };\n};\n//# sourceMappingURL=GroupedList.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "index": 829, - "index2": 819, - "size": 8493, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupHeader.styles", - "loc": "2:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "type": "harmony import specifier", - "userRequest": "./GroupHeader.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames, getFocusStyle, AnimationVariables, FontWeights, IconFontSizes, } from '../../Styling';\nimport { getRTL, IsFocusVisibleClassName } from '../../Utilities';\nimport { DEFAULT_CELL_STYLE_PROPS } from '../DetailsList/DetailsRow.styles';\nimport { CHECK_CELL_WIDTH } from '../DetailsList/DetailsRowCheck.styles';\n// For every group level there is a GroupSpacer added. Importing this const to have the source value in one place.\nimport { SPACER_WIDTH as EXPAND_BUTTON_WIDTH } from './GroupSpacer';\nvar GlobalClassNames = {\n root: 'ms-GroupHeader',\n compact: 'ms-GroupHeader--compact',\n check: 'ms-GroupHeader-check',\n dropIcon: 'ms-GroupHeader-dropIcon',\n expand: 'ms-GroupHeader-expand',\n isCollapsed: 'is-collapsed',\n title: 'ms-GroupHeader-title',\n isSelected: 'is-selected',\n iconTag: 'ms-Icon--Tag',\n group: 'ms-GroupedList-group',\n isDropping: 'is-dropping',\n};\nvar beziers = {\n easeOutCirc: 'cubic-bezier(0.075, 0.820, 0.165, 1.000)',\n easeOutSine: 'cubic-bezier(0.390, 0.575, 0.565, 1.000)',\n easeInBack: 'cubic-bezier(0.600, -0.280, 0.735, 0.045)',\n};\nvar DEFAULT_GROUP_HEADER_HEIGHT = 48;\nvar COMPACT_GROUP_HEADER_HEIGHT = 40;\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e;\n var theme = props.theme, className = props.className, selected = props.selected, isCollapsed = props.isCollapsed, compact = props.compact;\n // padding from the source to align GroupHeader title with DetailsRow's first cell.\n var cellLeftPadding = DEFAULT_CELL_STYLE_PROPS.cellLeftPadding;\n var finalRowHeight = compact ? COMPACT_GROUP_HEADER_HEIGHT : DEFAULT_GROUP_HEADER_HEIGHT;\n var semanticColors = theme.semanticColors, palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var checkExpandResetStyles = [\n getFocusStyle(theme),\n {\n cursor: 'default',\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n padding: 0,\n },\n ];\n return {\n root: [\n classNames.root,\n getFocusStyle(theme),\n theme.fonts.medium,\n {\n // keep the border for height but color it so it's invisible.\n borderBottom: \"1px solid \" + semanticColors.listBackground,\n cursor: 'default',\n userSelect: 'none',\n selectors: (_a = {\n ':hover': {\n background: semanticColors.listItemBackgroundHovered,\n color: semanticColors.actionLinkHovered,\n }\n },\n _a[\"&:hover .\" + classNames.check] = {\n opacity: 1,\n },\n _a[\".\" + IsFocusVisibleClassName + \" &:focus .\" + classNames.check] = {\n opacity: 1,\n },\n _a[\":global(.\" + classNames.group + \".\" + classNames.isDropping + \")\"] = {\n selectors: (_b = {},\n _b[\"& > .\" + classNames.root + \" .\" + classNames.dropIcon] = {\n transition: \"transform \" + AnimationVariables.durationValue4 + \" \" + beziers.easeOutCirc + \" \" +\n (\"opacity \" + AnimationVariables.durationValue1 + \" \" + beziers.easeOutSine),\n transitionDelay: AnimationVariables.durationValue3,\n opacity: 1,\n transform: \"rotate(0.2deg) scale(1);\",\n },\n _b[\".\" + classNames.check] = {\n opacity: 0,\n },\n _b),\n },\n _a),\n },\n selected && [\n classNames.isSelected,\n {\n background: semanticColors.listItemBackgroundChecked,\n selectors: (_c = {\n ':hover': {\n background: semanticColors.listItemBackgroundCheckedHovered,\n }\n },\n _c[\"\" + classNames.check] = {\n opacity: 1,\n },\n _c),\n },\n ],\n compact && [classNames.compact, { border: 'none' }],\n className,\n ],\n groupHeaderContainer: [\n {\n display: 'flex',\n alignItems: 'center',\n height: finalRowHeight,\n },\n ],\n headerCount: [\n {\n padding: '0px 4px',\n },\n ],\n check: [\n classNames.check,\n checkExpandResetStyles,\n {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n // paddingTop and marginTop brought from the DetailsRow.styles.ts with explanation below.\n // Ensure that the check cell covers the top border of the cell.\n // This ensures the click target does not leave a spot which would\n // cause other items to be deselected.\n paddingTop: 1,\n marginTop: -1,\n opacity: 0,\n width: CHECK_CELL_WIDTH,\n height: finalRowHeight,\n selectors: (_d = {},\n _d[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n opacity: 1,\n },\n _d),\n },\n ],\n expand: [\n classNames.expand,\n checkExpandResetStyles,\n {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n fontSize: fonts.small.fontSize,\n width: EXPAND_BUTTON_WIDTH,\n height: finalRowHeight,\n color: selected ? palette.neutralPrimary : palette.neutralSecondary,\n selectors: {\n ':hover': {\n backgroundColor: selected ? palette.neutralQuaternary : palette.neutralLight,\n },\n ':active': {\n backgroundColor: selected ? palette.neutralTertiaryAlt : palette.neutralQuaternaryAlt,\n },\n },\n },\n ],\n expandIsCollapsed: [\n isCollapsed\n ? [\n classNames.isCollapsed,\n {\n transform: 'rotate(0deg)',\n transformOrigin: '50% 50%',\n transition: 'transform .1s linear',\n },\n ]\n : {\n transform: getRTL(theme) ? 'rotate(-90deg)' : 'rotate(90deg)',\n transformOrigin: '50% 50%',\n transition: 'transform .1s linear',\n },\n ],\n title: [\n classNames.title,\n {\n paddingLeft: cellLeftPadding,\n fontSize: compact ? fonts.medium.fontSize : fonts.mediumPlus.fontSize,\n fontWeight: isCollapsed ? FontWeights.regular : FontWeights.semibold,\n cursor: 'pointer',\n outline: 0,\n whiteSpace: 'nowrap',\n textOverflow: 'ellipsis',\n },\n ],\n dropIcon: [\n classNames.dropIcon,\n {\n position: 'absolute',\n left: -26,\n fontSize: IconFontSizes.large,\n color: palette.neutralSecondary,\n transition: \"transform \" + AnimationVariables.durationValue2 + \" \" + beziers.easeInBack + \", \" +\n (\"opacity \" + AnimationVariables.durationValue4 + \" \" + beziers.easeOutSine),\n opacity: 0,\n transform: 'rotate(0.2deg) scale(0.65)',\n transformOrigin: '10px 10px',\n selectors: (_e = {},\n _e[\":global(.\" + classNames.iconTag + \")\"] = {\n position: 'absolute',\n },\n _e),\n },\n ],\n };\n};\n//# sourceMappingURL=GroupHeader.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "index": 824, - "index2": 818, - "size": 9250, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupHeader.base", - "loc": "3:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "type": "harmony import specifier", - "userRequest": "./GroupHeader.base", - "loc": "4:32-47" - } - ], - "usedExports": [ - "GroupHeaderBase" - ], - "providedExports": [ - "GroupHeaderBase" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { composeRenderFunction, classNamesFunction, getId, getRTL, getRTLSafeKeyCode, KeyCodes } from '../../Utilities';\nimport { SelectionMode } from '../../Selection';\nimport { Check } from '../../Check';\nimport { Icon } from '../../Icon';\nimport { GroupSpacer } from './GroupSpacer';\nimport { Spinner } from '../../Spinner';\nvar getClassNames = classNamesFunction();\nvar GroupHeaderBase = /** @class */ (function (_super) {\n __extends(GroupHeaderBase, _super);\n function GroupHeaderBase(props) {\n var _this = _super.call(this, props) || this;\n _this._toggleCollapse = function () {\n var _a = _this.props, group = _a.group, onToggleCollapse = _a.onToggleCollapse, isGroupLoading = _a.isGroupLoading;\n var isCollapsed = _this.state.isCollapsed;\n var newCollapsed = !isCollapsed;\n var newLoadingVisible = !newCollapsed && isGroupLoading && isGroupLoading(group);\n _this.setState({\n isCollapsed: newCollapsed,\n isLoadingVisible: newLoadingVisible,\n });\n if (onToggleCollapse) {\n onToggleCollapse(group);\n }\n };\n _this._onKeyUp = function (ev) {\n var _a = _this.props, group = _a.group, onGroupHeaderKeyUp = _a.onGroupHeaderKeyUp;\n if (onGroupHeaderKeyUp) {\n onGroupHeaderKeyUp(ev, group);\n }\n if (!ev.defaultPrevented) {\n var shouldOpen = _this.state.isCollapsed && ev.which === getRTLSafeKeyCode(KeyCodes.right, _this.props.theme);\n var shouldClose = !_this.state.isCollapsed && ev.which === getRTLSafeKeyCode(KeyCodes.left, _this.props.theme);\n if (shouldClose || shouldOpen) {\n _this._toggleCollapse();\n ev.stopPropagation();\n ev.preventDefault();\n }\n }\n };\n _this._onToggleClick = function (ev) {\n _this._toggleCollapse();\n ev.stopPropagation();\n ev.preventDefault();\n };\n _this._onToggleSelectGroupClick = function (ev) {\n var _a = _this.props, onToggleSelectGroup = _a.onToggleSelectGroup, group = _a.group;\n if (onToggleSelectGroup) {\n onToggleSelectGroup(group);\n }\n ev.preventDefault();\n ev.stopPropagation();\n };\n _this._onHeaderClick = function () {\n var _a = _this.props, group = _a.group, onGroupHeaderClick = _a.onGroupHeaderClick, onToggleSelectGroup = _a.onToggleSelectGroup;\n if (onGroupHeaderClick) {\n onGroupHeaderClick(group);\n }\n else if (onToggleSelectGroup) {\n onToggleSelectGroup(group);\n }\n };\n _this._onRenderTitle = function (props) {\n var group = props.group, ariaColSpan = props.ariaColSpan;\n if (!group) {\n return null;\n }\n return (React.createElement(\"div\", { className: _this._classNames.title, id: _this._id, role: \"gridcell\", \"aria-colspan\": ariaColSpan },\n React.createElement(\"span\", null, group.name),\n React.createElement(\"span\", { className: _this._classNames.headerCount },\n \"(\",\n group.count,\n group.hasMoreData && '+',\n \")\")));\n };\n _this._id = getId('GroupHeader');\n _this.state = {\n isCollapsed: (_this.props.group && _this.props.group.isCollapsed),\n isLoadingVisible: false,\n };\n return _this;\n }\n GroupHeaderBase.getDerivedStateFromProps = function (nextProps, previousState) {\n if (nextProps.group) {\n var newCollapsed = nextProps.group.isCollapsed;\n var isGroupLoading = nextProps.isGroupLoading;\n var newLoadingVisible = !newCollapsed && isGroupLoading && isGroupLoading(nextProps.group);\n return __assign(__assign({}, previousState), { isCollapsed: newCollapsed || false, isLoadingVisible: newLoadingVisible || false });\n }\n return previousState;\n };\n GroupHeaderBase.prototype.render = function () {\n var _a = this.props, group = _a.group, _b = _a.groupLevel, groupLevel = _b === void 0 ? 0 : _b, viewport = _a.viewport, selectionMode = _a.selectionMode, loadingText = _a.loadingText, \n // eslint-disable-next-line deprecation/deprecation\n _c = _a.isSelected, \n // eslint-disable-next-line deprecation/deprecation\n isSelected = _c === void 0 ? false : _c, _d = _a.selected, selected = _d === void 0 ? false : _d, indentWidth = _a.indentWidth, _e = _a.onRenderTitle, onRenderTitle = _e === void 0 ? this._onRenderTitle : _e, onRenderGroupHeaderCheckbox = _a.onRenderGroupHeaderCheckbox, _f = _a.isCollapsedGroupSelectVisible, isCollapsedGroupSelectVisible = _f === void 0 ? true : _f, expandButtonProps = _a.expandButtonProps, expandButtonIcon = _a.expandButtonIcon, selectAllButtonProps = _a.selectAllButtonProps, theme = _a.theme, styles = _a.styles, className = _a.className, compact = _a.compact, ariaPosInSet = _a.ariaPosInSet, ariaSetSize = _a.ariaSetSize, useFastIcons = _a.useFastIcons;\n var defaultCheckboxRender = useFastIcons ? this._fastDefaultCheckboxRender : this._defaultCheckboxRender;\n var onRenderCheckbox = onRenderGroupHeaderCheckbox\n ? composeRenderFunction(onRenderGroupHeaderCheckbox, defaultCheckboxRender)\n : defaultCheckboxRender;\n var _g = this.state, isCollapsed = _g.isCollapsed, isLoadingVisible = _g.isLoadingVisible;\n var canSelectGroup = selectionMode === SelectionMode.multiple;\n var isSelectionCheckVisible = canSelectGroup && (isCollapsedGroupSelectVisible || !(group && group.isCollapsed));\n var currentlySelected = selected || isSelected;\n var isRTL = getRTL(theme);\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n selected: currentlySelected,\n isCollapsed: isCollapsed,\n compact: compact,\n });\n if (!group) {\n return null;\n }\n return (React.createElement(\"div\", { className: this._classNames.root, style: viewport ? { minWidth: viewport.width } : {}, onClick: this._onHeaderClick, role: \"row\", \"aria-setsize\": ariaSetSize, \"aria-posinset\": ariaPosInSet, \"data-is-focusable\": true, onKeyUp: this._onKeyUp, \"aria-label\": group.ariaLabel, \"aria-labelledby\": group.ariaLabel ? undefined : this._id, \"aria-expanded\": !this.state.isCollapsed, \"aria-selected\": canSelectGroup ? currentlySelected : undefined, \"aria-level\": groupLevel + 1 },\n React.createElement(\"div\", { className: this._classNames.groupHeaderContainer, role: \"presentation\" },\n isSelectionCheckVisible ? (React.createElement(\"div\", { role: \"gridcell\" },\n React.createElement(\"button\", __assign({ \"data-is-focusable\": false, type: \"button\", className: this._classNames.check, role: \"checkbox\", \"aria-checked\": currentlySelected, \"data-selection-toggle\": true, onClick: this._onToggleSelectGroupClick }, selectAllButtonProps), onRenderCheckbox({ checked: currentlySelected, theme: theme }, onRenderCheckbox)))) : (selectionMode !== SelectionMode.none && React.createElement(GroupSpacer, { indentWidth: indentWidth, count: 1 })),\n React.createElement(GroupSpacer, { indentWidth: indentWidth, count: groupLevel }),\n React.createElement(\"div\", { className: this._classNames.dropIcon, role: \"presentation\" },\n React.createElement(Icon, { iconName: \"Tag\" })),\n React.createElement(\"div\", { role: \"gridcell\" },\n React.createElement(\"button\", __assign({ \"data-is-focusable\": false, type: \"button\", className: this._classNames.expand, onClick: this._onToggleClick, \"aria-expanded\": !this.state.isCollapsed }, expandButtonProps),\n React.createElement(Icon, { className: this._classNames.expandIsCollapsed, iconName: expandButtonIcon || (isRTL ? 'ChevronLeftMed' : 'ChevronRightMed') }))),\n onRenderTitle(this.props, this._onRenderTitle),\n isLoadingVisible && React.createElement(Spinner, { label: loadingText }))));\n };\n GroupHeaderBase.prototype._defaultCheckboxRender = function (checkboxProps) {\n return React.createElement(Check, { checked: checkboxProps.checked });\n };\n GroupHeaderBase.prototype._fastDefaultCheckboxRender = function (checkboxProps) {\n return React.createElement(FastCheck, { theme: checkboxProps.theme, checked: checkboxProps.checked });\n };\n GroupHeaderBase.defaultProps = {\n expandButtonProps: { 'aria-label': 'expand collapse group' },\n };\n return GroupHeaderBase;\n}(React.Component));\nexport { GroupHeaderBase };\nvar FastCheck = React.memo(function (props) {\n return React.createElement(Check, { theme: props.theme, checked: props.checked, className: props.className, useFastIcons: true });\n});\n//# sourceMappingURL=GroupHeader.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.styles.js", - "index": 832, - "index2": 822, - "size": 767, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupShowAll.styles", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "type": "harmony import specifier", - "userRequest": "./GroupShowAll.styles", - "loc": "4:51-60" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-GroupShowAll',\n link: 'ms-Link',\n};\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme;\n var fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n position: 'relative',\n padding: '10px 84px',\n cursor: 'pointer',\n selectors: (_a = {},\n _a[\".\" + classNames.link] = {\n fontSize: fonts.small.fontSize,\n },\n _a),\n },\n ],\n };\n};\n//# sourceMappingURL=GroupShowAll.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "index": 831, - "index2": 821, - "size": 1087, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupShowAll.base", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.js", - "type": "harmony import specifier", - "userRequest": "./GroupShowAll.base", - "loc": "4:33-49" - } - ], - "usedExports": [ - "GroupShowAllBase" - ], - "providedExports": [ - "GroupShowAllBase" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as React from 'react';\nimport { useCallback } from 'react';\nimport { classNamesFunction } from '../../Utilities';\nimport { Link } from '../../Link';\nimport { GroupSpacer } from './GroupSpacer';\nvar getClassNames = classNamesFunction();\nexport var GroupShowAllBase = function (props) {\n var group = props.group, groupLevel = props.groupLevel, _a = props.showAllLinkText, showAllLinkText = _a === void 0 ? 'Show All' : _a, styles = props.styles, theme = props.theme, onToggleSummarize = props.onToggleSummarize;\n var classNames = getClassNames(styles, { theme: theme });\n var memoizedOnClick = useCallback(function (ev) {\n onToggleSummarize(group);\n ev.stopPropagation();\n ev.preventDefault();\n }, [onToggleSummarize, group]);\n if (group) {\n return (React.createElement(\"div\", { className: classNames.root },\n React.createElement(GroupSpacer, { count: groupLevel }),\n React.createElement(Link, { onClick: memoizedOnClick }, showAllLinkText)));\n }\n return null;\n};\n//# sourceMappingURL=GroupShowAll.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.styles.js", - "index": 835, - "index2": 825, - "size": 560, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupFooter.styles", - "loc": "2:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "type": "harmony import specifier", - "userRequest": "./GroupFooter.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-groupFooter',\n};\nexport var getStyles = function (props) {\n var theme = props.theme, className = props.className;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n theme.fonts.medium,\n classNames.root,\n {\n position: 'relative',\n padding: '5px 38px',\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=GroupFooter.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "index": 834, - "index2": 824, - "size": 748, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupFooter.base", - "loc": "3:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.js", - "type": "harmony import specifier", - "userRequest": "./GroupFooter.base", - "loc": "4:32-47" - } - ], - "usedExports": [ - "GroupFooterBase" - ], - "providedExports": [ - "GroupFooterBase" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as React from 'react';\nimport { classNamesFunction } from '../../Utilities';\nimport { GroupSpacer } from './GroupSpacer';\nvar getClassNames = classNamesFunction();\nexport var GroupFooterBase = function (props) {\n var group = props.group, groupLevel = props.groupLevel, footerText = props.footerText, indentWidth = props.indentWidth, styles = props.styles, theme = props.theme;\n var classNames = getClassNames(styles, { theme: theme });\n if (group && footerText) {\n return (React.createElement(\"div\", { className: classNames.root },\n React.createElement(GroupSpacer, { indentWidth: indentWidth, count: groupLevel }),\n footerText));\n }\n return null;\n};\n//# sourceMappingURL=GroupFooter.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getRect.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/getRect.js", - "index": 842, - "index2": 835, - "size": 646, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:33-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "35:33-40" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getRect", - "loc": "7:0-30" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getRect", - "loc": "7:0-30" - }, - { - "moduleId": "O2QR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getRect", - "loc": "3:0-40" - }, - { - "moduleId": "O2QR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getRect", - "loc": "21:27-34" - } - ], - "usedExports": [ - "getRect" - ], - "providedExports": [ - "getRect" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/**\n * Helper to get bounding client rect. Passing in window will get the window size.\n *\n * @public\n */\nexport function getRect(element) {\n var rect;\n if (element) {\n if (element === window) {\n rect = {\n left: 0,\n top: 0,\n width: window.innerWidth,\n height: window.innerHeight,\n right: window.innerWidth,\n bottom: window.innerHeight,\n };\n }\n else if (element.getBoundingClientRect) {\n rect = element.getBoundingClientRect();\n }\n }\n return rect;\n}\n//# sourceMappingURL=getRect.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "index": 763, - "index2": 758, - "size": 468, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "issuerId": "NE6p", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "yb4Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "Nong", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - }, - { - "id": "NE6p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "type": "harmony side effect evaluation", - "userRequest": "./DraggableZone.styles", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "type": "harmony import specifier", - "userRequest": "./DraggableZone.styles", - "loc": "157:23-36" - }, - { - "moduleId": "NE6p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DraggableZone.styles", - "loc": "2:0-39" - }, - { - "moduleId": "NE6p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DraggableZone.styles", - "loc": "2:0-39" - } - ], - "usedExports": [ - "getClassNames" - ], - "providedExports": [ - "getClassNames" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { memoizeFunction } from '../../Utilities';\nimport { mergeStyles } from '../../Styling';\nexport var getClassNames = memoizeFunction(function (className, isDragging) {\n return {\n root: mergeStyles(className, isDragging && {\n touchAction: 'none',\n selectors: {\n '& *': {\n userSelect: 'none',\n },\n },\n }),\n };\n});\n//# sourceMappingURL=DraggableZone.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "index": 762, - "index2": 759, - "size": 10908, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "issuerId": "NE6p", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "yb4Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "Nong", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - }, - { - "id": "NE6p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/DraggableZone/index", - "loc": "297:59-72" - }, - { - "moduleId": "NE6p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DraggableZone", - "loc": "1:0-32" - }, - { - "moduleId": "NE6p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DraggableZone", - "loc": "1:0-32" - } - ], - "usedExports": [ - "DraggableZone" - ], - "providedExports": [ - "DraggableZone" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { getClassNames } from './DraggableZone.styles';\nimport { on } from '../../Utilities';\nvar eventMapping = {\n touch: {\n start: 'touchstart',\n move: 'touchmove',\n stop: 'touchend',\n },\n mouse: {\n start: 'mousedown',\n move: 'mousemove',\n stop: 'mouseup',\n },\n};\nvar DraggableZone = /** @class */ (function (_super) {\n __extends(DraggableZone, _super);\n function DraggableZone(props) {\n var _this = _super.call(this, props) || this;\n _this._currentEventType = eventMapping.mouse;\n _this._events = [];\n _this._onMouseDown = function (event) {\n var onMouseDown = React.Children.only(_this.props.children).props.onMouseDown;\n if (onMouseDown) {\n onMouseDown(event);\n }\n _this._currentEventType = eventMapping.mouse;\n return _this._onDragStart(event);\n };\n _this._onMouseUp = function (event) {\n var onMouseUp = React.Children.only(_this.props.children).props.onMouseUp;\n if (onMouseUp) {\n onMouseUp(event);\n }\n _this._currentEventType = eventMapping.mouse;\n return _this._onDragStop(event);\n };\n _this._onTouchStart = function (event) {\n var onTouchStart = React.Children.only(_this.props.children).props.onTouchStart;\n if (onTouchStart) {\n onTouchStart(event);\n }\n _this._currentEventType = eventMapping.touch;\n return _this._onDragStart(event);\n };\n _this._onTouchEnd = function (event) {\n var onTouchEnd = React.Children.only(_this.props.children).props.onTouchEnd;\n if (onTouchEnd) {\n onTouchEnd(event);\n }\n _this._currentEventType = eventMapping.touch;\n _this._onDragStop(event);\n };\n _this._onDragStart = function (event) {\n // Only handle left click for dragging\n if (typeof event.button === 'number' && event.button !== 0) {\n return false;\n }\n // If the target doesn't match the handleSelector OR\n // if the target does match the preventDragSelector, bail out\n if ((_this.props.handleSelector && !_this._matchesSelector(event.target, _this.props.handleSelector)) ||\n (_this.props.preventDragSelector &&\n _this._matchesSelector(event.target, _this.props.preventDragSelector))) {\n return;\n }\n // Remember the touch identifier if this is a touch event so we can\n // distinguish between individual touches in multitouch scenarios\n // by remembering which touch point we were given\n _this._touchId = _this._getTouchId(event);\n var position = _this._getControlPosition(event);\n if (position === undefined) {\n return;\n }\n var dragData = _this._createDragDataFromPosition(position);\n _this.props.onStart && _this.props.onStart(event, dragData);\n _this.setState({\n isDragging: true,\n lastPosition: position,\n });\n // hook up the appropriate mouse/touch events to the body to ensure\n // smooth dragging\n _this._events = [\n on(document.body, _this._currentEventType.move, _this._onDrag, true /* use capture phase */),\n on(document.body, _this._currentEventType.stop, _this._onDragStop, true /* use capture phase */),\n ];\n };\n _this._onDrag = function (event) {\n // Prevent scrolling on mobile devices\n if (event.type === 'touchmove') {\n event.preventDefault();\n }\n var position = _this._getControlPosition(event);\n if (!position) {\n return;\n }\n // create the updated drag data from the position data\n var updatedData = _this._createUpdatedDragData(_this._createDragDataFromPosition(position));\n var updatedPosition = updatedData.position;\n _this.props.onDragChange && _this.props.onDragChange(event, updatedData);\n _this.setState({\n position: updatedPosition,\n lastPosition: position,\n });\n };\n _this._onDragStop = function (event) {\n if (!_this.state.isDragging) {\n return;\n }\n var position = _this._getControlPosition(event);\n if (!position) {\n return;\n }\n var baseDragData = _this._createDragDataFromPosition(position);\n // Set dragging to false and reset the lastPosition\n _this.setState({\n isDragging: false,\n lastPosition: undefined,\n });\n _this.props.onStop && _this.props.onStop(event, baseDragData);\n if (_this.props.position) {\n _this.setState({\n position: _this.props.position,\n });\n }\n // Remove event handlers\n _this._events.forEach(function (dispose) { return dispose(); });\n };\n _this.state = {\n isDragging: false,\n position: _this.props.position || { x: 0, y: 0 },\n lastPosition: undefined,\n };\n return _this;\n }\n DraggableZone.prototype.componentDidUpdate = function (prevProps) {\n if (this.props.position && (!prevProps.position || this.props.position !== prevProps.position)) {\n this.setState({ position: this.props.position });\n }\n };\n DraggableZone.prototype.componentWillUnmount = function () {\n this._events.forEach(function (dispose) { return dispose(); });\n };\n DraggableZone.prototype.render = function () {\n var child = React.Children.only(this.props.children);\n var props = child.props;\n var position = this.props.position;\n var _a = this.state, statePosition = _a.position, isDragging = _a.isDragging;\n var x = statePosition.x;\n var y = statePosition.y;\n if (position && !isDragging) {\n x = position.x;\n y = position.y;\n }\n return React.cloneElement(child, {\n style: __assign(__assign({}, props.style), { transform: \"translate(\" + x + \"px, \" + y + \"px)\" }),\n className: getClassNames(props.className, this.state.isDragging).root,\n onMouseDown: this._onMouseDown,\n onMouseUp: this._onMouseUp,\n onTouchStart: this._onTouchStart,\n onTouchEnd: this._onTouchEnd,\n });\n };\n /**\n * Get the control position based off the event that fired\n * @param event - The event to get offsets from\n */\n DraggableZone.prototype._getControlPosition = function (event) {\n var touchObj = this._getActiveTouch(event);\n // did we get the right touch?\n if (this._touchId !== undefined && !touchObj) {\n return undefined;\n }\n var eventToGetOffset = touchObj || event;\n return {\n x: eventToGetOffset.clientX,\n y: eventToGetOffset.clientY,\n };\n };\n /**\n * Get the active touch point that we have saved from the event's TouchList\n * @param event - The event used to get the TouchList for the active touch point\n */\n DraggableZone.prototype._getActiveTouch = function (event) {\n return ((event.targetTouches && this._findTouchInTouchList(event.targetTouches)) ||\n (event.changedTouches && this._findTouchInTouchList(event.changedTouches)));\n };\n /**\n * Get the initial touch identifier associated with the given event\n * @param event - The event that contains the TouchList\n */\n DraggableZone.prototype._getTouchId = function (event) {\n var touch = (event.targetTouches && event.targetTouches[0]) || (event.changedTouches && event.changedTouches[0]);\n if (touch) {\n return touch.identifier;\n }\n };\n /**\n * Returns if an element (or any of the element's parents) match the given selector\n */\n DraggableZone.prototype._matchesSelector = function (element, selector) {\n if (!element || element === document.body) {\n return false;\n }\n var matchesSelectorFn = element.matches || element.webkitMatchesSelector || element.msMatchesSelector /* for IE */;\n if (!matchesSelectorFn) {\n return false;\n }\n return matchesSelectorFn.call(element, selector) || this._matchesSelector(element.parentElement, selector);\n };\n /**\n * Attempts to find the Touch that matches the identifier we stored in dragStart\n * @param touchList The TouchList to look for the stored identifier from dragStart\n */\n DraggableZone.prototype._findTouchInTouchList = function (touchList) {\n if (this._touchId === undefined) {\n return;\n }\n for (var i = 0; i < touchList.length; i++) {\n if (touchList[i].identifier === this._touchId) {\n return touchList[i];\n }\n }\n return undefined;\n };\n /**\n * Create DragData based off of the last known position and the new position passed in\n * @param position The new position as part of the drag\n */\n DraggableZone.prototype._createDragDataFromPosition = function (position) {\n var lastPosition = this.state.lastPosition;\n // If we have no lastPosition, use the given position\n // for last position\n if (lastPosition === undefined) {\n return {\n delta: { x: 0, y: 0 },\n lastPosition: position,\n position: position,\n };\n }\n return {\n delta: {\n x: position.x - lastPosition.x,\n y: position.y - lastPosition.y,\n },\n lastPosition: lastPosition,\n position: position,\n };\n };\n /**\n * Creates an updated DragData based off the current position and given baseDragData\n * @param baseDragData The base DragData (from _createDragDataFromPosition) used to calculate the updated positions\n */\n DraggableZone.prototype._createUpdatedDragData = function (baseDragData) {\n var position = this.state.position;\n return {\n position: {\n x: position.x + baseDragData.delta.x,\n y: position.y + baseDragData.delta.y,\n },\n delta: baseDragData.delta,\n lastPosition: position,\n };\n };\n return DraggableZone;\n}(React.Component));\nexport { DraggableZone };\n//# sourceMappingURL=DraggableZone.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.styles.js", - "index": 802, - "index2": 795, - "size": 2218, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js" - }, - { - "id": "kzwK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "type": "harmony side effect evaluation", - "userRequest": "./Tooltip.styles", - "loc": "3:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.js", - "type": "harmony import specifier", - "userRequest": "./Tooltip.styles", - "loc": "4:41-50" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { AnimationClassNames } from '../../Styling';\nexport var getStyles = function (props) {\n var className = props.className, _a = props.beakWidth, beakWidth = _a === void 0 ? 16 : _a, _b = props.gapSpace, gapSpace = _b === void 0 ? 0 : _b, maxWidth = props.maxWidth, theme = props.theme;\n var semanticColors = theme.semanticColors, fonts = theme.fonts, effects = theme.effects;\n // The math here is done to account for the 45 degree rotation of the beak\n // and sub-pixel rounding that differs across browsers, which is more noticeable when\n // the device pixel ratio is larger\n var tooltipGapSpace = -(Math.sqrt((beakWidth * beakWidth) / 2) + gapSpace) + 1 / window.devicePixelRatio;\n return {\n root: [\n 'ms-Tooltip',\n theme.fonts.medium,\n AnimationClassNames.fadeIn200,\n {\n background: semanticColors.menuBackground,\n boxShadow: effects.elevation8,\n padding: '8px',\n maxWidth: maxWidth,\n selectors: {\n ':after': {\n content: \"''\",\n position: 'absolute',\n bottom: tooltipGapSpace,\n left: tooltipGapSpace,\n right: tooltipGapSpace,\n top: tooltipGapSpace,\n zIndex: 0,\n },\n },\n },\n className,\n ],\n content: [\n 'ms-Tooltip-content',\n fonts.small,\n {\n position: 'relative',\n zIndex: 1,\n color: semanticColors.menuItemText,\n wordWrap: 'break-word',\n overflowWrap: 'break-word',\n overflow: 'hidden',\n },\n ],\n subText: [\n 'ms-Tooltip-subtext',\n {\n // Using inherit here to avoid unintentional global overrides of the

tag.\n fontSize: 'inherit',\n fontWeight: 'inherit',\n color: 'inherit',\n margin: 0,\n },\n ],\n };\n};\n//# sourceMappingURL=Tooltip.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.styles.js", - "index": 803, - "index2": 798, - "size": 544, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js" - }, - { - "id": "kzwK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "type": "harmony side effect evaluation", - "userRequest": "./TooltipHost.styles", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.js", - "type": "harmony import specifier", - "userRequest": "./TooltipHost.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-TooltipHost',\n ariaPlaceholder: 'ms-TooltipHost-aria-placeholder',\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n display: 'inline',\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=TooltipHost.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "index": 794, - "index2": 789, - "size": 5179, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaCoin.styles", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "type": "harmony import specifier", - "userRequest": "./PersonaCoin.styles", - "loc": "7:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, FontWeights, getGlobalClassNames, getHighContrastNoAdjustStyle } from '../../../Styling';\nimport { sizeBoolean, sizeToPixels } from '../PersonaConsts';\nvar GlobalClassNames = {\n coin: 'ms-Persona-coin',\n imageArea: 'ms-Persona-imageArea',\n image: 'ms-Persona-image',\n initials: 'ms-Persona-initials',\n size8: 'ms-Persona--size8',\n size10: 'ms-Persona--size10',\n size16: 'ms-Persona--size16',\n size24: 'ms-Persona--size24',\n size28: 'ms-Persona--size28',\n size32: 'ms-Persona--size32',\n size40: 'ms-Persona--size40',\n size48: 'ms-Persona--size48',\n size56: 'ms-Persona--size56',\n size72: 'ms-Persona--size72',\n size100: 'ms-Persona--size100',\n size120: 'ms-Persona--size120',\n};\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, theme = props.theme, coinSize = props.coinSize;\n var palette = theme.palette, fonts = theme.fonts;\n var size = sizeBoolean(props.size);\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n // Static colors used when displaying 'unknown persona' coin\n var unknownPersonaBackgroundColor = 'rgb(234, 234, 234)';\n var unknownPersonaFontColor = 'rgb(168, 0, 0)';\n var dimension = coinSize || (props.size && sizeToPixels[props.size]) || 48;\n return {\n coin: [\n classNames.coin,\n fonts.medium,\n size.isSize8 && classNames.size8,\n size.isSize10 && classNames.size10,\n size.isSize16 && classNames.size16,\n size.isSize24 && classNames.size24,\n size.isSize28 && classNames.size28,\n size.isSize32 && classNames.size32,\n size.isSize40 && classNames.size40,\n size.isSize48 && classNames.size48,\n size.isSize56 && classNames.size56,\n size.isSize72 && classNames.size72,\n size.isSize100 && classNames.size100,\n size.isSize120 && classNames.size120,\n className,\n ],\n size10WithoutPresenceIcon: {\n fontSize: fonts.xSmall.fontSize,\n position: 'absolute',\n top: '5px',\n right: 'auto',\n left: 0,\n },\n imageArea: [\n classNames.imageArea,\n {\n position: 'relative',\n textAlign: 'center',\n flex: '0 0 auto',\n height: dimension,\n width: dimension,\n },\n dimension <= 10 && {\n overflow: 'visible',\n background: 'transparent',\n height: 0,\n width: 0,\n },\n ],\n image: [\n classNames.image,\n {\n marginRight: '10px',\n position: 'absolute',\n top: 0,\n left: 0,\n width: '100%',\n height: '100%',\n border: 0,\n borderRadius: '50%',\n perspective: '1px',\n },\n dimension <= 10 && {\n overflow: 'visible',\n background: 'transparent',\n height: 0,\n width: 0,\n },\n dimension > 10 && {\n height: dimension,\n width: dimension,\n },\n ],\n initials: [\n classNames.initials,\n {\n borderRadius: '50%',\n color: props.showUnknownPersonaCoin ? unknownPersonaFontColor : palette.white,\n fontSize: fonts.large.fontSize,\n fontWeight: FontWeights.semibold,\n // copying the logic for the dimensions; defaulted to 46 for size48\n lineHeight: dimension === 48 ? 46 : dimension,\n height: dimension,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign(__assign({ border: '1px solid WindowText' }, getHighContrastNoAdjustStyle()), { color: 'WindowText', boxSizing: 'border-box', backgroundColor: 'Window !important' }),\n _a.i = {\n fontWeight: FontWeights.semibold,\n },\n _a),\n },\n props.showUnknownPersonaCoin && {\n backgroundColor: unknownPersonaBackgroundColor,\n },\n dimension < 32 && {\n fontSize: fonts.xSmall.fontSize,\n },\n dimension >= 32 &&\n dimension < 40 && {\n fontSize: fonts.medium.fontSize,\n },\n dimension >= 40 &&\n dimension < 56 && {\n fontSize: fonts.mediumPlus.fontSize,\n },\n dimension >= 56 &&\n dimension < 72 && {\n fontSize: fonts.xLarge.fontSize,\n },\n dimension >= 72 &&\n dimension < 100 && {\n fontSize: fonts.xxLarge.fontSize,\n },\n dimension >= 100 && {\n fontSize: fonts.superLarge.fontSize,\n },\n ],\n };\n};\n//# sourceMappingURL=PersonaCoin.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "index": 808, - "index2": 803, - "size": 639, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "fYfa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Facepile.js", - "name": "./node_modules/office-ui-fabric-react/lib/Facepile.js" - }, - { - "id": "fANu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./FacepileButton.styles", - "loc": "5:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "type": "harmony import specifier", - "userRequest": "./FacepileButton.styles", - "loc": "13:27-36" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { concatStyleSets } from '../../Styling';\nimport { memoizeFunction } from '../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../Button/BaseButton.styles';\nexport var getStyles = memoizeFunction(function (theme, className, customStyles) {\n var baseButtonStyles = getBaseButtonStyles(theme);\n var customButtonStyles = concatStyleSets(baseButtonStyles, customStyles);\n return __assign(__assign({}, customButtonStyles), { root: [baseButtonStyles.root, className, theme.fonts.medium, customStyles && customStyles.root] });\n});\n//# sourceMappingURL=FacepileButton.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js", - "index": 383, - "index2": 376, - "size": 3585, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.types", - "loc": "4:0-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image.types", - "loc": "5:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "14:28-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "../Image/Image.types", - "loc": "19:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "25:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "34:27-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "38:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "45:27-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "48:42-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "71:36-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "71:76-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "72:40-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "73:35-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "74:42-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "75:40-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "76:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "77:34-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "78:33-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "79:35-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "89:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "101:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "109:26-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "110:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "111:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "112:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "119:52-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "119:91-99" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "129:35-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "132:35-50" - } - ], - "usedExports": [ - "ImageLoadState", - "ImageCoverStyle", - "ImageFit" - ], - "providedExports": [ - "ImageFit", - "ImageCoverStyle", - "ImageLoadState" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/**\n * The possible methods that can be used to fit the image.\n * {@docCategory Image}\n */\nexport var ImageFit;\n(function (ImageFit) {\n /**\n * The image is not scaled. The image is centered and cropped within the content box.\n */\n ImageFit[ImageFit[\"center\"] = 0] = \"center\";\n /**\n * The image is scaled to maintain its aspect ratio while being fully contained within the frame. The image will\n * be centered horizontally and vertically within the frame. The space in the top and bottom or in the sides of\n * the frame will be empty depending on the difference in aspect ratio between the image and the frame.\n */\n ImageFit[ImageFit[\"contain\"] = 1] = \"contain\";\n /**\n * The image is scaled to maintain its aspect ratio while filling the frame. Portions of the image will be cropped from\n * the top and bottom, or from the sides, depending on the difference in aspect ratio between the image and the frame.\n */\n ImageFit[ImageFit[\"cover\"] = 2] = \"cover\";\n /**\n * Neither the image nor the frame are scaled. If their sizes do not match, the image will either be cropped or the\n * frame will have empty space.\n */\n ImageFit[ImageFit[\"none\"] = 3] = \"none\";\n /**\n * The image will be centered horizontally and vertically within the frame and maintains its aspect ratio. It will\n * behave as ImageFit.center if the image's natural height or width is less than the Image frame's height or width,\n * but if both natural height and width are larger than the frame it will behave as ImageFit.cover.\n */\n ImageFit[ImageFit[\"centerCover\"] = 4] = \"centerCover\";\n /**\n * The image will be centered horizontally and vertically within the frame and maintains its aspect ratio. It will\n * behave as ImageFit.center if the image's natural height and width is less than the Image frame's height and width,\n * but if either natural height or width are larger than the frame it will behave as ImageFit.contain.\n */\n ImageFit[ImageFit[\"centerContain\"] = 5] = \"centerContain\";\n})(ImageFit || (ImageFit = {}));\n/**\n * The cover style to be used on the image\n * {@docCategory Image}\n */\nexport var ImageCoverStyle;\n(function (ImageCoverStyle) {\n /**\n * The image will be shown at 100% height of container and the width will be scaled accordingly\n */\n ImageCoverStyle[ImageCoverStyle[\"landscape\"] = 0] = \"landscape\";\n /**\n * The image will be shown at 100% width of container and the height will be scaled accordingly\n */\n ImageCoverStyle[ImageCoverStyle[\"portrait\"] = 1] = \"portrait\";\n})(ImageCoverStyle || (ImageCoverStyle = {}));\n/**\n * {@docCategory Image}\n */\nexport var ImageLoadState;\n(function (ImageLoadState) {\n /**\n * The image has not yet been loaded, and there is no error yet.\n */\n ImageLoadState[ImageLoadState[\"notLoaded\"] = 0] = \"notLoaded\";\n /**\n * The image has been loaded successfully.\n */\n ImageLoadState[ImageLoadState[\"loaded\"] = 1] = \"loaded\";\n /**\n * An error has been encountered while loading the image.\n */\n ImageLoadState[ImageLoadState[\"error\"] = 2] = \"error\";\n /**\n * Deprecated at v1.3.6, to replace the src in case of errors, use `onLoadingStateChange` instead\n * and rerender the Image with a difference src.\n * @deprecated Use `onLoadingStateChange` instead\n * and rerender the Image with a difference src.\n */\n ImageLoadState[ImageLoadState[\"errorLoaded\"] = 3] = \"errorLoaded\";\n})(ImageLoadState || (ImageLoadState = {}));\n//# sourceMappingURL=Image.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "index": 434, - "index2": 429, - "size": 251, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "4:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "44:60-65" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "3:0-39" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "16:28-33" - } - ], - "usedExports": [ - "Image" - ], - "providedExports": [ - "Image" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { styled } from '../../Utilities';\nimport { ImageBase } from './Image.base';\nimport { getStyles } from './Image.styles';\nexport var Image = styled(ImageBase, getStyles, undefined, {\n scope: 'Image'\n}, true);\n//# sourceMappingURL=Image.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "index": 433, - "index2": 425, - "size": 1055, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "3:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "8:35-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "32:132-139" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "32:141-151" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "32:186-196" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "5:0-52" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "15:106-113" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "15:115-125" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "15:132-142" - } - ], - "usedExports": [ - "getStyles", - "MS_ICON", - "classNames" - ], - "providedExports": [ - "classNames", - "MS_ICON", - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { mergeStyleSets } from '../../Styling';\n/** Class names used in themeable and non-themeable Icon components */\nexport var classNames = mergeStyleSets({\n root: {\n display: 'inline-block'\n },\n placeholder: [\n 'ms-Icon-placeHolder',\n {\n width: '1em'\n }\n ],\n image: [\n 'ms-Icon-imageContainer',\n {\n overflow: 'hidden'\n }\n ]\n});\n/** Class name used only in non-themeable Icon components */\nexport var MS_ICON = 'ms-Icon';\nexport var getStyles = function (props) {\n var className = props.className, iconClassName = props.iconClassName, isPlaceholder = props.isPlaceholder, isImage = props.isImage, styles = props.styles;\n return {\n root: [\n isPlaceholder && classNames.placeholder,\n classNames.root,\n isImage && classNames.image,\n iconClassName,\n className,\n styles && styles.root,\n styles && styles.imageContainer\n ]\n };\n};\n//# sourceMappingURL=Icon.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "index": 639, - "index2": 669, - "size": 30669, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "2eko", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "21:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "21:36-46" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseButton", - "loc": "1:0-29" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./BaseButton", - "loc": "1:0-29" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "21:36-46" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "21:36-46" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "21:36-46" - } - ], - "usedExports": [ - "BaseButton" - ], - "providedExports": [ - "BaseButton" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseComponent, anchorProperties, assign, buttonProperties, getId, getNativeProps, KeyCodes, css, mergeAriaAttributeValues, portalContainsElement } from '../../Utilities';\nimport { Icon } from '../../Icon';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { ContextualMenu } from '../../ContextualMenu';\nimport { getBaseButtonClassNames } from './BaseButton.classNames';\nimport { getClassNames as getBaseSplitButtonClassNames } from './SplitButton/SplitButton.classNames';\nimport { KeytipData } from '../../KeytipData';\nvar TouchIdleDelay = 500; /* ms */\n/**\n * {@docCategory Button}\n */\nvar BaseButton = /** @class */ (function (_super) {\n tslib_1.__extends(BaseButton, _super);\n function BaseButton(props, rootClassName) {\n var _this = _super.call(this, props) || this;\n _this._buttonElement = React.createRef();\n _this._splitButtonContainer = React.createRef();\n _this._renderedPersistentMenu = false;\n _this._onRenderIcon = function (buttonProps, defaultRender) {\n var iconProps = _this.props.iconProps;\n if (iconProps && (iconProps.iconName !== undefined || iconProps.imageProps)) {\n var className = iconProps.className, rest = tslib_1.__rest(iconProps, [\"className\"]);\n return React.createElement(Icon, tslib_1.__assign({ className: css(_this._classNames.icon, className) }, rest));\n }\n return null;\n };\n _this._onRenderTextContents = function () {\n var _a = _this.props, text = _a.text, children = _a.children, _b = _a.secondaryText, secondaryText = _b === void 0 ? _this.props.description : _b, _c = _a.onRenderText, onRenderText = _c === void 0 ? _this._onRenderText : _c, _d = _a.onRenderDescription, onRenderDescription = _d === void 0 ? _this._onRenderDescription : _d;\n if (text || typeof children === 'string' || secondaryText) {\n return (React.createElement(\"div\", { className: _this._classNames.textContainer },\n onRenderText(_this.props, _this._onRenderText),\n onRenderDescription(_this.props, _this._onRenderDescription)));\n }\n return [onRenderText(_this.props, _this._onRenderText), onRenderDescription(_this.props, _this._onRenderDescription)];\n };\n _this._onRenderText = function () {\n var text = _this.props.text;\n var children = _this.props.children;\n // For backwards compat, we should continue to take in the text content from children.\n if (text === undefined && typeof children === 'string') {\n text = children;\n }\n if (_this._hasText()) {\n return (React.createElement(\"div\", { key: _this._labelId, className: _this._classNames.label, id: _this._labelId }, text));\n }\n return null;\n };\n _this._onRenderChildren = function () {\n var children = _this.props.children;\n // If children is just a string, either it or the text will be rendered via onRenderLabel\n // If children is another component, it will be rendered after text\n if (typeof children === 'string') {\n return null;\n }\n return children;\n };\n _this._onRenderDescription = function (props) {\n var _a = props.secondaryText, secondaryText = _a === void 0 ? _this.props.description : _a;\n // ms-Button-description is only shown when the button type is compound.\n // In other cases it will not be displayed.\n return secondaryText ? (React.createElement(\"div\", { key: _this._descriptionId, className: _this._classNames.description, id: _this._descriptionId }, secondaryText)) : null;\n };\n _this._onRenderAriaDescription = function () {\n var ariaDescription = _this.props.ariaDescription;\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan,\n // otherwise it will be assigned to descriptionSpan.\n return ariaDescription ? (React.createElement(\"span\", { className: _this._classNames.screenReaderText, id: _this._ariaDescriptionId }, ariaDescription)) : null;\n };\n _this._onRenderMenuIcon = function (props) {\n var menuIconProps = _this.props.menuIconProps;\n return React.createElement(Icon, tslib_1.__assign({ iconName: \"ChevronDown\" }, menuIconProps, { className: _this._classNames.menuIcon }));\n };\n _this._onRenderMenu = function (menuProps) {\n var _a = menuProps.onDismiss, onDismiss = _a === void 0 ? _this._dismissMenu : _a;\n var MenuType = _this.props.menuAs || ContextualMenu;\n // the accessible menu label (accessible name) has a relationship to the button.\n // If the menu props do not specify an explicit value for aria-label or aria-labelledBy,\n // AND the button has text, we'll set the menu aria-labelledBy to the text element id.\n if (!menuProps.ariaLabel && !menuProps.labelElementId && _this._hasText()) {\n menuProps = tslib_1.__assign({}, menuProps, { labelElementId: _this._labelId });\n }\n return (React.createElement(MenuType, tslib_1.__assign({ id: _this._labelId + '-menu', directionalHint: DirectionalHint.bottomLeftEdge }, menuProps, { shouldFocusOnContainer: _this.state.menuProps ? _this.state.menuProps.shouldFocusOnContainer : undefined, shouldFocusOnMount: _this.state.menuProps ? _this.state.menuProps.shouldFocusOnMount : undefined, hidden: _this.state.menuProps ? _this.state.menuProps.hidden : undefined, className: css('ms-BaseButton-menuhost', menuProps.className), target: _this._isSplitButton ? _this._splitButtonContainer.current : _this._buttonElement.current, onDismiss: onDismiss })));\n };\n _this._dismissMenu = function () {\n var menuProps = null;\n if (_this.props.persistMenu && _this.state.menuProps) {\n // Create a new object to trigger componentDidUpdate\n menuProps = tslib_1.__assign({}, _this.state.menuProps, { hidden: true });\n }\n _this.setState({ menuProps: menuProps });\n };\n _this._openMenu = function (shouldFocusOnContainer, shouldFocusOnMount) {\n if (shouldFocusOnMount === void 0) { shouldFocusOnMount = true; }\n if (_this.props.menuProps) {\n var menuProps = tslib_1.__assign({}, _this.props.menuProps, { shouldFocusOnContainer: shouldFocusOnContainer, shouldFocusOnMount: shouldFocusOnMount });\n if (_this.props.persistMenu) {\n _this._renderedPersistentMenu = true;\n menuProps.hidden = false;\n }\n _this.setState({ menuProps: menuProps });\n }\n };\n _this._onToggleMenu = function (shouldFocusOnContainer) {\n var currentMenuProps = _this.state.menuProps;\n var shouldFocusOnMount = true;\n if (_this.props.menuProps && _this.props.menuProps.shouldFocusOnMount === false) {\n shouldFocusOnMount = false;\n }\n if (_this.props.persistMenu) {\n // _renderedPersistentMenu ensures that the first rendering of\n // the menu happens on-screen, as edge's scrollbar calcuations are off if done while hidden.\n !_this._renderedPersistentMenu || (currentMenuProps && currentMenuProps.hidden)\n ? _this._openMenu(shouldFocusOnContainer, shouldFocusOnMount)\n : _this._dismissMenu();\n }\n else {\n currentMenuProps ? _this._dismissMenu() : _this._openMenu(shouldFocusOnContainer, shouldFocusOnMount);\n }\n };\n _this._onSplitContainerFocusCapture = function (ev) {\n var container = _this._splitButtonContainer.current;\n // If the target is coming from the portal we do not need to set focus on the container.\n if (!container || (ev.target && portalContainsElement(ev.target, container))) {\n return;\n }\n // We should never be able to focus the individual buttons in a split button. Focus\n // should always remain on the container.\n container.focus();\n };\n _this._onSplitButtonPrimaryClick = function (ev) {\n if (_this._isExpanded) {\n _this._dismissMenu();\n }\n if (!_this._processingTouch && _this.props.onClick) {\n _this.props.onClick(ev);\n }\n else if (_this._processingTouch) {\n _this._onMenuClick(ev);\n }\n };\n _this._onKeyDown = function (ev) {\n // explicity cancelling event so click won't fire after this\n if (_this.props.disabled && (ev.which === KeyCodes.enter || ev.which === KeyCodes.space)) {\n ev.preventDefault();\n ev.stopPropagation();\n }\n else if (!_this.props.disabled) {\n if (_this.props.menuProps) {\n _this._onMenuKeyDown(ev);\n }\n else if (_this.props.onKeyDown !== undefined) {\n _this.props.onKeyDown(ev); // not cancelling event because it's not disabled\n }\n }\n };\n _this._onKeyUp = function (ev) {\n if (!_this.props.disabled && _this.props.onKeyUp !== undefined) {\n _this.props.onKeyUp(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onKeyPress = function (ev) {\n if (!_this.props.disabled && _this.props.onKeyPress !== undefined) {\n _this.props.onKeyPress(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onMouseUp = function (ev) {\n if (!_this.props.disabled && _this.props.onMouseUp !== undefined) {\n _this.props.onMouseUp(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onMouseDown = function (ev) {\n if (!_this.props.disabled && _this.props.onMouseDown !== undefined) {\n _this.props.onMouseDown(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onClick = function (ev) {\n if (!_this.props.disabled) {\n if (_this.props.menuProps) {\n _this._onMenuClick(ev);\n }\n else if (_this.props.onClick !== undefined) {\n _this.props.onClick(ev); // not cancelling event because it's not disabled\n }\n }\n };\n _this._onSplitButtonContainerKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter) {\n if (_this._buttonElement.current) {\n _this._buttonElement.current.click();\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n else {\n _this._onMenuKeyDown(ev);\n }\n };\n _this._onMenuKeyDown = function (ev) {\n if (_this.props.disabled) {\n return;\n }\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n }\n var isUp = ev.which === KeyCodes.up;\n var isDown = ev.which === KeyCodes.down;\n if (!ev.defaultPrevented && _this._isValidMenuOpenKey(ev)) {\n var onMenuClick = _this.props.onMenuClick;\n if (onMenuClick) {\n onMenuClick(ev, _this);\n }\n _this._onToggleMenu(false);\n ev.preventDefault();\n ev.stopPropagation();\n }\n if (!(ev.altKey || ev.metaKey) && (isUp || isDown)) {\n _this.setState(function (state) {\n if (state.menuProps && !state.menuProps.shouldFocusOnMount) {\n return { menuProps: tslib_1.__assign({}, state.menuProps, { shouldFocusOnMount: true }) };\n }\n return state;\n });\n // This should be done in the setStateCallback but because preventDefault\n // needs to be called, we have to evaluate the current state, even though\n // it might not be 100% accurate;\n if (_this.state.menuProps && !_this.state.menuProps.shouldFocusOnMount) {\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n _this._onTouchStart = function () {\n if (_this._isSplitButton && _this._splitButtonContainer.current && !('onpointerdown' in _this._splitButtonContainer.current)) {\n _this._handleTouchAndPointerEvent();\n }\n };\n _this._onMenuClick = function (ev) {\n var onMenuClick = _this.props.onMenuClick;\n if (onMenuClick) {\n onMenuClick(ev, _this);\n }\n if (!ev.defaultPrevented) {\n // When Edge + Narrator are used together (regardless of if the button is in a form or not), pressing\n // \"Enter\" fires this method and not _onMenuKeyDown. Checking ev.nativeEvent.detail differentiates\n // between a real click event and a keypress event (detail should be the number of mouse clicks).\n // ...Plot twist! For a real click event in IE 11, detail is always 0 (Edge sets it properly to 1).\n // So we also check the pointerType property, which both Edge and IE set to \"mouse\" for real clicks\n // and \"\" for pressing \"Enter\" with Narrator on.\n var shouldFocusOnContainer = ev.nativeEvent.detail !== 0 || ev.nativeEvent.pointerType === 'mouse';\n _this._onToggleMenu(shouldFocusOnContainer);\n ev.preventDefault();\n ev.stopPropagation();\n }\n };\n _this._warnConditionallyRequiredProps(['menuProps', 'onClick'], 'split', _this.props.split);\n _this._warnDeprecations({\n rootProps: undefined,\n description: 'secondaryText',\n toggled: 'checked'\n });\n _this._labelId = getId();\n _this._descriptionId = getId();\n _this._ariaDescriptionId = getId();\n _this.state = {\n menuProps: null\n };\n return _this;\n }\n Object.defineProperty(BaseButton.prototype, \"_isSplitButton\", {\n get: function () {\n return !!this.props.menuProps && !!this.props.onClick && this.props.split === true;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseButton.prototype, \"_isExpanded\", {\n get: function () {\n var menuProps = this.state.menuProps;\n if (this.props.persistMenu) {\n return !!menuProps && !menuProps.hidden;\n }\n return !!menuProps;\n },\n enumerable: true,\n configurable: true\n });\n BaseButton.prototype.render = function () {\n var _a = this.props, ariaDescription = _a.ariaDescription, ariaLabel = _a.ariaLabel, ariaHidden = _a.ariaHidden, className = _a.className, disabled = _a.disabled, allowDisabledFocus = _a.allowDisabledFocus, primaryDisabled = _a.primaryDisabled, _b = _a.secondaryText, secondaryText = _b === void 0 ? this.props.description : _b, href = _a.href, iconProps = _a.iconProps, menuIconProps = _a.menuIconProps, styles = _a.styles, checked = _a.checked, variantClassName = _a.variantClassName, theme = _a.theme, toggle = _a.toggle, getClassNames = _a.getClassNames;\n // Button is disabled if the whole button (in case of splitbutton is disabled) or if the primary action is disabled\n var isPrimaryButtonDisabled = disabled || primaryDisabled;\n this._classNames = getClassNames\n ? getClassNames(theme, className, variantClassName, iconProps && iconProps.className, menuIconProps && menuIconProps.className, isPrimaryButtonDisabled, checked, this._isExpanded, this.props.split, !!allowDisabledFocus)\n : getBaseButtonClassNames(theme, styles, className, variantClassName, iconProps && iconProps.className, menuIconProps && menuIconProps.className, isPrimaryButtonDisabled, checked, this._isExpanded, this.props.split);\n var _c = this, _ariaDescriptionId = _c._ariaDescriptionId, _labelId = _c._labelId, _descriptionId = _c._descriptionId;\n // Anchor tag cannot be disabled hence in disabled state rendering\n // anchor button as normal button\n var renderAsAnchor = !isPrimaryButtonDisabled && !!href;\n var tag = renderAsAnchor ? 'a' : 'button';\n var nativeProps = getNativeProps(assign(renderAsAnchor ? {} : { type: 'button' }, this.props.rootProps, this.props), renderAsAnchor ? anchorProperties : buttonProperties, [\n 'disabled' // let disabled buttons be focused and styled as disabled.\n ]);\n // Check for ariaLabel passed in via Button props, and fall back to aria-label passed in via native props\n var resolvedAriaLabel = ariaLabel || nativeProps['aria-label'];\n // Check for ariaDescription, secondaryText or aria-describedby in the native props to determine source of aria-describedby\n // otherwise default to undefined so property does not appear in output.\n var ariaDescribedBy = undefined;\n if (ariaDescription) {\n ariaDescribedBy = _ariaDescriptionId;\n }\n else if (secondaryText) {\n ariaDescribedBy = _descriptionId;\n }\n else if (nativeProps['aria-describedby']) {\n ariaDescribedBy = nativeProps['aria-describedby'];\n }\n // If an explicit ariaLabel is given, use that as the label and we're done.\n // If an explicit aria-labelledby is given, use that and we're done.\n // If any kind of description is given (which will end up as an aria-describedby attribute),\n // set the labelledby element. Otherwise, the button is labeled implicitly by the descendent\n // text on the button (if it exists). Never set both aria-label and aria-labelledby.\n var ariaLabelledBy = undefined;\n if (!resolvedAriaLabel) {\n if (nativeProps['aria-labelledby']) {\n ariaLabelledBy = nativeProps['aria-labelledby'];\n }\n else if (ariaDescribedBy) {\n ariaLabelledBy = this._hasText() ? _labelId : undefined;\n }\n }\n var dataIsFocusable = this.props['data-is-focusable'] === false || (disabled && !allowDisabledFocus) || this._isSplitButton ? false : true;\n var buttonProps = assign(nativeProps, {\n className: this._classNames.root,\n ref: this._buttonElement,\n disabled: isPrimaryButtonDisabled && !allowDisabledFocus,\n onKeyDown: this._onKeyDown,\n onKeyPress: this._onKeyPress,\n onKeyUp: this._onKeyUp,\n onMouseDown: this._onMouseDown,\n onMouseUp: this._onMouseUp,\n onClick: this._onClick,\n 'aria-label': resolvedAriaLabel,\n 'aria-labelledby': ariaLabelledBy,\n 'aria-describedby': ariaDescribedBy,\n 'aria-disabled': isPrimaryButtonDisabled,\n 'data-is-focusable': dataIsFocusable,\n 'aria-pressed': toggle ? !!checked : undefined // aria-pressed attribute should only be present for toggle buttons\n });\n if (ariaHidden) {\n buttonProps['aria-hidden'] = true;\n }\n if (this._isSplitButton) {\n return this._onRenderSplitButtonContent(tag, buttonProps);\n }\n else if (this.props.menuProps) {\n assign(buttonProps, {\n 'aria-expanded': this._isExpanded,\n 'aria-owns': this.state.menuProps ? this._labelId + '-menu' : null,\n 'aria-haspopup': true\n });\n }\n return this._onRenderContent(tag, buttonProps);\n };\n BaseButton.prototype.componentDidMount = function () {\n // For split buttons, touching anywhere in the button should drop the dropdown, which should contain the primary action.\n // This gives more hit target space for touch environments. We're setting the onpointerdown here, because React\n // does not support Pointer events yet.\n if (this._isSplitButton && this._splitButtonContainer.current && 'onpointerdown' in this._splitButtonContainer.current) {\n this._events.on(this._splitButtonContainer.current, 'pointerdown', this._onPointerDown, true);\n }\n };\n BaseButton.prototype.componentDidUpdate = function (prevProps, prevState) {\n // If Button's menu was closed, run onAfterMenuDismiss. If the menu is being persisted\n // this condition is tested by checking on a change on the menuProps hidden value.\n if (this.props.onAfterMenuDismiss && prevState.menuProps) {\n if (!this.state.menuProps || (this.props.persistMenu && !prevState.menuProps.hidden && this.state.menuProps.hidden)) {\n this.props.onAfterMenuDismiss();\n }\n }\n };\n BaseButton.prototype.focus = function () {\n if (this._isSplitButton && this._splitButtonContainer.current) {\n this._splitButtonContainer.current.focus();\n }\n else if (this._buttonElement.current) {\n this._buttonElement.current.focus();\n }\n };\n BaseButton.prototype.dismissMenu = function () {\n this._dismissMenu();\n };\n BaseButton.prototype.openMenu = function (shouldFocusOnContainer, shouldFocusOnMount) {\n this._openMenu(shouldFocusOnContainer, shouldFocusOnMount);\n };\n BaseButton.prototype._onRenderContent = function (tag, buttonProps) {\n var _this = this;\n var props = this.props;\n var Tag = tag;\n var menuIconProps = props.menuIconProps, menuProps = props.menuProps, _a = props.onRenderIcon, onRenderIcon = _a === void 0 ? this._onRenderIcon : _a, _b = props.onRenderAriaDescription, onRenderAriaDescription = _b === void 0 ? this._onRenderAriaDescription : _b, _c = props.onRenderChildren, onRenderChildren = _c === void 0 ? this._onRenderChildren : _c, _d = props.onRenderMenu, onRenderMenu = _d === void 0 ? this._onRenderMenu : _d, _e = props.onRenderMenuIcon, onRenderMenuIcon = _e === void 0 ? this._onRenderMenuIcon : _e, disabled = props.disabled;\n var keytipProps = props.keytipProps;\n if (keytipProps && menuProps) {\n keytipProps = tslib_1.__assign({}, keytipProps, { hasMenu: true });\n }\n var Content = (\n // If we're making a split button, we won't put the keytip here\n React.createElement(KeytipData, { keytipProps: !this._isSplitButton ? keytipProps : undefined, ariaDescribedBy: buttonProps['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return (React.createElement(Tag, tslib_1.__assign({}, buttonProps, keytipAttributes),\n React.createElement(\"div\", { className: _this._classNames.flexContainer },\n onRenderIcon(props, _this._onRenderIcon),\n _this._onRenderTextContents(),\n onRenderAriaDescription(props, _this._onRenderAriaDescription),\n onRenderChildren(props, _this._onRenderChildren),\n !_this._isSplitButton &&\n (menuProps || menuIconProps || _this.props.onRenderMenuIcon) &&\n onRenderMenuIcon(_this.props, _this._onRenderMenuIcon),\n _this.state.menuProps && !_this.state.menuProps.doNotLayer && onRenderMenu(menuProps, _this._onRenderMenu)))); }));\n if (menuProps && menuProps.doNotLayer) {\n return (React.createElement(\"div\", { style: { display: 'inline-block' } },\n Content,\n this.state.menuProps && onRenderMenu(menuProps, this._onRenderMenu)));\n }\n return Content;\n };\n BaseButton.prototype._hasText = function () {\n // _onRenderTextContents and _onRenderText do not perform the same checks. Below is parity with what _onRenderText used to have\n // before the refactor that introduced this function. _onRenderTextContents does not require props.text to be undefined in order\n // for props.children to be used as a fallback. Purely a code maintainability/reuse issue, but logged as Issue #4979\n return this.props.text !== null && (this.props.text !== undefined || typeof this.props.children === 'string');\n };\n BaseButton.prototype._onRenderSplitButtonContent = function (tag, buttonProps) {\n var _this = this;\n var _a = this.props, _b = _a.styles, styles = _b === void 0 ? {} : _b, disabled = _a.disabled, allowDisabledFocus = _a.allowDisabledFocus, checked = _a.checked, getSplitButtonClassNames = _a.getSplitButtonClassNames, primaryDisabled = _a.primaryDisabled, menuProps = _a.menuProps, toggle = _a.toggle;\n var keytipProps = this.props.keytipProps;\n var classNames = getSplitButtonClassNames\n ? getSplitButtonClassNames(!!disabled, this._isExpanded, !!checked, !!allowDisabledFocus)\n : styles && getBaseSplitButtonClassNames(styles, !!disabled, this._isExpanded, !!checked, !!primaryDisabled);\n assign(buttonProps, {\n onClick: undefined,\n tabIndex: -1,\n 'data-is-focusable': false\n });\n var ariaDescribedBy = buttonProps.ariaDescription;\n if (keytipProps && menuProps) {\n keytipProps = tslib_1.__assign({}, keytipProps, { hasMenu: true });\n }\n var containerProps = getNativeProps(buttonProps, [], ['disabled']);\n return (React.createElement(KeytipData, { keytipProps: keytipProps, disabled: disabled }, function (keytipAttributes) { return (React.createElement(\"div\", tslib_1.__assign({}, containerProps, { \"data-ktp-target\": keytipAttributes['data-ktp-target'], role: 'button', \"aria-disabled\": disabled, \"aria-haspopup\": true, \"aria-expanded\": _this._isExpanded, \"aria-pressed\": toggle ? !!checked : undefined, \"aria-describedby\": mergeAriaAttributeValues(ariaDescribedBy, keytipAttributes['aria-describedby']), className: classNames && classNames.splitButtonContainer, onKeyDown: _this._onSplitButtonContainerKeyDown, onTouchStart: _this._onTouchStart, ref: _this._splitButtonContainer, \"data-is-focusable\": true, onClick: !disabled && !primaryDisabled ? _this._onSplitButtonPrimaryClick : undefined, tabIndex: !disabled || allowDisabledFocus ? 0 : undefined, \"aria-roledescription\": buttonProps['aria-roledescription'], onFocusCapture: _this._onSplitContainerFocusCapture }),\n React.createElement(\"span\", { style: { display: 'flex' } },\n _this._onRenderContent(tag, buttonProps),\n _this._onRenderSplitButtonMenuButton(classNames, keytipAttributes),\n _this._onRenderSplitButtonDivider(classNames)))); }));\n };\n BaseButton.prototype._onRenderSplitButtonDivider = function (classNames) {\n if (classNames && classNames.divider) {\n return React.createElement(\"span\", { className: classNames.divider, \"aria-hidden\": true });\n }\n return null;\n };\n BaseButton.prototype._onRenderSplitButtonMenuButton = function (classNames, keytipAttributes) {\n var _a = this.props, allowDisabledFocus = _a.allowDisabledFocus, checked = _a.checked, disabled = _a.disabled;\n var menuIconProps = this.props.menuIconProps;\n var splitButtonAriaLabel = this.props.splitButtonAriaLabel;\n if (menuIconProps === undefined) {\n menuIconProps = {\n iconName: 'ChevronDown'\n };\n }\n var splitButtonProps = {\n styles: classNames,\n checked: checked,\n disabled: disabled,\n allowDisabledFocus: allowDisabledFocus,\n onClick: this._onMenuClick,\n menuProps: undefined,\n iconProps: tslib_1.__assign({}, menuIconProps, { className: this._classNames.menuIcon }),\n ariaLabel: splitButtonAriaLabel,\n 'aria-haspopup': true,\n 'aria-expanded': this._isExpanded,\n 'data-is-focusable': false\n };\n // Add data-ktp-execute-target to the split button if the keytip is defined\n return (React.createElement(BaseButton, tslib_1.__assign({}, splitButtonProps, { \"data-ktp-execute-target\": keytipAttributes['data-ktp-execute-target'], onMouseDown: this._onMouseDown, tabIndex: -1 })));\n };\n BaseButton.prototype._onPointerDown = function (ev) {\n if (ev.pointerType === 'touch') {\n this._handleTouchAndPointerEvent();\n ev.preventDefault();\n ev.stopImmediatePropagation();\n }\n };\n BaseButton.prototype._handleTouchAndPointerEvent = function () {\n var _this = this;\n // If we already have an existing timeeout from a previous touch and pointer event\n // cancel that timeout so we can set a nwe one.\n if (this._lastTouchTimeoutId !== undefined) {\n this._async.clearTimeout(this._lastTouchTimeoutId);\n this._lastTouchTimeoutId = undefined;\n }\n this._processingTouch = true;\n this._lastTouchTimeoutId = this._async.setTimeout(function () {\n _this._processingTouch = false;\n _this._lastTouchTimeoutId = undefined;\n }, TouchIdleDelay);\n };\n /**\n * Returns if the user hits a valid keyboard key to open the menu\n * @param ev - the keyboard event\n * @returns True if user clicks on custom trigger key if enabled or alt + down arrow if not. False otherwise.\n */\n BaseButton.prototype._isValidMenuOpenKey = function (ev) {\n if (this.props.menuTriggerKeyCode) {\n return ev.which === this.props.menuTriggerKeyCode;\n }\n else if (this.props.menuProps) {\n return ev.which === KeyCodes.down && (ev.altKey || ev.metaKey);\n }\n // Note: When enter is pressed, we will let the event continue to propagate\n // to trigger the onClick event on the button\n return false;\n };\n BaseButton.defaultProps = {\n baseClassName: 'ms-Button',\n styles: {},\n split: false\n };\n return BaseButton;\n}(BaseComponent));\nexport { BaseButton };\n//# sourceMappingURL=BaseButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "index": 638, - "index2": 673, - "size": 1204, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "2eko", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "33:105-115" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "34:128-138" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "8:0-53" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./IconButton/IconButton", - "loc": "35:43-53" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - } - ], - "usedExports": [ - "IconButton" - ], - "providedExports": [ - "IconButton" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { BaseComponent, customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './IconButton.styles';\n/**\n * {@docCategory Button}\n */\nvar IconButton = /** @class */ (function (_super) {\n tslib_1.__extends(IconButton, _super);\n function IconButton() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n /**\n * Tell BaseComponent to bypass resolution of componentRef.\n */\n _this._skipComponentRefResolution = true;\n return _this;\n }\n IconButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, tslib_1.__assign({}, this.props, { variantClassName: \"ms-Button--icon\", styles: getStyles(theme, styles), onRenderText: nullRender, onRenderDescription: nullRender })));\n };\n IconButton = tslib_1.__decorate([\n customizable('IconButton', ['theme', 'styles'], true)\n ], IconButton);\n return IconButton;\n}(BaseComponent));\nexport { IconButton };\n//# sourceMappingURL=IconButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/odata/batch.js", - "index": 708, - "index2": 701, - "size": 3763, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./batch.js", - "loc": "1:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./batch.js", - "loc": "1:0-27" - } - ], - "usedExports": [ - "Batch" - ], - "providedExports": [ - "Batch" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGUID } from \"@pnp/common\";\r\nvar Batch = /** @class */ (function () {\r\n function Batch(_batchId) {\r\n if (_batchId === void 0) { _batchId = getGUID(); }\r\n this._batchId = _batchId;\r\n this._reqs = [];\r\n this._deps = [];\r\n this._rDeps = [];\r\n this._index = -1;\r\n }\r\n Object.defineProperty(Batch.prototype, \"batchId\", {\r\n get: function () {\r\n return this._batchId;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(Batch.prototype, \"requests\", {\r\n /**\r\n * The requests contained in this batch\r\n */\r\n get: function () {\r\n // we sort these each time this is accessed\r\n return this._reqs.sort(function (info1, info2) { return info1.index - info2.index; });\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Not meant for use directly\r\n *\r\n * @param batchee The IQueryable for this batch to track in order\r\n */\r\n Batch.prototype.track = function (batchee) {\r\n batchee.data.batch = this;\r\n // we need to track the order requests are added to the batch to ensure we always\r\n // operate on them in order\r\n if (typeof batchee.data.batchIndex === \"undefined\" || batchee.data.batchIndex < 0) {\r\n batchee.data.batchIndex = ++this._index;\r\n }\r\n };\r\n /**\r\n * Adds the given request context to the batch for execution\r\n *\r\n * @param context Details of the request to batch\r\n */\r\n Batch.prototype.add = function (context) {\r\n var info = {\r\n id: context.requestId,\r\n index: context.batchIndex,\r\n method: context.method.toUpperCase(),\r\n options: context.options,\r\n parser: context.parser,\r\n reject: null,\r\n resolve: null,\r\n url: context.url,\r\n };\r\n // we create a new promise that will be resolved within the batch\r\n var p = new Promise(function (resolve, reject) {\r\n info.resolve = resolve;\r\n info.reject = reject;\r\n });\r\n this._reqs.push(info);\r\n return p;\r\n };\r\n /**\r\n * Adds a dependency insuring that some set of actions will occur before a batch is processed.\r\n * MUST be cleared using the returned resolve delegate to allow batches to run\r\n */\r\n Batch.prototype.addDependency = function () {\r\n var resolver = function () { return void (0); };\r\n this._deps.push(new Promise(function (resolve) {\r\n resolver = resolve;\r\n }));\r\n return resolver;\r\n };\r\n /**\r\n * The batch's execute method will not resolve util any promises added here resolve\r\n *\r\n * @param p The dependent promise\r\n */\r\n Batch.prototype.addResolveBatchDependency = function (p) {\r\n this._rDeps.push(p);\r\n };\r\n /**\r\n * Execute the current batch and resolve the associated promises\r\n *\r\n * @returns A promise which will be resolved once all of the batch's child promises have resolved\r\n */\r\n Batch.prototype.execute = function () {\r\n var _this = this;\r\n // we need to check the dependencies twice due to how different engines handle things.\r\n // We can get a second set of promises added during the first set resolving\r\n return Promise.all(this._deps)\r\n .then(function () { return Promise.all(_this._deps); })\r\n .then(function () { return _this.executeImpl(); })\r\n .then(function () { return Promise.all(_this._rDeps); })\r\n .then(function () { return void (0); });\r\n };\r\n return Batch;\r\n}());\r\nexport { Batch };\r\n//# sourceMappingURL=batch.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/caching.js", - "name": "./node_modules/@pnp/odata/caching.js", - "index": 709, - "index2": 702, - "size": 1475, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./caching.js", - "loc": "2:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./caching.js", - "loc": "2:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony side effect evaluation", - "userRequest": "./caching.js", - "loc": "4:0-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "./caching.js", - "loc": "107:39-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "./caching.js", - "loc": "135:37-57" - } - ], - "usedExports": [ - "CachingOptions", - "CachingParserWrapper" - ], - "providedExports": [ - "CachingOptions", - "CachingParserWrapper" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { PnPClientStorage } from \"@pnp/common\";\r\nvar storage = new PnPClientStorage();\r\nvar CachingOptions = /** @class */ (function () {\r\n function CachingOptions(key, storeName, expiration) {\r\n this.key = key;\r\n this.storeName = storeName;\r\n this.expiration = expiration;\r\n }\r\n Object.defineProperty(CachingOptions.prototype, \"store\", {\r\n get: function () {\r\n if (this.storeName === \"local\") {\r\n return storage.local;\r\n }\r\n else {\r\n return storage.session;\r\n }\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n return CachingOptions;\r\n}());\r\nexport { CachingOptions };\r\nvar CachingParserWrapper = /** @class */ (function () {\r\n function CachingParserWrapper(parser, cacheOptions) {\r\n this.parser = parser;\r\n this.cacheOptions = cacheOptions;\r\n }\r\n CachingParserWrapper.prototype.parse = function (response) {\r\n var _this = this;\r\n return this.parser.parse(response).then(function (r) { return _this.cacheData(r); });\r\n };\r\n CachingParserWrapper.prototype.cacheData = function (data) {\r\n if (this.cacheOptions.store !== null) {\r\n this.cacheOptions.store.put(this.cacheOptions.key, data, this.cacheOptions.expiration);\r\n }\r\n return data;\r\n };\r\n return CachingParserWrapper;\r\n}());\r\nexport { CachingParserWrapper };\r\n//# sourceMappingURL=caching.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/add-prop.js", - "name": "./node_modules/@pnp/odata/add-prop.js", - "index": 710, - "index2": 703, - "size": 586, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./add-prop.js", - "loc": "3:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./add-prop.js", - "loc": "3:0-30" - } - ], - "usedExports": false, - "providedExports": [ - "addProp" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/**\r\n * Adds a property to a target instance\r\n *\r\n * @param target The object to whose prototype we will add a property\r\n * @param name Property name\r\n * @param factory Factory method used to produce the property value\r\n * @param path Any additional path required to produce the value\r\n */\r\nexport function addProp(target, name, factory, path) {\r\n Reflect.defineProperty(target.prototype, name, {\r\n configurable: true,\r\n enumerable: true,\r\n get: function () {\r\n return factory(this, path);\r\n },\r\n });\r\n}\r\n//# sourceMappingURL=add-prop.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "name": "./node_modules/@pnp/odata/invokable-extensions.js", - "index": 712, - "index2": 705, - "size": 4829, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "./invokable-extensions.js", - "loc": "3:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./invokable-extensions.js", - "loc": "10:0-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions.js", - "loc": "10:0-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions.js", - "loc": "10:0-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions.js", - "loc": "10:0-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions.js", - "loc": "10:0-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions.js", - "loc": "10:0-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-extensions.js", - "loc": "10:0-144" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions.js", - "loc": "26:29-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions.js", - "loc": "28:27-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions.js", - "loc": "37:27-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions.js", - "loc": "46:27-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "./invokable-extensions.js", - "loc": "55:27-45" - } - ], - "usedExports": [ - "applyFactoryExtensions", - "extensionOrDefault" - ], - "providedExports": [ - "extendGlobal", - "extendObj", - "extendFactory", - "clearGlobalExtensions", - "disableExtensions", - "enableExtensions", - "applyFactoryExtensions", - "extensionOrDefault" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __read, __spreadArray } from \"tslib\";\r\nimport { isFunc, getGUID } from \"@pnp/common\";\r\nvar _enableExtensions = false;\r\nvar globalExtensions = [];\r\nvar factoryExtensions = new Map();\r\nvar ObjExtensionsSym = Symbol.for(\"43f7a601\");\r\n/**\r\n * Creates global extensions across all invokable objects\r\n *\r\n * @param e The global extensions to apply\r\n */\r\nexport var extendGlobal = function (e) {\r\n _enableExtensions = true;\r\n extendCol(globalExtensions, e);\r\n};\r\n/**\r\n * Applies the supplied extensions to a single instance\r\n *\r\n * @param target Object to which extensions are applied\r\n * @param extensions Extensions to apply\r\n */\r\n// eslint-disable-next-line @typescript-eslint/ban-types\r\nexport var extendObj = function (target, extensions) {\r\n _enableExtensions = true;\r\n if (!Reflect.has(target, ObjExtensionsSym)) {\r\n Reflect.set(target, ObjExtensionsSym, []);\r\n }\r\n extendCol(Reflect.get(target, ObjExtensionsSym), extensions);\r\n return target;\r\n};\r\n/**\r\n * Allows applying extensions to all instances created from the supplied factory\r\n *\r\n * @param factory The Invokable Factory method to extend\r\n * @param extensions Extensions to apply\r\n */\r\nexport var extendFactory = function (factory, extensions) {\r\n _enableExtensions = true;\r\n // factoryExtensions\r\n var proto = Reflect.getPrototypeOf(factory);\r\n if (!Reflect.has(proto, ObjExtensionsSym)) {\r\n Reflect.defineProperty(proto, ObjExtensionsSym, {\r\n value: getGUID(),\r\n });\r\n }\r\n var key = proto[ObjExtensionsSym];\r\n if (!factoryExtensions.has(key)) {\r\n factoryExtensions.set(key, []);\r\n }\r\n extendCol(factoryExtensions.get(key), extensions);\r\n};\r\nfunction extendCol(a, e) {\r\n if (Array.isArray(e)) {\r\n a.push.apply(a, __spreadArray([], __read(e)));\r\n }\r\n else {\r\n a.push(e);\r\n }\r\n}\r\n/**\r\n * Clears all global extensions\r\n */\r\nexport var clearGlobalExtensions = function () {\r\n globalExtensions.length = 0;\r\n};\r\n/**\r\n * Disables all extensions\r\n */\r\nexport var disableExtensions = function () {\r\n _enableExtensions = false;\r\n};\r\n/**\r\n * Enables all extensions\r\n */\r\nexport var enableExtensions = function () {\r\n _enableExtensions = true;\r\n};\r\n/**\r\n * Applies a set of extension previously applied to a factory using extendFactory to an object created from that factory\r\n *\r\n * @param factory\r\n * @param args\r\n */\r\n// eslint-disable-next-line @typescript-eslint/ban-types\r\nexport var applyFactoryExtensions = function (factory, args) {\r\n var o = factory(args);\r\n var proto = Reflect.getPrototypeOf(factory);\r\n if (Reflect.has(proto, ObjExtensionsSym)) {\r\n var extensions = factoryExtensions.get(Reflect.get(proto, ObjExtensionsSym));\r\n o = extendObj(o, extensions);\r\n }\r\n return o;\r\n};\r\nexport function extensionOrDefault(op, or, target) {\r\n var rest = [];\r\n for (var _i = 3; _i < arguments.length; _i++) {\r\n rest[_i - 3] = arguments[_i];\r\n }\r\n if (_enableExtensions) {\r\n var extensions = [];\r\n // we need to first invoke extensions tied to only this object\r\n if (Reflect.has(target, ObjExtensionsSym)) {\r\n extensions.push.apply(extensions, __spreadArray([], __read(Reflect.get(target, ObjExtensionsSym))));\r\n }\r\n // second we need to process any global extensions\r\n extensions.push.apply(extensions, __spreadArray([], __read(globalExtensions)));\r\n for (var i = 0; i < extensions.length; i++) {\r\n var extension = extensions[i];\r\n var result = undefined;\r\n if (isFunc(extension)) {\r\n // this extension is a function which we call\r\n result = extension.apply(void 0, __spreadArray([op, target], __read(rest)));\r\n }\r\n else if (op === \"get\" && Reflect.has(extension, rest[0])) {\r\n // this extension is a named extension meaning we are overriding a specific method/property\r\n result = Reflect.get(extension, rest[0], target);\r\n }\r\n else if (Reflect.has(extension, op)) {\r\n // this extension is a ProxyHandler that has a handler defined for {op} so we pass control and see if we get a result\r\n result = Reflect.get(extension, op).apply(void 0, __spreadArray([target], __read(rest)));\r\n }\r\n if (typeof result !== \"undefined\") {\r\n // if a extension returned a result, we return that\r\n // this means that this extension overrides any other extensions and no more are executed\r\n // first extension in the list to return \"wins\"\r\n return result;\r\n }\r\n }\r\n }\r\n return or.apply(void 0, __spreadArray([target], __read(rest)));\r\n}\r\n//# sourceMappingURL=invokable-extensions.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "name": "./node_modules/@pnp/odata/invokable-binder.js", - "index": 711, - "index2": 706, - "size": 3155, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./invokable-binder.js", - "loc": "4:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./invokable-binder.js", - "loc": "4:0-38" - } - ], - "usedExports": [ - "invokableFactory" - ], - "providedExports": [ - "invokableFactory" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __read, __spreadArray } from \"tslib\";\r\nimport { DefaultRuntime } from \"@pnp/common\";\r\nimport { extensionOrDefault, applyFactoryExtensions } from \"./invokable-extensions.js\";\r\nvar invokableBinder = function (invoker) { return function (constructor) {\r\n return function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n var factory = function (as) {\r\n var r = Object.assign(function () {\r\n var ags = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n ags[_i] = arguments[_i];\r\n }\r\n return invoker.call.apply(invoker, __spreadArray([r], __read(ags)));\r\n }, new (constructor.bind.apply(constructor, __spreadArray([void 0], __read(as))))());\r\n Reflect.setPrototypeOf(r, constructor.prototype);\r\n return r;\r\n };\r\n // ie11 setting is always global\r\n if (DefaultRuntime.get(\"ie11\") || false) {\r\n return factory(args);\r\n }\r\n else {\r\n return new Proxy(applyFactoryExtensions(factory, args), {\r\n apply: function (target, _thisArg, argArray) {\r\n return extensionOrDefault(\"apply\", function () {\r\n var a = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n a[_i] = arguments[_i];\r\n }\r\n return Reflect.apply(a[0], a[1], a[2]);\r\n }, target, _thisArg, argArray);\r\n },\r\n get: function (target, p, receiver) {\r\n return extensionOrDefault(\"get\", function () {\r\n var a = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n a[_i] = arguments[_i];\r\n }\r\n return Reflect.get(a[0], a[1], a[2]);\r\n }, target, p, receiver);\r\n },\r\n has: function (target, p) {\r\n return extensionOrDefault(\"has\", function () {\r\n var a = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n a[_i] = arguments[_i];\r\n }\r\n return Reflect.has(a[0], a[1]);\r\n }, target, p);\r\n },\r\n set: function (target, p, value, receiver) {\r\n return extensionOrDefault(\"set\", function () {\r\n var a = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n a[_i] = arguments[_i];\r\n }\r\n return Reflect.set(a[0], a[1], a[2], a[3]);\r\n }, target, p, value, receiver);\r\n },\r\n });\r\n }\r\n };\r\n}; };\r\nexport var invokableFactory = invokableBinder(function (options) {\r\n return this.defaultAction(options);\r\n});\r\n//# sourceMappingURL=invokable-binder.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "name": "./node_modules/@pnp/odata/parsers.js", - "index": 715, - "index2": 707, - "size": 5566, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "./parsers.js", - "loc": "1:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony side effect evaluation", - "userRequest": "./parsers.js", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./parsers.js", - "loc": "6:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./parsers.js", - "loc": "6:0-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "./parsers.js", - "loc": "27:32-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "./parsers.js", - "loc": "53:24-35" - } - ], - "usedExports": [ - "ODataParser" - ], - "providedExports": [ - "ODataParser", - "TextParser", - "BlobParser", - "JSONParser", - "BufferParser", - "LambdaParser", - "HttpRequestError" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __awaiter, __extends, __generator } from \"tslib\";\r\nimport { isFunc, hOP } from \"@pnp/common\";\r\nvar ODataParser = /** @class */ (function () {\r\n function ODataParser() {\r\n }\r\n ODataParser.prototype.parse = function (r) {\r\n var _this = this;\r\n return new Promise(function (resolve, reject) {\r\n if (_this.handleError(r, reject)) {\r\n _this.parseImpl(r, resolve, reject);\r\n }\r\n });\r\n };\r\n ODataParser.prototype.parseImpl = function (r, resolve, reject) {\r\n var _this = this;\r\n if ((r.headers.has(\"Content-Length\") && parseFloat(r.headers.get(\"Content-Length\")) === 0) || r.status === 204) {\r\n resolve({});\r\n }\r\n else {\r\n // patch to handle cases of 200 response with no or whitespace only bodies (#487 & #545)\r\n r.text()\r\n .then(function (txt) { return txt.replace(/\\s/ig, \"\").length > 0 ? JSON.parse(txt) : {}; })\r\n .then(function (json) { return resolve(_this.parseODataJSON(json)); })\r\n .catch(function (e) { return reject(e); });\r\n }\r\n };\r\n /**\r\n * Handles a response with ok === false by parsing the body and creating a ProcessHttpClientResponseException\r\n * which is passed to the reject delegate. This method returns true if there is no error, otherwise false\r\n *\r\n * @param r Current response object\r\n * @param reject reject delegate for the surrounding promise\r\n */\r\n ODataParser.prototype.handleError = function (r, reject) {\r\n if (!r.ok) {\r\n HttpRequestError.init(r).then(reject);\r\n }\r\n return r.ok;\r\n };\r\n /**\r\n * Normalizes the json response by removing the various nested levels\r\n *\r\n * @param json json object to parse\r\n */\r\n ODataParser.prototype.parseODataJSON = function (json) {\r\n var result = json;\r\n if (hOP(json, \"d\")) {\r\n if (hOP(json.d, \"results\")) {\r\n result = json.d.results;\r\n }\r\n else {\r\n result = json.d;\r\n }\r\n }\r\n else if (hOP(json, \"value\")) {\r\n result = json.value;\r\n }\r\n return result;\r\n };\r\n return ODataParser;\r\n}());\r\nexport { ODataParser };\r\nvar TextParser = /** @class */ (function (_super) {\r\n __extends(TextParser, _super);\r\n function TextParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n TextParser.prototype.parseImpl = function (r, resolve) {\r\n r.text().then(resolve);\r\n };\r\n return TextParser;\r\n}(ODataParser));\r\nexport { TextParser };\r\nvar BlobParser = /** @class */ (function (_super) {\r\n __extends(BlobParser, _super);\r\n function BlobParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n BlobParser.prototype.parseImpl = function (r, resolve) {\r\n r.blob().then(resolve);\r\n };\r\n return BlobParser;\r\n}(ODataParser));\r\nexport { BlobParser };\r\nvar JSONParser = /** @class */ (function (_super) {\r\n __extends(JSONParser, _super);\r\n function JSONParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n JSONParser.prototype.parseImpl = function (r, resolve) {\r\n r.json().then(resolve);\r\n };\r\n return JSONParser;\r\n}(ODataParser));\r\nexport { JSONParser };\r\nvar BufferParser = /** @class */ (function (_super) {\r\n __extends(BufferParser, _super);\r\n function BufferParser() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n BufferParser.prototype.parseImpl = function (r, resolve) {\r\n if (isFunc(r.arrayBuffer)) {\r\n r.arrayBuffer().then(resolve);\r\n }\r\n else {\r\n r.buffer().then(resolve);\r\n }\r\n };\r\n return BufferParser;\r\n}(ODataParser));\r\nexport { BufferParser };\r\nvar LambdaParser = /** @class */ (function (_super) {\r\n __extends(LambdaParser, _super);\r\n function LambdaParser(parser) {\r\n var _this = _super.call(this) || this;\r\n _this.parser = parser;\r\n return _this;\r\n }\r\n LambdaParser.prototype.parseImpl = function (r, resolve) {\r\n this.parser(r).then(resolve);\r\n };\r\n return LambdaParser;\r\n}(ODataParser));\r\nexport { LambdaParser };\r\nvar HttpRequestError = /** @class */ (function (_super) {\r\n __extends(HttpRequestError, _super);\r\n function HttpRequestError(message, response, status, statusText) {\r\n if (status === void 0) { status = response.status; }\r\n if (statusText === void 0) { statusText = response.statusText; }\r\n var _this = _super.call(this, message) || this;\r\n _this.response = response;\r\n _this.status = status;\r\n _this.statusText = statusText;\r\n _this.isHttpRequestError = true;\r\n return _this;\r\n }\r\n HttpRequestError.init = function (r) {\r\n return __awaiter(this, void 0, void 0, function () {\r\n var t;\r\n return __generator(this, function (_a) {\r\n switch (_a.label) {\r\n case 0: return [4 /*yield*/, r.clone().text()];\r\n case 1:\r\n t = _a.sent();\r\n return [2 /*return*/, new HttpRequestError(\"Error making HttpClient request in queryable [\" + r.status + \"] \" + r.statusText + \" ::> \" + t, r.clone())];\r\n }\r\n });\r\n });\r\n };\r\n return HttpRequestError;\r\n}(Error));\r\nexport { HttpRequestError };\r\n//# sourceMappingURL=parsers.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "name": "./node_modules/@pnp/odata/queryable.js", - "index": 716, - "index2": 708, - "size": 9485, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "./queryable.js", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./queryable.js", - "loc": "8:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./queryable.js", - "loc": "8:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "./queryable.js", - "loc": "33:19-37" - } - ], - "usedExports": [ - "cloneQueryableData", - "Queryable" - ], - "providedExports": [ - "cloneQueryableData", - "Queryable" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __read, __spreadArray } from \"tslib\";\r\nimport { combine, mergeOptions, objectDefinedNotNull, assign, Runtime, DefaultRuntime, dateAdd, stringIsNullOrEmpty, } from \"@pnp/common\";\r\nimport { ODataParser } from \"./parsers.js\";\r\nexport function cloneQueryableData(source) {\r\n var body;\r\n // this handles bodies that cannot be JSON encoded (Blob, etc)\r\n // Note however, even bodies that can be serialized will not be cloned.\r\n if (source.options && source.options.body) {\r\n body = source.options.body;\r\n source.options.body = \"-\";\r\n }\r\n var s = JSON.stringify(source, function (key, value) {\r\n switch (key) {\r\n case \"query\":\r\n return JSON.stringify(__spreadArray([], __read(value)));\r\n case \"batch\":\r\n case \"batchDependency\":\r\n case \"cachingOptions\":\r\n case \"clientFactory\":\r\n case \"parser\":\r\n return \"-\";\r\n default:\r\n return value;\r\n }\r\n }, 0);\r\n var parsed = JSON.parse(s, function (key, value) {\r\n switch (key) {\r\n case \"query\":\r\n return new Map(JSON.parse(value));\r\n case \"batch\":\r\n case \"batchDependency\":\r\n case \"cachingOptions\":\r\n case \"clientFactory\":\r\n case \"parser\":\r\n return source[key];\r\n default:\r\n return value;\r\n }\r\n });\r\n if (body) {\r\n parsed.options.body = body;\r\n source.options.body = body;\r\n }\r\n return parsed;\r\n}\r\nvar Queryable = /** @class */ (function () {\r\n function Queryable(dataSeed) {\r\n if (dataSeed === void 0) { dataSeed = {}; }\r\n this._data = Object.assign({}, {\r\n cloneParentWasCaching: false,\r\n options: {},\r\n parentUrl: \"\",\r\n parser: new ODataParser(),\r\n query: new Map(),\r\n url: \"\",\r\n useCaching: false,\r\n }, cloneQueryableData(dataSeed));\r\n this._runtime = null;\r\n }\r\n Object.defineProperty(Queryable.prototype, \"data\", {\r\n get: function () {\r\n return this._data;\r\n },\r\n set: function (value) {\r\n this._data = Object.assign({}, this.data, cloneQueryableData(value));\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Queryable.prototype.getRuntime = function () {\r\n if (this._runtime === null) {\r\n return DefaultRuntime;\r\n }\r\n return this._runtime;\r\n };\r\n Queryable.prototype.setRuntime = function () {\r\n // need to wait for ts update in spfx: [runtime: Runtime] | [cloneGlobal: boolean, additionalConfig?: ITypedHash]\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n if (args[0] instanceof Runtime) {\r\n this._runtime = args[0];\r\n }\r\n else {\r\n this._runtime = args[0] ? new Runtime(DefaultRuntime.export()) : new Runtime();\r\n if (args.length > 1 && objectDefinedNotNull(args[1])) {\r\n this._runtime.assign(args[1]);\r\n }\r\n }\r\n return this;\r\n };\r\n /**\r\n * Gets the current url\r\n *\r\n */\r\n Queryable.prototype.toUrl = function () {\r\n return this.data.url;\r\n };\r\n /**\r\n * Directly concatenates the supplied string to the current url, not normalizing \"/\" chars\r\n *\r\n * @param pathPart The string to concatenate to the url\r\n */\r\n Queryable.prototype.concat = function (pathPart) {\r\n this.data.url += pathPart;\r\n return this;\r\n };\r\n Object.defineProperty(Queryable.prototype, \"query\", {\r\n /**\r\n * Provides access to the query builder for this url\r\n *\r\n */\r\n get: function () {\r\n return this.data.query;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Sets custom options for current object and all derived objects accessible via chaining\r\n *\r\n * @param options custom options\r\n */\r\n Queryable.prototype.configure = function (options) {\r\n mergeOptions(this.data.options, options);\r\n return this;\r\n };\r\n /**\r\n * Configures this instance from the configure options of the supplied instance\r\n *\r\n * @param o Instance from which options should be taken\r\n */\r\n Queryable.prototype.configureFrom = function (o) {\r\n mergeOptions(this.data.options, o.data.options);\r\n var sourceRuntime = o.getRuntime();\r\n if (!sourceRuntime.get(\"__isDefault__\")) {\r\n this.setRuntime(sourceRuntime);\r\n }\r\n return this;\r\n };\r\n /**\r\n * Enables caching for this request\r\n *\r\n * @param options Defines the options used when caching this request\r\n */\r\n Queryable.prototype.usingCaching = function (options) {\r\n var runtime = this.getRuntime();\r\n if (!runtime.get(\"globalCacheDisable\")) {\r\n this.data.useCaching = true;\r\n // handle getting just the key\r\n if (typeof options === \"string\") {\r\n if (stringIsNullOrEmpty(options)) {\r\n throw Error(\"Cache key cannot be empty.\");\r\n }\r\n options = { key: options };\r\n }\r\n // this uses our local options if they are defined as defaults\r\n var defaultOpts = {\r\n expiration: dateAdd(new Date(), \"second\", runtime.get(\"defaultCachingTimeoutSeconds\")),\r\n storeName: runtime.get(\"defaultCachingStore\"),\r\n };\r\n this.data.cachingOptions = assign(defaultOpts, options);\r\n }\r\n return this;\r\n };\r\n Queryable.prototype.usingParser = function (parser) {\r\n this.data.parser = parser;\r\n return this;\r\n };\r\n /**\r\n * Allows you to set a request specific processing pipeline\r\n *\r\n * @param pipeline The set of methods, in order, to execute a given request\r\n */\r\n Queryable.prototype.withPipeline = function (pipeline) {\r\n this.data.pipes = pipeline.slice(0);\r\n return this;\r\n };\r\n /**\r\n * Appends the given string and normalizes \"/\" chars\r\n *\r\n * @param pathPart The string to append\r\n */\r\n Queryable.prototype.append = function (pathPart) {\r\n this.data.url = combine(this.data.url, pathPart);\r\n };\r\n /**\r\n * Adds this query to the supplied batch\r\n *\r\n * @example\r\n * ```\r\n *\r\n * let b = pnp.sp.createBatch();\r\n * pnp.sp.web.inBatch(b).get().then(...);\r\n * b.execute().then(...)\r\n * ```\r\n */\r\n Queryable.prototype.inBatch = function (batch) {\r\n if (this.hasBatch) {\r\n throw Error(\"This query is already part of a batch.\");\r\n }\r\n if (objectDefinedNotNull(batch)) {\r\n batch.track(this);\r\n }\r\n return this;\r\n };\r\n /**\r\n * Blocks a batch call from occuring, MUST be cleared by calling the returned function\r\n */\r\n Queryable.prototype.addBatchDependency = function () {\r\n if (objectDefinedNotNull(this.data.batch)) {\r\n return this.data.batch.addDependency();\r\n }\r\n return function () { return null; };\r\n };\r\n Object.defineProperty(Queryable.prototype, \"hasBatch\", {\r\n /**\r\n * Indicates if the current query has a batch associated\r\n *\r\n */\r\n get: function () {\r\n return objectDefinedNotNull(this.data.batch);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(Queryable.prototype, \"batch\", {\r\n /**\r\n * The batch currently associated with this query or null\r\n *\r\n */\r\n get: function () {\r\n return this.hasBatch ? this.data.batch : null;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(Queryable.prototype, \"parentUrl\", {\r\n /**\r\n * Gets the parent url used when creating this instance\r\n *\r\n */\r\n get: function () {\r\n return this.data.parentUrl;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Clones this instance's data to target\r\n *\r\n * @param target Instance to which data is written\r\n * @param settings [Optional] Settings controlling how clone is applied\r\n */\r\n Queryable.prototype.cloneTo = function (target, settings) {\r\n if (settings === void 0) { settings = {}; }\r\n // default values for settings\r\n settings = assign({\r\n includeBatch: true,\r\n includeQuery: false,\r\n }, settings);\r\n target.data = Object.assign({}, cloneQueryableData(this.data), {\r\n batch: null,\r\n cloneParentCacheOptions: null,\r\n cloneParentWasCaching: false,\r\n }, cloneQueryableData(target.data));\r\n target.configureFrom(this);\r\n if (settings.includeBatch) {\r\n target.inBatch(this.batch);\r\n }\r\n if (settings.includeQuery && this.query.size > 0) {\r\n this.query.forEach(function (v, k) { return target.query.set(k, v); });\r\n }\r\n if (this.data.useCaching) {\r\n target.data.cloneParentWasCaching = true;\r\n target.data.cloneParentCacheOptions = this.data.cachingOptions;\r\n }\r\n return target;\r\n };\r\n return Queryable;\r\n}());\r\nexport { Queryable };\r\n//# sourceMappingURL=queryable.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/logger.js", - "name": "./node_modules/@pnp/logging/logger.js", - "index": 719, - "index2": 709, - "size": 4812, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/logging/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "name": "./node_modules/@pnp/odata/pipeline.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "name": "./node_modules/@pnp/logging/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "module": "./node_modules/@pnp/logging/index.js", - "moduleName": "./node_modules/@pnp/logging/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./logger.js", - "loc": "1:0-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "module": "./node_modules/@pnp/logging/index.js", - "moduleName": "./node_modules/@pnp/logging/index.js", - "type": "harmony export imported specifier", - "userRequest": "./logger.js", - "loc": "1:0-28" - } - ], - "usedExports": [ - "Logger" - ], - "providedExports": [ - "Logger", - "LogLevel" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/**\r\n * Class used to subscribe ILogListener and log messages throughout an application\r\n *\r\n */\r\nvar Logger = /** @class */ (function () {\r\n function Logger() {\r\n }\r\n Object.defineProperty(Logger, \"activeLogLevel\", {\r\n /**\r\n * Gets or sets the active log level to apply for log filtering\r\n */\r\n get: function () {\r\n return Logger.instance.activeLogLevel;\r\n },\r\n set: function (value) {\r\n Logger.instance.activeLogLevel = value;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(Logger, \"instance\", {\r\n get: function () {\r\n if (Logger._instance === undefined || Logger._instance === null) {\r\n Logger._instance = new LoggerImpl();\r\n }\r\n return Logger._instance;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Adds ILogListener instances to the set of subscribed listeners\r\n *\r\n * @param listeners One or more listeners to subscribe to this log\r\n */\r\n Logger.subscribe = function () {\r\n var listeners = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n listeners[_i] = arguments[_i];\r\n }\r\n listeners.forEach(function (listener) { return Logger.instance.subscribe(listener); });\r\n };\r\n /**\r\n * Clears the subscribers collection, returning the collection before modification\r\n */\r\n Logger.clearSubscribers = function () {\r\n return Logger.instance.clearSubscribers();\r\n };\r\n Object.defineProperty(Logger, \"count\", {\r\n /**\r\n * Gets the current subscriber count\r\n */\r\n get: function () {\r\n return Logger.instance.count;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n /**\r\n * Writes the supplied string to the subscribed listeners\r\n *\r\n * @param message The message to write\r\n * @param level [Optional] if supplied will be used as the level of the entry (Default: LogLevel.Info)\r\n */\r\n Logger.write = function (message, level) {\r\n if (level === void 0) { level = 1 /* Info */; }\r\n Logger.instance.log({ level: level, message: message });\r\n };\r\n /**\r\n * Writes the supplied string to the subscribed listeners\r\n *\r\n * @param json The json object to stringify and write\r\n * @param level [Optional] if supplied will be used as the level of the entry (Default: LogLevel.Info)\r\n */\r\n Logger.writeJSON = function (json, level) {\r\n if (level === void 0) { level = 1 /* Info */; }\r\n this.write(JSON.stringify(json), level);\r\n };\r\n /**\r\n * Logs the supplied entry to the subscribed listeners\r\n *\r\n * @param entry The message to log\r\n */\r\n Logger.log = function (entry) {\r\n Logger.instance.log(entry);\r\n };\r\n /**\r\n * Logs an error object to the subscribed listeners\r\n *\r\n * @param err The error object\r\n */\r\n Logger.error = function (err) {\r\n Logger.instance.log({ data: err, level: 3 /* Error */, message: err.message });\r\n };\r\n return Logger;\r\n}());\r\nexport { Logger };\r\nvar LoggerImpl = /** @class */ (function () {\r\n function LoggerImpl(activeLogLevel, subscribers) {\r\n if (activeLogLevel === void 0) { activeLogLevel = 2 /* Warning */; }\r\n if (subscribers === void 0) { subscribers = []; }\r\n this.activeLogLevel = activeLogLevel;\r\n this.subscribers = subscribers;\r\n }\r\n LoggerImpl.prototype.subscribe = function (listener) {\r\n this.subscribers.push(listener);\r\n };\r\n LoggerImpl.prototype.clearSubscribers = function () {\r\n var s = this.subscribers.slice(0);\r\n this.subscribers.length = 0;\r\n return s;\r\n };\r\n Object.defineProperty(LoggerImpl.prototype, \"count\", {\r\n get: function () {\r\n return this.subscribers.length;\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n LoggerImpl.prototype.write = function (message, level) {\r\n if (level === void 0) { level = 1 /* Info */; }\r\n this.log({ level: level, message: message });\r\n };\r\n LoggerImpl.prototype.log = function (entry) {\r\n if (entry !== undefined && this.activeLogLevel <= entry.level) {\r\n this.subscribers.map(function (subscriber) { return subscriber.log(entry); });\r\n }\r\n };\r\n return LoggerImpl;\r\n}());\r\n/**\r\n * A set of logging levels\r\n */\r\nexport var LogLevel;\r\n(function (LogLevel) {\r\n LogLevel[LogLevel[\"Verbose\"] = 0] = \"Verbose\";\r\n LogLevel[LogLevel[\"Info\"] = 1] = \"Info\";\r\n LogLevel[LogLevel[\"Warning\"] = 2] = \"Warning\";\r\n LogLevel[LogLevel[\"Error\"] = 3] = \"Error\";\r\n LogLevel[LogLevel[\"Off\"] = 99] = \"Off\";\r\n})(LogLevel || (LogLevel = {}));\r\n//# sourceMappingURL=logger.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/listeners.js", - "name": "./node_modules/@pnp/logging/listeners.js", - "index": 720, - "index2": 710, - "size": 2168, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/logging/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "name": "./node_modules/@pnp/odata/pipeline.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "name": "./node_modules/@pnp/logging/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "module": "./node_modules/@pnp/logging/index.js", - "moduleName": "./node_modules/@pnp/logging/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./listeners.js", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/logging/index.js", - "module": "./node_modules/@pnp/logging/index.js", - "moduleName": "./node_modules/@pnp/logging/index.js", - "type": "harmony export imported specifier", - "userRequest": "./listeners.js", - "loc": "2:0-31" - } - ], - "usedExports": false, - "providedExports": [ - "ConsoleListener", - "FunctionListener" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/**\r\n * Implementation of LogListener which logs to the console\r\n *\r\n */\r\nvar ConsoleListener = /** @class */ (function () {\r\n function ConsoleListener() {\r\n }\r\n /**\r\n * Any associated data that a given logging listener may choose to log or ignore\r\n *\r\n * @param entry The information to be logged\r\n */\r\n ConsoleListener.prototype.log = function (entry) {\r\n var msg = this.format(entry);\r\n switch (entry.level) {\r\n case 0 /* Verbose */:\r\n case 1 /* Info */:\r\n console.log(msg);\r\n break;\r\n case 2 /* Warning */:\r\n console.warn(msg);\r\n break;\r\n case 3 /* Error */:\r\n console.error(msg);\r\n break;\r\n }\r\n };\r\n /**\r\n * Formats the message\r\n *\r\n * @param entry The information to format into a string\r\n */\r\n ConsoleListener.prototype.format = function (entry) {\r\n var msg = [];\r\n msg.push(\"Message: \" + entry.message);\r\n if (entry.data !== undefined) {\r\n try {\r\n msg.push(\" Data: \" + JSON.stringify(entry.data));\r\n }\r\n catch (e) {\r\n msg.push(\" Data: Error in stringify of supplied data \" + e);\r\n }\r\n }\r\n return msg.join(\"\");\r\n };\r\n return ConsoleListener;\r\n}());\r\nexport { ConsoleListener };\r\n/**\r\n * Implementation of LogListener which logs to the supplied function\r\n *\r\n */\r\nvar FunctionListener = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of the FunctionListener class\r\n *\r\n * @constructor\r\n * @param method The method to which any logging data will be passed\r\n */\r\n function FunctionListener(method) {\r\n this.method = method;\r\n }\r\n /**\r\n * Any associated data that a given logging listener may choose to log or ignore\r\n *\r\n * @param entry The information to be logged\r\n */\r\n FunctionListener.prototype.log = function (entry) {\r\n this.method(entry);\r\n };\r\n return FunctionListener;\r\n}());\r\nexport { FunctionListener };\r\n//# sourceMappingURL=listeners.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "name": "./node_modules/@pnp/odata/pipeline.js", - "index": 717, - "index2": 712, - "size": 9599, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "./pipeline.js", - "loc": "4:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./pipeline.js", - "loc": "7:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./pipeline.js", - "loc": "7:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "./pipeline.js", - "loc": "14:23-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "module": "./node_modules/@pnp/odata/pipeline-binder.js", - "moduleName": "./node_modules/@pnp/odata/pipeline-binder.js", - "type": "harmony import specifier", - "userRequest": "./pipeline.js", - "loc": "38:50-68" - } - ], - "usedExports": [ - "pipe", - "getDefaultPipeline" - ], - "providedExports": [ - "setResult", - "pipe", - "requestPipelineMethod", - "PipelineMethods", - "getDefaultPipeline" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __decorate } from \"tslib\";\r\nimport { assign, isFunc, hOP } from \"@pnp/common\";\r\nimport { Logger } from \"@pnp/logging\";\r\nimport { CachingOptions, CachingParserWrapper } from \"./caching.js\";\r\n/**\r\n * Resolves the context's result value\r\n *\r\n * @param context The current context\r\n */\r\nfunction returnResult(context) {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 0 /* Verbose */ ? context.result : {},\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Returning result from pipeline. Set logging to verbose to see data.\",\r\n });\r\n return Promise.resolve(context.result);\r\n}\r\n/**\r\n * Sets the result on the context\r\n */\r\nexport function setResult(context, value) {\r\n return new Promise(function (resolve) {\r\n context.result = value;\r\n context.hasResult = true;\r\n resolve(context);\r\n });\r\n}\r\n/**\r\n * Invokes the next method in the provided context's pipeline\r\n *\r\n * @param c The current request context\r\n */\r\nfunction next(c) {\r\n return c.pipes.length > 0 ? c.pipes.shift()(c) : Promise.resolve(c);\r\n}\r\n/**\r\n * Executes the current request context's pipeline\r\n *\r\n * @param context Current context\r\n */\r\nexport function pipe(context) {\r\n if (context.pipes.length < 1) {\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Request pipeline contains no methods!\", 3 /* Error */);\r\n throw Error(\"Request pipeline contains no methods!\");\r\n }\r\n var promise = next(context).then(function (ctx) { return returnResult(ctx); }).catch(function (e) {\r\n Logger.error(e);\r\n throw e;\r\n });\r\n if (context.isBatched) {\r\n // this will block the batch's execute method from returning until the child requests have been resolved\r\n context.batch.addResolveBatchDependency(promise);\r\n }\r\n return promise;\r\n}\r\n/**\r\n * decorator factory applied to methods in the pipeline to control behavior\r\n */\r\nexport function requestPipelineMethod(alwaysRun) {\r\n if (alwaysRun === void 0) { alwaysRun = false; }\r\n return function (target, propertyKey, descriptor) {\r\n var method = descriptor.value;\r\n descriptor.value = function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n // if we have a result already in the pipeline, pass it along and don't call the tagged method\r\n if (!alwaysRun && args.length > 0 && hOP(args[0], \"hasResult\") && args[0].hasResult) {\r\n Logger.write(\"[\" + args[0].requestId + \"] (\" + (new Date()).getTime() + \") Skipping request pipeline method \" + propertyKey + \", existing result in pipeline.\", 0 /* Verbose */);\r\n return Promise.resolve(args[0]);\r\n }\r\n // apply the tagged method\r\n Logger.write(\"[\" + args[0].requestId + \"] (\" + (new Date()).getTime() + \") Calling request pipeline method \" + propertyKey + \".\", 0 /* Verbose */);\r\n // then chain the next method in the context's pipeline - allows for dynamic pipeline\r\n return method.apply(target, args).then(function (ctx) { return next(ctx); });\r\n };\r\n };\r\n}\r\n/**\r\n * Contains the methods used within the request pipeline\r\n */\r\nvar PipelineMethods = /** @class */ (function () {\r\n function PipelineMethods() {\r\n }\r\n /**\r\n * Logs the start of the request\r\n */\r\n PipelineMethods.logStart = function (context) {\r\n return new Promise(function (resolve) {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 1 /* Info */ ? {} : context,\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Beginning \" + context.method + \" request (\" + context.url + \")\",\r\n });\r\n resolve(context);\r\n });\r\n };\r\n /**\r\n * Handles caching of the request\r\n */\r\n PipelineMethods.caching = function (context) {\r\n return new Promise(function (resolve) {\r\n // handle caching, if applicable\r\n if (context.useCaching) {\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Caching is enabled for request, checking cache...\", 1 /* Info */);\r\n var cacheOptions = new CachingOptions(context.url.toLowerCase());\r\n if (context.cachingOptions !== undefined) {\r\n cacheOptions = assign(cacheOptions, context.cachingOptions);\r\n }\r\n // we may not have a valid store\r\n if (cacheOptions.store !== null) {\r\n // check if we have the data in cache and if so resolve the promise and return\r\n var data = cacheOptions.store.get(cacheOptions.key);\r\n if (data !== null) {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 1 /* Info */ ? {} : data,\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Value returned from cache.\",\r\n });\r\n // ensure we clear any held batch dependency we are resolving from the cache\r\n if (isFunc(context.batchDependency)) {\r\n context.batchDependency();\r\n }\r\n // handle the case where a parser needs to take special actions with a cached result\r\n if (hOP(context.parser, \"hydrate\")) {\r\n data = context.parser.hydrate(data);\r\n }\r\n return setResult(context, data).then(function (ctx) { return resolve(ctx); });\r\n }\r\n }\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Value not found in cache.\", 1 /* Info */);\r\n // if we don't then wrap the supplied parser in the caching parser wrapper\r\n // and send things on their way\r\n context.parser = new CachingParserWrapper(context.parser, cacheOptions);\r\n }\r\n return resolve(context);\r\n });\r\n };\r\n /**\r\n * Sends the request\r\n */\r\n PipelineMethods.send = function (context) {\r\n return new Promise(function (resolve, reject) {\r\n // send or batch the request\r\n if (context.isBatched) {\r\n var p = context.batch.add(context);\r\n // we release the dependency here to ensure the batch does not execute until the request is added to the batch\r\n if (isFunc(context.batchDependency)) {\r\n context.batchDependency();\r\n }\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Batching request in batch \" + context.batch.batchId + \".\", 1 /* Info */);\r\n // we set the result as the promise which will be resolved by the batch's execution\r\n resolve(setResult(context, p));\r\n }\r\n else {\r\n Logger.write(\"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Sending request.\", 1 /* Info */);\r\n // we are not part of a batch, so proceed as normal\r\n var client = context.clientFactory();\r\n var opts = assign(context.options || {}, { method: context.method });\r\n client.fetch(context.url, opts)\r\n .then(function (response) { return context.parser.parse(response); })\r\n .then(function (result) { return setResult(context, result); })\r\n .then(function (ctx) { return resolve(ctx); })\r\n .catch(function (e) { return reject(e); });\r\n }\r\n });\r\n };\r\n /**\r\n * Logs the end of the request\r\n */\r\n PipelineMethods.logEnd = function (context) {\r\n return new Promise(function (resolve) {\r\n if (context.isBatched) {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 1 /* Info */ ? {} : context,\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") \" + context.method + \" request will complete in batch \" + context.batch.batchId + \".\",\r\n });\r\n }\r\n else {\r\n Logger.log({\r\n data: Logger.activeLogLevel === 1 /* Info */ ? {} : context,\r\n level: 1 /* Info */,\r\n message: \"[\" + context.requestId + \"] (\" + (new Date()).getTime() + \") Completing \" + context.method + \" request.\",\r\n });\r\n }\r\n resolve(context);\r\n });\r\n };\r\n __decorate([\r\n requestPipelineMethod(true)\r\n ], PipelineMethods, \"logStart\", null);\r\n __decorate([\r\n requestPipelineMethod()\r\n ], PipelineMethods, \"caching\", null);\r\n __decorate([\r\n requestPipelineMethod()\r\n ], PipelineMethods, \"send\", null);\r\n __decorate([\r\n requestPipelineMethod(true)\r\n ], PipelineMethods, \"logEnd\", null);\r\n return PipelineMethods;\r\n}());\r\nexport { PipelineMethods };\r\nexport function getDefaultPipeline() {\r\n return [\r\n PipelineMethods.logStart,\r\n PipelineMethods.caching,\r\n PipelineMethods.send,\r\n PipelineMethods.logEnd,\r\n ].slice(0);\r\n}\r\n//# sourceMappingURL=pipeline.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline-binder.js", - "name": "./node_modules/@pnp/odata/pipeline-binder.js", - "index": 714, - "index2": 713, - "size": 1890, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./pipeline-binder.js", - "loc": "5:0-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./pipeline-binder.js", - "loc": "5:0-37" - } - ], - "usedExports": [ - "defaultPipelineBinder" - ], - "providedExports": [ - "pipelineBinder", - "defaultPipelineBinder" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { ODataParser } from \"./parsers.js\";\r\nimport { getGUID, objectDefinedNotNull } from \"@pnp/common\";\r\nimport { cloneQueryableData } from \"./queryable.js\";\r\nimport { pipe, getDefaultPipeline } from \"./pipeline.js\";\r\n// first we bind the pipeline we will use for all requests within this closure\r\nexport function pipelineBinder(pipes) {\r\n // then we bind the client factory we'll use (typically done in an implementing library such as sp)\r\n return function (clientFactory) {\r\n // then we create a binder we can apply for each type of method (GET, POST, etc.)\r\n return function (method) {\r\n // finally we get a function back to which we can pass an IQueryableData instance and execute the request it defines\r\n return function (o) {\r\n // send the IQueryableData down the pipeline\r\n return pipe(Object.assign({}, {\r\n batch: null,\r\n batchDependency: null,\r\n batchIndex: -1,\r\n cachingOptions: null,\r\n clientFactory: clientFactory,\r\n cloneParentCacheOptions: null,\r\n cloneParentWasCaching: false,\r\n hasResult: false,\r\n isBatched: objectDefinedNotNull(o.batch),\r\n method: method,\r\n options: null,\r\n parentUrl: \"\",\r\n parser: new ODataParser(),\r\n pipes: pipes.slice(0),\r\n query: new Map(),\r\n requestId: getGUID(),\r\n url: \"\",\r\n useCaching: /^get$/i.test(o.method) && o.useCaching,\r\n }, cloneQueryableData(o)));\r\n };\r\n };\r\n };\r\n}\r\nexport var defaultPipelineBinder = pipelineBinder(getDefaultPipeline());\r\n//# sourceMappingURL=pipeline-binder.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/request-builders.js", - "name": "./node_modules/@pnp/odata/request-builders.js", - "index": 721, - "index2": 714, - "size": 329, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./request-builders.js", - "loc": "9:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "module": "./node_modules/@pnp/odata/index.js", - "moduleName": "./node_modules/@pnp/odata/index.js", - "type": "harmony export imported specifier", - "userRequest": "./request-builders.js", - "loc": "9:0-38" - } - ], - "usedExports": [ - "body", - "headers" - ], - "providedExports": [ - "body", - "headers" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { jsS } from \"@pnp/common\";\r\nexport function body(o, previous) {\r\n return Object.assign({ body: jsS(o) }, previous);\r\n}\r\n// eslint-disable-next-line @typescript-eslint/ban-types\r\nexport function headers(o, previous) {\r\n return Object.assign({ headers: o }, previous);\r\n}\r\n//# sourceMappingURL=request-builders.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "index": 900, - "index2": 897, - "size": 1311, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "4:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "19:35-48" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "5:0-62" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "39:43-56" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "8:0-46" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "8:0-46" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "3:0-63" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "16:35-48" - } - ], - "usedExports": [ - "DefaultButton" - ], - "providedExports": [ - "DefaultButton" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { BaseComponent, customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './DefaultButton.styles';\n/**\n * {@docCategory Button}\n */\nvar DefaultButton = /** @class */ (function (_super) {\n tslib_1.__extends(DefaultButton, _super);\n function DefaultButton() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n /**\n * Tell BaseComponent to bypass resolution of componentRef.\n */\n _this._skipComponentRefResolution = true;\n return _this;\n }\n DefaultButton.prototype.render = function () {\n var _a = this.props, _b = _a.primary, primary = _b === void 0 ? false : _b, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, tslib_1.__assign({}, this.props, { variantClassName: primary ? 'ms-Button--primary' : 'ms-Button--default', styles: getStyles(theme, styles, primary), onRenderDescription: nullRender })));\n };\n DefaultButton = tslib_1.__decorate([\n customizable('DefaultButton', ['theme', 'styles'], true)\n ], DefaultButton);\n return DefaultButton;\n}(BaseComponent));\nexport { DefaultButton };\n//# sourceMappingURL=DefaultButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "index": 899, - "index2": 898, - "size": 1098, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "2eko", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Button", - "loc": "113:40-53" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./PrimaryButton/PrimaryButton", - "loc": "9:0-62" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./PrimaryButton/PrimaryButton", - "loc": "37:43-56" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PrimaryButton/PrimaryButton", - "loc": "10:0-46" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PrimaryButton/PrimaryButton", - "loc": "10:0-46" - } - ], - "usedExports": [ - "PrimaryButton" - ], - "providedExports": [ - "PrimaryButton" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseComponent, customizable, nullRender } from '../../../Utilities';\nimport { DefaultButton } from '../DefaultButton/DefaultButton';\n/**\n * {@docCategory Button}\n */\nvar PrimaryButton = /** @class */ (function (_super) {\n tslib_1.__extends(PrimaryButton, _super);\n function PrimaryButton() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n /**\n * Set this BaseComponent._skipComponentRefResolution to true, bypassing resolution of componentRef.\n */\n _this._skipComponentRefResolution = true;\n return _this;\n }\n PrimaryButton.prototype.render = function () {\n return React.createElement(DefaultButton, tslib_1.__assign({}, this.props, { primary: true, onRenderDescription: nullRender }));\n };\n PrimaryButton = tslib_1.__decorate([\n customizable('PrimaryButton', ['theme', 'styles'], true)\n ], PrimaryButton);\n return PrimaryButton;\n}(BaseComponent));\nexport { PrimaryButton };\n//# sourceMappingURL=PrimaryButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "index": 792, - "index2": 785, - "size": 3830, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "issuerId": "ugTL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js" - }, - { - "id": "ugTL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaPresence.base", - "loc": "2:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "type": "harmony import specifier", - "userRequest": "./PersonaPresence.base", - "loc": "7:36-55" - }, - { - "moduleId": "ugTL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaPresence.base", - "loc": "2:0-39" - }, - { - "moduleId": "ugTL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PersonaPresence.base", - "loc": "2:0-39" - } - ], - "usedExports": [ - "PersonaPresenceBase" - ], - "providedExports": [ - "PersonaPresenceBase" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction } from '../../../Utilities';\nimport { Icon } from '../../../Icon';\nimport { PersonaPresence as PersonaPresenceEnum, } from '../Persona.types';\nimport { sizeBoolean } from '../PersonaConsts';\nvar coinSizeFontScaleFactor = 6;\nvar coinSizePresenceScaleFactor = 3;\nvar presenceMaxSize = 40;\nvar presenceFontMaxSize = 20;\nvar getClassNames = classNamesFunction({\n // There can be many PersonaPresence rendered with different sizes.\n // Therefore setting a larger cache size.\n cacheSize: 100,\n});\n/**\n * PersonaPresence with no default styles.\n * [Use the `getStyles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Styling)\n */\nvar PersonaPresenceBase = /** @class */ (function (_super) {\n __extends(PersonaPresenceBase, _super);\n function PersonaPresenceBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onRenderIcon = function (className, style) { return (React.createElement(Icon, { className: className, iconName: determineIcon(_this.props.presence, _this.props.isOutOfOffice), style: style })); };\n return _this;\n }\n PersonaPresenceBase.prototype.render = function () {\n var _a = this.props, coinSize = _a.coinSize, isOutOfOffice = _a.isOutOfOffice, styles = _a.styles, // Use getStyles from props.\n presence = _a.presence, theme = _a.theme, presenceTitle = _a.presenceTitle, presenceColors = _a.presenceColors;\n var size = sizeBoolean(this.props.size);\n // Render Presence Icon if Persona is above size 32.\n var renderIcon = !(size.isSize8 || size.isSize10 || size.isSize16 || size.isSize24 || size.isSize28 || size.isSize32) &&\n (coinSize ? coinSize > 32 : true);\n var presenceHeightWidth = coinSize\n ? coinSize / coinSizePresenceScaleFactor < presenceMaxSize\n ? coinSize / coinSizePresenceScaleFactor + 'px'\n : presenceMaxSize + 'px'\n : '';\n var presenceFontSize = coinSize\n ? coinSize / coinSizeFontScaleFactor < presenceFontMaxSize\n ? coinSize / coinSizeFontScaleFactor + 'px'\n : presenceFontMaxSize + 'px'\n : '';\n var coinSizeWithPresenceIconStyle = coinSize\n ? { fontSize: presenceFontSize, lineHeight: presenceHeightWidth }\n : undefined;\n var coinSizeWithPresenceStyle = coinSize\n ? { width: presenceHeightWidth, height: presenceHeightWidth }\n : undefined;\n // Use getStyles from props, or fall back to getStyles from styles file.\n var classNames = getClassNames(styles, {\n theme: theme,\n presence: presence,\n size: this.props.size,\n isOutOfOffice: isOutOfOffice,\n presenceColors: presenceColors,\n });\n if (presence === PersonaPresenceEnum.none) {\n return null;\n }\n return (React.createElement(\"div\", { role: \"presentation\", className: classNames.presence, style: coinSizeWithPresenceStyle, title: presenceTitle }, renderIcon && this._onRenderIcon(classNames.presenceIcon, coinSizeWithPresenceIconStyle)));\n };\n return PersonaPresenceBase;\n}(React.Component));\nexport { PersonaPresenceBase };\nfunction determineIcon(presence, isOutOfOffice) {\n if (!presence) {\n return undefined;\n }\n var oofIcon = 'SkypeArrow';\n switch (PersonaPresenceEnum[presence]) {\n case 'online':\n return 'SkypeCheck';\n case 'away':\n return isOutOfOffice ? oofIcon : 'SkypeClock';\n case 'dnd':\n return 'SkypeMinus';\n case 'offline':\n return isOutOfOffice ? oofIcon : '';\n }\n return '';\n}\n//# sourceMappingURL=PersonaPresence.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "index": 791, - "index2": 787, - "size": 385, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "issuerId": "ugTL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js" - }, - { - "id": "ugTL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../PersonaPresence/index", - "loc": "120:36-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../PersonaPresence/index", - "loc": "121:59-74" - }, - { - "moduleId": "ugTL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaPresence", - "loc": "1:0-34" - }, - { - "moduleId": "ugTL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PersonaPresence", - "loc": "1:0-34" - } - ], - "usedExports": [ - "PersonaPresence" - ], - "providedExports": [ - "PersonaPresence" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { styled } from '../../../Utilities';\nimport { PersonaPresenceBase } from './PersonaPresence.base';\nimport { getStyles } from './PersonaPresence.styles';\n/**\n * PersonaPresence is used to render an individual's presence.\n */\nexport var PersonaPresence = styled(PersonaPresenceBase, getStyles, undefined, { scope: 'PersonaPresence' });\n//# sourceMappingURL=PersonaPresence.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "index": 435, - "index2": 427, - "size": 7075, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "userRequest": "./Image.base", - "loc": "4:26-35" - } - ], - "usedExports": [ - "ImageBase" - ], - "providedExports": [ - "ImageBase" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getNativeProps, imageProperties } from '../../Utilities';\nimport { ImageCoverStyle, ImageFit, ImageLoadState } from './Image.types';\nvar getClassNames = classNamesFunction();\nvar KEY_PREFIX = 'fabricImage';\nvar ImageBase = /** @class */ (function (_super) {\n tslib_1.__extends(ImageBase, _super);\n function ImageBase(props) {\n var _this = _super.call(this, props) || this;\n // Make an initial assumption about the image layout until we can\n // check the rendered element. The value here only takes effect when\n // shouldStartVisible is true.\n _this._coverStyle = ImageCoverStyle.portrait;\n _this._imageElement = React.createRef();\n _this._frameElement = React.createRef();\n _this._onImageLoaded = function (ev) {\n var _a = _this.props, src = _a.src, onLoad = _a.onLoad;\n if (onLoad) {\n onLoad(ev);\n }\n _this._computeCoverStyle(_this.props);\n if (src) {\n _this.setState({\n loadState: ImageLoadState.loaded\n });\n }\n };\n _this._onImageError = function (ev) {\n if (_this.props.onError) {\n _this.props.onError(ev);\n }\n _this.setState({\n loadState: ImageLoadState.error\n });\n };\n _this.state = {\n loadState: ImageLoadState.notLoaded\n };\n return _this;\n }\n ImageBase.prototype.componentWillReceiveProps = function (nextProps) {\n if (nextProps.src !== this.props.src) {\n this.setState({\n loadState: ImageLoadState.notLoaded\n });\n }\n else if (this.state.loadState === ImageLoadState.loaded) {\n this._computeCoverStyle(nextProps);\n }\n };\n ImageBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._checkImageLoaded();\n if (this.props.onLoadingStateChange && prevState.loadState !== this.state.loadState) {\n this.props.onLoadingStateChange(this.state.loadState);\n }\n };\n ImageBase.prototype.render = function () {\n var imageProps = getNativeProps(this.props, imageProperties, ['width', 'height']);\n var _a = this.props, src = _a.src, alt = _a.alt, width = _a.width, height = _a.height, shouldFadeIn = _a.shouldFadeIn, shouldStartVisible = _a.shouldStartVisible, className = _a.className, imageFit = _a.imageFit, role = _a.role, maximizeFrame = _a.maximizeFrame, styles = _a.styles, theme = _a.theme;\n var loadState = this.state.loadState;\n var coverStyle = this.props.coverStyle !== undefined ? this.props.coverStyle : this._coverStyle;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n width: width,\n height: height,\n maximizeFrame: maximizeFrame,\n shouldFadeIn: shouldFadeIn,\n shouldStartVisible: shouldStartVisible,\n isLoaded: loadState === ImageLoadState.loaded || (loadState === ImageLoadState.notLoaded && this.props.shouldStartVisible),\n isLandscape: coverStyle === ImageCoverStyle.landscape,\n isCenter: imageFit === ImageFit.center,\n isCenterContain: imageFit === ImageFit.centerContain,\n isCenterCover: imageFit === ImageFit.centerCover,\n isContain: imageFit === ImageFit.contain,\n isCover: imageFit === ImageFit.cover,\n isNone: imageFit === ImageFit.none,\n isError: loadState === ImageLoadState.error,\n isNotImageFit: imageFit === undefined\n });\n // If image dimensions aren't specified, the natural size of the image is used.\n return (React.createElement(\"div\", { className: classNames.root, style: { width: width, height: height }, ref: this._frameElement },\n React.createElement(\"img\", tslib_1.__assign({}, imageProps, { onLoad: this._onImageLoaded, onError: this._onImageError, key: KEY_PREFIX + this.props.src || '', className: classNames.image, ref: this._imageElement, src: src, alt: alt, role: role }))));\n };\n ImageBase.prototype._checkImageLoaded = function () {\n var src = this.props.src;\n var loadState = this.state.loadState;\n if (loadState === ImageLoadState.notLoaded) {\n // testing if naturalWidth and naturalHeight are greater than zero is better than checking\n // .complete, because .complete will also be set to true if the image breaks. However,\n // for some browsers, SVG images do not have a naturalWidth or naturalHeight, so fall back\n // to checking .complete for these images.\n var isLoaded = this._imageElement.current\n ? (src && (this._imageElement.current.naturalWidth > 0 && this._imageElement.current.naturalHeight > 0)) ||\n (this._imageElement.current.complete && ImageBase._svgRegex.test(src))\n : false;\n if (isLoaded) {\n this._computeCoverStyle(this.props);\n this.setState({\n loadState: ImageLoadState.loaded\n });\n }\n }\n };\n ImageBase.prototype._computeCoverStyle = function (props) {\n var imageFit = props.imageFit, width = props.width, height = props.height;\n // Do not compute cover style if it was already specified in props\n if ((imageFit === ImageFit.cover ||\n imageFit === ImageFit.contain ||\n imageFit === ImageFit.centerContain ||\n imageFit === ImageFit.centerCover) &&\n this.props.coverStyle === undefined &&\n this._imageElement.current &&\n this._frameElement.current) {\n // Determine the desired ratio using the width and height props.\n // If those props aren't available, measure measure the frame.\n var desiredRatio = void 0;\n if (!!width && !!height && imageFit !== ImageFit.centerContain && imageFit !== ImageFit.centerCover) {\n desiredRatio = width / height;\n }\n else {\n desiredRatio = this._frameElement.current.clientWidth / this._frameElement.current.clientHeight;\n }\n // Examine the source image to determine its original ratio.\n var naturalRatio = this._imageElement.current.naturalWidth / this._imageElement.current.naturalHeight;\n // Should we crop from the top or the sides?\n if (naturalRatio > desiredRatio) {\n this._coverStyle = ImageCoverStyle.landscape;\n }\n else {\n this._coverStyle = ImageCoverStyle.portrait;\n }\n }\n };\n ImageBase.defaultProps = {\n shouldFadeIn: true\n };\n ImageBase._svgRegex = /\\.svg$/i;\n return ImageBase;\n}(React.Component));\nexport { ImageBase };\n//# sourceMappingURL=Image.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "index": 387, - "index2": 421, - "size": 187, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "issuerId": "8tWw", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "2:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "3:24-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "5:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:27-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:27-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:48-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:48-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "6:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:25-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:20-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:31-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:29-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:30-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "15:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "15:47-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "17:24-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:28-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "19:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "20:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "20:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "21:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "22:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "23:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "24:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "25:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "25:17-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "32:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "35:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "40:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "43:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:63-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "44:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "45:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "47:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "52:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "52:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "52:37-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "53:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "64:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "70:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "79:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "80:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "97:26-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "98:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "103:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "104:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "109:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "116:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "121:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "128:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "130:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "141:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "151:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "153:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "156:30-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "161:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "161:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "171:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "174:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "186:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "192:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "550:29-43" - }, - { - "moduleId": "3Htz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "8:12-25" - }, - { - "moduleId": "3Htz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "30:11-26" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "36:24-35" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "66:19-39" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "76:19-39" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "92:19-39" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "98:11-26" - }, - { - "moduleId": "8tWw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-34" - }, - { - "moduleId": "8tWw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "type": "harmony export imported specifier", - "userRequest": "@uifabric/styling", - "loc": "2:0-34" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "17:12-25" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "25:23-43" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "35:19-39" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "59:19-39" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "77:27-47" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "126:11-26" - }, - { - "moduleId": "jySA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "19:19-39" - }, - { - "moduleId": "jySA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "63:11-26" - } - ], - "usedExports": [ - "mergeStyleSets", - "getGlobalClassNames", - "AnimationClassNames", - "getIcon", - "keyframes", - "HighContrastSelector", - "hiddenContentStyle", - "ScreenWidthMinMedium", - "FontWeights", - "concatStyleSets", - "getFocusStyle", - "FontSizes", - "mergeStyles", - "getScreenSelector", - "ScreenWidthMaxMedium", - "ZIndexes", - "focusClear", - "AnimationVariables" - ], - "providedExports": [ - "AnimationClassNames", - "FontClassNames", - "ColorClassNames", - "AnimationStyles", - "AnimationVariables", - "DefaultPalette", - "DefaultFontStyles", - "registerDefaultFontFaces", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles", - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "hiddenContentStyle", - "PulsingBeaconAnimationStyles", - "getGlobalClassNames", - "getThemedContext", - "ThemeSettingName", - "getTheme", - "loadTheme", - "createTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "normalize", - "noWrap", - "getFadedOverflowStyle", - "getPlaceholderStyles", - "ZIndexes", - "buildClassMap", - "getIcon", - "registerIcons", - "registerIconAlias", - "unregisterIcons", - "setIconOptions", - "getIconClassName", - "InjectionMode", - "Stylesheet", - "concatStyleSets", - "fontFace", - "keyframes", - "mergeStyleSets", - "mergeStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "export * from './classNames/index';\nexport * from './styles/index';\nexport * from './utilities/index';\nexport * from './MergeStyles';\nimport './version';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "index": 436, - "index2": 428, - "size": 5082, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "mw/c", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "lpIF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "userRequest": "./Image.styles", - "loc": "4:37-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { AnimationClassNames, getGlobalClassNames } from '../../Styling';\nimport { getWindow } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Image',\n rootMaximizeFrame: 'ms-Image--maximizeFrame',\n image: 'ms-Image-image',\n imageCenter: 'ms-Image-image--center',\n imageContain: 'ms-Image-image--contain',\n imageCover: 'ms-Image-image--cover',\n imageCenterContain: 'ms-Image-image--centerContain',\n imageCenterCover: 'ms-Image-image--centerCover',\n imageNone: 'ms-Image-image--none',\n imageLandscape: 'ms-Image-image--landscape',\n imagePortrait: 'ms-Image-image--portrait'\n};\nexport var getStyles = function (props) {\n var className = props.className, width = props.width, height = props.height, maximizeFrame = props.maximizeFrame, isLoaded = props.isLoaded, shouldFadeIn = props.shouldFadeIn, shouldStartVisible = props.shouldStartVisible, isLandscape = props.isLandscape, isCenter = props.isCenter, isContain = props.isContain, isCover = props.isCover, isCenterContain = props.isCenterContain, isCenterCover = props.isCenterCover, isNone = props.isNone, isError = props.isError, isNotImageFit = props.isNotImageFit, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var ImageFitStyles = {\n position: 'absolute',\n left: '50% /* @noflip */',\n top: '50%',\n transform: 'translate(-50%,-50%)' // @todo test RTL renders transform: translate(50%,-50%);\n };\n // Cut the mustard using msMaxTouchPoints to detect IE11 which does not support CSS object-fit\n var window = getWindow();\n var supportsObjectFit = window !== undefined && window.navigator.msMaxTouchPoints === undefined;\n var fallbackObjectFitStyles = (isContain && isLandscape) || (isCover && !isLandscape) ? { width: '100%', height: 'auto' } : { width: 'auto', height: '100%' };\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n overflow: 'hidden'\n },\n maximizeFrame && [\n classNames.rootMaximizeFrame,\n {\n height: '100%',\n width: '100%'\n }\n ],\n isLoaded && shouldFadeIn && !shouldStartVisible && AnimationClassNames.fadeIn400,\n (isCenter || isContain || isCover || isCenterContain || isCenterCover) && {\n position: 'relative'\n },\n className\n ],\n image: [\n classNames.image,\n {\n display: 'block',\n opacity: 0\n },\n isLoaded && [\n 'is-loaded',\n {\n opacity: 1\n }\n ],\n isCenter && [classNames.imageCenter, ImageFitStyles],\n isContain && [\n classNames.imageContain,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'contain'\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n ImageFitStyles\n ],\n isCover && [\n classNames.imageCover,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'cover'\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n ImageFitStyles\n ],\n isCenterContain && [\n classNames.imageCenterContain,\n isLandscape && {\n maxWidth: '100%'\n },\n !isLandscape && {\n maxHeight: '100%'\n },\n ImageFitStyles\n ],\n isCenterCover && [\n classNames.imageCenterCover,\n isLandscape && {\n maxHeight: '100%'\n },\n !isLandscape && {\n maxWidth: '100%'\n },\n ImageFitStyles\n ],\n isNone && [\n classNames.imageNone,\n {\n width: 'auto',\n height: 'auto'\n }\n ],\n isNotImageFit && [\n !!width &&\n !height && {\n height: 'auto',\n width: '100%'\n },\n !width &&\n !!height && {\n height: '100%',\n width: 'auto'\n },\n !!width &&\n !!height && {\n height: '100%',\n width: '100%'\n }\n ],\n isLandscape && classNames.imageLandscape,\n !isLandscape && classNames.imagePortrait,\n !isLoaded && 'is-notLoaded',\n shouldFadeIn && 'is-fadeIn',\n isError && 'is-error'\n ]\n };\n};\n//# sourceMappingURL=Image.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.types.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.types.js", - "index": 582, - "index2": 575, - "size": 1244, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "issuerId": "OXMl", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js" - }, - { - "id": "QJEM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js" - }, - { - "id": "OXMl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.types", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.types", - "loc": "3:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "19:33-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "19:53-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "19:73-84" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "35:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Spinner", - "loc": "47:57-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "57:21-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "64:21-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "71:21-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.types", - "loc": "78:21-32" - }, - { - "moduleId": "OXMl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.types", - "loc": "3:0-32" - }, - { - "moduleId": "OXMl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Spinner.types", - "loc": "3:0-32" - } - ], - "usedExports": [ - "SpinnerSize", - "SpinnerType" - ], - "providedExports": [ - "SpinnerSize", - "SpinnerType" - ], - "optimizationBailout": [], - "depth": 7, - "source": "/**\n * Possible variations of the spinner circle size.\n * {@docCategory Spinner}\n */\nexport var SpinnerSize;\n(function (SpinnerSize) {\n /**\n * 12px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"xSmall\"] = 0] = \"xSmall\";\n /**\n * 16px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"small\"] = 1] = \"small\";\n /**\n * 20px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"medium\"] = 2] = \"medium\";\n /**\n * 28px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"large\"] = 3] = \"large\";\n})(SpinnerSize || (SpinnerSize = {}));\n/**\n * Deprecated at v2.0.0, use `SpinnerSize` instead.\n * @deprecated Use `SpinnerSize` instead.\n * {@docCategory Spinner}\n */\nexport var SpinnerType;\n(function (SpinnerType) {\n /**\n * Deprecated and will be removed at \\>= 2.0.0. Use `SpinnerSize.medium` instead.\n * @deprecated Use `SpinnerSize.medium` instead.\n */\n SpinnerType[SpinnerType[\"normal\"] = 0] = \"normal\";\n /**\n * Deprecated and will be removed at \\>= 2.0.0. Use `SpinnerSize.large` instead.\n * @deprecated Use `SpinnerSize.large` instead.\n */\n SpinnerType[SpinnerType[\"large\"] = 1] = \"large\";\n})(SpinnerType || (SpinnerType = {}));\n//# sourceMappingURL=Spinner.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "index": 581, - "index2": 584, - "size": 2340, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "issuerId": "OXMl", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js" - }, - { - "id": "QJEM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js" - }, - { - "id": "OXMl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.base", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.base", - "loc": "4:28-39" - }, - { - "moduleId": "OXMl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.base", - "loc": "2:0-31" - }, - { - "moduleId": "OXMl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Spinner.base", - "loc": "2:0-31" - } - ], - "usedExports": [ - "SpinnerBase" - ], - "providedExports": [ - "SpinnerBase" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { SpinnerType, SpinnerSize } from './Spinner.types';\nimport { BaseComponent, classNamesFunction, DelayedRender, getNativeProps, divProperties } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar SpinnerBase = /** @class */ (function (_super) {\n tslib_1.__extends(SpinnerBase, _super);\n function SpinnerBase() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n SpinnerBase.prototype.render = function () {\n var _a = this.props, type = _a.type, size = _a.size, ariaLabel = _a.ariaLabel, ariaLive = _a.ariaLive, styles = _a.styles, label = _a.label, theme = _a.theme, className = _a.className, labelPosition = _a.labelPosition;\n var statusMessage = ariaLabel;\n var nativeProps = getNativeProps(this.props, divProperties, ['size']);\n // SpinnerType is deprecated. If someone is still using this property, rather than putting the SpinnerType into the ISpinnerStyleProps,\n // we'll map SpinnerType to its equivalent SpinnerSize and pass that in. Once SpinnerType finally goes away we should delete this.\n var styleSize = size;\n if (styleSize === undefined && type !== undefined) {\n styleSize = type === SpinnerType.large ? SpinnerSize.large : SpinnerSize.medium;\n }\n var classNames = getClassNames(styles, {\n theme: theme,\n size: styleSize,\n className: className,\n labelPosition: labelPosition\n });\n return (React.createElement(\"div\", tslib_1.__assign({}, nativeProps, { className: classNames.root }),\n React.createElement(\"div\", { className: classNames.circle }),\n label && React.createElement(\"div\", { className: classNames.label }, label),\n statusMessage && (React.createElement(\"div\", { role: \"status\", \"aria-live\": ariaLive },\n React.createElement(DelayedRender, null,\n React.createElement(\"div\", { className: classNames.screenReaderText }, statusMessage))))));\n };\n SpinnerBase.defaultProps = {\n size: SpinnerSize.medium,\n ariaLive: 'polite',\n labelPosition: 'bottom'\n };\n return SpinnerBase;\n}(BaseComponent));\nexport { SpinnerBase };\n//# sourceMappingURL=Spinner.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "index": 580, - "index2": 586, - "size": 255, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "issuerId": "OXMl", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js" - }, - { - "id": "QJEM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js" - }, - { - "id": "OXMl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Spinner", - "loc": "47:40-47" - }, - { - "moduleId": "OXMl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner", - "loc": "1:0-26" - }, - { - "moduleId": "OXMl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Spinner", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Spinner" - ], - "providedExports": [ - "Spinner" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { styled } from '../../Utilities';\nimport { SpinnerBase } from './Spinner.base';\nimport { getStyles } from './Spinner.styles';\nexport var Spinner = styled(SpinnerBase, getStyles, undefined, { scope: 'Spinner' });\n//# sourceMappingURL=Spinner.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "index": 595, - "index2": 588, - "size": 655, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerId": "Xtwx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent.types", - "loc": "4:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent.types", - "loc": "4:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent.types", - "loc": "17:10-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent.types", - "loc": "20:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent.types", - "loc": "21:30-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent.types", - "loc": "34:30-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent.types", - "loc": "34:79-89" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent.types", - "loc": "7:0-38" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DialogContent.types", - "loc": "7:0-38" - } - ], - "usedExports": [ - "DialogType" - ], - "providedExports": [ - "ResponsiveMode", - "DialogType" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { ResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nexport { ResponsiveMode }; // Exported because the type is an optional prop and not exported otherwise.\n/**\n * {@docCategory Dialog}\n */\nexport var DialogType;\n(function (DialogType) {\n /** Standard dialog */\n DialogType[DialogType[\"normal\"] = 0] = \"normal\";\n /** Dialog with large header banner */\n DialogType[DialogType[\"largeHeader\"] = 1] = \"largeHeader\";\n /** Dialog with an 'x' close button in the upper-right corner */\n DialogType[DialogType[\"close\"] = 2] = \"close\";\n})(DialogType || (DialogType = {}));\n//# sourceMappingURL=DialogContent.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js", - "index": 612, - "index2": 603, - "size": 2070, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "1:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "1:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "2:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "3:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "4:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "5:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "22:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "23:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "24:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "25:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "26:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "27:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "28:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "29:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "30:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "31:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "32:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "33:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "34:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "35:7-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "84:116-131" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Callout/index", - "loc": "230:124-139" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "388:25-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "409:56-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "707:44-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "707:74-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "772:25-40" - }, - { - "moduleId": "93C/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/DirectionalHint", - "loc": "3:0-45" - }, - { - "moduleId": "93C/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "../../common/DirectionalHint", - "loc": "3:0-45" - } - ], - "usedExports": [ - "DirectionalHint" - ], - "providedExports": [ - "DirectionalHint" - ], - "optimizationBailout": [], - "depth": 7, - "source": "export var DirectionalHint = {\n /**\n * Appear above the target element, with the left edges of the callout and target aligning.\n */\n topLeftEdge: 0,\n /**\n * Appear above the target element, with the centers of the callout and target aligning.\n */\n topCenter: 1,\n /**\n * Appear above the target element, with the right edges of the callout and target aligning.\n */\n topRightEdge: 2,\n /**\n * Appear above the target element, aligning with the target element such that the callout tends toward the center of the screen.\n */\n topAutoEdge: 3,\n /**\n * Appear below the target element, with the left edges of the callout and target aligning.\n */\n bottomLeftEdge: 4,\n /**\n * Appear below the target element, with the centers of the callout and target aligning.\n */\n bottomCenter: 5,\n /**\n * Appear below the target element, with the right edges of the callout and target aligning.\n */\n bottomRightEdge: 6,\n /**\n * Appear below the target element, aligning with the target element such that the callout tends toward the center of the screen.\n */\n bottomAutoEdge: 7,\n /**\n * Appear to the left of the target element, with the top edges of the callout and target aligning.\n */\n leftTopEdge: 8,\n /**\n * Appear to the left of the target element, with the centers of the callout and target aligning.\n */\n leftCenter: 9,\n /**\n * Appear to the left of the target element, with the bottom edges of the callout and target aligning.\n */\n leftBottomEdge: 10,\n /**\n * Appear to the right of the target element, with the top edges of the callout and target aligning.\n */\n rightTopEdge: 11,\n /**\n * Appear to the right of the target element, with the centers of the callout and target aligning.\n */\n rightCenter: 12,\n /**\n * Appear to the right of the target element, with the bottom edges of the callout and target aligning.\n */\n rightBottomEdge: 13\n};\n//# sourceMappingURL=DirectionalHint.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "index": 678, - "index2": 667, - "size": 4501, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseButton.classNames", - "loc": "7:0-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "userRequest": "./BaseButton.classNames", - "loc": "295:14-37" - } - ], - "usedExports": [ - "getBaseButtonClassNames" - ], - "providedExports": [ - "ButtonGlobalClassNames", - "getBaseButtonClassNames" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { memoizeFunction } from '../../Utilities';\nimport { mergeStyleSets } from '../../Styling';\nimport { getGlobalClassNames } from '../../Styling';\nexport var ButtonGlobalClassNames = {\n msButton: 'ms-Button',\n msButtonIcon: 'ms-Button-icon',\n msButtonMenuIcon: 'ms-Button-menuIcon',\n msButtonLabel: 'ms-Button-label',\n msButtonDescription: 'ms-Button-description',\n msButtonScreenReaderText: 'ms-Button-screenReaderText',\n msButtonFlexContainer: 'ms-Button-flexContainer',\n msButtonTextContainer: 'ms-Button-textContainer'\n};\nexport var getBaseButtonClassNames = memoizeFunction(function (theme, styles, className, variantClassName, iconClassName, menuIconClassName, disabled, checked, expanded, isSplit) {\n var classNames = getGlobalClassNames(ButtonGlobalClassNames, theme || {});\n var isExpanded = expanded && !isSplit;\n return mergeStyleSets({\n root: [\n classNames.msButton,\n styles.root,\n variantClassName,\n checked && ['is-checked', styles.rootChecked],\n isExpanded && [\n 'is-expanded',\n styles.rootExpanded,\n {\n selectors: (_a = {},\n _a[\":hover .\" + classNames.msButtonIcon] = styles.iconExpandedHovered,\n // menuIcon falls back to rootExpandedHovered to support original behavior\n _a[\":hover .\" + classNames.msButtonMenuIcon] = styles.menuIconExpandedHovered || styles.rootExpandedHovered,\n _a[':hover'] = styles.rootExpandedHovered,\n _a)\n }\n ],\n disabled && ['is-disabled', styles.rootDisabled],\n !disabled &&\n !isExpanded &&\n !checked && {\n selectors: (_b = {\n ':hover': styles.rootHovered\n },\n _b[\":hover .\" + classNames.msButtonLabel] = styles.labelHovered,\n _b[\":hover .\" + classNames.msButtonIcon] = styles.iconHovered,\n _b[\":hover .\" + classNames.msButtonDescription] = styles.descriptionHovered,\n _b[\":hover .\" + classNames.msButtonMenuIcon] = styles.menuIconHovered,\n _b[':focus'] = styles.rootFocused,\n _b[':active'] = styles.rootPressed,\n _b[\":active .\" + classNames.msButtonIcon] = styles.iconPressed,\n _b[\":active .\" + classNames.msButtonDescription] = styles.descriptionPressed,\n _b[\":active .\" + classNames.msButtonMenuIcon] = styles.menuIconPressed,\n _b)\n },\n disabled && checked && [styles.rootCheckedDisabled],\n !disabled &&\n checked && {\n selectors: {\n ':hover': styles.rootCheckedHovered,\n ':active': styles.rootCheckedPressed\n }\n },\n className\n ],\n flexContainer: [classNames.msButtonFlexContainer, styles.flexContainer],\n textContainer: [classNames.msButtonTextContainer, styles.textContainer],\n icon: [\n classNames.msButtonIcon,\n iconClassName,\n styles.icon,\n isExpanded && styles.iconExpanded,\n checked && styles.iconChecked,\n disabled && styles.iconDisabled\n ],\n label: [classNames.msButtonLabel, styles.label, checked && styles.labelChecked, disabled && styles.labelDisabled],\n menuIcon: [\n classNames.msButtonMenuIcon,\n menuIconClassName,\n styles.menuIcon,\n checked && styles.menuIconChecked,\n disabled && !isSplit && styles.menuIconDisabled,\n !disabled &&\n !isExpanded &&\n !checked && {\n selectors: {\n ':hover': styles.menuIconHovered,\n ':active': styles.menuIconPressed\n }\n },\n isExpanded && ['is-expanded', styles.menuIconExpanded]\n ],\n description: [\n classNames.msButtonDescription,\n styles.description,\n checked && styles.descriptionChecked,\n disabled && styles.descriptionDisabled\n ],\n screenReaderText: [classNames.msButtonScreenReaderText, styles.screenReaderText]\n });\n var _a, _b;\n});\n//# sourceMappingURL=BaseButton.classNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "index": 679, - "index2": 668, - "size": 1486, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./SplitButton/SplitButton.classNames", - "loc": "8:0-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "userRequest": "./SplitButton/SplitButton.classNames", - "loc": "436:24-52" - } - ], - "usedExports": [ - "getClassNames" - ], - "providedExports": [ - "getClassNames" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { memoizeFunction } from '../../../Utilities';\nimport { mergeStyles } from '../../../Styling';\nexport var getClassNames = memoizeFunction(function (styles, disabled, expanded, checked, primaryDisabled) {\n return {\n root: mergeStyles(styles.splitButtonMenuButton, expanded && [styles.splitButtonMenuButtonExpanded], disabled && [styles.splitButtonMenuButtonDisabled], checked && !disabled && [styles.splitButtonMenuButtonChecked]),\n splitButtonContainer: mergeStyles(styles.splitButtonContainer, checked &&\n !disabled && [\n styles.splitButtonContainerChecked,\n {\n selectors: {\n ':hover': styles.splitButtonContainerCheckedHovered\n }\n }\n ], !disabled &&\n !checked && [\n {\n selectors: {\n ':hover': styles.splitButtonContainerHovered,\n ':focus': styles.splitButtonContainerFocused\n }\n }\n ], disabled && styles.splitButtonContainerDisabled),\n icon: mergeStyles(styles.splitButtonMenuIcon, disabled && styles.splitButtonMenuIconDisabled, !disabled && primaryDisabled && styles.splitButtonMenuIcon),\n flexContainer: mergeStyles(styles.splitButtonFlexContainer),\n divider: mergeStyles(styles.splitButtonDivider, (primaryDisabled || disabled) && styles.splitButtonDividerDisabled)\n };\n});\n//# sourceMappingURL=SplitButton.classNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "index": 680, - "index2": 672, - "size": 1697, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton.styles", - "loc": "5:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "userRequest": "./IconButton.styles", - "loc": "21:128-137" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { concatStyleSets, HighContrastSelector } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var palette = theme.palette, semanticColors = theme.semanticColors;\n var iconButtonStyles = {\n root: {\n padding: '0 4px',\n width: '32px',\n height: '32px',\n backgroundColor: 'transparent',\n border: 'none',\n color: semanticColors.actionLink\n },\n rootHovered: {\n color: semanticColors.actionLinkHovered,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight'\n },\n _a)\n },\n rootPressed: {\n color: palette.themePrimary\n },\n rootExpanded: {\n color: palette.themePrimary\n },\n rootChecked: {\n backgroundColor: semanticColors.buttonBackgroundChecked\n },\n rootCheckedHovered: {\n backgroundColor: semanticColors.buttonBackgroundHovered\n },\n rootDisabled: {\n color: semanticColors.disabledText\n }\n };\n return concatStyleSets(baseButtonStyles, iconButtonStyles, splitButtonStyles, customStyles);\n var _a;\n});\n//# sourceMappingURL=IconButton.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "index": 636, - "index2": 626, - "size": 1284, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerId": "Xtwx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogFooter.base", - "loc": "2:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony import specifier", - "userRequest": "./DialogFooter.base", - "loc": "4:33-49" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogFooter.base", - "loc": "6:0-36" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DialogFooter.base", - "loc": "6:0-36" - } - ], - "usedExports": [ - "DialogFooterBase" - ], - "providedExports": [ - "DialogFooterBase" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseComponent, classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar DialogFooterBase = /** @class */ (function (_super) {\n tslib_1.__extends(DialogFooterBase, _super);\n function DialogFooterBase() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n DialogFooterBase.prototype.render = function () {\n var _a = this.props, className = _a.className, styles = _a.styles, theme = _a.theme;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className\n });\n return (React.createElement(\"div\", { className: this._classNames.actions },\n React.createElement(\"div\", { className: this._classNames.actionsRight }, this._renderChildrenAsActions())));\n };\n DialogFooterBase.prototype._renderChildrenAsActions = function () {\n var _this = this;\n return React.Children.map(this.props.children, function (child) { return (child ? React.createElement(\"span\", { className: _this._classNames.action }, child) : null); });\n };\n return DialogFooterBase;\n}(BaseComponent));\nexport { DialogFooterBase };\n//# sourceMappingURL=DialogFooter.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "index": 635, - "index2": 628, - "size": 290, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerId": "Xtwx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogFooter", - "loc": "6:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "./DialogFooter", - "loc": "9:43-55" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogFooter", - "loc": "5:0-31" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DialogFooter", - "loc": "5:0-31" - } - ], - "usedExports": [ - "DialogFooter" - ], - "providedExports": [ - "DialogFooter" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { styled } from '../../Utilities';\nimport { DialogFooterBase } from './DialogFooter.base';\nimport { getStyles } from './DialogFooter.styles';\nexport var DialogFooter = styled(DialogFooterBase, getStyles, undefined, { scope: 'DialogFooter' });\n//# sourceMappingURL=DialogFooter.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "index": 634, - "index2": 674, - "size": 3831, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerId": "Xtwx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent.base", - "loc": "2:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent.base", - "loc": "4:34-51" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent.base", - "loc": "4:0-37" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DialogContent.base", - "loc": "4:0-37" - } - ], - "usedExports": [ - "DialogContentBase" - ], - "providedExports": [ - "DialogContentBase" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseComponent, classNamesFunction } from '../../Utilities';\nimport { DialogType } from './DialogContent.types';\nimport { IconButton } from '../../Button';\nimport { DialogFooter } from './DialogFooter';\nimport { withResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nvar getClassNames = classNamesFunction();\nvar DialogFooterType = React.createElement(DialogFooter, null).type;\nvar DialogContentBase = /** @class */ (function (_super) {\n tslib_1.__extends(DialogContentBase, _super);\n function DialogContentBase(props) {\n return _super.call(this, props) || this;\n }\n DialogContentBase.prototype.render = function () {\n var _a = this.props, showCloseButton = _a.showCloseButton, className = _a.className, closeButtonAriaLabel = _a.closeButtonAriaLabel, onDismiss = _a.onDismiss, subTextId = _a.subTextId, subText = _a.subText, titleId = _a.titleId, title = _a.title, type = _a.type, styles = _a.styles, theme = _a.theme, draggableHeaderClassName = _a.draggableHeaderClassName;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n isLargeHeader: type === DialogType.largeHeader,\n isClose: type === DialogType.close,\n draggableHeaderClassName: draggableHeaderClassName\n });\n var groupings = this._groupChildren();\n var subTextContent;\n if (subText) {\n subTextContent = (React.createElement(\"p\", { className: classNames.subText, id: subTextId }, subText));\n }\n return (React.createElement(\"div\", { className: classNames.content },\n React.createElement(\"div\", { className: classNames.header },\n React.createElement(\"p\", { className: classNames.title, id: titleId, role: \"heading\", \"aria-level\": 2 }, title),\n React.createElement(\"div\", { className: classNames.topButton },\n this.props.topButtonsProps.map(function (props, index) { return (React.createElement(IconButton, tslib_1.__assign({ key: props.uniqueId || index }, props))); }),\n (type === DialogType.close || (showCloseButton && type !== DialogType.largeHeader)) && (React.createElement(IconButton, { className: classNames.button, iconProps: { iconName: 'Cancel' }, ariaLabel: closeButtonAriaLabel, onClick: onDismiss })))),\n React.createElement(\"div\", { className: classNames.inner },\n React.createElement(\"div\", { className: classNames.innerContent },\n subTextContent,\n groupings.contents),\n groupings.footers)));\n };\n // @TODO - typing the footers as an array of DialogFooter is difficult because\n // casing \"child as DialogFooter\" causes a problem because\n // \"Neither type 'ReactElement' nor type 'DialogFooter' is assignable to the other.\"\n DialogContentBase.prototype._groupChildren = function () {\n var groupings = {\n footers: [],\n contents: []\n };\n React.Children.map(this.props.children, function (child) {\n if (typeof child === 'object' && child !== null && child.type === DialogFooterType) {\n groupings.footers.push(child);\n }\n else {\n groupings.contents.push(child);\n }\n });\n return groupings;\n };\n DialogContentBase.defaultProps = {\n showCloseButton: false,\n className: '',\n topButtonsProps: [],\n closeButtonAriaLabel: 'Close'\n };\n DialogContentBase = tslib_1.__decorate([\n withResponsiveMode\n ], DialogContentBase);\n return DialogContentBase;\n}(BaseComponent));\nexport { DialogContentBase };\n//# sourceMappingURL=DialogContent.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "index": 633, - "index2": 676, - "size": 297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerId": "Xtwx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent", - "loc": "8:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent", - "loc": "91:32-45" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent", - "loc": "3:0-32" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DialogContent", - "loc": "3:0-32" - } - ], - "usedExports": [ - "DialogContent" - ], - "providedExports": [ - "DialogContent" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { styled } from '../../Utilities';\nimport { DialogContentBase } from './DialogContent.base';\nimport { getStyles } from './DialogContent.styles';\nexport var DialogContent = styled(DialogContentBase, getStyles, undefined, { scope: 'DialogContent' });\n//# sourceMappingURL=DialogContent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "index": 594, - "index2": 677, - "size": 6936, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerId": "Xtwx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dialog.base", - "loc": "2:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "type": "harmony import specifier", - "userRequest": "./Dialog.base", - "loc": "4:27-37" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dialog.base", - "loc": "2:0-30" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Dialog.base", - "loc": "2:0-30" - } - ], - "usedExports": [ - "DialogBase" - ], - "providedExports": [ - "DialogBase" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { warnDeprecations, classNamesFunction, getId } from '../../Utilities';\nimport { DialogType } from './DialogContent.types';\nimport { Modal } from '../../Modal';\nimport { withResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nvar getClassNames = classNamesFunction();\nimport { DialogContent } from './DialogContent';\nvar DefaultModalProps = {\n isDarkOverlay: false,\n isBlocking: false,\n className: '',\n containerClassName: '',\n topOffsetFixed: false\n};\nvar DefaultDialogContentProps = {\n type: DialogType.normal,\n className: '',\n topButtonsProps: []\n};\nvar DialogBase = /** @class */ (function (_super) {\n tslib_1.__extends(DialogBase, _super);\n function DialogBase(props) {\n var _this = _super.call(this, props) || this;\n _this._getSubTextId = function () {\n var _a = _this.props, ariaDescribedById = _a.ariaDescribedById, modalProps = _a.modalProps, dialogContentProps = _a.dialogContentProps, subText = _a.subText;\n var id = ariaDescribedById || (modalProps && modalProps.subtitleAriaId);\n if (!id) {\n id = (subText || (dialogContentProps && dialogContentProps.subText)) && _this._defaultSubTextId;\n }\n return id;\n };\n _this._getTitleTextId = function () {\n var _a = _this.props, ariaLabelledById = _a.ariaLabelledById, modalProps = _a.modalProps, dialogContentProps = _a.dialogContentProps, title = _a.title;\n var id = ariaLabelledById || (modalProps && modalProps.titleAriaId);\n if (!id) {\n id = (title || (dialogContentProps && dialogContentProps.title)) && _this._defaultTitleTextId;\n }\n return id;\n };\n _this._id = getId('Dialog');\n _this._defaultTitleTextId = _this._id + '-title';\n _this._defaultSubTextId = _this._id + '-subText';\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('Dialog', props, {\n isOpen: 'hidden',\n type: 'dialogContentProps.type',\n subText: 'dialogContentProps.subText',\n contentClassName: 'dialogContentProps.className',\n topButtonsProps: 'dialogContentProps.topButtonsProps',\n className: 'modalProps.className',\n isDarkOverlay: 'modalProps.isDarkOverlay',\n isBlocking: 'modalProps.isBlocking',\n containerClassName: 'modalProps.containerClassName',\n onDismissed: 'modalProps.onDismissed',\n onLayerDidMount: 'modalProps.layerProps.onLayerDidMount',\n ariaDescribedById: 'modalProps.subtitleAriaId',\n ariaLabelledById: 'modalProps.titleAriaId'\n });\n }\n return _this;\n }\n DialogBase.prototype.render = function () {\n var _a = this.props, className = _a.className, containerClassName = _a.containerClassName, contentClassName = _a.contentClassName, elementToFocusOnDismiss = _a.elementToFocusOnDismiss, firstFocusableSelector = _a.firstFocusableSelector, forceFocusInsideTrap = _a.forceFocusInsideTrap, styles = _a.styles, hidden = _a.hidden, ignoreExternalFocusing = _a.ignoreExternalFocusing, isBlocking = _a.isBlocking, isClickableOutsideFocusTrap = _a.isClickableOutsideFocusTrap, isDarkOverlay = _a.isDarkOverlay, isOpen = _a.isOpen, onDismiss = _a.onDismiss, onDismissed = _a.onDismissed, onLayerDidMount = _a.onLayerDidMount, responsiveMode = _a.responsiveMode, subText = _a.subText, theme = _a.theme, title = _a.title, topButtonsProps = _a.topButtonsProps, type = _a.type, minWidth = _a.minWidth, maxWidth = _a.maxWidth, modalProps = _a.modalProps;\n var mergedLayerProps = tslib_1.__assign({}, (modalProps ? modalProps.layerProps : { onLayerDidMount: onLayerDidMount }));\n if (onLayerDidMount && !mergedLayerProps.onLayerDidMount) {\n mergedLayerProps.onLayerDidMount = onLayerDidMount;\n }\n var dialogDraggableClassName;\n var dragOptions;\n // if we are draggable, make sure we are using the correct\n // draggable classname and selectors\n if (modalProps && modalProps.dragOptions && !modalProps.dragOptions.dragHandleSelector) {\n dialogDraggableClassName = 'ms-Dialog-draggable-header';\n dragOptions = tslib_1.__assign({}, modalProps.dragOptions, { dragHandleSelector: \".\" + dialogDraggableClassName });\n }\n else {\n dragOptions = modalProps && modalProps.dragOptions;\n }\n var mergedModalProps = tslib_1.__assign({}, DefaultModalProps, modalProps, { layerProps: mergedLayerProps, dragOptions: dragOptions });\n var dialogContentProps = tslib_1.__assign({}, DefaultDialogContentProps, this.props.dialogContentProps, { draggableHeaderClassName: dialogDraggableClassName });\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className || mergedModalProps.className,\n containerClassName: containerClassName || mergedModalProps.containerClassName,\n hidden: hidden,\n dialogDefaultMinWidth: minWidth,\n dialogDefaultMaxWidth: maxWidth\n });\n return (React.createElement(Modal, tslib_1.__assign({ elementToFocusOnDismiss: elementToFocusOnDismiss, firstFocusableSelector: firstFocusableSelector, forceFocusInsideTrap: forceFocusInsideTrap, ignoreExternalFocusing: ignoreExternalFocusing, isClickableOutsideFocusTrap: isClickableOutsideFocusTrap, onDismissed: onDismissed, responsiveMode: responsiveMode }, mergedModalProps, { isDarkOverlay: isDarkOverlay !== undefined ? isDarkOverlay : mergedModalProps.isDarkOverlay, isBlocking: isBlocking !== undefined ? isBlocking : mergedModalProps.isBlocking, isOpen: isOpen !== undefined ? isOpen : !hidden, className: classNames.root, containerClassName: classNames.main, onDismiss: onDismiss ? onDismiss : mergedModalProps.onDismiss, subtitleAriaId: this._getSubTextId(), titleAriaId: this._getTitleTextId() }),\n React.createElement(DialogContent, tslib_1.__assign({ titleId: this._defaultTitleTextId, subTextId: this._defaultSubTextId, title: title, subText: subText, showCloseButton: isBlocking !== undefined ? !isBlocking : !mergedModalProps.isBlocking, topButtonsProps: topButtonsProps ? topButtonsProps : dialogContentProps.topButtonsProps, type: type !== undefined ? type : dialogContentProps.type, onDismiss: onDismiss ? onDismiss : dialogContentProps.onDismiss, className: contentClassName || dialogContentProps.className }, dialogContentProps), this.props.children)));\n };\n DialogBase.defaultProps = {\n hidden: true\n };\n DialogBase = tslib_1.__decorate([\n withResponsiveMode\n ], DialogBase);\n return DialogBase;\n}(React.Component));\nexport { DialogBase };\n//# sourceMappingURL=Dialog.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "index": 593, - "index2": 679, - "size": 248, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerId": "Xtwx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Dialog", - "loc": "72:36-42" - }, - { - "moduleId": "J7KU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./components/Dialog/index", - "loc": "2:0-62" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dialog", - "loc": "1:0-25" - }, - { - "moduleId": "Xtwx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Dialog", - "loc": "1:0-25" - } - ], - "usedExports": [ - "Dialog" - ], - "providedExports": [ - "Dialog" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { styled } from '../../Utilities';\nimport { DialogBase } from './Dialog.base';\nimport { getStyles } from './Dialog.styles';\nexport var Dialog = styled(DialogBase, getStyles, undefined, { scope: 'Dialog' });\n//# sourceMappingURL=Dialog.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/node_modules/tslib/tslib.es6.js", - "name": "./node_modules/@pnp/odata/node_modules/tslib/tslib.es6.js", - "index": 713, - "index2": 704, - "size": 11605, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/odata/invokable-extensions.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/index.js", - "name": "./node_modules/@pnp/graph/groups/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/groups/types.js", - "name": "./node_modules/@pnp/graph/groups/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/graph/directory-objects/types.js", - "name": "./node_modules/@pnp/graph/directory-objects/types.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "name": "./node_modules/@pnp/odata/invokable-extensions.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:38-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/queryable.js", - "module": "./node_modules/@pnp/odata/queryable.js", - "moduleName": "./node_modules/@pnp/odata/queryable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:56-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:51-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:70-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:56-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-binder.js", - "module": "./node_modules/@pnp/odata/invokable-binder.js", - "moduleName": "./node_modules/@pnp/odata/invokable-binder.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:80-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:24-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:42-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "64:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "86:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "97:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "103:46-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "103:64-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:42-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:60-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "112:49-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "112:77-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "113:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:66-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:90-96" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "126:4-13" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "130:28-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/invokable-extensions.js", - "module": "./node_modules/@pnp/odata/invokable-extensions.js", - "moduleName": "./node_modules/@pnp/odata/invokable-extensions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "130:52-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "138:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/parsers.js", - "module": "./node_modules/@pnp/odata/parsers.js", - "moduleName": "./node_modules/@pnp/odata/parsers.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "140:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "191:4-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "194:4-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "197:4-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/odata/pipeline.js", - "module": "./node_modules/@pnp/odata/pipeline.js", - "moduleName": "./node_modules/@pnp/odata/pipeline.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "200:4-14" - } - ], - "usedExports": [ - "__spreadArray", - "__read", - "__extends", - "__awaiter", - "__generator", - "__decorate" - ], - "providedExports": [ - "__extends", - "__assign", - "__rest", - "__decorate", - "__param", - "__metadata", - "__awaiter", - "__generator", - "__createBinding", - "__exportStar", - "__values", - "__read", - "__spread", - "__spreadArrays", - "__spreadArray", - "__await", - "__asyncGenerator", - "__asyncDelegator", - "__asyncValues", - "__makeTemplateObject", - "__importStar", - "__importDefault", - "__classPrivateFieldGet", - "__classPrivateFieldSet" - ], - "optimizationBailout": [], - "depth": 7, - "source": "/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from) {\r\n for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)\r\n to[j] = from[i];\r\n return to;\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "index": 901, - "index2": 896, - "size": 1046, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultButton.styles", - "loc": "5:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "userRequest": "./DefaultButton.styles", - "loc": "21:164-173" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { concatStyleSets, FontWeights } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nimport { primaryStyles, standardStyles } from '../ButtonThemes';\nvar DEFAULT_BUTTON_HEIGHT = '32px';\nvar DEFAULT_BUTTON_MINWIDTH = '80px';\nexport var getStyles = memoizeFunction(function (theme, customStyles, primary) {\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var defaultButtonStyles = {\n root: {\n minWidth: DEFAULT_BUTTON_MINWIDTH,\n height: DEFAULT_BUTTON_HEIGHT\n },\n label: {\n fontWeight: FontWeights.semibold\n }\n };\n return concatStyleSets(baseButtonStyles, defaultButtonStyles, primary ? primaryStyles(theme) : standardStyles(theme), splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=DefaultButton.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "index": 793, - "index2": 786, - "size": 9877, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js" - }, - { - "id": "ugTL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "type": "harmony side effect evaluation", - "userRequest": "./PersonaPresence.styles", - "loc": "3:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.js", - "type": "harmony import specifier", - "userRequest": "./PersonaPresence.styles", - "loc": "7:57-66" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, getGlobalClassNames, getHighContrastNoAdjustStyle } from '../../../Styling';\nimport { personaPresenceSize, presenceBoolean, sizeBoolean } from '../PersonaConsts';\nvar GlobalClassNames = {\n presence: 'ms-Persona-presence',\n presenceIcon: 'ms-Persona-presenceIcon',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f;\n var theme = props.theme, presenceColors = props.presenceColors;\n var semanticColors = theme.semanticColors, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var size = sizeBoolean(props.size);\n var presence = presenceBoolean(props.presence);\n // Presence colors\n var presenceColorAvailable = (presenceColors && presenceColors.available) || '#6BB700';\n var presenceColorAway = (presenceColors && presenceColors.away) || '#FFAA44';\n var presenceColorBusy = (presenceColors && presenceColors.busy) || '#C43148';\n var presenceColorDnd = (presenceColors && presenceColors.dnd) || '#C50F1F';\n var presenceColorOffline = (presenceColors && presenceColors.offline) || '#8A8886';\n var presenceColorOof = (presenceColors && presenceColors.oof) || '#B4009E';\n var presenceColorBackground = (presenceColors && presenceColors.background) || semanticColors.bodyBackground;\n var isOpenCirclePresence = presence.isOffline ||\n (props.isOutOfOffice && (presence.isAvailable || presence.isBusy || presence.isAway || presence.isDoNotDisturb));\n var borderSizeForSmallPersonas = '1px';\n var borderSizeForLargePersonas = '2px';\n var borderSize = size.isSize72 || size.isSize100 ? borderSizeForLargePersonas : borderSizeForSmallPersonas;\n return {\n presence: [\n classNames.presence,\n __assign(__assign({ position: 'absolute', height: personaPresenceSize.size12, width: personaPresenceSize.size12, borderRadius: '50%', top: 'auto', right: '-2px', bottom: '-2px', border: \"2px solid \" + presenceColorBackground, textAlign: 'center', boxSizing: 'content-box', backgroundClip: 'content-box' }, getHighContrastNoAdjustStyle()), { selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Window',\n backgroundColor: 'WindowText',\n },\n _a) }),\n (size.isSize8 || size.isSize10) && {\n right: 'auto',\n top: '7px',\n left: 0,\n border: 0,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n top: '9px',\n border: '1px solid WindowText',\n },\n _b),\n },\n (size.isSize8 || size.isSize10 || size.isSize24 || size.isSize28 || size.isSize32) &&\n makeSizeStyle(personaPresenceSize.size8),\n (size.isSize40 || size.isSize48) && makeSizeStyle(personaPresenceSize.size12),\n size.isSize16 && {\n height: personaPresenceSize.size6,\n width: personaPresenceSize.size6,\n borderWidth: '1.5px',\n },\n size.isSize56 && makeSizeStyle(personaPresenceSize.size16),\n size.isSize72 && makeSizeStyle(personaPresenceSize.size20),\n size.isSize100 && makeSizeStyle(personaPresenceSize.size28),\n size.isSize120 && makeSizeStyle(personaPresenceSize.size32),\n presence.isAvailable && {\n backgroundColor: presenceColorAvailable,\n selectors: (_c = {},\n _c[HighContrastSelector] = backgroundColor('Highlight'),\n _c),\n },\n presence.isAway && backgroundColor(presenceColorAway),\n presence.isBlocked && [\n {\n selectors: (_d = {\n // Only show :after at larger sizes\n ':after': size.isSize40 || size.isSize48 || size.isSize72 || size.isSize100\n ? {\n content: '\"\"',\n width: '100%',\n height: borderSize,\n backgroundColor: presenceColorBusy,\n transform: 'translateY(-50%) rotate(-45deg)',\n position: 'absolute',\n top: '50%',\n left: 0,\n }\n : undefined\n },\n _d[HighContrastSelector] = {\n selectors: {\n ':after': {\n width: \"calc(100% - 4px)\",\n left: '2px',\n backgroundColor: 'Window',\n },\n },\n },\n _d),\n },\n ],\n presence.isBusy && backgroundColor(presenceColorBusy),\n presence.isDoNotDisturb && backgroundColor(presenceColorDnd),\n presence.isOffline && backgroundColor(presenceColorOffline),\n (isOpenCirclePresence || presence.isBlocked) && [\n {\n backgroundColor: presenceColorBackground,\n selectors: (_e = {\n ':before': {\n content: '\"\"',\n width: '100%',\n height: '100%',\n position: 'absolute',\n top: 0,\n left: 0,\n border: borderSize + \" solid \" + presenceColorBusy,\n borderRadius: '50%',\n boxSizing: 'border-box',\n }\n },\n _e[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n selectors: {\n ':before': {\n width: \"calc(100% - 2px)\",\n height: \"calc(100% - 2px)\",\n top: '1px',\n left: '1px',\n borderColor: 'Window',\n },\n },\n },\n _e),\n },\n ],\n isOpenCirclePresence && presence.isAvailable && makeBeforeBorderStyle(borderSize, presenceColorAvailable),\n isOpenCirclePresence && presence.isBusy && makeBeforeBorderStyle(borderSize, presenceColorBusy),\n isOpenCirclePresence && presence.isAway && makeBeforeBorderStyle(borderSize, presenceColorOof),\n isOpenCirclePresence && presence.isDoNotDisturb && makeBeforeBorderStyle(borderSize, presenceColorDnd),\n isOpenCirclePresence && presence.isOffline && makeBeforeBorderStyle(borderSize, presenceColorOffline),\n isOpenCirclePresence &&\n presence.isOffline &&\n props.isOutOfOffice &&\n makeBeforeBorderStyle(borderSize, presenceColorOof),\n ],\n presenceIcon: [\n classNames.presenceIcon,\n {\n color: presenceColorBackground,\n fontSize: '6px',\n lineHeight: personaPresenceSize.size12,\n verticalAlign: 'top',\n selectors: (_f = {},\n _f[HighContrastSelector] = {\n color: 'Window',\n },\n _f),\n },\n size.isSize56 && {\n fontSize: '8px',\n lineHeight: personaPresenceSize.size16,\n },\n size.isSize72 && {\n fontSize: fonts.small.fontSize,\n lineHeight: personaPresenceSize.size20,\n },\n size.isSize100 && {\n fontSize: fonts.medium.fontSize,\n lineHeight: personaPresenceSize.size28,\n },\n size.isSize120 && {\n fontSize: fonts.medium.fontSize,\n lineHeight: personaPresenceSize.size32,\n },\n presence.isAway && {\n position: 'relative',\n left: isOpenCirclePresence ? undefined : '1px',\n },\n isOpenCirclePresence && presence.isAvailable && makeOpenCircleIconStyle(presenceColorAvailable),\n isOpenCirclePresence && presence.isBusy && makeOpenCircleIconStyle(presenceColorBusy),\n isOpenCirclePresence && presence.isAway && makeOpenCircleIconStyle(presenceColorOof),\n isOpenCirclePresence && presence.isDoNotDisturb && makeOpenCircleIconStyle(presenceColorDnd),\n isOpenCirclePresence && presence.isOffline && makeOpenCircleIconStyle(presenceColorOffline),\n isOpenCirclePresence && presence.isOffline && props.isOutOfOffice && makeOpenCircleIconStyle(presenceColorOof),\n ],\n };\n};\nfunction makeOpenCircleIconStyle(color) {\n return {\n color: color,\n borderColor: color,\n };\n}\nfunction makeBeforeBorderStyle(borderSize, color) {\n return {\n selectors: {\n ':before': {\n border: borderSize + \" solid \" + color,\n },\n },\n };\n}\nfunction makeSizeStyle(size) {\n return {\n height: size,\n width: size,\n };\n}\nfunction backgroundColor(color) {\n return { backgroundColor: color };\n}\n//# sourceMappingURL=PersonaPresence.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/setSSR.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/setSSR.js", - "index": 369, - "index2": 359, - "size": 232, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "type": "harmony side effect evaluation", - "userRequest": "./setSSR", - "loc": "1:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "type": "harmony side effect evaluation", - "userRequest": "./setSSR", - "loc": "1:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "type": "harmony import specifier", - "userRequest": "./setSSR", - "loc": "11:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "type": "harmony import specifier", - "userRequest": "./setSSR", - "loc": "21:8-14" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/setSSR", - "loc": "54:0-38" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/setSSR", - "loc": "54:0-38" - } - ], - "usedExports": [ - "_isSSR" - ], - "providedExports": [ - "_isSSR", - "setSSR" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export var _isSSR = false;\n/**\n * Helper to set ssr mode to simulate no window object returned from getWindow helper.\n *\n * @public\n */\nexport function setSSR(isEnabled) {\n _isSSR = isEnabled;\n}\n//# sourceMappingURL=setSSR.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "index": 367, - "index2": 361, - "size": 3033, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony side effect evaluation", - "userRequest": "../GlobalSettings", - "loc": "2:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony import specifier", - "userRequest": "../GlobalSettings", - "loc": "5:19-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "5:20-34" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GlobalSettings", - "loc": "8:0-33" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GlobalSettings", - "loc": "8:0-33" - } - ], - "usedExports": [ - "GlobalSettings" - ], - "providedExports": [ - "GlobalSettings" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getWindow } from './dom/getWindow';\n/**\n * Storing global state in local module variables has issues when more than one copy\n * if the module gets loaded on the page (due to a bundling error or simply by consuming\n * a prebundled script.)\n *\n * This file contains helpers to deal with the getting and setting local state, and allows\n * callers to get called back when it mutates.\n */\n// tslint:disable:no-any\nvar GLOBAL_SETTINGS_PROP_NAME = '__globalSettings__';\nvar CALLBACK_STATE_PROP_NAME = '__callbacks__';\nvar _counter = 0;\n/**\n * Global settings helper, which stores settings in the global (window) namespace.\n * If window is not provided, it will store settings in module scope. Provides a\n * way to observe changes as well when their values change.\n *\n * @public\n * {@docCategory GlobalSettings}\n */\nvar GlobalSettings = /** @class */ (function () {\n function GlobalSettings() {\n }\n GlobalSettings.getValue = function (key, defaultValue) {\n var globalSettings = _getGlobalSettings();\n if (globalSettings[key] === undefined) {\n globalSettings[key] = typeof defaultValue === 'function' ? defaultValue() : defaultValue;\n }\n return globalSettings[key];\n };\n GlobalSettings.setValue = function (key, value) {\n var globalSettings = _getGlobalSettings();\n var callbacks = globalSettings[CALLBACK_STATE_PROP_NAME];\n var oldValue = globalSettings[key];\n if (value !== oldValue) {\n globalSettings[key] = value;\n var changeDescription = {\n oldValue: oldValue,\n value: value,\n key: key\n };\n for (var id in callbacks) {\n if (callbacks.hasOwnProperty(id)) {\n callbacks[id](changeDescription);\n }\n }\n }\n return value;\n };\n GlobalSettings.addChangeListener = function (cb) {\n // Note: we use generated ids on the callbacks to create a map of the callbacks, which optimizes removal.\n // (It's faster to delete a key than it is to look up the index of an object and splice an array.)\n var id = cb.__id__;\n var callbacks = _getCallbacks();\n if (!id) {\n id = cb.__id__ = String(_counter++);\n }\n callbacks[id] = cb;\n };\n GlobalSettings.removeChangeListener = function (cb) {\n var callbacks = _getCallbacks();\n delete callbacks[cb.__id__];\n };\n return GlobalSettings;\n}());\nexport { GlobalSettings };\nfunction _getGlobalSettings() {\n var win = getWindow();\n var globalObj = win || {};\n if (!globalObj[GLOBAL_SETTINGS_PROP_NAME]) {\n globalObj[GLOBAL_SETTINGS_PROP_NAME] = (_a = {},\n _a[CALLBACK_STATE_PROP_NAME] = {},\n _a);\n }\n return globalObj[GLOBAL_SETTINGS_PROP_NAME];\n var _a;\n}\nfunction _getCallbacks() {\n var globalSettings = _getGlobalSettings();\n return globalSettings[CALLBACK_STATE_PROP_NAME];\n}\n//# sourceMappingURL=GlobalSettings.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "index": 366, - "index2": 362, - "size": 3377, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "./Customizations", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/Customizations", - "loc": "4:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "17:5-19" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/scheme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/scheme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/scheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "20:32-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "25:4-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "25:20-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "28:20-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "33:43-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony import specifier", - "userRequest": "./customizations/Customizations", - "loc": "37:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony import specifier", - "userRequest": "./customizations/Customizations", - "loc": "51:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony import specifier", - "userRequest": "./customizations/Customizations", - "loc": "56:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "69:4-18" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony side effect evaluation", - "userRequest": "./Customizations", - "loc": "3:0-50" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "28:8-22" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "31:8-22" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/Customizations", - "loc": "20:0-48" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/Customizations", - "loc": "20:0-48" - } - ], - "usedExports": [ - "Customizations" - ], - "providedExports": [ - "Customizations" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import * as tslib_1 from \"tslib\";\nimport { GlobalSettings } from '../GlobalSettings';\nvar CustomizationsGlobalKey = 'customizations';\nvar NO_CUSTOMIZATIONS = { settings: {}, scopedSettings: {}, inCustomizerContext: false };\nvar _allSettings = GlobalSettings.getValue(CustomizationsGlobalKey, {\n settings: {},\n scopedSettings: {},\n inCustomizerContext: false\n});\nvar _events = [];\nvar Customizations = /** @class */ (function () {\n function Customizations() {\n }\n Customizations.reset = function () {\n _allSettings.settings = {};\n _allSettings.scopedSettings = {};\n };\n /** Apply global Customization settings.\n * @example Customizations.applySettings(\\{ theme: \\{...\\} \\});\n */\n Customizations.applySettings = function (settings) {\n _allSettings.settings = tslib_1.__assign({}, _allSettings.settings, settings);\n Customizations._raiseChange();\n };\n /** Apply Customizations to a particular named scope, like a component.\n * @example Customizations.applyScopedSettings('Nav', \\{ styles: () =\\> \\{\\} \\});\n */\n Customizations.applyScopedSettings = function (scopeName, settings) {\n _allSettings.scopedSettings[scopeName] = tslib_1.__assign({}, _allSettings.scopedSettings[scopeName], settings);\n Customizations._raiseChange();\n };\n Customizations.getSettings = function (properties, scopeName, localSettings\n // tslint:disable-next-line:no-any\n ) {\n if (localSettings === void 0) { localSettings = NO_CUSTOMIZATIONS; }\n var settings = {};\n var localScopedSettings = (scopeName && localSettings.scopedSettings[scopeName]) || {};\n var globalScopedSettings = (scopeName && _allSettings.scopedSettings[scopeName]) || {};\n for (var _i = 0, properties_1 = properties; _i < properties_1.length; _i++) {\n var property = properties_1[_i];\n settings[property] =\n localScopedSettings[property] ||\n localSettings.settings[property] ||\n globalScopedSettings[property] ||\n _allSettings.settings[property];\n }\n return settings;\n };\n /** Used to run some code that sets Customizations without triggering an update until the end.\n * Useful for applying Customizations that don't affect anything currently rendered, or for\n * applying many customizations at once.\n * @param suppressUpdate - Do not raise the change event at the end, preventing all updates\n */\n Customizations.applyBatchedUpdates = function (code, suppressUpdate) {\n Customizations._suppressUpdates = true;\n try {\n code();\n }\n catch ( /* do nothing */_a) { /* do nothing */ }\n Customizations._suppressUpdates = false;\n if (!suppressUpdate) {\n Customizations._raiseChange();\n }\n };\n Customizations.observe = function (onChange) {\n _events.push(onChange);\n };\n Customizations.unobserve = function (onChange) {\n _events = _events.filter(function (cb) { return cb !== onChange; });\n };\n Customizations._raiseChange = function () {\n if (!Customizations._suppressUpdates) {\n _events.forEach(function (cb) { return cb(); });\n }\n };\n return Customizations;\n}());\nexport { Customizations };\n//# sourceMappingURL=Customizations.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "index": 370, - "index2": 363, - "size": 247, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/CustomizerContext", - "loc": "5:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "./CustomizerContext", - "loc": "5:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "32:48-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony import specifier", - "userRequest": "./customizations/CustomizerContext", - "loc": "47:39-56" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony side effect evaluation", - "userRequest": "./CustomizerContext", - "loc": "4:0-56" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "36:36-53" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "41:39-56" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/CustomizerContext", - "loc": "22:0-51" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/CustomizerContext", - "loc": "22:0-51" - } - ], - "usedExports": [ - "CustomizerContext" - ], - "providedExports": [ - "CustomizerContext" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import * as React from 'react';\nexport var CustomizerContext = React.createContext({\n customizations: {\n inCustomizerContext: false,\n settings: {},\n scopedSettings: {}\n }\n});\n//# sourceMappingURL=CustomizerContext.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "index": 365, - "index2": 365, - "size": 5533, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:19-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:29-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:32-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:18-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:22-28" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./styled", - "loc": "51:0-25" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./styled", - "loc": "51:0-25" - } - ], - "usedExports": [ - "styled" - ], - "providedExports": [ - "styled" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { concatStyleSets } from '@uifabric/merge-styles';\nimport { Customizations } from './customizations/Customizations';\nimport { CustomizerContext } from './customizations/CustomizerContext';\nvar DefaultFields = ['theme', 'styles'];\n/**\n * The styled HOC wrapper allows you to create a functional wrapper around a given component which will resolve\n * getStyles functional props, and mix customized props passed in using concatStyleSets.\n *\n * @example\n * ```tsx\n * export const Toggle = styled(\n * ToggleBase,\n * props => ({ root: { background: 'red' }})\n * );\n * ```\n * @param Component - The unstyled base component to render, which receives styles.\n * @param baseStyles - The styles which should be curried with the component.\n * @param getProps - A helper which provides default props.\n * @param customizable - An object which defines which props can be customized using the Customizer.\n * @param pure - A boolean indicating if the component should avoid re-rendering when props haven't changed.\n * Note that pure should not be used on components which allow children, or take in complex objects or\n * arrays as props which could mutate on every render.\n */\nexport function styled(Component, baseStyles, getProps, customizable, pure) {\n customizable = customizable || { scope: '', fields: undefined };\n var scope = customizable.scope, _a = customizable.fields, fields = _a === void 0 ? DefaultFields : _a;\n var ParentComponent = pure ? React.PureComponent : React.Component;\n var Wrapped = /** @class */ (function (_super) {\n tslib_1.__extends(Wrapped, _super);\n function Wrapped() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._inCustomizerContext = false;\n _this._renderContent = function (context) {\n _this._inCustomizerContext = !!context.customizations.inCustomizerContext;\n var settings = Customizations.getSettings(fields, scope, context.customizations);\n var customizedStyles = settings.styles, dir = settings.dir, rest = tslib_1.__rest(settings, [\"styles\", \"dir\"]);\n var additionalProps = getProps ? getProps(_this.props) : undefined;\n _this._updateStyles(customizedStyles);\n return React.createElement(Component, tslib_1.__assign({}, rest, additionalProps, _this.props, { styles: _this._styles }));\n };\n _this._onSettingsChanged = function () { return _this.forceUpdate(); };\n return _this;\n }\n Wrapped.prototype.render = function () {\n return React.createElement(CustomizerContext.Consumer, null, this._renderContent);\n };\n Wrapped.prototype.componentDidMount = function () {\n if (!this._inCustomizerContext) {\n Customizations.observe(this._onSettingsChanged);\n }\n };\n Wrapped.prototype.componentWillUnmount = function () {\n if (!this._inCustomizerContext) {\n Customizations.unobserve(this._onSettingsChanged);\n }\n };\n Wrapped.prototype._updateStyles = function (customizedStyles) {\n var _this = this;\n // tslint:disable-next-line:no-any\n if (!this._styles || customizedStyles !== this._styles.__cachedInputs__[1] || !!this.props.styles) {\n // Cache the customized styles.\n // this._customizedStyles = customizedStyles;\n // Using styled components as the Component arg will result in nested styling arrays.\n this._styles = function (styleProps) { return _resolve(styleProps, baseStyles, customizedStyles, _this.props.styles); };\n // The __cachedInputs__ array is attached to the function and consumed by the\n // classNamesFunction as a list of keys to include for memoizing classnames.\n // tslint:disable-next-line:no-any\n this._styles.__cachedInputs__ = [baseStyles, customizedStyles, this.props.styles];\n }\n };\n // Function.prototype.name is an ES6 feature, so the cast to any is required until we're\n // able to drop IE 11 support and compile with ES6 libs\n // tslint:disable-next-line:no-any\n Wrapped.displayName = \"Styled\" + (Component.displayName || Component.name);\n return Wrapped;\n }(ParentComponent));\n // This preserves backwards compatibility.\n // tslint:disable-next-line:no-any\n return Wrapped;\n}\nfunction _resolve(styleProps) {\n var allStyles = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n allStyles[_i - 1] = arguments[_i];\n }\n var result = [];\n for (var _a = 0, allStyles_1 = allStyles; _a < allStyles_1.length; _a++) {\n var styles = allStyles_1[_a];\n if (styles) {\n result.push(typeof styles === 'function' ? styles(styleProps) : styles);\n }\n }\n if (result.length === 1) {\n return result[0];\n }\n else if (result.length) {\n // cliffkoh: I cannot figure out how to avoid the cast to any here.\n // It is something to do with the use of Omit in IStyleSet.\n // It might not be necessary once Omit becomes part of lib.d.ts (when we remove our own Omit and rely on\n // the official version).\n // tslint:disable-next-line:no-any\n return concatStyleSets.apply(void 0, result);\n }\n return {};\n}\n//# sourceMappingURL=styled.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "index": 373, - "index2": 375, - "size": 4977, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:38-56" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./classNamesFunction", - "loc": "17:0-37" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./classNamesFunction", - "loc": "17:0-37" - } - ], - "usedExports": [ - "classNamesFunction" - ], - "providedExports": [ - "classNamesFunction" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { mergeStyleSets, Stylesheet } from '@uifabric/merge-styles';\nvar MAX_CACHE_COUNT = 50;\nvar _memoizedClassNames = 0;\nvar stylesheet = Stylesheet.getInstance();\nif (stylesheet && stylesheet.onReset) {\n stylesheet.onReset(function () { return _memoizedClassNames++; });\n}\n// Note that because of the caching nature within the classNames memoization,\n// I've disabled this rule to simply be able to work with any types.\n// tslint:disable:no-any\n// This represents a prop we attach to each Map to indicate the cached return value\n// associated with the graph node.\nvar RetVal = '__retval__';\n/**\n * Creates a getClassNames function which calls getStyles given the props, and injects them\n * into mergeStyleSets.\n *\n * Note that the props you pass in on every render should be in the same order and\n * immutable (numbers, strings, and booleans). This will allow the results to be memoized. Violating\n * these will cause extra recalcs to occur.\n */\nexport function classNamesFunction(options) {\n // We build a trie where each node is a Map. The map entry key represents an argument\n // value, and the entry value is another node (Map). Each node has a `__retval__`\n // property which is used to hold the cached response.\n if (options === void 0) { options = {}; }\n // To derive the response, we can simply ensure the arguments are added or already\n // exist in the trie. At the last node, if there is a `__retval__` we return that. Otherwise\n // we call the `getStyles` api to evaluate, cache on the property, and return that.\n var map = new Map();\n var resultCount = 0;\n var currentMemoizedClassNames = _memoizedClassNames;\n var getClassNames = function (styleFunctionOrObject, styleProps) {\n if (styleProps === void 0) { styleProps = {}; }\n var current = map;\n var disableCaching = options.disableCaching;\n // On reset of our stylesheet, reset memoized cache.\n if (currentMemoizedClassNames !== _memoizedClassNames) {\n currentMemoizedClassNames = _memoizedClassNames;\n map = new Map();\n resultCount = 0;\n }\n if (!options.disableCaching) {\n current = _traverseMap(map, styleFunctionOrObject);\n current = _traverseMap(current, styleProps);\n }\n if (disableCaching || !current[RetVal]) {\n if (styleFunctionOrObject === undefined) {\n current[RetVal] = {};\n }\n else {\n current[RetVal] = mergeStyleSets(typeof styleFunctionOrObject === 'function' ? styleFunctionOrObject(styleProps) : styleFunctionOrObject);\n }\n if (!disableCaching) {\n resultCount++;\n }\n }\n if (resultCount > MAX_CACHE_COUNT) {\n map.clear();\n resultCount = 0;\n // Mutate the options passed in, that's all we can do.\n options.disableCaching = true;\n // Note: this code is great for debugging problems with styles being recaculated, but commenting it out\n // to avoid confusing consumers.\n // if (process.env.NODE_ENV !== 'production') {\n // console.log('Styles are being recalculated far too frequently. Something is mutating the class over and over.');\n // // tslint:disable-next-line:no-console\n // console.trace();\n // }\n }\n // Note: the RetVal is an attached property on the Map; not a key in the Map. We use this attached property to\n // cache the return value for this branch of the graph.\n return current[RetVal];\n };\n return getClassNames;\n}\nfunction _derive(obj) {\n return typeof obj === 'function' ? obj(this) : obj;\n}\nfunction _traverseEdge(current, value) {\n value = _normalizeValue(value);\n if (!current.has(value)) {\n current.set(value, new Map());\n }\n return current.get(value);\n}\nfunction _traverseMap(current, inputs) {\n // The styled helper will generate the styles function and will attach the cached\n // inputs (consisting of the default styles, customzied styles, and user provided styles.)\n // These should be used as cache keys for deriving the memoized value.\n if (typeof inputs === 'function' && inputs.__cachedInputs__) {\n for (var _i = 0, _a = inputs.__cachedInputs__; _i < _a.length; _i++) {\n var input = _a[_i];\n current = _traverseEdge(current, input);\n }\n }\n else if (typeof inputs === 'object') {\n for (var propName in inputs) {\n if (inputs.hasOwnProperty(propName)) {\n current = _traverseEdge(current, inputs[propName]);\n }\n }\n }\n return current;\n}\nfunction _normalizeValue(value) {\n switch (value) {\n case undefined:\n return '__undefined__';\n case null:\n return '__null__';\n default:\n return value;\n }\n}\n//# sourceMappingURL=classNamesFunction.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "index": 431, - "index2": 422, - "size": 4788, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/properties.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/properties.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/properties.js", - "type": "harmony side effect evaluation", - "userRequest": "./object", - "loc": "1:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/EventGroup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/EventGroup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/EventGroup.js", - "type": "harmony side effect evaluation", - "userRequest": "./object", - "loc": "2:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/EventGroup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/EventGroup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/EventGroup.js", - "type": "harmony import specifier", - "userRequest": "./object", - "loc": "38:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:20-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "49:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "105:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "105:57-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "144:16-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "163:46-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "233:27-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "263:25-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "264:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "265:35-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "286:20-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "301:41-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "330:23-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "333:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "346:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "346:57-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "357:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/properties.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/properties.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/properties.js", - "type": "harmony import specifier", - "userRequest": "./object", - "loc": "367:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "437:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "713:16-22" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./object", - "loc": "40:0-25" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "40:0-25" - } - ], - "usedExports": [ - "filteredAssign", - "assign", - "getId", - "shallowCompare" - ], - "providedExports": [ - "shallowCompare", - "assign", - "filteredAssign", - "getId", - "resetIds", - "mapEnumByName", - "values" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { Stylesheet } from '@uifabric/merge-styles';\nimport { getWindow } from './dom/getWindow';\n// Initialize global window id.\nvar CURRENT_ID_PROPERTY = '__currentId__';\nvar DEFAULT_ID_STRING = 'id__';\n// tslint:disable-next-line:no-any\nvar _global = getWindow() || {};\nif (_global[CURRENT_ID_PROPERTY] === undefined) {\n _global[CURRENT_ID_PROPERTY] = 0;\n}\n// tslint:disable-next-line:no-any\nfunction checkProperties(a, b) {\n for (var propName in a) {\n if (a.hasOwnProperty(propName)) {\n if (!b.hasOwnProperty(propName) || b[propName] !== a[propName]) {\n return false;\n }\n }\n }\n return true;\n}\n/**\n * Compares a to b and b to a.\n *\n * @public\n */\nexport function shallowCompare(a, b) {\n return checkProperties(a, b) && checkProperties(b, a);\n}\n/**\n * Makes a resulting merge of a bunch of objects. Pass in the target object followed by 1 or more\n * objects as arguments and they will be merged sequentially into the target. Note that this will\n * shallow merge; it will not create new cloned values for target members.\n *\n * @public\n * @param target - Target object to merge following object arguments into.\n * @param args - One or more objects that will be mixed into the target in the order they are provided.\n * @returns Resulting merged target.\n */\n// tslint:disable-next-line:no-any\nexport function assign(target) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n return filteredAssign.apply(this, [null, target].concat(args));\n}\n/**\n * Makes a resulting merge of a bunch of objects, but allows a filter function to be passed in to filter\n * the resulting merges. This allows for scenarios where you want to merge \"everything except that one thing\"\n * or \"properties that start with data-\". Note that this will shallow merge; it will not create new cloned\n * values for target members.\n *\n * @public\n * @param isAllowed - Callback to determine if the given propName is allowed in the result.\n * @param target - Target object to merge following object arguments into.\n * @param args - One or more objects that will be mixed into the target in the order they are provided.\n * @returns Resulting merged target.\n */\n// tslint:disable-next-line:no-any\nexport function filteredAssign(isAllowed, target) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n target = target || {};\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\n var sourceObject = args_1[_a];\n if (sourceObject) {\n for (var propName in sourceObject) {\n if (sourceObject.hasOwnProperty(propName) && (!isAllowed || isAllowed(propName))) {\n target[propName] = sourceObject[propName];\n }\n }\n }\n }\n return target;\n}\n// Configure ids to reset on stylesheet resets.\nvar stylesheet = Stylesheet.getInstance();\nif (stylesheet && stylesheet.onReset) {\n stylesheet.onReset(resetIds);\n}\n/**\n * Generates a unique id in the global scope (this spans across duplicate copies of the same library.)\n *\n * @public\n */\nexport function getId(prefix) {\n var index = _global[CURRENT_ID_PROPERTY]++;\n return (prefix || DEFAULT_ID_STRING) + index;\n}\n/**\n * Resets id counter to an (optional) number.\n *\n * @public\n */\nexport function resetIds(counter) {\n if (counter === void 0) { counter = 0; }\n _global[CURRENT_ID_PROPERTY] = counter;\n}\n/* Takes an enum and iterates over each value of the enum (as a string), running the callback on each, returning a mapped array.\n * The callback takes as a first parameter the string that represents the name of the entry, and the second parameter is the\n * value of that entry, which is the value you'd normally use when using the enum (usually a number).\n * */\nexport function mapEnumByName(\n// tslint:disable-next-line:no-any\ntheEnum, callback) {\n // map to satisfy compiler since it doesn't realize we strip out undefineds in the .filter() call\n return Object.keys(theEnum)\n .map(function (p) {\n // map on each property name as a string\n if (String(Number(p)) !== p) {\n // if the property is not just a number (because enums in TypeScript will map both ways)\n return callback(p, theEnum[p]);\n }\n })\n .filter(function (v) { return !!v; }); // only return elements with values\n}\n/**\n * Get all values in an object dictionary\n *\n * @param obj - The dictionary to get values for\n */\n// tslint:disable-next-line:no-any\nexport function values(obj) {\n return Object.keys(obj).reduce(function (arr, key) {\n arr.push(obj[key]);\n return arr;\n }, []);\n}\n//# sourceMappingURL=object.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/properties.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/properties.js", - "index": 430, - "index2": 423, - "size": 8199, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:53-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:44-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:37-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:58-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "30:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "30:44-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "33:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "33:47-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:53-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:25-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:52-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "68:81-95" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "68:108-121" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "119:67-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "119:93-109" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "137:47-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "137:73-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "139:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "139:50-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "174:60-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "174:87-100" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:64-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "301:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "301:142-158" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "301:161-177" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "356:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "356:50-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "446:29-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "625:45-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "625:71-84" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./properties", - "loc": "43:0-29" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./properties", - "loc": "43:0-29" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:22-36" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:44-65" - } - ], - "usedExports": [ - "getNativeProps", - "htmlElementProperties", - "imageProperties", - "divProperties", - "anchorProperties", - "buttonProperties" - ], - "providedExports": [ - "baseElementEvents", - "baseElementProperties", - "htmlElementProperties", - "labelProperties", - "audioProperties", - "videoProperties", - "olProperties", - "liProperties", - "anchorProperties", - "buttonProperties", - "inputProperties", - "textAreaProperties", - "selectProperties", - "optionProperties", - "tableProperties", - "trProperties", - "thProperties", - "tdProperties", - "colGroupProperties", - "colProperties", - "formProperties", - "iframeProperties", - "imgProperties", - "imageProperties", - "divProperties", - "getNativeProps" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { filteredAssign } from './object';\n/**\n * An array of events that are allowed on every html element type.\n *\n * @public\n */\nexport var baseElementEvents = [\n 'onCopy',\n 'onCut',\n 'onPaste',\n 'onCompositionEnd',\n 'onCompositionStart',\n 'onCompositionUpdate',\n 'onFocus',\n 'onFocusCapture',\n 'onBlur',\n 'onBlurCapture',\n 'onChange',\n 'onInput',\n 'onSubmit',\n 'onLoad',\n 'onError',\n 'onKeyDown',\n 'onKeyDownCapture',\n 'onKeyPress',\n 'onKeyUp',\n 'onAbort',\n 'onCanPlay',\n 'onCanPlayThrough',\n 'onDurationChange',\n 'onEmptied',\n 'onEncrypted',\n 'onEnded',\n 'onLoadedData',\n 'onLoadedMetadata',\n 'onLoadStart',\n 'onPause',\n 'onPlay',\n 'onPlaying',\n 'onProgress',\n 'onRateChange',\n 'onSeeked',\n 'onSeeking',\n 'onStalled',\n 'onSuspend',\n 'onTimeUpdate',\n 'onVolumeChange',\n 'onWaiting',\n 'onClick',\n 'onClickCapture',\n 'onContextMenu',\n 'onDoubleClick',\n 'onDrag',\n 'onDragEnd',\n 'onDragEnter',\n 'onDragExit',\n 'onDragLeave',\n 'onDragOver',\n 'onDragStart',\n 'onDrop',\n 'onMouseDown',\n 'onMouseDownCapture',\n 'onMouseEnter',\n 'onMouseLeave',\n 'onMouseMove',\n 'onMouseOut',\n 'onMouseOver',\n 'onMouseUp',\n 'onMouseUpCapture',\n 'onSelect',\n 'onTouchCancel',\n 'onTouchEnd',\n 'onTouchMove',\n 'onTouchStart',\n 'onScroll',\n 'onWheel',\n 'onPointerCancel',\n 'onPointerDown',\n 'onPointerEnter',\n 'onPointerLeave',\n 'onPointerMove',\n 'onPointerOut',\n 'onPointerOver',\n 'onPointerUp',\n 'onGotPointerCapture',\n 'onLostPointerCapture'\n];\n/**\n * An array of element attributes which are allowed on every html element type.\n *\n * @public\n */\nexport var baseElementProperties = [\n 'accessKey',\n 'children',\n 'className',\n 'contentEditable',\n 'dir',\n 'draggable',\n 'hidden',\n 'htmlFor',\n 'id',\n 'lang',\n 'role',\n 'style',\n 'tabIndex',\n 'title',\n 'translate',\n 'spellCheck',\n 'name' // global\n];\n/**\n * An array of HTML element properties and events.\n *\n * @public\n */\nexport var htmlElementProperties = baseElementProperties.concat(baseElementEvents);\n/**\n * An array of LABEL tag properties and events.\n *\n * @public\n */\nexport var labelProperties = htmlElementProperties.concat([\n 'form' // button, fieldset, input, label, meter, object, output, select, textarea\n]);\n/**\n * An array of AUDIO tag properties and events.\n *\n * @public\n */\nexport var audioProperties = htmlElementProperties.concat([\n 'height',\n 'loop',\n 'muted',\n 'preload',\n 'src',\n 'width' // canvas, embed, iframe, img, input, object, video\n]);\n/**\n * An array of VIDEO tag properties and events.\n *\n * @public\n */\nexport var videoProperties = audioProperties.concat([\n 'poster' // video\n]);\n/**\n * An array of OL tag properties and events.\n *\n * @public\n */\nexport var olProperties = htmlElementProperties.concat([\n 'start' // ol\n]);\n/**\n * An array of LI tag properties and events.\n *\n * @public\n */\nexport var liProperties = htmlElementProperties.concat([\n 'value' // button, input, li, option, meter, progress, param\n]);\n/**\n * An array of A tag properties and events.\n *\n * @public\n */\nexport var anchorProperties = htmlElementProperties.concat([\n 'download',\n 'href',\n 'hrefLang',\n 'media',\n 'rel',\n 'target',\n 'type' // a, button, input, link, menu, object, script, source, style\n]);\n/**\n * An array of BUTTON tag properties and events.\n *\n * @public\n */\nexport var buttonProperties = htmlElementProperties.concat([\n 'autoFocus',\n 'disabled',\n 'form',\n 'formAction',\n 'formEncType',\n 'formMethod',\n 'formNoValidate',\n 'formTarget',\n 'type',\n 'value' // button, input, li, option, meter, progress, param,\n]);\n/**\n * An array of INPUT tag properties and events.\n *\n * @public\n */\nexport var inputProperties = buttonProperties.concat([\n 'accept',\n 'alt',\n 'autoComplete',\n 'checked',\n 'dirname',\n 'form',\n 'height',\n 'inputMode',\n 'list',\n 'max',\n 'maxLength',\n 'min',\n 'multiple',\n 'pattern',\n 'placeholder',\n 'readOnly',\n 'required',\n 'src',\n 'step',\n 'size',\n 'type',\n 'value',\n 'width' // canvas, embed, iframe, img, input, object, video\n]);\n/**\n * An array of TEXTAREA tag properties and events.\n *\n * @public\n */\nexport var textAreaProperties = buttonProperties.concat([\n 'cols',\n 'dirname',\n 'form',\n 'maxLength',\n 'placeholder',\n 'readOnly',\n 'required',\n 'rows',\n 'wrap' // textarea\n]);\n/**\n * An array of SELECT tag properties and events.\n *\n * @public\n */\nexport var selectProperties = buttonProperties.concat([\n 'form',\n 'multiple',\n 'required' // input, select, textarea\n]);\nexport var optionProperties = htmlElementProperties.concat([\n 'selected',\n 'value' // button, input, li, option, meter, progress, param\n]);\n/**\n * An array of TABLE tag properties and events.\n *\n * @public\n */\nexport var tableProperties = htmlElementProperties.concat([\n 'cellPadding',\n 'cellSpacing' // table\n]);\n/**\n * An array of TR tag properties and events.\n *\n * @public\n */\nexport var trProperties = htmlElementProperties;\n/**\n * An array of TH tag properties and events.\n *\n * @public\n */\nexport var thProperties = htmlElementProperties.concat([\n 'rowSpan',\n 'scope' // th\n]);\n/**\n * An array of TD tag properties and events.\n *\n * @public\n */\nexport var tdProperties = htmlElementProperties.concat([\n 'colSpan',\n 'headers',\n 'rowSpan',\n 'scope' // th\n]);\nexport var colGroupProperties = htmlElementProperties.concat([\n 'span' // col, colgroup\n]);\nexport var colProperties = htmlElementProperties.concat([\n 'span' // col, colgroup\n]);\n/**\n * An array of FORM tag properties and events.\n *\n * @public\n */\nexport var formProperties = htmlElementProperties.concat([\n 'acceptCharset',\n 'action',\n 'encType',\n 'encType',\n 'method',\n 'noValidate',\n 'target' // form\n]);\n/**\n * An array of IFRAME tag properties and events.\n *\n * @public\n */\nexport var iframeProperties = htmlElementProperties.concat([\n 'allow',\n 'allowFullScreen',\n 'allowPaymentRequest',\n 'allowTransparency',\n 'csp',\n 'height',\n 'importance',\n 'referrerPolicy',\n 'sandbox',\n 'src',\n 'srcDoc',\n 'width' // canvas, embed, iframe, img, input, object, video,\n]);\n/**\n * An array of IMAGE tag properties and events.\n *\n * @public\n */\nexport var imgProperties = htmlElementProperties.concat([\n 'alt',\n 'crossOrigin',\n 'height',\n 'src',\n 'srcSet',\n 'useMap',\n 'width' // canvas, embed, iframe, img, input, object, video\n]);\n/**\n * @deprecated Use imgProperties for img elements.\n */\nexport var imageProperties = imgProperties;\n/**\n * An array of DIV tag properties and events.\n *\n * @public\n */\nexport var divProperties = htmlElementProperties;\n/**\n * Gets native supported props for an html element provided the allowance set. Use one of the property\n * sets defined (divProperties, buttonPropertes, etc) to filter out supported properties from a given\n * props set. Note that all data- and aria- prefixed attributes will be allowed.\n * NOTE: getNativeProps should always be applied first when adding props to a react component. The\n * non-native props should be applied second. This will prevent getNativeProps from overriding your custom props.\n * For example, if props passed to getNativeProps has an onClick function and getNativeProps is added to\n * the component after an onClick function is added, then the getNativeProps onClick will override it.\n *\n * @public\n * @param props - The unfiltered input props\n * @param allowedPropsNames- The array of allowed propnames.\n * @returns The filtered props\n */\nexport function getNativeProps(props, allowedPropNames, excludedPropNames) {\n return filteredAssign(function (propName) {\n return ((!excludedPropNames || excludedPropNames.indexOf(propName) < 0) &&\n (propName.indexOf('data-') === 0 || propName.indexOf('aria-') === 0 || allowedPropNames.indexOf(propName) >= 0));\n }, {}, props);\n}\n//# sourceMappingURL=properties.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "index": 392, - "index2": 381, - "size": 174, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "type": "harmony side effect evaluation", - "userRequest": "../MergeStyles", - "loc": "1:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./MergeStyles", - "loc": "4:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./MergeStyles", - "loc": "4:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "type": "harmony import specifier", - "userRequest": "../MergeStyles", - "loc": "17:38-49" - } - ], - "usedExports": [ - "mergeStyleSets", - "mergeStyles", - "keyframes", - "concatStyleSets" - ], - "providedExports": [ - "InjectionMode", - "Stylesheet", - "concatStyleSets", - "fontFace", - "keyframes", - "mergeStyleSets", - "mergeStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export { InjectionMode, Stylesheet, concatStyleSets, fontFace, keyframes, mergeStyleSets, mergeStyles } from '@uifabric/merge-styles';\n//# sourceMappingURL=MergeStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "index": 390, - "index2": 387, - "size": 239, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../utilities/index", - "loc": "1:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/index", - "loc": "3:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./utilities/index", - "loc": "3:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "type": "harmony import specifier", - "userRequest": "../utilities/index", - "loc": "6:33-46" - } - ], - "usedExports": [ - "buildClassMap", - "getIcon" - ], - "providedExports": [ - "buildClassMap", - "getIcon", - "registerIcons", - "registerIconAlias", - "unregisterIcons", - "setIconOptions", - "getIconClassName" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export { buildClassMap } from './buildClassMap';\nexport { getIcon, registerIcons, registerIconAlias, unregisterIcons, setIconOptions } from './icons';\nexport { getIconClassName } from './getIconClassName';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "index": 404, - "index2": 393, - "size": 1204, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "7:48-59" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./language", - "loc": "35:0-27" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./language", - "loc": "35:0-27" - } - ], - "usedExports": [ - "getLanguage" - ], - "providedExports": [ - "getLanguage", - "setLanguage" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getDocument } from './dom/getDocument';\nimport { getItem, setItem } from './localStorage';\n// Default to undefined so that we initialize on first read.\nvar _language;\n/**\n * Gets the rtl state of the page (returns true if in rtl.)\n *\n * @public\n */\nexport function getLanguage() {\n if (_language === undefined) {\n var doc = getDocument();\n var savedLanguage = getItem('language');\n if (savedLanguage !== null) {\n _language = savedLanguage;\n }\n if (_language === undefined && doc) {\n _language = doc.documentElement.getAttribute('lang');\n }\n if (_language === undefined) {\n _language = 'en';\n }\n }\n return _language;\n}\n/**\n * Sets the rtl state of the page (by adjusting the dir attribute of the html element.)\n *\n * @public\n */\nexport function setLanguage(language, avoidPersisting) {\n if (avoidPersisting === void 0) { avoidPersisting = false; }\n var doc = getDocument();\n if (doc) {\n doc.documentElement.setAttribute('lang', language);\n }\n if (!avoidPersisting) {\n setItem('language', language);\n }\n _language = language;\n}\n//# sourceMappingURL=language.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/KeyCodes.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/KeyCodes.js", - "index": 412, - "index2": 397, - "size": 1714, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "1:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "1:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "3:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "4:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "5:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "6:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "7:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "8:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "9:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "10:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "11:7-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "17:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "47:20-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "48:18-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "50:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "51:18-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "66:67-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "71:32-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "71:98-106" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "73:67-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "79:82-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "82:71-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "82:108-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "89:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "91:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "93:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "99:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "105:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "111:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "117:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "120:45-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "120:62-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "137:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "138:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "145:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "145:85-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "165:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "170:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "175:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "180:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "185:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "189:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "190:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "195:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "207:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "208:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "229:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "238:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "269:37-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "269:53-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "271:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "271:86-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "515:32-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "648:28-36" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "9:0-27" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeyCodes", - "loc": "9:0-27" - } - ], - "usedExports": [ - "KeyCodes" - ], - "providedExports": [ - "KeyCodes" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Simulated enum for keycodes. These will get inlined by uglify when used much like an enum\n *\n * @public\n * {@docCategory KeyCodes}\n */\nexport var KeyCodes = {\n backspace: 8,\n tab: 9,\n enter: 13,\n shift: 16,\n ctrl: 17,\n alt: 18,\n pauseBreak: 19,\n capslock: 20,\n escape: 27,\n space: 32,\n pageUp: 33,\n pageDown: 34,\n end: 35,\n home: 36,\n left: 37,\n up: 38,\n right: 39,\n down: 40,\n insert: 45,\n del: 46,\n zero: 48,\n one: 49,\n two: 50,\n three: 51,\n four: 52,\n five: 53,\n six: 54,\n seven: 55,\n eight: 56,\n nine: 57,\n a: 65,\n b: 66,\n c: 67,\n d: 68,\n e: 69,\n f: 70,\n g: 71,\n h: 72,\n i: 73,\n j: 74,\n k: 75,\n l: 76,\n m: 77,\n n: 78,\n o: 79,\n p: 80,\n q: 81,\n r: 82,\n s: 83,\n t: 84,\n u: 85,\n v: 86,\n w: 87,\n x: 88,\n y: 89,\n z: 90,\n leftWindow: 91,\n rightWindow: 92,\n select: 93,\n zero_numpad: 96,\n one_numpad: 97,\n two_numpad: 98,\n three_numpad: 99,\n four_numpad: 100,\n five_numpad: 101,\n six_numpad: 102,\n seven_numpad: 103,\n eight_numpad: 104,\n nine_numpad: 105,\n multiply: 106,\n add: 107,\n subtract: 109,\n decimalPoint: 110,\n divide: 111,\n f1: 112,\n f2: 113,\n f3: 114,\n f4: 115,\n f5: 116,\n f6: 117,\n f7: 118,\n f8: 119,\n f9: 120,\n f10: 121,\n f11: 122,\n f12: 123,\n numlock: 144,\n scrollLock: 145,\n semicolon: 186,\n equalSign: 187,\n comma: 188,\n dash: 189,\n period: 190,\n forwardSlash: 191,\n graveAccent: 192,\n openBracket: 219,\n backSlash: 220,\n closeBracket: 221,\n singleQuote: 222\n};\n//# sourceMappingURL=KeyCodes.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/keyboard.js", - "index": 411, - "index2": 398, - "size": 873, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony side effect evaluation", - "userRequest": "./keyboard", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:16-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./keyboard", - "loc": "39:12-32" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./keyboard", - "loc": "34:0-27" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./keyboard", - "loc": "34:0-27" - } - ], - "usedExports": [ - "isDirectionalKeyCode" - ], - "providedExports": [ - "isDirectionalKeyCode", - "addDirectionalKeyCode" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { KeyCodes } from './KeyCodes';\nvar DirectionalKeyCodes = (_a = {},\n _a[KeyCodes.up] = 1,\n _a[KeyCodes.down] = 1,\n _a[KeyCodes.left] = 1,\n _a[KeyCodes.right] = 1,\n _a[KeyCodes.home] = 1,\n _a[KeyCodes.end] = 1,\n _a[KeyCodes.tab] = 1,\n _a[KeyCodes.pageUp] = 1,\n _a[KeyCodes.pageDown] = 1,\n _a);\n/**\n * Returns true if the keycode is a directional keyboard key.\n */\nexport function isDirectionalKeyCode(which) {\n return !!DirectionalKeyCodes[which];\n}\n/**\n * Adds a keycode to the list of keys that, when pressed, should cause the focus outlines to be visible.\n * This can be used to add global shortcut keys that directionally move from section to section within\n * an app or between focus trap zones.\n */\nexport function addDirectionalKeyCode(which) {\n DirectionalKeyCodes[which] = 1;\n}\nvar _a;\n//# sourceMappingURL=keyboard.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "index": 410, - "index2": 399, - "size": 1702, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./initializeFocusRects", - "loc": "8:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./initializeFocusRects", - "loc": "28:8-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "29:21-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "70:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "70:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "71:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "78:28-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "89:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "89:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "90:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "111:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "111:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "112:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "147:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "147:75-98" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./initializeFocusRects", - "loc": "32:0-39" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./initializeFocusRects", - "loc": "32:0-39" - } - ], - "usedExports": [ - "IsFocusVisibleClassName", - "initializeFocusRects" - ], - "providedExports": [ - "IsFocusVisibleClassName", - "initializeFocusRects" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getWindow } from './dom/getWindow';\nimport { isDirectionalKeyCode } from './keyboard';\nexport var IsFocusVisibleClassName = 'ms-Fabric--isFocusVisible';\n/**\n * Initializes the logic which:\n *\n * 1. Subscribes keydown and mousedown events. (It will only do it once per window,\n * so it's safe to call this method multiple times.)\n * 2. When the user presses directional keyboard keys, adds the 'ms-Fabric--isFocusVisible' classname\n * to the document body.\n * 3. When the user clicks a mouse button, we remove the classname if it exists.\n *\n * This logic allows components on the page to conditionally render focus treatments only\n * if the global classname exists, which simplifies logic overall.\n *\n * @param window - the window used to add the event listeners\n */\nexport function initializeFocusRects(window) {\n var win = (window || getWindow());\n if (win && !win.__hasInitializeFocusRects__) {\n win.__hasInitializeFocusRects__ = true;\n win.addEventListener('mousedown', _onMouseDown, true);\n win.addEventListener('keydown', _onKeyDown, true);\n }\n}\nfunction _onMouseDown(ev) {\n var win = getWindow(ev.target);\n if (win) {\n var classList = win.document.body.classList;\n if (classList.contains(IsFocusVisibleClassName)) {\n classList.remove(IsFocusVisibleClassName);\n }\n }\n}\nfunction _onKeyDown(ev) {\n var win = getWindow(ev.target);\n if (win) {\n var classList = win.document.body.classList;\n if (isDirectionalKeyCode(ev.which) && !classList.contains(IsFocusVisibleClassName)) {\n classList.add(IsFocusVisibleClassName);\n }\n }\n}\n//# sourceMappingURL=initializeFocusRects.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/memoize.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/memoize.js", - "index": 386, - "index2": 378, - "size": 3992, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:27-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:27-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "5:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:28-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:32-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:34-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:53-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "7:27-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "8:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:37-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:31-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:25-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "50:31-46" - }, - { - "moduleId": "3Htz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:23-38" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "6:23-38" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "5:23-38" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./memoize", - "loc": "37:0-26" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./memoize", - "loc": "37:0-26" - }, - { - "moduleId": "jySA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "6:23-38" - } - ], - "usedExports": [ - "memoizeFunction" - ], - "providedExports": [ - "setMemoizeWeakMap", - "resetMemoizations", - "memoize", - "memoizeFunction" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { Stylesheet } from '@uifabric/merge-styles';\nvar stylesheet = Stylesheet.getInstance();\nif (stylesheet && stylesheet.onReset) {\n Stylesheet.getInstance().onReset(resetMemoizations);\n}\nvar _resetCounter = 0;\nvar _emptyObject = { empty: true };\nvar _dictionary = {};\nvar _weakMap = typeof WeakMap === 'undefined' ? null : WeakMap;\n/**\n * Test utility for providing a custom weakmap.\n *\n * @internal\n * */\nexport function setMemoizeWeakMap(weakMap) {\n _weakMap = weakMap;\n}\n/**\n * Reset memoizations.\n */\nexport function resetMemoizations() {\n _resetCounter++;\n}\n/**\n * Memoize decorator to be used on class methods. WARNING: the `this` reference\n * will be inaccessible within a memoized method, given that a cached method's `this`\n * would not be instance-specific.\n *\n * @public\n */\nexport function memoize(target, key, descriptor) {\n // We bind to \"null\" to prevent people from inadvertently pulling values from \"this\",\n // rather than passing them in as input values which can be memoized.\n var fn = memoizeFunction(descriptor.value && descriptor.value.bind(null));\n return {\n configurable: true,\n get: function () {\n return fn;\n }\n };\n}\n/**\n * Memoizes a function; when you pass in the same parameters multiple times, it returns a cached result.\n * Be careful when passing in objects, you need to pass in the same INSTANCE for caching to work. Otherwise\n * it will grow the cache unnecessarily. Also avoid using default values that evaluate functions; passing in\n * undefined for a value and relying on a default function will execute it the first time, but will not\n * re-evaluate subsequent times which may have been unexpected.\n *\n * By default, the cache will reset after 100 permutations, to avoid abuse cases where the function is\n * unintendedly called with unique objects. Without a reset, the cache could grow infinitely, so we safeguard\n * by resetting. To override this behavior, pass a value of 0 to the maxCacheSize parameter.\n *\n * @public\n * @param cb - The function to memoize.\n * @param maxCacheSize - Max results to cache. If the cache exceeds this value, it will reset on the next call.\n * @returns A memoized version of the function.\n */\nexport function memoizeFunction(cb, maxCacheSize) {\n if (maxCacheSize === void 0) { maxCacheSize = 100; }\n // Avoid breaking scenarios which don't have weak map.\n if (!_weakMap) {\n return cb;\n }\n var rootNode;\n var cacheSize = 0;\n var localResetCounter = _resetCounter;\n // tslint:disable-next-line:no-function-expression\n return function memoizedFunction() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var currentNode = rootNode;\n if (rootNode === undefined || localResetCounter !== _resetCounter || (maxCacheSize > 0 && cacheSize > maxCacheSize)) {\n rootNode = _createNode();\n cacheSize = 0;\n localResetCounter = _resetCounter;\n }\n currentNode = rootNode;\n // Traverse the tree until we find the match.\n for (var i = 0; i < args.length; i++) {\n var arg = _normalizeArg(args[i]);\n if (!currentNode.map.has(arg)) {\n currentNode.map.set(arg, _createNode());\n }\n currentNode = currentNode.map.get(arg);\n }\n if (!currentNode.hasOwnProperty('value')) {\n currentNode.value = cb.apply(void 0, args);\n cacheSize++;\n }\n return currentNode.value;\n };\n}\nfunction _normalizeArg(val) {\n if (!val) {\n return _emptyObject;\n }\n else if (typeof val === 'object' || typeof val === 'function') {\n return val;\n }\n else if (!_dictionary[val]) {\n _dictionary[val] = { val: val };\n }\n return _dictionary[val];\n}\nfunction _createNode() {\n return {\n map: _weakMap ? new _weakMap() : null\n };\n}\n//# sourceMappingURL=memoize.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeSettings.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeSettings.js", - "index": 417, - "index2": 404, - "size": 1752, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/scheme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/scheme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/scheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "33:26-39" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/mergeSettings", - "loc": "25:0-47" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/mergeSettings", - "loc": "25:0-47" - }, - { - "moduleId": "e2k/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeSettings", - "loc": "1:0-69" - }, - { - "moduleId": "e2k/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "type": "harmony import specifier", - "userRequest": "./mergeSettings", - "loc": "13:22-35" - }, - { - "moduleId": "e2k/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/mergeCustomizations.js", - "type": "harmony import specifier", - "userRequest": "./mergeSettings", - "loc": "14:28-47" - } - ], - "usedExports": [ - "mergeSettings" - ], - "providedExports": [ - "mergeSettings", - "mergeScopedSettings" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import * as tslib_1 from \"tslib\";\n/**\n * Merge new and old settings, giving priority to new settings.\n * New settings is optional in which case oldSettings is returned as-is.\n * @param oldSettings - Old settings to fall back to.\n * @param newSettings - New settings that will be merged over oldSettings.\n * @returns Merged settings.\n */\nexport function mergeSettings(oldSettings, newSettings) {\n if (oldSettings === void 0) { oldSettings = {}; }\n var mergeSettingsWith = _isSettingsFunction(newSettings) ? newSettings : _settingsMergeWith(newSettings);\n return mergeSettingsWith(oldSettings);\n}\nexport function mergeScopedSettings(oldSettings, newSettings) {\n if (oldSettings === void 0) { oldSettings = {}; }\n var mergeSettingsWith = _isSettingsFunction(newSettings) ? newSettings : _scopedSettingsMergeWith(newSettings);\n return mergeSettingsWith(oldSettings);\n}\nfunction _isSettingsFunction(settings) {\n return typeof settings === 'function';\n}\nfunction _settingsMergeWith(newSettings) {\n return function (settings) { return (newSettings ? tslib_1.__assign({}, settings, newSettings) : settings); };\n}\nfunction _scopedSettingsMergeWith(scopedSettingsFromProps) {\n if (scopedSettingsFromProps === void 0) { scopedSettingsFromProps = {}; }\n return function (oldScopedSettings) {\n var newScopedSettings = tslib_1.__assign({}, oldScopedSettings);\n for (var scopeName in scopedSettingsFromProps) {\n if (scopedSettingsFromProps.hasOwnProperty(scopeName)) {\n newScopedSettings[scopeName] = tslib_1.__assign({}, oldScopedSettings[scopeName], scopedSettingsFromProps[scopeName]);\n }\n }\n return newScopedSettings;\n };\n}\n//# sourceMappingURL=mergeSettings.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/merge.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/merge.js", - "index": 422, - "index2": 409, - "size": 1608, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "119:43-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "125:43-48" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./merge", - "loc": "38:0-24" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./merge", - "loc": "38:0-24" - } - ], - "usedExports": [ - "merge" - ], - "providedExports": [ - "merge" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Simple deep merge function. Takes all arguments and returns a deep copy of the objects merged\n * together in the order provided. If an object creates a circular reference, it will assign the\n * original reference.\n */\nexport function merge(target) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\n var arg = args_1[_a];\n _merge(target || {}, arg);\n }\n return target;\n}\n/**\n * The _merge helper iterates through all props on source and assigns them to target.\n * When the value is an object, we will create a deep clone of the object. However if\n * there is a circular reference, the value will not be deep cloned and will persist\n * the reference.\n */\n// tslint:disable-next-line:no-any\nfunction _merge(target, source, circularReferences) {\n if (circularReferences === void 0) { circularReferences = []; }\n circularReferences.push(source);\n for (var name_1 in source) {\n if (source.hasOwnProperty(name_1)) {\n var value = source[name_1];\n if (typeof value === 'object') {\n var isCircularReference = circularReferences.indexOf(value) > -1;\n // tslint:disable-next-line:no-any\n target[name_1] = isCircularReference ? value : _merge(target[name_1] || {}, value, circularReferences);\n }\n else {\n target[name_1] = value;\n }\n }\n }\n circularReferences.pop();\n return target;\n}\n//# sourceMappingURL=merge.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "index": 399, - "index2": 414, - "size": 893, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./styles/index", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./styles/index", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../styles/index", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../styles/index", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "type": "harmony import specifier", - "userRequest": "../styles/index", - "loc": "6:47-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony import specifier", - "userRequest": "../styles/index", - "loc": "28:52-60" - } - ], - "usedExports": [ - "getTheme", - "AnimationStyles", - "getGlobalClassNames", - "HighContrastSelector", - "hiddenContentStyle", - "ScreenWidthMinMedium", - "FontWeights", - "getFocusStyle", - "FontSizes", - "getScreenSelector", - "ScreenWidthMaxMedium", - "ZIndexes", - "focusClear", - "AnimationVariables" - ], - "providedExports": [ - "AnimationStyles", - "AnimationVariables", - "DefaultPalette", - "DefaultFontStyles", - "registerDefaultFontFaces", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles", - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "hiddenContentStyle", - "PulsingBeaconAnimationStyles", - "getGlobalClassNames", - "getThemedContext", - "ThemeSettingName", - "getTheme", - "loadTheme", - "createTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "normalize", - "noWrap", - "getFadedOverflowStyle", - "getPlaceholderStyles", - "ZIndexes" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export { AnimationStyles, AnimationVariables } from './AnimationStyles';\nexport { DefaultPalette } from './DefaultPalette';\nexport { DefaultFontStyles, registerDefaultFontFaces } from './DefaultFontStyles';\nexport { FontSizes, FontWeights, IconFontSizes, createFontStyles } from './fonts';\nexport * from './getFocusStyle';\nexport { hiddenContentStyle } from './hiddenContentStyle';\nexport { PulsingBeaconAnimationStyles } from './PulsingBeaconAnimationStyles';\nexport { getGlobalClassNames } from './getGlobalClassNames';\nexport * from './scheme';\nexport { ThemeSettingName, getTheme, loadTheme, createTheme, registerOnThemeChangeCallback, removeOnThemeChangeCallback } from './theme';\nexport * from './CommonStyles';\nexport * from './GeneralStyles';\nexport * from './getFadedOverflowStyle';\nexport * from './getPlaceholderStyles';\nexport * from './zIndexes';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "index": 388, - "index2": 418, - "size": 198, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./classNames/index", - "loc": "1:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./classNames/index", - "loc": "1:0-35" - } - ], - "usedExports": [ - "AnimationClassNames" - ], - "providedExports": [ - "AnimationClassNames", - "FontClassNames", - "ColorClassNames" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export { AnimationClassNames } from './AnimationClassNames';\nexport { FontClassNames } from './FontClassNames';\nexport { ColorClassNames } from './ColorClassNames';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/version.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/version.js", - "index": 428, - "index2": 420, - "size": 274, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "5:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 8, - "source": "// @uifabric/styling@6.50.6\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('@uifabric/styling', '6.50.6');\n//# sourceMappingURL=version.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/css.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/css.js", - "index": 432, - "index2": 424, - "size": 1002, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:79-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "32:128-131" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "84:452-455" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "174:138-141" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "368:23-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "453:338-341" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./css", - "loc": "19:0-22" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./css", - "loc": "19:0-22" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:88-91" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:102-105" - } - ], - "usedExports": [ - "css" - ], - "providedExports": [ - "css" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Concatination helper, which can merge class names together. Skips over falsey values.\n *\n * @public\n */\nexport function css() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var classes = [];\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\n var arg = args_1[_a];\n if (arg) {\n if (typeof arg === 'string') {\n classes.push(arg);\n }\n else if (arg.hasOwnProperty('toString') && typeof arg.toString === 'function') {\n classes.push(arg.toString());\n }\n else {\n // tslint:disable-next-line:no-any\n for (var key in arg) {\n // tslint:disable-next-line:no-any\n if (arg[key]) {\n classes.push(key);\n }\n }\n }\n }\n }\n return classes.join(' ');\n}\n//# sourceMappingURL=css.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "index": 583, - "index2": 576, - "size": 1382, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "31:36-49" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DelayedRender", - "loc": "5:0-32" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DelayedRender", - "loc": "5:0-32" - } - ], - "usedExports": [ - "DelayedRender" - ], - "providedExports": [ - "DelayedRender" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\n/**\n * Utility component for delaying the render of a child component after a given delay. This component\n * requires a single child component; don't pass in many components. Wrap multiple components in a DIV\n * if necessary.\n *\n * @public\n * {@docCategory DelayedRender}\n */\nvar DelayedRender = /** @class */ (function (_super) {\n tslib_1.__extends(DelayedRender, _super);\n function DelayedRender(props) {\n var _this = _super.call(this, props) || this;\n _this.state = {\n isRendered: false\n };\n return _this;\n }\n DelayedRender.prototype.componentDidMount = function () {\n var _this = this;\n var delay = this.props.delay;\n this._timeoutId = setTimeout(function () {\n _this.setState({\n isRendered: true\n });\n }, delay);\n };\n DelayedRender.prototype.componentWillUnmount = function () {\n if (this._timeoutId) {\n clearTimeout(this._timeoutId);\n }\n };\n DelayedRender.prototype.render = function () {\n return this.state.isRendered ? React.Children.only(this.props.children) : null;\n };\n DelayedRender.defaultProps = {\n delay: 0\n };\n return DelayedRender;\n}(React.Component));\nexport { DelayedRender };\n//# sourceMappingURL=DelayedRender.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "index": 586, - "index2": 578, - "size": 16337, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./Async", - "loc": "3:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "32:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "74:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./Async", - "loc": "104:35-40" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Async", - "loc": "1:0-24" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Async", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Async" - ], - "providedExports": [ - "Async" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getWindow } from './dom/getWindow';\n/**\n * Bugs often appear in async code when stuff gets disposed, but async operations don't get canceled.\n * This Async helper class solves these issues by tying async code to the lifetime of a disposable object.\n *\n * Usage: Anything class extending from BaseModel can access this helper via this.async. Otherwise create a\n * new instance of the class and remember to call dispose() during your code's dispose handler.\n *\n * @public\n */\nvar Async = /** @class */ (function () {\n // tslint:disable-next-line:no-any\n function Async(parent, onError) {\n this._timeoutIds = null;\n this._immediateIds = null;\n this._intervalIds = null;\n this._animationFrameIds = null;\n this._isDisposed = false;\n this._parent = parent || null;\n this._onErrorHandler = onError;\n this._noop = function () {\n /* do nothing */\n };\n }\n /**\n * Dispose function, clears all async operations.\n */\n Async.prototype.dispose = function () {\n var id;\n this._isDisposed = true;\n this._parent = null;\n // Clear timeouts.\n if (this._timeoutIds) {\n for (id in this._timeoutIds) {\n if (this._timeoutIds.hasOwnProperty(id)) {\n this.clearTimeout(parseInt(id, 10));\n }\n }\n this._timeoutIds = null;\n }\n // Clear immediates.\n if (this._immediateIds) {\n for (id in this._immediateIds) {\n if (this._immediateIds.hasOwnProperty(id)) {\n this.clearImmediate(parseInt(id, 10));\n }\n }\n this._immediateIds = null;\n }\n // Clear intervals.\n if (this._intervalIds) {\n for (id in this._intervalIds) {\n if (this._intervalIds.hasOwnProperty(id)) {\n this.clearInterval(parseInt(id, 10));\n }\n }\n this._intervalIds = null;\n }\n // Clear animation frames.\n if (this._animationFrameIds) {\n for (id in this._animationFrameIds) {\n if (this._animationFrameIds.hasOwnProperty(id)) {\n this.cancelAnimationFrame(parseInt(id, 10));\n }\n }\n this._animationFrameIds = null;\n }\n };\n /**\n * SetTimeout override, which will auto cancel the timeout during dispose.\n * @param callback - Callback to execute.\n * @param duration - Duration in milliseconds.\n * @returns The setTimeout id.\n */\n Async.prototype.setTimeout = function (callback, duration) {\n var _this = this;\n var timeoutId = 0;\n if (!this._isDisposed) {\n if (!this._timeoutIds) {\n this._timeoutIds = {};\n }\n /* tslint:disable:ban-native-functions */\n timeoutId = setTimeout(function () {\n // Time to execute the timeout, enqueue it as a foreground task to be executed.\n try {\n // Now delete the record and call the callback.\n if (_this._timeoutIds) {\n delete _this._timeoutIds[timeoutId];\n }\n callback.apply(_this._parent);\n }\n catch (e) {\n if (_this._onErrorHandler) {\n _this._onErrorHandler(e);\n }\n }\n }, duration);\n /* tslint:enable:ban-native-functions */\n this._timeoutIds[timeoutId] = true;\n }\n return timeoutId;\n };\n /**\n * Clears the timeout.\n * @param id - Id to cancel.\n */\n Async.prototype.clearTimeout = function (id) {\n if (this._timeoutIds && this._timeoutIds[id]) {\n /* tslint:disable:ban-native-functions */\n clearTimeout(id);\n delete this._timeoutIds[id];\n /* tslint:enable:ban-native-functions */\n }\n };\n /**\n * SetImmediate override, which will auto cancel the immediate during dispose.\n * @param callback - Callback to execute.\n * @param targetElement - Optional target element to use for identifying the correct window.\n * @returns The setTimeout id.\n */\n Async.prototype.setImmediate = function (callback, targetElement) {\n var _this = this;\n var immediateId = 0;\n var win = getWindow(targetElement);\n if (!this._isDisposed) {\n if (!this._immediateIds) {\n this._immediateIds = {};\n }\n /* tslint:disable:ban-native-functions */\n var setImmediateCallback = function () {\n // Time to execute the timeout, enqueue it as a foreground task to be executed.\n try {\n // Now delete the record and call the callback.\n if (_this._immediateIds) {\n delete _this._immediateIds[immediateId];\n }\n callback.apply(_this._parent);\n }\n catch (e) {\n _this._logError(e);\n }\n };\n immediateId = win.setTimeout(setImmediateCallback, 0);\n /* tslint:enable:ban-native-functions */\n this._immediateIds[immediateId] = true;\n }\n return immediateId;\n };\n /**\n * Clears the immediate.\n * @param id - Id to cancel.\n * @param targetElement - Optional target element to use for identifying the correct window.\n */\n Async.prototype.clearImmediate = function (id, targetElement) {\n var win = getWindow(targetElement);\n if (this._immediateIds && this._immediateIds[id]) {\n /* tslint:disable:ban-native-functions */\n win.clearTimeout(id);\n delete this._immediateIds[id];\n /* tslint:enable:ban-native-functions */\n }\n };\n /**\n * SetInterval override, which will auto cancel the timeout during dispose.\n * @param callback - Callback to execute.\n * @param duration - Duration in milliseconds.\n * @returns The setTimeout id.\n */\n Async.prototype.setInterval = function (callback, duration) {\n var _this = this;\n var intervalId = 0;\n if (!this._isDisposed) {\n if (!this._intervalIds) {\n this._intervalIds = {};\n }\n /* tslint:disable:ban-native-functions */\n intervalId = setInterval(function () {\n // Time to execute the interval callback, enqueue it as a foreground task to be executed.\n try {\n callback.apply(_this._parent);\n }\n catch (e) {\n _this._logError(e);\n }\n }, duration);\n /* tslint:enable:ban-native-functions */\n this._intervalIds[intervalId] = true;\n }\n return intervalId;\n };\n /**\n * Clears the interval.\n * @param id - Id to cancel.\n */\n Async.prototype.clearInterval = function (id) {\n if (this._intervalIds && this._intervalIds[id]) {\n /* tslint:disable:ban-native-functions */\n clearInterval(id);\n delete this._intervalIds[id];\n /* tslint:enable:ban-native-functions */\n }\n };\n /**\n * Creates a function that, when executed, will only call the func function at most once per\n * every wait milliseconds. Provide an options object to indicate that func should be invoked\n * on the leading and/or trailing edge of the wait timeout. Subsequent calls to the throttled\n * function will return the result of the last func call.\n *\n * Note: If leading and trailing options are true func will be called on the trailing edge of\n * the timeout only if the the throttled function is invoked more than once during the wait timeout.\n *\n * @param func - The function to throttle.\n * @param wait - The number of milliseconds to throttle executions to. Defaults to 0.\n * @param options - The options object.\n * @returns The new throttled function.\n */\n Async.prototype.throttle = function (func, wait, options) {\n var _this = this;\n if (this._isDisposed) {\n return this._noop;\n }\n var waitMS = wait || 0;\n var leading = true;\n var trailing = true;\n var lastExecuteTime = 0;\n var lastResult;\n // tslint:disable-next-line:no-any\n var lastArgs;\n var timeoutId = null;\n if (options && typeof options.leading === 'boolean') {\n leading = options.leading;\n }\n if (options && typeof options.trailing === 'boolean') {\n trailing = options.trailing;\n }\n var callback = function (userCall) {\n var now = new Date().getTime();\n var delta = now - lastExecuteTime;\n var waitLength = leading ? waitMS - delta : waitMS;\n if (delta >= waitMS && (!userCall || leading)) {\n lastExecuteTime = now;\n if (timeoutId) {\n _this.clearTimeout(timeoutId);\n timeoutId = null;\n }\n lastResult = func.apply(_this._parent, lastArgs);\n }\n else if (timeoutId === null && trailing) {\n timeoutId = _this.setTimeout(callback, waitLength);\n }\n return lastResult;\n };\n // tslint:disable-next-line:no-any\n var resultFunction = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n lastArgs = args;\n return callback(true);\n };\n return resultFunction;\n };\n /**\n * Creates a function that will delay the execution of func until after wait milliseconds have\n * elapsed since the last time it was invoked. Provide an options object to indicate that func\n * should be invoked on the leading and/or trailing edge of the wait timeout. Subsequent calls\n * to the debounced function will return the result of the last func call.\n *\n * Note: If leading and trailing options are true func will be called on the trailing edge of\n * the timeout only if the the debounced function is invoked more than once during the wait\n * timeout.\n *\n * @param func - The function to debounce.\n * @param wait - The number of milliseconds to delay.\n * @param options - The options object.\n * @returns The new debounced function.\n */\n Async.prototype.debounce = function (func, wait, options) {\n var _this = this;\n if (this._isDisposed) {\n var noOpFunction = (function () {\n /** Do nothing */\n });\n noOpFunction.cancel = function () {\n return;\n };\n /* tslint:disable:no-any */\n noOpFunction.flush = (function () { return null; });\n /* tslint:enable:no-any */\n noOpFunction.pending = function () { return false; };\n return noOpFunction;\n }\n var waitMS = wait || 0;\n var leading = false;\n var trailing = true;\n var maxWait = null;\n var lastCallTime = 0;\n var lastExecuteTime = new Date().getTime();\n var lastResult;\n // tslint:disable-next-line:no-any\n var lastArgs;\n var timeoutId = null;\n if (options && typeof options.leading === 'boolean') {\n leading = options.leading;\n }\n if (options && typeof options.trailing === 'boolean') {\n trailing = options.trailing;\n }\n if (options && typeof options.maxWait === 'number' && !isNaN(options.maxWait)) {\n maxWait = options.maxWait;\n }\n var markExecuted = function (time) {\n if (timeoutId) {\n _this.clearTimeout(timeoutId);\n timeoutId = null;\n }\n lastExecuteTime = time;\n };\n var invokeFunction = function (time) {\n markExecuted(time);\n lastResult = func.apply(_this._parent, lastArgs);\n };\n var callback = function (userCall) {\n var now = new Date().getTime();\n var executeImmediately = false;\n if (userCall) {\n if (leading && now - lastCallTime >= waitMS) {\n executeImmediately = true;\n }\n lastCallTime = now;\n }\n var delta = now - lastCallTime;\n var waitLength = waitMS - delta;\n var maxWaitDelta = now - lastExecuteTime;\n var maxWaitExpired = false;\n if (maxWait !== null) {\n // maxWait only matters when there is a pending callback\n if (maxWaitDelta >= maxWait && timeoutId) {\n maxWaitExpired = true;\n }\n else {\n waitLength = Math.min(waitLength, maxWait - maxWaitDelta);\n }\n }\n if (delta >= waitMS || maxWaitExpired || executeImmediately) {\n invokeFunction(now);\n }\n else if ((timeoutId === null || !userCall) && trailing) {\n timeoutId = _this.setTimeout(callback, waitLength);\n }\n return lastResult;\n };\n var pending = function () {\n return !!timeoutId;\n };\n var cancel = function () {\n if (pending()) {\n // Mark the debounced function as having executed\n markExecuted(new Date().getTime());\n }\n };\n var flush = function () {\n if (pending()) {\n invokeFunction(new Date().getTime());\n }\n return lastResult;\n };\n // tslint:disable-next-line:no-any\n var resultFunction = (function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n lastArgs = args;\n return callback(true);\n });\n resultFunction.cancel = cancel;\n resultFunction.flush = flush;\n resultFunction.pending = pending;\n return resultFunction;\n };\n Async.prototype.requestAnimationFrame = function (callback, targetElement) {\n var _this = this;\n var animationFrameId = 0;\n var win = getWindow(targetElement);\n if (!this._isDisposed) {\n if (!this._animationFrameIds) {\n this._animationFrameIds = {};\n }\n /* tslint:disable:ban-native-functions */\n var animationFrameCallback = function () {\n try {\n // Now delete the record and call the callback.\n if (_this._animationFrameIds) {\n delete _this._animationFrameIds[animationFrameId];\n }\n callback.apply(_this._parent);\n }\n catch (e) {\n _this._logError(e);\n }\n };\n animationFrameId = win.requestAnimationFrame\n ? win.requestAnimationFrame(animationFrameCallback)\n : win.setTimeout(animationFrameCallback, 0);\n /* tslint:enable:ban-native-functions */\n this._animationFrameIds[animationFrameId] = true;\n }\n return animationFrameId;\n };\n Async.prototype.cancelAnimationFrame = function (id, targetElement) {\n var win = getWindow(targetElement);\n if (this._animationFrameIds && this._animationFrameIds[id]) {\n /* tslint:disable:ban-native-functions */\n win.cancelAnimationFrame ? win.cancelAnimationFrame(id) : win.clearTimeout(id);\n /* tslint:enable:ban-native-functions */\n delete this._animationFrameIds[id];\n }\n };\n // tslint:disable-next-line:no-any\n Async.prototype._logError = function (e) {\n if (this._onErrorHandler) {\n this._onErrorHandler(e);\n }\n };\n return Async;\n}());\nexport { Async };\n//# sourceMappingURL=Async.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/EventGroup.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/EventGroup.js", - "index": 587, - "index2": 579, - "size": 11646, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "issuerId": "qqZf", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "ajgi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js" - }, - { - "id": "qqZf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./EventGroup", - "loc": "4:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "45:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "69:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "97:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "106:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "112:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./EventGroup", - "loc": "121:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "150:8-18" - }, - { - "moduleId": "GTpg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./EventGroup", - "loc": "1:0-42" - }, - { - "moduleId": "GTpg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony import specifier", - "userRequest": "./EventGroup", - "loc": "18:27-37" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./EventGroup", - "loc": "6:0-29" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./EventGroup", - "loc": "6:0-29" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony side effect evaluation", - "userRequest": "../EventGroup", - "loc": "2:0-43" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "../EventGroup", - "loc": "324:12-22" - } - ], - "usedExports": [ - "EventGroup" - ], - "providedExports": [ - "EventGroup" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/* tslint:disable:no-string-literal */\nimport { assign } from './object';\n/** An instance of EventGroup allows anything with a handle to it to trigger events on it.\n * If the target is an HTMLElement, the event will be attached to the element and can be\n * triggered as usual (like clicking for onclick).\n * The event can be triggered by calling EventGroup.raise() here. If the target is an\n * HTMLElement, the event gets raised and is handled by the browser. Otherwise, it gets\n * handled here in EventGroup, and the handler is called in the context of the parent\n * (which is passed in in the constructor).\n *\n * @public\n * {@docCategory EventGroup}\n */\nvar EventGroup = /** @class */ (function () {\n /** parent: the context in which events attached to non-HTMLElements are called */\n // tslint:disable-next-line:no-any\n function EventGroup(parent) {\n this._id = EventGroup._uniqueId++;\n this._parent = parent;\n this._eventRecords = [];\n }\n /** For IE8, bubbleEvent is ignored here and must be dealt with by the handler.\n * Events raised here by default have bubbling set to false and cancelable set to true.\n * This applies also to built-in events being raised manually here on HTMLElements,\n * which may lead to unexpected behavior if it differs from the defaults.\n *\n */\n EventGroup.raise = function (\n // tslint:disable-next-line:no-any\n target, eventName, \n // tslint:disable-next-line:no-any\n eventArgs, bubbleEvent) {\n var retVal;\n if (EventGroup._isElement(target)) {\n if (typeof document !== 'undefined' && document.createEvent) {\n var ev = document.createEvent('HTMLEvents');\n ev.initEvent(eventName, bubbleEvent || false, true);\n assign(ev, eventArgs);\n retVal = target.dispatchEvent(ev);\n // tslint:disable-next-line:no-any\n }\n else if (typeof document !== 'undefined' && document['createEventObject']) {\n // IE8\n // tslint:disable-next-line:no-any\n var evObj = document['createEventObject'](eventArgs);\n // cannot set cancelBubble on evObj, fireEvent will overwrite it\n target.fireEvent('on' + eventName, evObj);\n }\n }\n else {\n while (target && retVal !== false) {\n var events = target.__events__;\n var eventRecords = events ? events[eventName] : null;\n if (eventRecords) {\n for (var id in eventRecords) {\n if (eventRecords.hasOwnProperty(id)) {\n var eventRecordList = eventRecords[id];\n for (var listIndex = 0; retVal !== false && listIndex < eventRecordList.length; listIndex++) {\n var record = eventRecordList[listIndex];\n if (record.objectCallback) {\n retVal = record.objectCallback.call(record.parent, eventArgs);\n }\n }\n }\n }\n }\n // If the target has a parent, bubble the event up.\n target = bubbleEvent ? target.parent : null;\n }\n }\n return retVal;\n };\n // tslint:disable-next-line:no-any\n EventGroup.isObserved = function (target, eventName) {\n var events = target && target.__events__;\n return !!events && !!events[eventName];\n };\n /** Check to see if the target has declared support of the given event. */\n // tslint:disable-next-line:no-any\n EventGroup.isDeclared = function (target, eventName) {\n var declaredEvents = target && target.__declaredEvents;\n return !!declaredEvents && !!declaredEvents[eventName];\n };\n // tslint:disable-next-line:no-any\n EventGroup.stopPropagation = function (event) {\n if (event.stopPropagation) {\n event.stopPropagation();\n }\n else {\n // IE8\n event.cancelBubble = true;\n }\n };\n EventGroup._isElement = function (target) {\n return !!target && (!!target.addEventListener || (typeof HTMLElement !== 'undefined' && target instanceof HTMLElement));\n };\n EventGroup.prototype.dispose = function () {\n if (!this._isDisposed) {\n this._isDisposed = true;\n this.off();\n this._parent = null;\n }\n };\n /** On the target, attach a set of events, where the events object is a name to function mapping. */\n // tslint:disable-next-line:no-any\n EventGroup.prototype.onAll = function (target, events, useCapture) {\n for (var eventName in events) {\n if (events.hasOwnProperty(eventName)) {\n this.on(target, eventName, events[eventName], useCapture);\n }\n }\n };\n /** On the target, attach an event whose handler will be called in the context of the parent\n * of this instance of EventGroup.\n */\n // tslint:disable-next-line:no-any\n EventGroup.prototype.on = function (target, eventName, callback, options) {\n var _this = this;\n if (eventName.indexOf(',') > -1) {\n var events = eventName.split(/[ ,]+/);\n for (var i = 0; i < events.length; i++) {\n this.on(target, events[i], callback, options);\n }\n }\n else {\n var parent_1 = this._parent;\n var eventRecord = {\n target: target,\n eventName: eventName,\n parent: parent_1,\n callback: callback,\n options: options\n };\n // Initialize and wire up the record on the target, so that it can call the callback if the event fires.\n var events = (target.__events__ = target.__events__ || {});\n events[eventName] =\n events[eventName] ||\n {\n count: 0\n };\n events[eventName][this._id] = events[eventName][this._id] || [];\n events[eventName][this._id].push(eventRecord);\n events[eventName].count++;\n if (EventGroup._isElement(target)) {\n // tslint:disable-next-line:no-any\n var processElementEvent = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (_this._isDisposed) {\n return;\n }\n var result;\n try {\n result = callback.apply(parent_1, args);\n if (result === false && args[0]) {\n var e = args[0];\n if (e.preventDefault) {\n e.preventDefault();\n }\n if (e.stopPropagation) {\n e.stopPropagation();\n }\n e.cancelBubble = true;\n }\n }\n catch (e) {\n /* ErrorHelper.log(e); */\n }\n return result;\n };\n eventRecord.elementCallback = processElementEvent;\n if (target.addEventListener) {\n /* tslint:disable:ban-native-functions */\n target.addEventListener(eventName, processElementEvent, options);\n /* tslint:enable:ban-native-functions */\n }\n else if (target.attachEvent) {\n // IE8\n target.attachEvent('on' + eventName, processElementEvent);\n }\n }\n else {\n // tslint:disable-next-line:no-any\n var processObjectEvent = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (_this._isDisposed) {\n return;\n }\n return callback.apply(parent_1, args);\n };\n eventRecord.objectCallback = processObjectEvent;\n }\n // Remember the record locally, so that it can be removed.\n this._eventRecords.push(eventRecord);\n }\n };\n // tslint:disable-next-line:no-any\n EventGroup.prototype.off = function (target, eventName, callback, options) {\n for (var i = 0; i < this._eventRecords.length; i++) {\n var eventRecord = this._eventRecords[i];\n if ((!target || target === eventRecord.target) &&\n (!eventName || eventName === eventRecord.eventName) &&\n (!callback || callback === eventRecord.callback) &&\n (typeof options !== 'boolean' || options === eventRecord.options)) {\n var events = eventRecord.target.__events__;\n var targetArrayLookup = events[eventRecord.eventName];\n var targetArray = targetArrayLookup ? targetArrayLookup[this._id] : null;\n // We may have already target's entries, so check for null.\n if (targetArray) {\n if (targetArray.length === 1 || !callback) {\n targetArrayLookup.count -= targetArray.length;\n delete events[eventRecord.eventName][this._id];\n }\n else {\n targetArrayLookup.count--;\n targetArray.splice(targetArray.indexOf(eventRecord), 1);\n }\n if (!targetArrayLookup.count) {\n delete events[eventRecord.eventName];\n }\n }\n if (eventRecord.elementCallback) {\n if (eventRecord.target.removeEventListener) {\n eventRecord.target.removeEventListener(eventRecord.eventName, eventRecord.elementCallback, eventRecord.options);\n }\n else if (eventRecord.target.detachEvent) {\n // IE8\n eventRecord.target.detachEvent('on' + eventRecord.eventName, eventRecord.elementCallback);\n }\n }\n this._eventRecords.splice(i--, 1);\n }\n }\n };\n /** Trigger the given event in the context of this instance of EventGroup. */\n // tslint:disable-next-line:no-any\n EventGroup.prototype.raise = function (eventName, eventArgs, bubbleEvent) {\n return EventGroup.raise(this._parent, eventName, eventArgs, bubbleEvent);\n };\n /** Declare an event as being supported by this instance of EventGroup. */\n EventGroup.prototype.declare = function (event) {\n var declaredEvents = (this._parent.__declaredEvents = this._parent.__declaredEvents || {});\n if (typeof event === 'string') {\n declaredEvents[event] = true;\n }\n else {\n for (var i = 0; i < event.length; i++) {\n declaredEvents[event[i]] = true;\n }\n }\n };\n // tslint:disable-next-line:no-inferrable-types\n EventGroup._uniqueId = 0;\n return EventGroup;\n}());\nexport { EventGroup };\n//# sourceMappingURL=EventGroup.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "index": 584, - "index2": 583, - "size": 9440, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:121-131" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "21:168-178" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "21:201-211" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "21:220-230" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "25:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "27:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "28:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "52:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "69:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "85:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "270:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "527:2-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "779:2-15" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "43:2-15" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "21:196-206" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:2-15" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:140-150" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "22:2-15" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseComponent", - "loc": "3:0-32" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./BaseComponent", - "loc": "3:0-32" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:2-15" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "21:181-191" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:2-15" - } - ], - "usedExports": [ - "BaseComponent", - "nullRender" - ], - "providedExports": [ - "BaseComponent", - "nullRender" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { Async } from './Async';\nimport { EventGroup } from './EventGroup';\nimport { warnConditionallyRequiredProps } from './warn/warnConditionallyRequiredProps';\nimport { warnMutuallyExclusive } from './warn/warnMutuallyExclusive';\nimport { warnDeprecations } from './warn/warnDeprecations';\nimport { initializeFocusRects } from './initializeFocusRects';\nimport { initializeDir } from './initializeDir';\n/**\n * BaseComponent class, which provides basic helpers for all components.\n *\n * @public\n * {@docCategory BaseComponent}\n */\nvar BaseComponent = /** @class */ (function (_super) {\n tslib_1.__extends(BaseComponent, _super);\n // tslint:enable:variable-name\n /**\n * BaseComponent constructor\n * @param props - The props for the component.\n * @param context - The context for the component.\n */\n // tslint:disable-next-line:no-any\n function BaseComponent(props, context) {\n var _this = _super.call(this, props, context) || this;\n // Ensure basic assumptions about the environment.\n initializeFocusRects();\n initializeDir();\n _makeAllSafe(_this, BaseComponent.prototype, [\n 'componentDidMount',\n 'shouldComponentUpdate',\n 'getSnapshotBeforeUpdate',\n 'render',\n 'componentDidUpdate',\n 'componentWillUnmount'\n ]);\n return _this;\n }\n /**\n * When the component receives props, make sure the componentRef is updated.\n */\n BaseComponent.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._updateComponentRef(prevProps, this.props);\n };\n /**\n * When the component has mounted, update the componentRef.\n */\n BaseComponent.prototype.componentDidMount = function () {\n this._setComponentRef(this.props.componentRef, this);\n };\n /**\n * If we have disposables, dispose them automatically on unmount.\n */\n BaseComponent.prototype.componentWillUnmount = function () {\n this._setComponentRef(this.props.componentRef, null);\n if (this.__disposables) {\n for (var i = 0, len = this._disposables.length; i < len; i++) {\n var disposable = this.__disposables[i];\n if (disposable.dispose) {\n disposable.dispose();\n }\n }\n this.__disposables = null;\n }\n };\n Object.defineProperty(BaseComponent.prototype, \"className\", {\n /**\n * Gets the object's class name.\n */\n get: function () {\n if (!this.__className) {\n var funcNameRegex = /function (.{1,})\\(/;\n var results = funcNameRegex.exec(this.constructor.toString());\n this.__className = results && results.length > 1 ? results[1] : '';\n }\n return this.__className;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_disposables\", {\n /**\n * Allows subclasses to push things to this._disposables to be auto disposed.\n */\n get: function () {\n if (!this.__disposables) {\n this.__disposables = [];\n }\n return this.__disposables;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_async\", {\n /**\n * Gets the async instance associated with the component, created on demand. The async instance gives\n * subclasses a way to execute setTimeout/setInterval async calls safely, where the callbacks\n * will be cleared/ignored automatically after unmounting. The helpers within the async object also\n * preserve the this pointer so that you don't need to \"bind\" the callbacks.\n */\n get: function () {\n if (!this.__async) {\n this.__async = new Async(this);\n this._disposables.push(this.__async);\n }\n return this.__async;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_events\", {\n /**\n * Gets the event group instance assocaited with the component, created on demand. The event instance\n * provides on/off methods for listening to DOM (or regular javascript object) events. The event callbacks\n * will be automatically disconnected after unmounting. The helpers within the events object also\n * preserve the this reference so that you don't need to \"bind\" the callbacks.\n */\n get: function () {\n if (!this.__events) {\n this.__events = new EventGroup(this);\n this._disposables.push(this.__events);\n }\n return this.__events;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Helper to return a memoized ref resolver function.\n * @param refName - Name of the member to assign the ref to.\n * @returns A function instance keyed from the given refname.\n * @deprecated Use `createRef` from React.createRef.\n */\n BaseComponent.prototype._resolveRef = function (refName) {\n var _this = this;\n if (!this.__resolves) {\n this.__resolves = {};\n }\n if (!this.__resolves[refName]) {\n // tslint:disable-next-line:no-any\n this.__resolves[refName] = function (ref) {\n // tslint:disable-next-line:no-any\n return (_this[refName] = ref);\n };\n }\n return this.__resolves[refName];\n };\n /**\n * Updates the componentRef (by calling it with \"this\" when necessary.)\n */\n BaseComponent.prototype._updateComponentRef = function (currentProps, newProps) {\n if (newProps === void 0) { newProps = {}; }\n // currentProps *should* always be defined, but verify that just in case a subclass is manually\n // calling a lifecycle method with no parameters (which has happened) or other odd usage.\n if (currentProps && newProps && currentProps.componentRef !== newProps.componentRef) {\n this._setComponentRef(currentProps.componentRef, null);\n this._setComponentRef(newProps.componentRef, this);\n }\n };\n /**\n * Warns when a deprecated props are being used.\n *\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\n * either null or a replacement prop name.\n */\n BaseComponent.prototype._warnDeprecations = function (deprecationMap) {\n warnDeprecations(this.className, this.props, deprecationMap);\n };\n /**\n * Warns when props which are mutually exclusive with each other are both used.\n *\n * @param mutuallyExclusiveMap - The map of mutually exclusive props.\n */\n BaseComponent.prototype._warnMutuallyExclusive = function (mutuallyExclusiveMap) {\n warnMutuallyExclusive(this.className, this.props, mutuallyExclusiveMap);\n };\n /**\n * Warns when props are required if a condition is met.\n *\n * @param requiredProps - The name of the props that are required when the condition is met.\n * @param conditionalPropName - The name of the prop that the condition is based on.\n * @param condition - Whether the condition is met.\n */\n BaseComponent.prototype._warnConditionallyRequiredProps = function (requiredProps, conditionalPropName, condition) {\n warnConditionallyRequiredProps(this.className, this.props, requiredProps, conditionalPropName, condition);\n };\n BaseComponent.prototype._setComponentRef = function (ref, value) {\n if (!this._skipComponentRefResolution && ref) {\n if (typeof ref === 'function') {\n ref(value);\n }\n if (typeof ref === 'object') {\n // tslint:disable:no-any\n ref.current = value;\n }\n }\n };\n return BaseComponent;\n}(React.Component));\nexport { BaseComponent };\n/**\n * Helper to override a given method with a wrapper method that can try/catch the original, but also\n * ensures that the BaseComponent's methods are called before the subclass's. This ensures that\n * componentWillUnmount in the base is called and that things in the _disposables array are disposed.\n */\nfunction _makeAllSafe(obj, prototype, methodNames) {\n for (var i = 0, len = methodNames.length; i < len; i++) {\n _makeSafe(obj, prototype, methodNames[i]);\n }\n}\nfunction _makeSafe(obj, prototype, methodName) {\n // tslint:disable:no-any\n var classMethod = obj[methodName];\n var prototypeMethod = prototype[methodName];\n // tslint:enable:no-any\n if (classMethod || prototypeMethod) {\n // tslint:disable-next-line:no-any\n obj[methodName] = function () {\n var retVal;\n if (prototypeMethod) {\n retVal = prototypeMethod.apply(this, arguments);\n }\n if (classMethod !== prototypeMethod) {\n retVal = classMethod.apply(this, arguments);\n }\n return retVal;\n };\n }\n}\n/**\n * Simple constant function for returning null, used to render empty templates in JSX.\n *\n * @public\n */\nexport function nullRender() {\n return null;\n}\n//# sourceMappingURL=BaseComponent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "index": 591, - "index2": 585, - "size": 3297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js" - }, - { - "id": "QJEM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js" - }, - { - "id": "OXMl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner.styles", - "loc": "3:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js", - "type": "harmony import specifier", - "userRequest": "./Spinner.styles", - "loc": "4:41-50" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { SpinnerSize } from './Spinner.types';\nimport { hiddenContentStyle, keyframes, HighContrastSelector, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Spinner',\n circle: 'ms-Spinner-circle',\n label: 'ms-Spinner-label'\n};\nvar spinAnimation = keyframes({\n '0%': {\n transform: 'rotate(0deg)'\n },\n '100%': {\n transform: 'rotate(360deg)'\n }\n});\nexport var getStyles = function (props) {\n var theme = props.theme, size = props.size, className = props.className, labelPosition = props.labelPosition;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center'\n },\n labelPosition === 'top' && {\n flexDirection: 'column-reverse'\n },\n labelPosition === 'right' && {\n flexDirection: 'row'\n },\n labelPosition === 'left' && {\n flexDirection: 'row-reverse'\n },\n className\n ],\n circle: [\n classNames.circle,\n {\n boxSizing: 'border-box',\n borderRadius: '50%',\n border: '1.5px solid ' + palette.themeLight,\n borderTopColor: palette.themePrimary,\n animationName: spinAnimation,\n animationDuration: '1.3s',\n animationIterationCount: 'infinite',\n animationTimingFunction: 'cubic-bezier(.53,.21,.29,.67)',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderTopColor: 'Highlight'\n },\n _a)\n },\n size === SpinnerSize.xSmall && [\n 'ms-Spinner--xSmall',\n {\n width: 12,\n height: 12\n }\n ],\n size === SpinnerSize.small && [\n 'ms-Spinner--small',\n {\n width: 16,\n height: 16\n }\n ],\n size === SpinnerSize.medium && [\n 'ms-Spinner--medium',\n {\n width: 20,\n height: 20\n }\n ],\n size === SpinnerSize.large && [\n 'ms-Spinner--large',\n {\n width: 28,\n height: 28\n }\n ]\n ],\n label: [\n classNames.label,\n {\n color: palette.themePrimary,\n margin: '10px 0 0',\n textAlign: 'center'\n },\n labelPosition === 'top' && {\n margin: '0 0 10px'\n },\n labelPosition === 'right' && {\n margin: '0 0 0 10px'\n },\n labelPosition === 'left' && {\n margin: '0 10px 0 0'\n }\n ],\n screenReaderText: hiddenContentStyle\n };\n var _a;\n};\n//# sourceMappingURL=Spinner.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "index": 598, - "index2": 589, - "size": 5325, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:8-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "26:16-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "581:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "592:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "649:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "732:31-51" - }, - { - "moduleId": "GTpg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./scroll", - "loc": "2:0-48" - }, - { - "moduleId": "GTpg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony import specifier", - "userRequest": "./scroll", - "loc": "19:33-53" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./scroll", - "loc": "48:0-25" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./scroll", - "loc": "48:0-25" - } - ], - "usedExports": [ - "findScrollableParent", - "getScrollbarWidth", - "allowScrollOnElement", - "disableBodyScroll", - "enableBodyScroll" - ], - "providedExports": [ - "DATA_IS_SCROLLABLE_ATTRIBUTE", - "allowScrollOnElement", - "disableBodyScroll", - "enableBodyScroll", - "getScrollbarWidth", - "findScrollableParent" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getDocument } from './dom/getDocument';\nimport { mergeStyles } from '@uifabric/merge-styles';\nimport { getWindow } from './dom/getWindow';\nvar _scrollbarWidth;\nvar _bodyScrollDisabledCount = 0;\nvar DisabledScrollClassName = mergeStyles({\n overflow: 'hidden !important'\n});\n/**\n * Placing this attribute on scrollable divs optimizes detection to know\n * if the div is scrollable or not (given we can avoid expensive operations\n * like getComputedStyle.)\n *\n * @public\n */\nexport var DATA_IS_SCROLLABLE_ATTRIBUTE = 'data-is-scrollable';\n/**\n * Allows the user to scroll within a element,\n * while preventing the user from scrolling the body\n */\nexport var allowScrollOnElement = function (element, events) {\n if (!element) {\n return;\n }\n var _previousClientY = 0;\n var _element = null;\n // remember the clientY for future calls of _preventOverscrolling\n var _saveClientY = function (event) {\n if (event.targetTouches.length === 1) {\n _previousClientY = event.targetTouches[0].clientY;\n }\n };\n // prevent the body from scrolling when the user attempts\n // to scroll past the top or bottom of the element\n var _preventOverscrolling = function (event) {\n // only respond to a single-finger touch\n if (event.targetTouches.length !== 1) {\n return;\n }\n // prevent the body touchmove handler from firing\n // so that scrolling is allowed within the element\n event.stopPropagation();\n if (!_element) {\n return;\n }\n var clientY = event.targetTouches[0].clientY - _previousClientY;\n var scrollableParent = findScrollableParent(event.target);\n if (scrollableParent) {\n _element = scrollableParent;\n }\n // if the element is scrolled to the top,\n // prevent the user from scrolling up\n if (_element.scrollTop === 0 && clientY > 0) {\n event.preventDefault();\n }\n // if the element is scrolled to the bottom,\n // prevent the user from scrolling down\n if (_element.scrollHeight - _element.scrollTop <= _element.clientHeight && clientY < 0) {\n event.preventDefault();\n }\n };\n events.on(element, 'touchstart', _saveClientY, { passive: false });\n events.on(element, 'touchmove', _preventOverscrolling, { passive: false });\n _element = element;\n};\nvar _disableIosBodyScroll = function (event) {\n event.preventDefault();\n};\n/**\n * Disables the body scrolling.\n *\n * @public\n */\nexport function disableBodyScroll() {\n var doc = getDocument();\n if (doc && doc.body && !_bodyScrollDisabledCount) {\n doc.body.classList.add(DisabledScrollClassName);\n doc.body.addEventListener('touchmove', _disableIosBodyScroll, { passive: false, capture: false });\n }\n _bodyScrollDisabledCount++;\n}\n/**\n * Enables the body scrolling.\n *\n * @public\n */\nexport function enableBodyScroll() {\n if (_bodyScrollDisabledCount > 0) {\n var doc = getDocument();\n if (doc && doc.body && _bodyScrollDisabledCount === 1) {\n doc.body.classList.remove(DisabledScrollClassName);\n doc.body.removeEventListener('touchmove', _disableIosBodyScroll);\n }\n _bodyScrollDisabledCount--;\n }\n}\n/**\n * Calculates the width of a scrollbar for the browser/os.\n *\n * @public\n */\nexport function getScrollbarWidth() {\n if (_scrollbarWidth === undefined) {\n var scrollDiv = document.createElement('div');\n scrollDiv.style.setProperty('width', '100px');\n scrollDiv.style.setProperty('height', '100px');\n scrollDiv.style.setProperty('overflow', 'scroll');\n scrollDiv.style.setProperty('position', 'absolute');\n scrollDiv.style.setProperty('top', '-9999px');\n document.body.appendChild(scrollDiv);\n // Get the scrollbar width\n _scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;\n // Delete the DIV\n document.body.removeChild(scrollDiv);\n }\n return _scrollbarWidth;\n}\n/**\n * Traverses up the DOM for the element with the data-is-scrollable=true attribute, or returns\n * document.body.\n *\n * @public\n */\nexport function findScrollableParent(startingElement) {\n var el = startingElement;\n var doc = getDocument(startingElement);\n // First do a quick scan for the scrollable attribute.\n while (el && el !== doc.body) {\n if (el.getAttribute(DATA_IS_SCROLLABLE_ATTRIBUTE) === 'true') {\n return el;\n }\n el = el.parentElement;\n }\n // If we haven't found it, the use the slower method: compute styles to evaluate if overflow is set.\n el = startingElement;\n while (el && el !== doc.body) {\n if (el.getAttribute(DATA_IS_SCROLLABLE_ATTRIBUTE) !== 'false') {\n var computedStyles = getComputedStyle(el);\n var overflowY = computedStyles ? computedStyles.getPropertyValue('overflow-y') : '';\n if (overflowY && (overflowY === 'scroll' || overflowY === 'auto')) {\n return el;\n }\n }\n el = el.parentElement;\n }\n // Fall back to window scroll.\n if (!el || el === doc.body) {\n // tslint:disable-next-line:no-any\n el = getWindow(startingElement);\n }\n return el;\n}\n//# sourceMappingURL=scroll.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "index": 605, - "index2": 597, - "size": 14113, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "42:16-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "48:22-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "49:22-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "56:24-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "63:72-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "110:30-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "113:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:68-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "141:22-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "142:22-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "151:25-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "152:44-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "170:39-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "225:84-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "234:70-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "305:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "331:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "390:16-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "396:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "439:59-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "477:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "518:12-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "523:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "551:35-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "551:81-99" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "581:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "584:41-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "743:34-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "743:80-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "787:41-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "789:37-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "818:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "835:36-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "841:17-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "846:20-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "909:45-60" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./focus", - "loc": "28:0-24" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./focus", - "loc": "28:0-24" - } - ], - "usedExports": [ - "shouldWrapFocus", - "getLastFocusable", - "getFirstFocusable", - "isElementTabbable", - "isElementFocusZone", - "isElementFocusSubZone", - "getNextElement", - "getPreviousElement", - "getFocusableByIndexPath", - "getElementIndexPath", - "focusFirstChild", - "doesElementContainFocus", - "getLastTabbable", - "getFirstTabbable", - "focusAsync" - ], - "providedExports": [ - "getFirstFocusable", - "getLastFocusable", - "getFirstTabbable", - "getLastTabbable", - "focusFirstChild", - "getPreviousElement", - "getNextElement", - "isElementVisible", - "isElementTabbable", - "isElementFocusZone", - "isElementFocusSubZone", - "doesElementContainFocus", - "shouldWrapFocus", - "focusAsync", - "getFocusableByIndexPath", - "getElementIndexPath" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { elementContainsAttribute } from './dom/elementContainsAttribute';\nimport { elementContains } from './dom/elementContains';\nimport { getParent } from './dom/getParent';\nimport { getWindow } from './dom/getWindow';\nimport { getDocument } from './dom/getDocument';\nvar IS_FOCUSABLE_ATTRIBUTE = 'data-is-focusable';\nvar IS_VISIBLE_ATTRIBUTE = 'data-is-visible';\nvar FOCUSZONE_ID_ATTRIBUTE = 'data-focuszone-id';\nvar FOCUSZONE_SUB_ATTRIBUTE = 'data-is-sub-focuszone';\n/**\n * Gets the first focusable element.\n *\n * @public\n */\nexport function getFirstFocusable(rootElement, currentElement, includeElementsInFocusZones) {\n return getNextElement(rootElement, currentElement, true /*checkNode*/, false /*suppressParentTraversal*/, false /*suppressChildTraversal*/, includeElementsInFocusZones);\n}\n/**\n * Gets the last focusable element.\n *\n * @public\n */\nexport function getLastFocusable(rootElement, currentElement, includeElementsInFocusZones) {\n return getPreviousElement(rootElement, currentElement, true /*checkNode*/, false /*suppressParentTraversal*/, true /*traverseChildren*/, includeElementsInFocusZones);\n}\n/**\n * Gets the first tabbable element.\n * The difference between focusable and tabbable is that tabbable elements are focusable elements that also have tabIndex != -1.\n * @param rootElement - The parent element to search beneath.\n * @param currentElement - The descendant of rootElement to start the search at. This element is the first one checked,\n * and iteration continues forward. Typical use passes rootElement.firstChild.\n * @param includeElementsInFocusZones - true if traversal should go into FocusZone descendants.\n * @param checkNode - Include currentElement in search when true. Defaults to true.\n * @public\n */\nexport function getFirstTabbable(rootElement, currentElement, includeElementsInFocusZones, checkNode) {\n if (checkNode === void 0) { checkNode = true; }\n return getNextElement(rootElement, currentElement, checkNode, false /*suppressParentTraversal*/, false /*suppressChildTraversal*/, includeElementsInFocusZones, false /*allowFocusRoot*/, true /*tabbable*/);\n}\n/**\n * Gets the last tabbable element.\n * The difference between focusable and tabbable is that tabbable elements are focusable elements that also have tabIndex != -1.\n * @param rootElement - The parent element to search beneath.\n * @param currentElement - The descendant of rootElement to start the search at. This element is the first one checked,\n * and iteration continues in reverse. Typical use passes rootElement.lastChild.\n * @param includeElementsInFocusZones - true if traversal should go into FocusZone descendants.\n * @param checkNode - Include currentElement in search when true. Defaults to true.\n * @public\n */\nexport function getLastTabbable(rootElement, currentElement, includeElementsInFocusZones, checkNode) {\n if (checkNode === void 0) { checkNode = true; }\n return getPreviousElement(rootElement, currentElement, checkNode, false /*suppressParentTraversal*/, true /*traverseChildren*/, includeElementsInFocusZones, false /*allowFocusRoot*/, true /*tabbable*/);\n}\n/**\n * Attempts to focus the first focusable element that is a child or child's child of the rootElement.\n *\n * @public\n * @param rootElement - Element to start the search for a focusable child.\n * @returns True if focus was set, false if it was not.\n */\nexport function focusFirstChild(rootElement) {\n var element = getNextElement(rootElement, rootElement, true, false, false, true);\n if (element) {\n focusAsync(element);\n return true;\n }\n return false;\n}\n/**\n * Traverse to find the previous element.\n * If tabbable is true, the element must have tabIndex != -1.\n *\n * @public\n */\nexport function getPreviousElement(rootElement, currentElement, checkNode, suppressParentTraversal, traverseChildren, includeElementsInFocusZones, allowFocusRoot, tabbable) {\n if (!currentElement || (!allowFocusRoot && currentElement === rootElement)) {\n return null;\n }\n var isCurrentElementVisible = isElementVisible(currentElement);\n // Check its children.\n if (traverseChildren &&\n isCurrentElementVisible &&\n (includeElementsInFocusZones || !(isElementFocusZone(currentElement) || isElementFocusSubZone(currentElement)))) {\n var childMatch = getPreviousElement(rootElement, currentElement.lastElementChild, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (childMatch) {\n if ((tabbable && isElementTabbable(childMatch, true)) || !tabbable) {\n return childMatch;\n }\n var childMatchSiblingMatch = getPreviousElement(rootElement, childMatch.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (childMatchSiblingMatch) {\n return childMatchSiblingMatch;\n }\n var childMatchParent = childMatch.parentElement;\n // At this point if we have not found any potential matches\n // start looking at the rest of the subtree under the currentParent.\n // NOTE: We do not want to recurse here because doing so could\n // cause elements to get skipped.\n while (childMatchParent && childMatchParent !== currentElement) {\n var childMatchParentMatch = getPreviousElement(rootElement, childMatchParent.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (childMatchParentMatch) {\n return childMatchParentMatch;\n }\n childMatchParent = childMatchParent.parentElement;\n }\n }\n }\n // Check the current node, if it's not the first traversal.\n if (checkNode && isCurrentElementVisible && isElementTabbable(currentElement, tabbable)) {\n return currentElement;\n }\n // Check its previous sibling.\n var siblingMatch = getPreviousElement(rootElement, currentElement.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (siblingMatch) {\n return siblingMatch;\n }\n // Check its parent.\n if (!suppressParentTraversal) {\n return getPreviousElement(rootElement, currentElement.parentElement, true, false, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\n }\n return null;\n}\n/**\n * Traverse to find the next focusable element.\n * If tabbable is true, the element must have tabIndex != -1.\n *\n * @public\n * @param checkNode - Include currentElement in search when true.\n */\nexport function getNextElement(rootElement, currentElement, checkNode, suppressParentTraversal, suppressChildTraversal, includeElementsInFocusZones, allowFocusRoot, tabbable) {\n if (!currentElement || (currentElement === rootElement && suppressChildTraversal && !allowFocusRoot)) {\n return null;\n }\n var isCurrentElementVisible = isElementVisible(currentElement);\n // Check the current node, if it's not the first traversal.\n if (checkNode && isCurrentElementVisible && isElementTabbable(currentElement, tabbable)) {\n return currentElement;\n }\n // Check its children.\n if (!suppressChildTraversal &&\n isCurrentElementVisible &&\n (includeElementsInFocusZones || !(isElementFocusZone(currentElement) || isElementFocusSubZone(currentElement)))) {\n var childMatch = getNextElement(rootElement, currentElement.firstElementChild, true, true, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (childMatch) {\n return childMatch;\n }\n }\n if (currentElement === rootElement) {\n return null;\n }\n // Check its sibling.\n var siblingMatch = getNextElement(rootElement, currentElement.nextElementSibling, true, true, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\n if (siblingMatch) {\n return siblingMatch;\n }\n if (!suppressParentTraversal) {\n return getNextElement(rootElement, currentElement.parentElement, false, false, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\n }\n return null;\n}\n/**\n * Determines if an element is visible.\n *\n * @public\n */\nexport function isElementVisible(element) {\n // If the element is not valid, return false.\n if (!element || !element.getAttribute) {\n return false;\n }\n var visibilityAttribute = element.getAttribute(IS_VISIBLE_ATTRIBUTE);\n // If the element is explicitly marked with the visibility attribute, return that value as boolean.\n if (visibilityAttribute !== null && visibilityAttribute !== undefined) {\n return visibilityAttribute === 'true';\n }\n // Fallback to other methods of determining actual visibility.\n return (element.offsetHeight !== 0 ||\n element.offsetParent !== null ||\n // tslint:disable-next-line:no-any\n element.isVisible === true); // used as a workaround for testing.\n}\n/**\n * Determines if an element can receive focus programmatically or via a mouse click.\n * If checkTabIndex is true, additionally checks to ensure the element can be focused with the tab key, meaning tabIndex != -1.\n *\n * @public\n */\nexport function isElementTabbable(element, checkTabIndex) {\n // If this element is null or is disabled, it is not considered tabbable.\n if (!element || element.disabled) {\n return false;\n }\n var tabIndex = 0;\n var tabIndexAttributeValue = null;\n if (element && element.getAttribute) {\n tabIndexAttributeValue = element.getAttribute('tabIndex');\n if (tabIndexAttributeValue) {\n tabIndex = parseInt(tabIndexAttributeValue, 10);\n }\n }\n var isFocusableAttribute = element.getAttribute ? element.getAttribute(IS_FOCUSABLE_ATTRIBUTE) : null;\n var isTabIndexSet = tabIndexAttributeValue !== null && tabIndex >= 0;\n var result = !!element &&\n isFocusableAttribute !== 'false' &&\n (element.tagName === 'A' ||\n element.tagName === 'BUTTON' ||\n element.tagName === 'INPUT' ||\n element.tagName === 'TEXTAREA' ||\n isFocusableAttribute === 'true' ||\n isTabIndexSet);\n return checkTabIndex ? tabIndex !== -1 && result : result;\n}\n/**\n * Determines if a given element is a focus zone.\n *\n * @public\n */\nexport function isElementFocusZone(element) {\n return !!(element && element.getAttribute && !!element.getAttribute(FOCUSZONE_ID_ATTRIBUTE));\n}\n/**\n * Determines if a given element is a focus sub zone.\n *\n * @public\n */\nexport function isElementFocusSubZone(element) {\n return !!(element && element.getAttribute && element.getAttribute(FOCUSZONE_SUB_ATTRIBUTE) === 'true');\n}\n/**\n * Determines if an element, or any of its children, contain focus.\n *\n * @public\n */\nexport function doesElementContainFocus(element) {\n var document = getDocument(element);\n var currentActiveElement = document && document.activeElement;\n if (currentActiveElement && elementContains(element, currentActiveElement)) {\n return true;\n }\n return false;\n}\n/**\n * Determines if an, or any of its ancestors, sepcificies that it doesn't want focus to wrap\n * @param element - element to start searching from\n * @param noWrapDataAttribute - the no wrap data attribute to match (either)\n * @returns true if focus should wrap, false otherwise\n */\nexport function shouldWrapFocus(element, noWrapDataAttribute) {\n return elementContainsAttribute(element, noWrapDataAttribute) === 'true' ? false : true;\n}\nvar targetToFocusOnNextRepaint = undefined;\n/**\n * Sets focus to an element asynchronously. The focus will be set at the next browser repaint,\n * meaning it won't cause any extra recalculations. If more than one focusAsync is called during one frame,\n * only the latest called focusAsync element will actually be focused\n * @param element - The element to focus\n */\nexport function focusAsync(element) {\n if (element) {\n // An element was already queued to be focused, so replace that one with the new element\n if (targetToFocusOnNextRepaint) {\n targetToFocusOnNextRepaint = element;\n return;\n }\n targetToFocusOnNextRepaint = element;\n var win = getWindow(element);\n if (win) {\n // element.focus() is a no-op if the element is no longer in the DOM, meaning this is always safe\n win.requestAnimationFrame(function () {\n targetToFocusOnNextRepaint && targetToFocusOnNextRepaint.focus();\n // We are done focusing for this frame, so reset the queued focus element\n targetToFocusOnNextRepaint = undefined;\n });\n }\n }\n}\n/**\n * Finds the closest focusable element via an index path from a parent. See\n * `getElementIndexPath` for getting an index path from an element to a child.\n */\nexport function getFocusableByIndexPath(parent, path) {\n var element = parent;\n for (var _i = 0, path_1 = path; _i < path_1.length; _i++) {\n var index = path_1[_i];\n var nextChild = element.children[Math.min(index, element.children.length - 1)];\n if (!nextChild) {\n break;\n }\n element = nextChild;\n }\n element =\n isElementTabbable(element) && isElementVisible(element)\n ? element\n : getNextElement(parent, element, true) || getPreviousElement(parent, element);\n return element;\n}\n/**\n * Finds the element index path from a parent element to a child element.\n *\n * If you had this node structure: \"A has children [B, C] and C has child D\",\n * the index path from A to D would be [1, 0], or `parent.chidren[1].children[0]`.\n */\nexport function getElementIndexPath(fromElement, toElement) {\n var path = [];\n while (toElement && fromElement && toElement !== fromElement) {\n var parent_1 = getParent(toElement, true);\n if (parent_1 === null) {\n return [];\n }\n path.unshift(Array.prototype.indexOf.call(parent_1.children, toElement));\n toElement = parent_1;\n }\n return path;\n}\n//# sourceMappingURL=focus.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/appendFunction.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/appendFunction.js", - "index": 610, - "index2": 598, - "size": 655, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./appendFunction", - "loc": "1:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "type": "harmony import specifier", - "userRequest": "./appendFunction", - "loc": "9:29-43" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./appendFunction", - "loc": "11:0-33" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./appendFunction", - "loc": "11:0-33" - } - ], - "usedExports": [ - "appendFunction" - ], - "providedExports": [ - "appendFunction" - ], - "optimizationBailout": [], - "depth": 8, - "source": "// tslint:disable:no-any\n/**\n * Returns a single function which will call each of the given functions in the context of the\n * parent.\n */\nexport function appendFunction(parent) {\n var functions = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n functions[_i - 1] = arguments[_i];\n }\n if (functions.length < 2) {\n return functions[0];\n }\n return function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n functions.forEach(function (f) { return f && f.apply(parent, args); });\n };\n}\n//# sourceMappingURL=appendFunction.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/extendComponent.js", - "index": 609, - "index2": 599, - "size": 489, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "9:4-19" - }, - { - "moduleId": "UZzA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": "UZzA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "13:12-27" - }, - { - "moduleId": "a7XU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "1:0-52" - }, - { - "moduleId": "a7XU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", - "type": "harmony import specifier", - "userRequest": "./extendComponent", - "loc": "13:12-27" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./extendComponent", - "loc": "27:0-34" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./extendComponent", - "loc": "27:0-34" - } - ], - "usedExports": [ - "extendComponent" - ], - "providedExports": [ - "extendComponent" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { appendFunction } from './appendFunction';\n/**\n * Extends a component's lifetime methods by appending new functions to the existing lifetime functions.\n */\nexport function extendComponent(parent, methods) {\n for (var name_1 in methods) {\n if (methods.hasOwnProperty(name_1)) {\n // tslint:disable-next-line:no-any\n parent[name_1] = appendFunction(parent, parent[name_1], methods[name_1]);\n }\n }\n}\n//# sourceMappingURL=extendComponent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeComponentRef.js", - "index": 608, - "index2": 600, - "size": 1213, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "99:8-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "276:8-30" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./initializeComponentRef", - "loc": "31:0-41" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./initializeComponentRef", - "loc": "31:0-41" - } - ], - "usedExports": [ - "initializeComponentRef" - ], - "providedExports": [ - "initializeComponentRef" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { extendComponent } from './extendComponent';\n/**\n * Helper to manage componentRef resolution. Internally appends logic to\n * lifetime methods to resolve componentRef to the passed in object.\n *\n * Usage: call initializeComponentRef(this) in the constructor,\n */\nexport function initializeComponentRef(obj) {\n extendComponent(obj, {\n componentDidMount: _onMount,\n componentDidUpdate: _onUpdate,\n componentWillUnmount: _onUnmount\n });\n}\nfunction _onMount() {\n _setComponentRef(this.props.componentRef, this);\n}\nfunction _onUpdate(prevProps) {\n if (prevProps.componentRef !== this.props.componentRef) {\n // tslint:disable-next-line:no-any\n _setComponentRef(prevProps.componentRef, null);\n _setComponentRef(this.props.componentRef, this);\n }\n}\nfunction _onUnmount() {\n _setComponentRef(this.props.componentRef, null);\n}\nfunction _setComponentRef(componentRef, value) {\n if (componentRef) {\n if (typeof componentRef === 'object') {\n componentRef.current = value;\n }\n else if (typeof componentRef === 'function') {\n componentRef(value);\n }\n }\n}\n//# sourceMappingURL=initializeComponentRef.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/hoistStatics.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/hoistStatics.js", - "index": 616, - "index2": 606, - "size": 633, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "../hoistStatics", - "loc": "4:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "../hoistStatics", - "loc": "55:15-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:11-23" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hoistStatics", - "loc": "30:0-31" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hoistStatics", - "loc": "30:0-31" - } - ], - "usedExports": [ - "hoistStatics" - ], - "providedExports": [ - "hoistStatics" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Allows you to hoist static functions in components.\n * Created for the purpose of fixing broken static functions in classes\n * that utilize decorators.\n *\n * @public\n * @param source - The object where the methods are hoisted from.\n * @param dest - The object to hoist the methods onto.\n * @returns The dest object with methods added\n */\nexport function hoistStatics(source, dest) {\n for (var name_1 in source) {\n if (source.hasOwnProperty(name_1)) {\n // tslint:disable-next-line:no-any\n dest[name_1] = source[name_1];\n }\n }\n return dest;\n}\n//# sourceMappingURL=hoistStatics.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "index": 625, - "index2": 614, - "size": 3259, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "22:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "24:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "24:8-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "116:8-20" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "24:8-20" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:8-20" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/customizable", - "loc": "23:0-46" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/customizable", - "loc": "23:0-46" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "24:8-20" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "24:8-20" - } - ], - "usedExports": [ - "customizable" - ], - "providedExports": [ - "customizable" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { Customizations } from './Customizations';\nimport { hoistStatics } from '../hoistStatics';\nimport { CustomizerContext } from './CustomizerContext';\nimport { concatStyleSets } from '@uifabric/merge-styles';\nexport function customizable(scope, fields, concatStyles\n// tslint:disable-next-line:no-any\n) {\n // tslint:disable-next-line:no-shadowed-variable\n return function customizableFactory(\n // tslint:disable-next-line:no-any\n ComposedComponent\n // tslint:disable-next-line:no-any\n ) {\n var resultClass = (_a = /** @class */ (function (_super) {\n tslib_1.__extends(ComponentWithInjectedProps, _super);\n // tslint:disable-next-line:no-any\n function ComponentWithInjectedProps(props) {\n var _this = _super.call(this, props) || this;\n _this._onSettingChanged = _this._onSettingChanged.bind(_this);\n return _this;\n }\n ComponentWithInjectedProps.prototype.componentDidMount = function () {\n Customizations.observe(this._onSettingChanged);\n };\n ComponentWithInjectedProps.prototype.componentWillUnmount = function () {\n Customizations.unobserve(this._onSettingChanged);\n };\n ComponentWithInjectedProps.prototype.render = function () {\n var _this = this;\n return (React.createElement(CustomizerContext.Consumer, null, function (context) {\n var defaultProps = Customizations.getSettings(fields, scope, context.customizations);\n // tslint:disable-next-line:no-any\n var componentProps = _this.props;\n // If defaultProps.styles is a function, evaluate it before calling concatStyleSets\n if (defaultProps.styles && typeof defaultProps.styles === 'function') {\n defaultProps.styles = defaultProps.styles(tslib_1.__assign({}, defaultProps, componentProps));\n }\n // If concatStyles is true and custom styles have been defined compute those styles\n if (concatStyles && (defaultProps.styles || componentProps.styles)) {\n var mergedStyles = concatStyleSets(defaultProps.styles, componentProps.styles);\n return React.createElement(ComposedComponent, tslib_1.__assign({}, defaultProps, componentProps, { styles: mergedStyles }));\n }\n return React.createElement(ComposedComponent, tslib_1.__assign({}, defaultProps, componentProps));\n }));\n };\n ComponentWithInjectedProps.prototype._onSettingChanged = function () {\n this.forceUpdate();\n };\n return ComponentWithInjectedProps;\n }(React.Component)),\n _a.displayName = 'Customized' + scope,\n _a);\n return hoistStatics(ComposedComponent, resultClass);\n var _a;\n };\n}\n//# sourceMappingURL=customizable.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/hoist.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/hoist.js", - "index": 615, - "index2": 604, - "size": 2080, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:28-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:12-26" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hoist", - "loc": "29:0-24" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hoist", - "loc": "29:0-24" - } - ], - "usedExports": [ - "hoistMethods", - "unhoistMethods" - ], - "providedExports": [ - "hoistMethods", - "unhoistMethods" - ], - "optimizationBailout": [], - "depth": 8, - "source": "var REACT_LIFECYCLE_EXCLUSIONS = [\n 'setState',\n 'render',\n 'componentWillMount',\n 'UNSAFE_componentWillMount',\n 'componentDidMount',\n 'componentWillReceiveProps',\n 'UNSAFE_componentWillReceiveProps',\n 'shouldComponentUpdate',\n 'componentWillUpdate',\n 'getSnapshotBeforeUpdate',\n 'UNSAFE_componentWillUpdate',\n 'componentDidUpdate',\n 'componentWillUnmount'\n];\n/**\n * Allows you to hoist methods, except those in an exclusion set from a source object into a destination object.\n *\n * @public\n * @param destination - The instance of the object to hoist the methods onto.\n * @param source - The instance of the object where the methods are hoisted from.\n * @param exclusions - (Optional) What methods to exclude from being hoisted.\n * @returns An array of names of methods that were hoisted.\n */\nexport function hoistMethods(\n// tslint:disable-next-line:no-any\ndestination, \n// tslint:disable-next-line:no-any\nsource, exclusions) {\n if (exclusions === void 0) { exclusions = REACT_LIFECYCLE_EXCLUSIONS; }\n var hoisted = [];\n var _loop_1 = function (methodName) {\n if (typeof source[methodName] === 'function' &&\n destination[methodName] === undefined &&\n (!exclusions || exclusions.indexOf(methodName) === -1)) {\n hoisted.push(methodName);\n /* tslint:disable:no-function-expression */\n destination[methodName] = function () {\n source[methodName].apply(source, arguments);\n };\n /* tslint:enable */\n }\n };\n for (var methodName in source) {\n _loop_1(methodName);\n }\n return hoisted;\n}\n/**\n * Provides a method for convenience to unhoist hoisted methods.\n *\n * @public\n * @param source - The source object upon which methods were hoisted.\n * @param methodNames - An array of method names to unhoist.\n */\n// tslint:disable-next-line:no-any\nexport function unhoistMethods(source, methodNames) {\n methodNames.forEach(function (methodName) { return delete source[methodName]; });\n}\n//# sourceMappingURL=hoist.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "index": 613, - "index2": 607, - "size": 4544, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "2:0-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "6:0-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "7:0-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "9:0-99" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "9:0-99" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "66:8-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "97:8-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "233:30-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "267:8-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "420:83-97" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "776:8-26" - } - ], - "usedExports": [ - "withResponsiveMode", - "ResponsiveMode" - ], - "providedExports": [ - "ResponsiveMode", - "setResponsiveMode", - "initializeResponsiveMode", - "withResponsiveMode" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { findDOMNode } from 'react-dom';\nimport { BaseDecorator } from './BaseDecorator';\nimport { getWindow, hoistStatics } from '../../Utilities';\nexport var ResponsiveMode;\n(function (ResponsiveMode) {\n ResponsiveMode[ResponsiveMode[\"small\"] = 0] = \"small\";\n ResponsiveMode[ResponsiveMode[\"medium\"] = 1] = \"medium\";\n ResponsiveMode[ResponsiveMode[\"large\"] = 2] = \"large\";\n ResponsiveMode[ResponsiveMode[\"xLarge\"] = 3] = \"xLarge\";\n ResponsiveMode[ResponsiveMode[\"xxLarge\"] = 4] = \"xxLarge\";\n ResponsiveMode[ResponsiveMode[\"xxxLarge\"] = 5] = \"xxxLarge\";\n ResponsiveMode[ResponsiveMode[\"unknown\"] = 999] = \"unknown\";\n})(ResponsiveMode || (ResponsiveMode = {}));\nvar RESPONSIVE_MAX_CONSTRAINT = [479, 639, 1023, 1365, 1919, 99999999];\n/**\n * User specified mode to default to, useful for server side rendering scenarios.\n */\nvar _defaultMode;\n/**\n * Tracking the last mode we successfully rendered, which allows us to\n * paint initial renders with the correct size.\n */\nvar _lastMode;\n/**\n * Allows a server rendered scenario to provide a default responsive mode.\n */\nexport function setResponsiveMode(responsiveMode) {\n _defaultMode = responsiveMode;\n}\n/**\n * Initializes the responsive mode to the current window size. This can be used to avoid\n * a re-render during first component mount since the window would otherwise not be measured\n * until after mounting.\n */\nexport function initializeResponsiveMode(element) {\n if (typeof window !== 'undefined') {\n var currentWindow = (element && getWindow(element)) || window;\n getResponsiveMode(currentWindow);\n }\n}\nexport function withResponsiveMode(ComposedComponent) {\n var resultClass = /** @class */ (function (_super) {\n tslib_1.__extends(WithResponsiveMode, _super);\n function WithResponsiveMode(props) {\n var _this = _super.call(this, props) || this;\n _this._onResize = function () {\n var element = findDOMNode(_this);\n var currentWindow = (element && getWindow(element)) || window;\n var responsiveMode = getResponsiveMode(currentWindow);\n if (responsiveMode !== _this.state.responsiveMode) {\n _this.setState({\n responsiveMode: responsiveMode\n });\n }\n };\n _this._updateComposedComponentRef = _this._updateComposedComponentRef.bind(_this);\n _this.state = {\n responsiveMode: _defaultMode || _lastMode || ResponsiveMode.large\n };\n return _this;\n }\n WithResponsiveMode.prototype.componentDidMount = function () {\n this._events.on(window, 'resize', this._onResize);\n this._onResize();\n };\n WithResponsiveMode.prototype.componentWillUnmount = function () {\n this._events.dispose();\n };\n WithResponsiveMode.prototype.render = function () {\n var responsiveMode = this.state.responsiveMode;\n return responsiveMode === ResponsiveMode.unknown ? null : (React.createElement(ComposedComponent, tslib_1.__assign({ ref: this._updateComposedComponentRef, responsiveMode: responsiveMode }, this.props)));\n };\n return WithResponsiveMode;\n }(BaseDecorator));\n return hoistStatics(ComposedComponent, resultClass);\n}\nfunction getResponsiveMode(currentWindow) {\n var responsiveMode = ResponsiveMode.small;\n if (currentWindow) {\n try {\n while (currentWindow.innerWidth > RESPONSIVE_MAX_CONSTRAINT[responsiveMode]) {\n responsiveMode++;\n }\n }\n catch (e) {\n // Return a best effort result in cases where we're in the browser but it throws on getting innerWidth.\n responsiveMode = _defaultMode || _lastMode || ResponsiveMode.large;\n }\n // Tracking last mode just gives us a better default in future renders,\n // which avoids starting with the wrong value if we've measured once.\n _lastMode = responsiveMode;\n }\n else {\n if (_defaultMode !== undefined) {\n responsiveMode = _defaultMode;\n }\n else {\n throw new Error('Content was rendered in a server environment without providing a default responsive mode. ' +\n 'Call setResponsiveMode to define what the responsive mode is.');\n }\n }\n return responsiveMode;\n}\n//# sourceMappingURL=withResponsiveMode.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/aria.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/aria.js", - "index": 670, - "index2": 655, - "size": 615, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:36-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "98:557-581" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "447:428-452" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./aria", - "loc": "12:0-23" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./aria", - "loc": "12:0-23" - } - ], - "usedExports": [ - "mergeAriaAttributeValues" - ], - "providedExports": [ - "mergeAriaAttributeValues" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * ARIA helper to concatenate attributes, returning undefined if all attributes\n * are undefined. (Empty strings are not a valid ARIA attribute value.)\n *\n * @param ariaAttributes - ARIA attributes to merge\n */\nexport function mergeAriaAttributeValues() {\n var ariaAttributes = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n ariaAttributes[_i] = arguments[_i];\n }\n var mergedAttribute = ariaAttributes\n .filter(function (arg) { return arg; })\n .join(' ')\n .trim();\n return mergedAttribute === '' ? undefined : mergedAttribute;\n}\n//# sourceMappingURL=aria.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "index": 645, - "index2": 633, - "size": 1816, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "44:70-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "120:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "211:55-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "269:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "418:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "661:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "664:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "692:29-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "695:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "707:33-39" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rtl", - "loc": "45:0-22" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rtl", - "loc": "45:0-22" - } - ], - "usedExports": [ - "getRTL" - ], - "providedExports": [ - "getRTL", - "setRTL", - "getRTLSafeKeyCode" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { KeyCodes } from './KeyCodes';\nimport { getDocument } from './dom/getDocument';\nimport { getItem, setItem } from './sessionStorage';\nimport { setRTL as mergeStylesSetRTL } from '@uifabric/merge-styles';\nvar RTL_LOCAL_STORAGE_KEY = 'isRTL';\n// Default to undefined so that we initialize on first read.\nvar _isRTL;\n/**\n * Gets the rtl state of the page (returns true if in rtl.)\n */\nexport function getRTL() {\n if (_isRTL === undefined) {\n // Fabric supports persisting the RTL setting between page refreshes via session storage\n var savedRTL = getItem(RTL_LOCAL_STORAGE_KEY);\n if (savedRTL !== null) {\n _isRTL = savedRTL === '1';\n setRTL(_isRTL);\n }\n var doc = getDocument();\n if (_isRTL === undefined && doc) {\n _isRTL = ((doc.body && doc.body.getAttribute('dir')) || doc.documentElement.getAttribute('dir')) === 'rtl';\n mergeStylesSetRTL(_isRTL);\n }\n }\n return !!_isRTL;\n}\n/**\n * Sets the rtl state of the page (by adjusting the dir attribute of the html element.)\n */\nexport function setRTL(isRTL, persistSetting) {\n if (persistSetting === void 0) { persistSetting = false; }\n var doc = getDocument();\n if (doc) {\n doc.documentElement.setAttribute('dir', isRTL ? 'rtl' : 'ltr');\n }\n if (persistSetting) {\n setItem(RTL_LOCAL_STORAGE_KEY, isRTL ? '1' : '0');\n }\n _isRTL = isRTL;\n mergeStylesSetRTL(_isRTL);\n}\n/**\n * Returns the given key, but flips right/left arrows if necessary.\n */\nexport function getRTLSafeKeyCode(key) {\n if (getRTL()) {\n if (key === KeyCodes.left) {\n key = KeyCodes.right;\n }\n else if (key === KeyCodes.right) {\n key = KeyCodes.left;\n }\n }\n return key;\n}\n//# sourceMappingURL=rtl.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/osDetector.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/osDetector.js", - "index": 643, - "index2": 630, - "size": 527, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:67-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "94:62-67" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./osDetector", - "loc": "41:0-29" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./osDetector", - "loc": "41:0-29" - } - ], - "usedExports": [ - "isMac" - ], - "providedExports": [ - "isMac" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getWindow } from './dom/getWindow';\nvar isMacResult;\n/**\n * Returns true if the user is on a Mac. Caches the result value.\n * @param reset - Reset the cached result value (mainly for testing).\n */\nexport function isMac(reset) {\n if (typeof isMacResult === 'undefined' || reset) {\n var win = getWindow();\n var userAgent = win && win.navigator.userAgent;\n isMacResult = !!userAgent && userAgent.indexOf('Macintosh') !== -1;\n }\n return !!isMacResult;\n}\n//# sourceMappingURL=osDetector.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/mobileDetector.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/mobileDetector.js", - "index": 644, - "index2": 631, - "size": 380, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:78-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "94:51-56" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./mobileDetector", - "loc": "39:0-33" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mobileDetector", - "loc": "39:0-33" - } - ], - "usedExports": [ - "isIOS" - ], - "providedExports": [ - "isIOS" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Returns true if and only if the user is on a iOS device.\n * Used to determine whether iOS-specific behavior should be applied.\n */\nexport var isIOS = function () {\n if (!window || !window.navigator || !window.navigator.userAgent) {\n return false;\n }\n return /iPad|iPhone|iPod/i.test(window.navigator.userAgent);\n};\n//# sourceMappingURL=mobileDetector.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Rectangle.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Rectangle.js", - "index": 654, - "index2": 637, - "size": 1834, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:2-15" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Rectangle", - "loc": "10:0-28" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Rectangle", - "loc": "10:0-28" - } - ], - "usedExports": [ - "Rectangle" - ], - "providedExports": [ - "Rectangle" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Rectangle helper class.\n *\n * @public\n * {@docCategory Rectangle}\n */\nvar Rectangle = /** @class */ (function () {\n function Rectangle(left, right, top, bottom) {\n if (left === void 0) { left = 0; }\n if (right === void 0) { right = 0; }\n if (top === void 0) { top = 0; }\n if (bottom === void 0) { bottom = 0; }\n this.top = top;\n this.bottom = bottom;\n this.left = left;\n this.right = right;\n }\n Object.defineProperty(Rectangle.prototype, \"width\", {\n /**\n * Calculated automatically by subtracting the right from left\n */\n get: function () {\n return this.right - this.left;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(Rectangle.prototype, \"height\", {\n /**\n * Calculated automatically by subtracting the bottom from top.\n */\n get: function () {\n return this.bottom - this.top;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Tests if another rect is approximately equal to this rect (within 4 decimal places.)\n */\n Rectangle.prototype.equals = function (rect) {\n // I'm fixing it to 4 decimal places because it allows enough precision and will handle cases when something should be rounded,\n // like .999999 should round to 1.\n return (parseFloat(this.top.toFixed(4)) === parseFloat(rect.top.toFixed(4)) &&\n parseFloat(this.bottom.toFixed(4)) === parseFloat(rect.bottom.toFixed(4)) &&\n parseFloat(this.left.toFixed(4)) === parseFloat(rect.left.toFixed(4)) &&\n parseFloat(this.right.toFixed(4)) === parseFloat(rect.right.toFixed(4)));\n };\n return Rectangle;\n}());\nexport { Rectangle };\n//# sourceMappingURL=Rectangle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/array.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/array.js", - "index": 668, - "index2": 652, - "size": 3735, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "26:11-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "60:26-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:27-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "134:31-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "135:23-34" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./array", - "loc": "13:0-24" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./array", - "loc": "13:0-24" - } - ], - "usedExports": [ - "addElementAtIndex", - "findIndex", - "replaceElement", - "find", - "arraysEqual" - ], - "providedExports": [ - "findIndex", - "find", - "createArray", - "toMatrix", - "removeIndex", - "replaceElement", - "addElementAtIndex", - "flatten", - "arraysEqual" - ], - "optimizationBailout": [], - "depth": 8, - "source": "/**\n * Helper to find the index of an item within an array, using a callback to\n * determine the match.\n *\n * @public\n * @param array - Array to search.\n * @param cb - Callback which returns true on matches.\n */\nexport function findIndex(array, cb) {\n var index = -1;\n for (var i = 0; array && i < array.length; i++) {\n if (cb(array[i], i)) {\n index = i;\n break;\n }\n }\n return index;\n}\n/**\n * Helper to find the first item within an array that satisfies the callback.\n * @param array - Array to search\n * @param cb - Callback which returns true on matches\n */\nexport function find(array, cb) {\n var index = findIndex(array, cb);\n if (index < 0) {\n return undefined;\n }\n return array[index];\n}\n/**\n * Creates an array of a given size and helper method to populate.\n *\n * @public\n * @param size - Size of array.\n * @param getItem - Callback to populate given cell index.\n */\nexport function createArray(size, getItem) {\n var array = [];\n for (var i = 0; i < size; i++) {\n array.push(getItem(i));\n }\n return array;\n}\n/**\n * Convert the given array to a matrix with columnCount number\n * of columns.\n *\n * @public\n * @param items - The array to convert\n * @param columnCount - The number of columns for the resulting matrix\n * @returns A matrix of items\n */\nexport function toMatrix(items, columnCount) {\n return items.reduce(function (rows, currentValue, index) {\n if (index % columnCount === 0) {\n rows.push([currentValue]);\n }\n else {\n rows[rows.length - 1].push(currentValue);\n }\n return rows;\n }, []);\n}\n/**\n * Given an array, it returns a new array that does not contain the item at the given index.\n * @param array - The array to operate on\n * @param index - The index of the element to remove\n */\nexport function removeIndex(array, index) {\n return array.filter(function (_, i) { return index !== i; });\n}\n/**\n * Given an array, this function returns a new array where the element at a given index has been replaced.\n * @param array - The array to operate on\n * @param newElement - The element that will be placed in the new array\n * @param index - The index of the element that should be replaced\n */\nexport function replaceElement(array, newElement, index) {\n var copy = array.slice();\n copy[index] = newElement;\n return copy;\n}\n/**\n * Given an array, this function returns a new array where an element has been inserted at the given index.\n * @param array - The array to operate on\n * @param index - The index where an element should be inserted\n * @param itemToAdd - The element to insert\n */\nexport function addElementAtIndex(array, index, itemToAdd) {\n var copy = array.slice();\n copy.splice(index, 0, itemToAdd);\n return copy;\n}\n/**\n * Given an array where each element is of type T or T[], flatten it into an array of T\n * @param array - The array where each element can optionally also be an array\n */\nexport function flatten(array) {\n var result = [];\n array.forEach(function (item) { return (result = result.concat(item)); });\n return result;\n}\n/**\n * Returns a boolean indicating if the two given arrays are equal in length and values.\n *\n * @param array1 - First array to compare\n * @param array2 - Second array to compare\n * @returns True if the arrays are the same length and have the same values in the same positions, false otherwise.\n */\nexport function arraysEqual(array1, array2) {\n if (array1.length !== array2.length) {\n return false;\n }\n for (var i = 0; i < array1.length; i++) {\n if (array1[i] !== array2[i]) {\n return false;\n }\n }\n return true;\n}\n//# sourceMappingURL=array.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "index": 681, - "index2": 670, - "size": 3378, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "6:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "9:27-46" - }, - { - "moduleId": "3Htz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": "3Htz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "5:27-46" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "7:27-46" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "6:27-46" - }, - { - "moduleId": "jySA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.styles", - "loc": "3:0-72" - }, - { - "moduleId": "jySA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.styles", - "loc": "7:27-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { memoizeFunction } from '../../Utilities';\nimport { HighContrastSelector, getFocusStyle, FontSizes, hiddenContentStyle } from '../../Styling';\nvar noOutline = {\n outline: 0\n};\nvar iconStyle = {\n fontSize: FontSizes.icon,\n margin: '0 4px',\n height: '16px',\n lineHeight: '16px',\n textAlign: 'center',\n verticalAlign: 'middle',\n flexShrink: 0\n};\n/**\n * Gets the base button styles. Note: because it is a base class to be used with the `mergeRules`\n * helper, it should have values for all class names in the interface. This let `mergeRules` optimize\n * mixing class names together.\n */\nexport var getStyles = memoizeFunction(function (theme) {\n var semanticColors = theme.semanticColors;\n var border = semanticColors.buttonBorder;\n var disabledBackground = semanticColors.disabledBackground;\n var disabledText = semanticColors.disabledText;\n var buttonHighContrastFocus = {\n left: -2,\n top: -2,\n bottom: -2,\n right: -2,\n border: 'none',\n outlineColor: 'ButtonText'\n };\n return {\n root: [\n getFocusStyle(theme, { inset: -1, highContrastStyle: buttonHighContrastFocus }),\n theme.fonts.medium,\n {\n boxSizing: 'border-box',\n border: '1px solid ' + border,\n userSelect: 'none',\n display: 'inline-block',\n textDecoration: 'none',\n textAlign: 'center',\n cursor: 'pointer',\n verticalAlign: 'top',\n padding: '0 16px',\n borderRadius: 0,\n margin: 0,\n selectors: {\n // IE11 workaround for preventing shift of child elements of a button when active.\n ':active > *': {\n position: 'relative',\n left: 0,\n top: 0\n }\n }\n }\n ],\n rootDisabled: [\n getFocusStyle(theme, { inset: -1, highContrastStyle: buttonHighContrastFocus }),\n {\n backgroundColor: disabledBackground,\n color: disabledText,\n cursor: 'default',\n pointerEvents: 'none',\n selectors: (_a = {\n ':hover': noOutline,\n ':focus': noOutline\n },\n _a[HighContrastSelector] = {\n color: 'grayText',\n bordercolor: 'grayText'\n },\n _a)\n }\n ],\n iconDisabled: {\n color: disabledText\n },\n menuIconDisabled: {\n color: disabledText\n },\n flexContainer: {\n display: 'flex',\n height: '100%',\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'center'\n },\n textContainer: {\n flexGrow: 1\n },\n icon: iconStyle,\n menuIcon: [\n iconStyle,\n {\n fontSize: FontSizes.small\n }\n ],\n label: {\n margin: '0 4px',\n lineHeight: '100%'\n },\n screenReaderText: hiddenContentStyle\n };\n var _a;\n});\n//# sourceMappingURL=BaseButton.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "index": 682, - "index2": 671, - "size": 3053, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "4:0-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "4:0-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "7:28-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "10:28-48" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "4:0-86" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "8:28-48" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "4:0-86" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "7:32-52" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { HighContrastSelector, concatStyleSets, getFocusStyle } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var buttonHighContrastFocus = {\n left: -2,\n top: -2,\n bottom: -2,\n right: -2,\n border: 'none'\n };\n var splitButtonDivider = {\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8\n };\n var splitButtonDividerDisabled = {\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n backgroundColor: 'GrayText'\n },\n _a)\n };\n var splitButtonStyles = {\n splitButtonContainer: [\n getFocusStyle(theme, { highContrastStyle: buttonHighContrastFocus }),\n {\n display: 'inline-flex',\n selectors: {\n '.ms-Button--default, .ms-Button--primary': {\n borderRight: 'none'\n }\n }\n }\n ],\n splitButtonContainerFocused: {\n outline: 'none!important'\n },\n splitButtonMenuButton: {\n padding: 6,\n height: 'auto',\n boxSizing: 'border-box',\n border: 0,\n borderRadius: 0,\n outline: 'transparent',\n userSelect: 'none',\n display: 'inline-block',\n textDecoration: 'none',\n textAlign: 'center',\n cursor: 'pointer',\n verticalAlign: 'top',\n width: 32,\n marginLeft: -1,\n marginTop: 0,\n marginRight: 0,\n marginBottom: 0,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n border: \"1px solid white\",\n borderLeft: 'none'\n },\n _b)\n },\n splitButtonDivider: splitButtonDivider,\n splitButtonDividerDisabled: splitButtonDividerDisabled,\n splitButtonMenuButtonDisabled: {\n pointerEvents: 'none',\n selectors: (_c = {\n ':hover': {\n cursor: 'default'\n }\n },\n _c[HighContrastSelector] = {\n border: \"1px solid GrayText\",\n color: 'GrayText',\n backgroundColor: 'Window'\n },\n _c)\n },\n splitButtonFlexContainer: {\n display: 'flex',\n height: '100%',\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'center'\n },\n splitButtonContainerDisabled: {\n outline: 'none',\n border: 'none'\n }\n };\n return concatStyleSets(splitButtonStyles, customStyles);\n var _a, _b, _c;\n});\n//# sourceMappingURL=SplitButton.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "index": 637, - "index2": 627, - "size": 1277, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogFooter.styles", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony import specifier", - "userRequest": "./DialogFooter.styles", - "loc": "4:51-60" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n actions: 'ms-Dialog-actions',\n action: 'ms-Dialog-action',\n actionsRight: 'ms-Dialog-actionsRight'\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n actions: [\n classNames.actions,\n {\n position: 'relative',\n width: '100%',\n minHeight: '24px',\n lineHeight: '24px',\n margin: '20px 0 0',\n fontSize: '0',\n selectors: {\n '.ms-Button': {\n lineHeight: 'normal'\n }\n }\n },\n className\n ],\n action: [classNames.action],\n actionsRight: [\n classNames.actionsRight,\n {\n textAlign: 'right',\n marginRight: '-4px',\n fontSize: '0',\n selectors: {\n $action: {\n margin: '0 4px'\n }\n }\n }\n ]\n };\n};\n//# sourceMappingURL=DialogFooter.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "index": 683, - "index2": 675, - "size": 4121, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent.styles", - "loc": "3:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent.styles", - "loc": "4:53-62" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { FontWeights, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n contentLgHeader: 'ms-Dialog-lgHeader',\n close: 'ms-Dialog--close',\n subText: 'ms-Dialog-subText',\n header: 'ms-Dialog-header',\n headerLg: 'ms-Dialog--lgHeader',\n button: 'ms-Dialog-button ms-Dialog-button--close',\n inner: 'ms-Dialog-inner',\n content: 'ms-Dialog-content',\n title: 'ms-Dialog-title'\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme, isLargeHeader = props.isLargeHeader, isClose = props.isClose, hidden = props.hidden, isMultiline = props.isMultiline, draggableHeaderClassName = props.draggableHeaderClassName;\n var palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n content: [\n isLargeHeader && classNames.contentLgHeader,\n isClose && classNames.close,\n {\n flexGrow: 1,\n overflowY: 'hidden' // required for allowScrollOnElement\n },\n className\n ],\n subText: [\n classNames.subText,\n isLargeHeader ? fonts.medium : fonts.small,\n {\n margin: '0 0 20px 0',\n paddingTop: '8px',\n color: palette.neutralPrimary,\n lineHeight: '1.5',\n wordWrap: 'break-word',\n fontWeight: FontWeights.semilight\n }\n ],\n header: [\n classNames.header,\n {\n position: 'relative',\n width: '100%',\n boxSizing: 'border-box'\n },\n isLargeHeader && [\n classNames.headerLg,\n {\n backgroundColor: palette.themePrimary\n }\n ],\n isClose && classNames.close,\n draggableHeaderClassName && [\n draggableHeaderClassName,\n {\n cursor: 'move'\n }\n ]\n ],\n button: [\n classNames.button,\n hidden && {\n selectors: {\n '.ms-Icon.ms-Icon--Cancel': {\n color: palette.neutralSecondary,\n fontSize: '16px'\n }\n }\n }\n ],\n inner: [\n classNames.inner,\n {\n padding: isMultiline ? '0 20px 20px' : '0 28px 20px'\n }\n ],\n innerContent: [\n classNames.content,\n {\n position: 'relative',\n width: '100%',\n selectors: {\n '.ms-Button.ms-Button--compount': {\n marginBottom: '20px',\n selectors: {\n '&:last-child': {\n marginBottom: '0'\n }\n }\n }\n }\n },\n className\n ],\n title: [\n classNames.title,\n {\n color: palette.neutralPrimary,\n margin: '0',\n padding: '20px 36px 20px 28px'\n },\n fonts.xLarge,\n isLargeHeader && [\n {\n color: palette.white,\n marginBottom: '8px',\n padding: '26px 28px 28px'\n },\n fonts.xxLarge\n ],\n isMultiline && fonts.xxLarge\n ],\n topButton: [\n {\n display: 'flex',\n flexDirection: 'row',\n flexWrap: 'nowrap',\n position: 'absolute',\n top: '0',\n right: '0',\n padding: '12px 12px 0 0',\n selectors: {\n '> *': {\n flex: '0 0 auto'\n }\n }\n }\n ]\n };\n};\n//# sourceMappingURL=DialogContent.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "index": 684, - "index2": 678, - "size": 1221, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dialog.styles", - "loc": "3:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "type": "harmony import specifier", - "userRequest": "./Dialog.styles", - "loc": "4:39-48" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { ScreenWidthMinMedium, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Dialog'\n};\nexport var getStyles = function (props) {\n var className = props.className, containerClassName = props.containerClassName, _a = props.dialogDefaultMinWidth, dialogDefaultMinWidth = _a === void 0 ? '288px' : _a, _b = props.dialogDefaultMaxWidth, dialogDefaultMaxWidth = _b === void 0 ? '340px' : _b, hidden = props.hidden, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [classNames.root, theme.fonts.medium, className],\n main: [\n {\n width: dialogDefaultMinWidth,\n outline: '3px solid transparent',\n selectors: (_c = {},\n _c[\"@media (min-width: \" + ScreenWidthMinMedium + \"px)\"] = {\n width: 'auto',\n maxWidth: dialogDefaultMaxWidth,\n minWidth: dialogDefaultMinWidth\n },\n _c)\n },\n !hidden && { display: 'flex' },\n containerClassName\n ]\n };\n var _c;\n};\n//# sourceMappingURL=Dialog.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "index": 902, - "index2": 895, - "size": 7263, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../ButtonThemes", - "loc": "5:0-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../ButtonThemes", - "loc": "20:76-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../ButtonThemes", - "loc": "20:99-113" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../ButtonThemes", - "loc": "5:0-64" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../ButtonThemes", - "loc": "98:77-90" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../ButtonThemes", - "loc": "98:100-114" - } - ], - "usedExports": [ - "primaryStyles", - "standardStyles" - ], - "providedExports": [ - "standardStyles", - "primaryStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { HighContrastSelector } from '../../Styling';\nexport function standardStyles(theme) {\n var s = theme.semanticColors;\n var buttonBackground = s.buttonBackground;\n var buttonBackgroundChecked = s.buttonBackgroundChecked;\n var buttonBackgroundHovered = s.buttonBackgroundHovered;\n var buttonText = s.buttonText;\n var buttonTextHovered = s.buttonTextHovered;\n var buttonTextChecked = s.buttonTextChecked;\n var buttonTextCheckedHovered = s.buttonTextCheckedHovered;\n return {\n root: {\n backgroundColor: buttonBackground,\n color: buttonText\n },\n rootHovered: {\n backgroundColor: buttonBackgroundHovered,\n color: buttonTextHovered,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight'\n },\n _a)\n },\n rootPressed: {\n backgroundColor: buttonBackgroundChecked,\n color: buttonTextChecked\n },\n rootExpanded: {\n backgroundColor: buttonBackgroundChecked,\n color: buttonTextChecked\n },\n rootChecked: {\n backgroundColor: buttonBackgroundChecked,\n color: buttonTextChecked\n },\n rootCheckedHovered: {\n backgroundColor: theme.palette.neutralLight,\n color: buttonTextCheckedHovered\n },\n // Split button styles\n splitButtonContainer: {\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n border: 'none'\n },\n _b)\n },\n splitButtonMenuButton: {\n color: theme.palette.white,\n backgroundColor: theme.palette.neutralLighter,\n selectors: {\n ':hover': {\n backgroundColor: theme.palette.neutralLight,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'Highlight'\n },\n _c)\n }\n }\n },\n splitButtonMenuButtonDisabled: {\n backgroundColor: theme.palette.neutralLighter,\n selectors: {\n ':hover': {\n backgroundColor: theme.palette.neutralLighter\n }\n }\n },\n splitButtonDivider: {\n backgroundColor: theme.palette.neutralTertiaryAlt,\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n backgroundColor: 'WindowText'\n },\n _d)\n },\n splitButtonDividerDisabled: {\n backgroundColor: theme.palette.neutralTertiaryAlt\n },\n splitButtonMenuButtonChecked: {\n backgroundColor: theme.palette.themePrimary\n },\n splitButtonMenuButtonExpanded: {\n backgroundColor: theme.palette.neutralLight\n },\n splitButtonMenuIcon: {\n color: theme.palette.neutralPrimary\n },\n splitButtonMenuIconDisabled: {\n color: theme.palette.neutralTertiary\n }\n };\n var _a, _b, _c, _d;\n}\nexport function primaryStyles(theme) {\n return {\n root: {\n backgroundColor: theme.palette.themePrimary,\n color: theme.palette.white,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'WindowText',\n MsHighContrastAdjust: 'none'\n },\n _a)\n },\n rootHovered: {\n backgroundColor: theme.palette.themeDarkAlt,\n color: theme.palette.white,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'Highlight'\n },\n _b)\n },\n rootPressed: {\n backgroundColor: theme.palette.themeDark,\n color: theme.palette.white,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'WindowText',\n MsHighContrastAdjust: 'none'\n },\n _c)\n },\n rootExpanded: {\n backgroundColor: theme.palette.themeDark,\n color: theme.palette.white\n },\n rootChecked: {\n backgroundColor: theme.palette.themeDark,\n color: theme.palette.white\n },\n rootCheckedHovered: {\n backgroundColor: theme.palette.themePrimary,\n color: theme.palette.white\n },\n rootDisabled: {\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window'\n },\n _d)\n },\n // Split button styles\n splitButtonContainer: {\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n border: 'none'\n },\n _e)\n },\n splitButtonDivider: {\n backgroundColor: theme.palette.white,\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8,\n selectors: (_f = {},\n _f[HighContrastSelector] = {\n backgroundColor: 'Window'\n },\n _f)\n },\n splitButtonDividerDisabled: {\n backgroundColor: theme.palette.neutralTertiaryAlt\n },\n splitButtonMenuButton: {\n backgroundColor: theme.palette.themePrimary,\n color: theme.palette.white,\n selectors: (_g = {},\n _g[HighContrastSelector] = {\n backgroundColor: 'WindowText'\n },\n _g[':hover'] = {\n backgroundColor: theme.palette.themeDark,\n selectors: (_h = {},\n _h[HighContrastSelector] = {\n color: 'Highlight'\n },\n _h)\n },\n _g)\n },\n splitButtonMenuButtonDisabled: {\n backgroundColor: theme.palette.neutralLighter,\n selectors: {\n ':hover': {\n backgroundColor: theme.palette.neutralLighter\n }\n }\n },\n splitButtonMenuButtonChecked: {\n backgroundColor: theme.palette.themeDark\n },\n splitButtonMenuButtonExpanded: {\n backgroundColor: theme.palette.themeDark\n },\n splitButtonMenuIcon: {\n color: theme.palette.white\n },\n splitButtonMenuIconDisabled: {\n color: theme.palette.neutralTertiary\n }\n };\n var _a, _b, _c, _d, _e, _f, _g, _h;\n}\n//# sourceMappingURL=ButtonThemes.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "index": 368, - "index2": 360, - "size": 1029, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/osDetector.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/osDetector.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/osDetector.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeDir.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeDir.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeDir.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "2:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "3:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeDir.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeDir.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeDir.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "3:20-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "4:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "7:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/osDetector.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/osDetector.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/osDetector.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "9:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "9:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "18:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "19:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "24:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "26:17-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "27:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "36:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:40-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "50:48-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "51:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "69:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "124:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "149:13-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "155:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "265:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "331:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "334:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "339:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "344:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "349:33-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "386:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "413:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "747:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "750:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "754:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "759:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "764:33-42" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "9:0-32" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getWindow", - "loc": "9:0-32" - }, - { - "moduleId": "xpST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "xpST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "14:23-32" - }, - { - "moduleId": "xpST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "14:43-52" - } - ], - "usedExports": [ - "getWindow" - ], - "providedExports": [ - "getWindow" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { _isSSR } from './setSSR';\nvar _window = undefined;\n// Note: Accessing \"window\" in IE11 is somewhat expensive, and calling \"typeof window\"\n// hits a memory leak, whereas aliasing it and calling \"typeof _window\" does not.\n// Caching the window value at the file scope lets us minimize the impact.\ntry {\n _window = window;\n}\ncatch (e) {\n /* no-op */\n}\n/**\n * Helper to get the window object. The helper will make sure to use a cached variable\n * of \"window\", to avoid overhead and memory leaks in IE11. Note that in popup scenarios the\n * window object won't match the \"global\" window object, and for these scenarios, you should\n * pass in an element hosted within the popup.\n *\n * @public\n */\nexport function getWindow(rootElement) {\n if (_isSSR || typeof _window === 'undefined') {\n return undefined;\n }\n else {\n var el = rootElement;\n return el && el.ownerDocument && el.ownerDocument.defaultView ? el.ownerDocument.defaultView : _window;\n }\n}\n//# sourceMappingURL=getWindow.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "index": 391, - "index2": 382, - "size": 980, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./buildClassMap", - "loc": "1:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./buildClassMap", - "loc": "1:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../utilities/buildClassMap", - "loc": "1:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "type": "harmony import specifier", - "userRequest": "../utilities/buildClassMap", - "loc": "6:28-41" - } - ], - "usedExports": [ - "buildClassMap" - ], - "providedExports": [ - "buildClassMap" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { mergeStyles } from '../MergeStyles';\n/**\n * Builds a class names object from a given map.\n *\n * @param styles - Map of unprocessed styles.\n * @returns Map of property name to class name.\n */\nexport function buildClassMap(styles) {\n var classes = {};\n var _loop_1 = function (styleName) {\n if (styles.hasOwnProperty(styleName)) {\n var className_1;\n Object.defineProperty(classes, styleName, {\n get: function () {\n if (className_1 === undefined) {\n // tslint:disable-next-line:no-any\n className_1 = mergeStyles(styles[styleName]).toString();\n }\n return className_1;\n },\n enumerable: true,\n configurable: true\n });\n }\n };\n for (var styleName in styles) {\n _loop_1(styleName);\n }\n return classes;\n}\n//# sourceMappingURL=buildClassMap.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warn.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warn.js", - "index": 396, - "index2": 383, - "size": 707, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "9MBR", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "9MBR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "1:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "1:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "1:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "type": "harmony import specifier", - "userRequest": "./warn", - "loc": "17:16-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "72:16-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "129:16-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "153:16-20" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:8-12" - }, - { - "moduleId": "9MBR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warn", - "loc": "1:0-28" - }, - { - "moduleId": "9MBR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warn", - "loc": "1:0-28" - } - ], - "usedExports": [ - "warn" - ], - "providedExports": [ - "warn", - "setWarningCallback" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var _warningCallback = undefined;\n/**\n * Sends a warning to console, if the api is present.\n *\n * @public\n * @param message - Warning message.\n */\nexport function warn(message) {\n if (_warningCallback && process.env.NODE_ENV !== 'production') {\n _warningCallback(message);\n }\n else if (console && console.warn) {\n console.warn(message);\n }\n}\n/**\n * Configures the warning callback. Passing in undefined will reset it to use the default\n * console.warn function.\n *\n * @public\n * @param warningCallback - Callback to override the generated warnings.\n */\nexport function setWarningCallback(warningCallback) {\n _warningCallback = warningCallback;\n}\n//# sourceMappingURL=warn.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "index": 395, - "index2": 385, - "size": 6088, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./icons", - "loc": "2:0-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./icons", - "loc": "2:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "type": "harmony import specifier", - "userRequest": "./icons", - "loc": "14:15-22" - } - ], - "usedExports": [ - "getIcon" - ], - "providedExports": [ - "registerIcons", - "unregisterIcons", - "registerIconAlias", - "getIcon", - "setIconOptions" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import * as tslib_1 from \"tslib\";\nimport { GlobalSettings, warn } from '@uifabric/utilities';\nimport { fontFace, mergeStyles, Stylesheet } from '@uifabric/merge-styles';\nvar ICON_SETTING_NAME = 'icons';\nvar _iconSettings = GlobalSettings.getValue(ICON_SETTING_NAME, {\n __options: {\n disableWarnings: false,\n warnOnMissingIcons: true\n },\n __remapped: {}\n});\n// Reset icon registration on stylesheet resets.\nvar stylesheet = Stylesheet.getInstance();\nif (stylesheet && stylesheet.onReset) {\n stylesheet.onReset(function () {\n for (var name_1 in _iconSettings) {\n if (_iconSettings.hasOwnProperty(name_1) && !!_iconSettings[name_1].subset) {\n _iconSettings[name_1].subset.className = undefined;\n }\n }\n });\n}\n/**\n * Normalizes an icon name for consistent mapping.\n * Current implementation is to convert the icon name to lower case.\n *\n * @param name - Icon name to normalize.\n * @returns {string} Normalized icon name to use for indexing and mapping.\n */\nvar normalizeIconName = function (name) { return name.toLowerCase(); };\n/**\n * Registers a given subset of icons.\n *\n * @param iconSubset - the icon subset definition.\n */\nexport function registerIcons(iconSubset, options) {\n var subset = tslib_1.__assign({}, iconSubset, { isRegistered: false, className: undefined });\n var icons = iconSubset.icons;\n // Grab options, optionally mix user provided ones on top.\n options = options ? tslib_1.__assign({}, _iconSettings.__options, options) : _iconSettings.__options;\n for (var iconName in icons) {\n if (icons.hasOwnProperty(iconName)) {\n var code = icons[iconName];\n var normalizedIconName = normalizeIconName(iconName);\n if (_iconSettings[normalizedIconName]) {\n _warnDuplicateIcon(iconName);\n }\n else {\n _iconSettings[normalizedIconName] = {\n code: code,\n subset: subset\n };\n }\n }\n }\n}\n/**\n * Unregisters icons by name.\n *\n * @param iconNames - List of icons to unregister.\n */\nexport function unregisterIcons(iconNames) {\n var options = _iconSettings.__options;\n var _loop_1 = function (iconName) {\n var normalizedIconName = normalizeIconName(iconName);\n if (_iconSettings[normalizedIconName]) {\n delete _iconSettings[normalizedIconName];\n }\n else {\n // Warn that we are trying to delete an icon that doesn't exist\n if (!options.disableWarnings) {\n warn(\"The icon \\\"\" + iconName + \"\\\" tried to unregister but was not registered.\");\n }\n }\n // Delete any aliases for this iconName\n if (_iconSettings.__remapped[normalizedIconName]) {\n delete _iconSettings.__remapped[normalizedIconName];\n }\n // Delete any items that were an alias for this iconName\n Object.keys(_iconSettings.__remapped).forEach(function (key) {\n if (_iconSettings.__remapped[key] === normalizedIconName) {\n delete _iconSettings.__remapped[key];\n }\n });\n };\n for (var _i = 0, iconNames_1 = iconNames; _i < iconNames_1.length; _i++) {\n var iconName = iconNames_1[_i];\n _loop_1(iconName);\n }\n}\n/**\n * Remaps one icon name to another.\n */\nexport function registerIconAlias(iconName, mappedToName) {\n _iconSettings.__remapped[normalizeIconName(iconName)] = normalizeIconName(mappedToName);\n}\n/**\n * Gets an icon definition. If an icon is requested but the subset has yet to be registered,\n * it will get registered immediately.\n *\n * @public\n * @param name - Name of icon.\n */\nexport function getIcon(name) {\n var icon = undefined;\n var options = _iconSettings.__options;\n name = name ? normalizeIconName(name) : '';\n name = _iconSettings.__remapped[name] || name;\n if (name) {\n icon = _iconSettings[name];\n if (icon) {\n var subset = icon.subset;\n if (subset && subset.fontFace) {\n if (!subset.isRegistered) {\n fontFace(subset.fontFace);\n subset.isRegistered = true;\n }\n if (!subset.className) {\n subset.className = mergeStyles(subset.style, {\n fontFamily: subset.fontFace.fontFamily,\n fontWeight: subset.fontFace.fontWeight || 'normal',\n fontStyle: subset.fontFace.fontStyle || 'normal'\n });\n }\n }\n }\n else {\n if (!options.disableWarnings && options.warnOnMissingIcons) {\n warn(\"The icon \\\"\" + name + \"\\\" was used but not registered. See http://aka.ms/fabric-icon-usage for more information.\");\n }\n }\n }\n return icon;\n}\n/**\n * Sets the icon options.\n *\n * @public\n */\nexport function setIconOptions(options) {\n _iconSettings.__options = tslib_1.__assign({}, _iconSettings.__options, options);\n}\nvar _missingIcons = [];\nvar _missingIconsTimer = undefined;\nfunction _warnDuplicateIcon(iconName) {\n var options = _iconSettings.__options;\n var warningDelay = 2000;\n var maxIconsInMessage = 10;\n if (!options.disableWarnings) {\n _missingIcons.push(iconName);\n if (_missingIconsTimer === undefined) {\n _missingIconsTimer = setTimeout(function () {\n warn(\"Some icons were re-registered. Applications should only call registerIcons for any given \" +\n \"icon once. Redefining what an icon is may have unintended consequences. Duplicates \" +\n \"include: \\n\" +\n _missingIcons.slice(0, maxIconsInMessage).join(', ') +\n (_missingIcons.length > maxIconsInMessage ? \" (+ \" + (_missingIcons.length - maxIconsInMessage) + \" more)\" : ''));\n _missingIconsTimer = undefined;\n _missingIcons = [];\n }, warningDelay);\n }\n }\n}\n//# sourceMappingURL=icons.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "index": 398, - "index2": 386, - "size": 716, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getIconClassName", - "loc": "3:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getIconClassName", - "loc": "3:0-54" - } - ], - "usedExports": false, - "providedExports": [ - "getIconClassName" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { mergeStyles } from '@uifabric/merge-styles';\nimport { getIcon } from './icons';\nvar defaultIconStyles = {\n display: 'inline-block'\n};\n/**\n * Gets an icon classname. You should be able to add this classname to an I tag with no\n * additional classnames, and render the icon.\n *\n * @public\n */\nexport function getIconClassName(name) {\n var className = '';\n var icon = getIcon(name);\n if (icon) {\n className = mergeStyles(icon.subset.className, defaultIconStyles, {\n selectors: {\n '::before': {\n content: \"\\\"\" + icon.code + \"\\\"\"\n }\n }\n });\n }\n return className;\n}\n//# sourceMappingURL=getIconClassName.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "index": 400, - "index2": 388, - "size": 7475, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./AnimationStyles", - "loc": "1:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./AnimationStyles", - "loc": "1:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./AnimationStyles", - "loc": "1:0-72" - } - ], - "usedExports": [ - "AnimationStyles", - "AnimationVariables" - ], - "providedExports": [ - "AnimationVariables", - "AnimationStyles" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { keyframes } from '@uifabric/merge-styles';\n/* Register the keyframes */\nvar EASING_FUNCTION_1 = 'cubic-bezier(.1,.9,.2,1)';\nvar EASING_FUNCTION_2 = 'cubic-bezier(.1,.25,.75,.9)';\nvar DURATION_1 = '0.167s';\nvar DURATION_2 = '0.267s';\nvar DURATION_3 = '0.367s';\nvar DURATION_4 = '0.467s';\nvar FADE_IN = keyframes({\n from: { opacity: 0 },\n to: { opacity: 1 }\n});\nvar FADE_OUT = keyframes({\n from: { opacity: 1 },\n to: { opacity: 0 }\n});\nvar SLIDE_RIGHT_IN10 = _createSlideInX(-10);\nvar SLIDE_RIGHT_IN20 = _createSlideInX(-20);\nvar SLIDE_RIGHT_IN40 = _createSlideInX(-40);\nvar SLIDE_RIGHT_IN400 = _createSlideInX(-400);\nvar SLIDE_LEFT_IN10 = _createSlideInX(10);\nvar SLIDE_LEFT_IN20 = _createSlideInX(20);\nvar SLIDE_LEFT_IN40 = _createSlideInX(40);\nvar SLIDE_LEFT_IN400 = _createSlideInX(400);\nvar SLIDE_UP_IN10 = _createSlideInY(10);\nvar SLIDE_UP_IN20 = _createSlideInY(20);\nvar SLIDE_DOWN_IN10 = _createSlideInY(-10);\nvar SLIDE_DOWN_IN20 = _createSlideInY(-20);\nvar SLIDE_RIGHT_OUT10 = _createSlideOutX(10);\nvar SLIDE_RIGHT_OUT20 = _createSlideOutX(20);\nvar SLIDE_RIGHT_OUT40 = _createSlideOutX(40);\nvar SLIDE_RIGHT_OUT400 = _createSlideOutX(400);\nvar SLIDE_LEFT_OUT10 = _createSlideOutX(-10);\nvar SLIDE_LEFT_OUT20 = _createSlideOutX(-20);\nvar SLIDE_LEFT_OUT40 = _createSlideOutX(-40);\nvar SLIDE_LEFT_OUT400 = _createSlideOutX(-400);\nvar SLIDE_UP_OUT10 = _createSlideOutY(-10);\nvar SLIDE_UP_OUT20 = _createSlideOutY(-20);\nvar SLIDE_DOWN_OUT10 = _createSlideOutY(10);\nvar SLIDE_DOWN_OUT20 = _createSlideOutY(20);\nvar SCALE_UP100 = keyframes({\n from: { transform: 'scale3d(.98,.98,1)' },\n to: { transform: 'scale3d(1,1,1)' }\n});\nvar SCALE_DOWN98 = keyframes({\n from: { transform: 'scale3d(1,1,1)' },\n to: { transform: 'scale3d(.98,.98,1)' }\n});\nvar SCALE_DOWN100 = keyframes({\n from: { transform: 'scale3d(1.03,1.03,1)' },\n to: { transform: 'scale3d(1,1,1)' }\n});\nvar SCALE_UP103 = keyframes({\n from: { transform: 'scale3d(1,1,1)' },\n to: { transform: 'scale3d(1.03,1.03,1)' }\n});\nvar ROTATE90 = keyframes({\n from: { transform: 'rotateZ(0deg)' },\n to: { transform: 'rotateZ(90deg)' }\n});\nvar ROTATE_N90 = keyframes({\n from: { transform: 'rotateZ(0deg)' },\n to: { transform: 'rotateZ(-90deg)' }\n});\n/**\n * Exporting raw duraction values and easing functions to be used in custom animations\n */\nexport var AnimationVariables = {\n easeFunction1: EASING_FUNCTION_1,\n easeFunction2: EASING_FUNCTION_2,\n durationValue1: DURATION_1,\n durationValue2: DURATION_2,\n durationValue3: DURATION_3,\n durationValue4: DURATION_4\n};\n/**\n * All Fabric standard animations, exposed as json objects referencing predefined\n * keyframes. These objects can be mixed in with other class definitions.\n */\nexport var AnimationStyles = {\n slideRightIn10: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN10, DURATION_3, EASING_FUNCTION_1),\n slideRightIn20: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN20, DURATION_3, EASING_FUNCTION_1),\n slideRightIn40: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN40, DURATION_3, EASING_FUNCTION_1),\n slideRightIn400: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN400, DURATION_3, EASING_FUNCTION_1),\n slideLeftIn10: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN10, DURATION_3, EASING_FUNCTION_1),\n slideLeftIn20: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN20, DURATION_3, EASING_FUNCTION_1),\n slideLeftIn40: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN40, DURATION_3, EASING_FUNCTION_1),\n slideLeftIn400: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN400, DURATION_3, EASING_FUNCTION_1),\n slideUpIn10: _createAnimation(FADE_IN + \",\" + SLIDE_UP_IN10, DURATION_3, EASING_FUNCTION_1),\n slideUpIn20: _createAnimation(FADE_IN + \",\" + SLIDE_UP_IN20, DURATION_3, EASING_FUNCTION_1),\n slideDownIn10: _createAnimation(FADE_IN + \",\" + SLIDE_DOWN_IN10, DURATION_3, EASING_FUNCTION_1),\n slideDownIn20: _createAnimation(FADE_IN + \",\" + SLIDE_DOWN_IN20, DURATION_3, EASING_FUNCTION_1),\n slideRightOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT10, DURATION_3, EASING_FUNCTION_1),\n slideRightOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT20, DURATION_3, EASING_FUNCTION_1),\n slideRightOut40: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT40, DURATION_3, EASING_FUNCTION_1),\n slideRightOut400: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT400, DURATION_3, EASING_FUNCTION_1),\n slideLeftOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT10, DURATION_3, EASING_FUNCTION_1),\n slideLeftOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT20, DURATION_3, EASING_FUNCTION_1),\n slideLeftOut40: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT40, DURATION_3, EASING_FUNCTION_1),\n slideLeftOut400: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT400, DURATION_3, EASING_FUNCTION_1),\n slideUpOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_UP_OUT10, DURATION_3, EASING_FUNCTION_1),\n slideUpOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_UP_OUT20, DURATION_3, EASING_FUNCTION_1),\n slideDownOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_DOWN_OUT10, DURATION_3, EASING_FUNCTION_1),\n slideDownOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_DOWN_OUT20, DURATION_3, EASING_FUNCTION_1),\n scaleUpIn100: _createAnimation(FADE_IN + \",\" + SCALE_UP100, DURATION_3, EASING_FUNCTION_1),\n scaleDownIn100: _createAnimation(FADE_IN + \",\" + SCALE_DOWN100, DURATION_3, EASING_FUNCTION_1),\n scaleUpOut103: _createAnimation(FADE_OUT + \",\" + SCALE_UP103, DURATION_1, EASING_FUNCTION_2),\n scaleDownOut98: _createAnimation(FADE_OUT + \",\" + SCALE_DOWN98, DURATION_1, EASING_FUNCTION_2),\n fadeIn100: _createAnimation(FADE_IN, DURATION_1, EASING_FUNCTION_2),\n fadeIn200: _createAnimation(FADE_IN, DURATION_2, EASING_FUNCTION_2),\n fadeIn400: _createAnimation(FADE_IN, DURATION_3, EASING_FUNCTION_2),\n fadeIn500: _createAnimation(FADE_IN, DURATION_4, EASING_FUNCTION_2),\n fadeOut100: _createAnimation(FADE_OUT, DURATION_1, EASING_FUNCTION_2),\n fadeOut200: _createAnimation(FADE_OUT, DURATION_2, EASING_FUNCTION_2),\n fadeOut400: _createAnimation(FADE_OUT, DURATION_3, EASING_FUNCTION_2),\n fadeOut500: _createAnimation(FADE_OUT, DURATION_4, EASING_FUNCTION_2),\n rotate90deg: _createAnimation(ROTATE90, '0.1s', EASING_FUNCTION_2),\n rotateN90deg: _createAnimation(ROTATE_N90, '0.1s', EASING_FUNCTION_2)\n // expandCollapse 100/200/400, delay 100/200\n};\nfunction _createAnimation(animationName, animationDuration, animationTimingFunction) {\n return {\n animationName: animationName,\n animationDuration: animationDuration,\n animationTimingFunction: animationTimingFunction,\n animationFillMode: 'both'\n };\n}\nfunction _createSlideInX(fromX) {\n return keyframes({\n from: { transform: \"translate3d(\" + fromX + \"px,0,0)\" },\n to: { transform: \"translate3d(0,0,0)\" }\n });\n}\nfunction _createSlideInY(fromY) {\n return keyframes({\n from: { transform: \"translate3d(0,\" + fromY + \"px,0)\" },\n to: { transform: \"translate3d(0,0,0)\" }\n });\n}\nfunction _createSlideOutX(toX) {\n return keyframes({\n from: { transform: \"translate3d(0,0,0)\" },\n to: { transform: \"translate3d(\" + toX + \"px,0,0)\" }\n });\n}\nfunction _createSlideOutY(toY) {\n return keyframes({\n from: { transform: \"translate3d(0,0,0)\" },\n to: { transform: \"translate3d(0,\" + toY + \"px,0)\" }\n });\n}\n//# sourceMappingURL=AnimationStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "index": 401, - "index2": 389, - "size": 1614, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultPalette", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultPalette", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../styles/DefaultPalette", - "loc": "2:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultPalette", - "loc": "4:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony import specifier", - "userRequest": "../styles/DefaultPalette", - "loc": "5:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony import specifier", - "userRequest": "../styles/DefaultPalette", - "loc": "6:8-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "./DefaultPalette", - "loc": "9:13-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "./DefaultPalette", - "loc": "10:51-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "./DefaultPalette", - "loc": "109:42-56" - } - ], - "usedExports": [ - "DefaultPalette" - ], - "providedExports": [ - "DefaultPalette" - ], - "optimizationBailout": [], - "depth": 9, - "source": "// When adding or removing a color, make sure you keep this consistent with IColorClassNames by adding the color variants.\nexport var DefaultPalette = {\n themeDarker: '#004578',\n themeDark: '#005a9e',\n themeDarkAlt: '#106ebe',\n themePrimary: '#0078d4',\n themeSecondary: '#2b88d8',\n themeTertiary: '#71afe5',\n themeLight: '#c7e0f4',\n themeLighter: '#deecf9',\n themeLighterAlt: '#eff6fc',\n black: '#000000',\n blackTranslucent40: 'rgba(0,0,0,.4)',\n neutralDark: '#212121',\n neutralPrimary: '#333333',\n neutralPrimaryAlt: '#3c3c3c',\n neutralSecondary: '#666666',\n neutralSecondaryAlt: '#767676',\n neutralTertiary: '#a6a6a6',\n neutralTertiaryAlt: '#c8c8c8',\n neutralQuaternary: '#d0d0d0',\n neutralQuaternaryAlt: '#dadada',\n neutralLight: '#eaeaea',\n neutralLighter: '#f4f4f4',\n neutralLighterAlt: '#f8f8f8',\n accent: '#0078d4',\n white: '#ffffff',\n whiteTranslucent40: 'rgba(255,255,255,.4)',\n yellowDark: '#d29200',\n yellow: '#ffb900',\n yellowLight: '#fff100',\n orange: '#d83b01',\n orangeLight: '#ea4300',\n orangeLighter: '#ff8c00',\n redDark: '#a80000',\n red: '#e81123',\n magentaDark: '#5c005c',\n magenta: '#b4009e',\n magentaLight: '#e3008c',\n purpleDark: '#32145a',\n purple: '#5c2d91',\n purpleLight: '#b4a0ff',\n blueDark: '#002050',\n blueMid: '#00188f',\n blue: '#0078d4',\n blueLight: '#00bcf2',\n tealDark: '#004b50',\n teal: '#008272',\n tealLight: '#00b294',\n greenDark: '#004b1c',\n green: '#107c10',\n greenLight: '#bad80a'\n};\n//# sourceMappingURL=DefaultPalette.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/fonts.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/fonts.js", - "index": 403, - "index2": 390, - "size": 7173, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./fonts", - "loc": "2:0-99" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fonts", - "loc": "4:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./fonts", - "loc": "4:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./fonts", - "loc": "4:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./fonts", - "loc": "4:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./fonts", - "loc": "4:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "7:31-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "21:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "22:58-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "23:56-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "24:57-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "30:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "31:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "32:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "33:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "34:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "35:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "36:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "37:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "38:38-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "41:102-113" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./fonts", - "loc": "44:97-108" - } - ], - "usedExports": [ - "createFontStyles", - "FontWeights", - "LocalizedFontNames", - "LocalizedFontFamilies", - "FontSizes" - ], - "providedExports": [ - "LocalizedFontNames", - "LocalizedFontFamilies", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles" - ], - "optimizationBailout": [], - "depth": 9, - "source": "// Fallback fonts, if specified system or web fonts are unavailable.\nvar FontFamilyFallbacks = \"'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif\";\n// Font face names to be registered.\nexport var LocalizedFontNames;\n(function (LocalizedFontNames) {\n LocalizedFontNames.Arabic = 'Segoe UI Web (Arabic)';\n LocalizedFontNames.Cyrillic = 'Segoe UI Web (Cyrillic)';\n LocalizedFontNames.EastEuropean = 'Segoe UI Web (East European)';\n LocalizedFontNames.Greek = 'Segoe UI Web (Greek)';\n LocalizedFontNames.Hebrew = 'Segoe UI Web (Hebrew)';\n LocalizedFontNames.Thai = 'Leelawadee UI Web';\n LocalizedFontNames.Vietnamese = 'Segoe UI Web (Vietnamese)';\n LocalizedFontNames.WestEuropean = 'Segoe UI Web (West European)';\n LocalizedFontNames.Selawik = 'Selawik Web';\n})(LocalizedFontNames || (LocalizedFontNames = {}));\n// Font families with fallbacks, for the general regions.\nexport var LocalizedFontFamilies;\n(function (LocalizedFontFamilies) {\n LocalizedFontFamilies.Arabic = \"'\" + LocalizedFontNames.Arabic + \"'\";\n LocalizedFontFamilies.ChineseSimplified = \"'Microsoft Yahei UI', Verdana, Simsun\";\n LocalizedFontFamilies.ChineseTraditional = \"'Microsoft Jhenghei UI', Pmingliu\";\n LocalizedFontFamilies.Cyrillic = \"'\" + LocalizedFontNames.Cyrillic + \"'\";\n LocalizedFontFamilies.EastEuropean = \"'\" + LocalizedFontNames.EastEuropean + \"'\";\n LocalizedFontFamilies.Greek = \"'\" + LocalizedFontNames.Greek + \"'\";\n LocalizedFontFamilies.Hebrew = \"'\" + LocalizedFontNames.Hebrew + \"'\";\n LocalizedFontFamilies.Hindi = \"'Nirmala UI'\";\n LocalizedFontFamilies.Japanese = \"'Yu Gothic UI', 'Meiryo UI', Meiryo, 'MS Pgothic', Osaka\";\n LocalizedFontFamilies.Korean = \"'Malgun Gothic', Gulim\";\n LocalizedFontFamilies.Selawik = \"'\" + LocalizedFontNames.Selawik + \"'\";\n LocalizedFontFamilies.Thai = \"'Leelawadee UI Web', 'Kmer UI'\";\n LocalizedFontFamilies.Vietnamese = \"'\" + LocalizedFontNames.Vietnamese + \"'\";\n LocalizedFontFamilies.WestEuropean = \"'\" + LocalizedFontNames.WestEuropean + \"'\";\n})(LocalizedFontFamilies || (LocalizedFontFamilies = {}));\n// By default, we favor system fonts for the default.\n// All localized fonts use a web font and never use the system font.\nvar defaultFontFamily = \"'Segoe UI', '\" + LocalizedFontNames.WestEuropean + \"'\";\n// Mapping of language prefix to to font family.\nvar LanguageToFontMap = {\n ar: LocalizedFontFamilies.Arabic,\n bg: LocalizedFontFamilies.Cyrillic,\n cs: LocalizedFontFamilies.EastEuropean,\n el: LocalizedFontFamilies.Greek,\n et: LocalizedFontFamilies.EastEuropean,\n he: LocalizedFontFamilies.Hebrew,\n hi: LocalizedFontFamilies.Hindi,\n hr: LocalizedFontFamilies.EastEuropean,\n hu: LocalizedFontFamilies.EastEuropean,\n ja: LocalizedFontFamilies.Japanese,\n kk: LocalizedFontFamilies.EastEuropean,\n ko: LocalizedFontFamilies.Korean,\n lt: LocalizedFontFamilies.EastEuropean,\n lv: LocalizedFontFamilies.EastEuropean,\n pl: LocalizedFontFamilies.EastEuropean,\n ru: LocalizedFontFamilies.Cyrillic,\n sk: LocalizedFontFamilies.EastEuropean,\n 'sr-latn': LocalizedFontFamilies.EastEuropean,\n th: LocalizedFontFamilies.Thai,\n tr: LocalizedFontFamilies.EastEuropean,\n uk: LocalizedFontFamilies.Cyrillic,\n vi: LocalizedFontFamilies.Vietnamese,\n 'zh-hans': LocalizedFontFamilies.ChineseSimplified,\n 'zh-hant': LocalizedFontFamilies.ChineseTraditional\n};\n// Standard font sizes.\nexport var FontSizes;\n(function (FontSizes) {\n FontSizes.mini = '10px';\n FontSizes.xSmall = '11px';\n FontSizes.small = '12px';\n FontSizes.smallPlus = '13px';\n FontSizes.medium = '14px';\n FontSizes.mediumPlus = '15px';\n FontSizes.icon = '16px';\n FontSizes.large = '17px';\n FontSizes.xLarge = '21px';\n FontSizes.xLargePlus = '21px';\n FontSizes.xxLarge = '28px';\n FontSizes.xxLargePlus = '28px';\n FontSizes.superLarge = '42px';\n FontSizes.mega = '72px';\n})(FontSizes || (FontSizes = {}));\n// Standard font weights.\nexport var FontWeights;\n(function (FontWeights) {\n FontWeights.light = 100;\n FontWeights.semilight = 300;\n FontWeights.regular = 400;\n FontWeights.semibold = 600;\n FontWeights.bold = 700;\n})(FontWeights || (FontWeights = {}));\n// Standard Icon Sizes.\nexport var IconFontSizes;\n(function (IconFontSizes) {\n IconFontSizes.xSmall = '10px';\n IconFontSizes.small = '12px';\n IconFontSizes.medium = '16px';\n IconFontSizes.large = '20px';\n})(IconFontSizes || (IconFontSizes = {}));\nfunction _fontFamilyWithFallbacks(fontFamily) {\n return fontFamily + \", \" + FontFamilyFallbacks;\n}\nexport function createFontStyles(localeCode) {\n var localizedFont = _getLocalizedFontFamily(localeCode);\n var fontFamilyWithFallback = _fontFamilyWithFallbacks(localizedFont);\n var semilightFontFamilyWithFallback = fontFamilyWithFallback;\n // Chrome has a bug where it does not render Segoe UI Semilight correctly, so we force the webfont to be used in that case\n if (localizedFont === defaultFontFamily) {\n semilightFontFamilyWithFallback = _fontFamilyWithFallbacks(LocalizedFontFamilies.WestEuropean);\n }\n var fontStyles = {\n tiny: _createFont(FontSizes.mini, FontWeights.semibold, fontFamilyWithFallback),\n xSmall: _createFont(FontSizes.xSmall, FontWeights.regular, fontFamilyWithFallback),\n small: _createFont(FontSizes.small, FontWeights.regular, fontFamilyWithFallback),\n smallPlus: _createFont(FontSizes.smallPlus, FontWeights.regular, fontFamilyWithFallback),\n medium: _createFont(FontSizes.medium, FontWeights.regular, fontFamilyWithFallback),\n mediumPlus: _createFont(FontSizes.mediumPlus, FontWeights.regular, fontFamilyWithFallback),\n large: _createFont(FontSizes.large, FontWeights.semilight, semilightFontFamilyWithFallback),\n xLarge: _createFont(FontSizes.xLarge, FontWeights.light, fontFamilyWithFallback),\n xLargePlus: _createFont(FontSizes.xLargePlus, FontWeights.light, fontFamilyWithFallback),\n xxLarge: _createFont(FontSizes.xxLarge, FontWeights.light, fontFamilyWithFallback),\n xxLargePlus: _createFont(FontSizes.xxLargePlus, FontWeights.light, fontFamilyWithFallback),\n superLarge: _createFont(FontSizes.superLarge, FontWeights.light, fontFamilyWithFallback),\n mega: _createFont(FontSizes.mega, FontWeights.light, fontFamilyWithFallback)\n };\n return fontStyles;\n}\n/**\n * If there is a localized font for this language, return that. Returns undefined if there is no localized font for that language.\n */\nfunction _getLocalizedFontFamily(language) {\n for (var lang in LanguageToFontMap) {\n if (LanguageToFontMap.hasOwnProperty(lang) && language && lang.indexOf(language) === 0) {\n // tslint:disable-next-line:no-any\n return LanguageToFontMap[lang];\n }\n }\n return defaultFontFamily;\n}\nfunction _createFont(size, weight, fontFamily) {\n return {\n fontFamily: fontFamily,\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontSize: size,\n fontWeight: weight\n };\n}\n//# sourceMappingURL=fonts.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "index": 405, - "index2": 391, - "size": 625, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "1:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "1:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "2:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "5:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "12:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:22-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "19:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "32:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "33:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "37:39-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "75:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "89:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "99:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "126:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "234:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "321:38-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "328:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "329:33-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "433:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "745:33-44" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "5:0-34" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getDocument", - "loc": "5:0-34" - } - ], - "usedExports": [ - "getDocument" - ], - "providedExports": [ - "getDocument" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { _isSSR } from './setSSR';\n/**\n * Helper to get the document object. Note that in popup window cases, document\n * might be the wrong document, which is why we look at ownerDocument for the\n * truth. Also note that the SSR flag is used to test ssr scenarios even if\n * document is defined (from JSDOM for example.)\n *\n * @public\n */\nexport function getDocument(rootElement) {\n if (_isSSR || typeof document === 'undefined') {\n return undefined;\n }\n else {\n var el = rootElement;\n return el && el.ownerDocument ? el.ownerDocument : document;\n }\n}\n//# sourceMappingURL=getDocument.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/localStorage.js", - "index": 406, - "index2": 392, - "size": 836, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony side effect evaluation", - "userRequest": "./localStorage", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony import specifier", - "userRequest": "./localStorage", - "loc": "13:28-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony import specifier", - "userRequest": "./localStorage", - "loc": "38:8-15" - } - ], - "usedExports": [ - "getItem", - "setItem" - ], - "providedExports": [ - "getItem", - "setItem" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { getWindow } from './dom/getWindow';\n/**\n * Fetches an item from local storage without throwing an exception\n * @param key The key of the item to fetch from local storage\n */\nexport function getItem(key) {\n var result = null;\n try {\n var win = getWindow();\n result = win ? win.localStorage.getItem(key) : null;\n }\n catch (e) {\n /* Eat the exception */\n }\n return result;\n}\n/**\n * Inserts an item into local storage without throwing an exception\n * @param key The key of the item to add to local storage\n * @param data The data to put into local storage\n */\nexport function setItem(key, data) {\n try {\n var win = getWindow();\n win && win.localStorage.setItem(key, data);\n }\n catch (e) {\n /* Eat the exception */\n }\n}\n//# sourceMappingURL=localStorage.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "index": 402, - "index2": 394, - "size": 3630, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../styles/DefaultFontStyles", - "loc": "2:0-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultFontStyles", - "loc": "3:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultFontStyles", - "loc": "3:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultFontStyles", - "loc": "3:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultFontStyles", - "loc": "3:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "type": "harmony import specifier", - "userRequest": "../styles/DefaultFontStyles", - "loc": "6:42-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "./DefaultFontStyles", - "loc": "11:11-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "./DefaultFontStyles", - "loc": "115:49-66" - } - ], - "usedExports": [ - "DefaultFontStyles" - ], - "providedExports": [ - "DefaultFontStyles", - "registerDefaultFontFaces" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { fontFace } from '@uifabric/merge-styles';\nimport { createFontStyles, FontWeights, LocalizedFontFamilies, LocalizedFontNames } from './fonts';\nimport { getLanguage, getWindow } from '@uifabric/utilities';\n// Default urls.\nvar DefaultBaseUrl = 'https://static2.sharepointonline.com/files/fabric/assets';\n// Standard font styling.\nexport var DefaultFontStyles = createFontStyles(getLanguage());\nfunction _registerFontFace(fontFamily, url, fontWeight, localFontName) {\n fontFamily = \"'\" + fontFamily + \"'\";\n var localFontSrc = localFontName !== undefined ? \"local('\" + localFontName + \"'),\" : '';\n fontFace({\n fontFamily: fontFamily,\n src: localFontSrc + (\"url('\" + url + \".woff2') format('woff2'),\") + (\"url('\" + url + \".woff') format('woff')\"),\n fontWeight: fontWeight,\n fontStyle: 'normal'\n });\n}\nfunction _registerFontFaceSet(baseUrl, fontFamily, cdnFolder, cdnFontName, localFontName) {\n if (cdnFontName === void 0) { cdnFontName = 'segoeui'; }\n var urlBase = baseUrl + \"/\" + cdnFolder + \"/\" + cdnFontName;\n _registerFontFace(fontFamily, urlBase + '-light', FontWeights.light, localFontName && localFontName + ' Light');\n _registerFontFace(fontFamily, urlBase + '-semilight', FontWeights.semilight, localFontName && localFontName + ' SemiLight');\n _registerFontFace(fontFamily, urlBase + '-regular', FontWeights.regular, localFontName);\n _registerFontFace(fontFamily, urlBase + '-semibold', FontWeights.semibold, localFontName && localFontName + ' SemiBold');\n}\nexport function registerDefaultFontFaces(baseUrl) {\n if (baseUrl) {\n var fontUrl = baseUrl + \"/fonts\";\n // Produce @font-face definitions for all supported web fonts.\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Thai, 'leelawadeeui-thai', 'leelawadeeui');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Arabic, 'segoeui-arabic');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Cyrillic, 'segoeui-cyrillic');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.EastEuropean, 'segoeui-easteuropean');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Greek, 'segoeui-greek');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Hebrew, 'segoeui-hebrew');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Vietnamese, 'segoeui-vietnamese');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.WestEuropean, 'segoeui-westeuropean', 'segoeui', 'Segoe UI');\n _registerFontFaceSet(fontUrl, LocalizedFontFamilies.Selawik, 'selawik', 'selawik');\n // Leelawadee UI (Thai) does not have a 'light' weight, so we override\n // the font-face generated above to use the 'semilight' weight instead.\n _registerFontFace('Leelawadee UI Web', fontUrl + \"/leelawadeeui-thai/leelawadeeui-semilight\", FontWeights.light);\n // Leelawadee UI (Thai) does not have a 'semibold' weight, so we override\n // the font-face generated above to use the 'bold' weight instead.\n _registerFontFace('Leelawadee UI Web', fontUrl + \"/leelawadeeui-thai/leelawadeeui-bold\", FontWeights.semibold);\n }\n}\n/**\n * Reads the fontBaseUrl from window.FabricConfig.fontBaseUrl or falls back to a default.\n */\nfunction _getFontBaseUrl() {\n var win = getWindow();\n // tslint:disable-next-line:no-string-literal no-any\n var fabricConfig = win ? win['FabricConfig'] : undefined;\n return fabricConfig && fabricConfig.fontBaseUrl !== undefined ? fabricConfig.fontBaseUrl : DefaultBaseUrl;\n}\n/**\n * Register the font faces.\n */\nregisterDefaultFontFaces(_getFontBaseUrl());\n//# sourceMappingURL=DefaultFontStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/CommonStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/CommonStyles.js", - "index": 408, - "index2": 395, - "size": 1039, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony side effect evaluation", - "userRequest": "./CommonStyles", - "loc": "1:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CommonStyles", - "loc": "11:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CommonStyles", - "loc": "11:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "userRequest": "./CommonStyles", - "loc": "40:23-43" - } - ], - "usedExports": [ - "HighContrastSelector", - "ScreenWidthMinMedium", - "getScreenSelector", - "ScreenWidthMaxMedium" - ], - "providedExports": [ - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector" - ], - "optimizationBailout": [], - "depth": 9, - "source": "export var HighContrastSelector = '@media screen and (-ms-high-contrast: active)';\nexport var HighContrastSelectorWhite = '@media screen and (-ms-high-contrast: black-on-white)';\nexport var HighContrastSelectorBlack = '@media screen and (-ms-high-contrast: white-on-black)';\nexport var ScreenWidthMinSmall = 320;\nexport var ScreenWidthMinMedium = 480;\nexport var ScreenWidthMinLarge = 640;\nexport var ScreenWidthMinXLarge = 1024;\nexport var ScreenWidthMinXXLarge = 1366;\nexport var ScreenWidthMinXXXLarge = 1920;\nexport var ScreenWidthMaxSmall = ScreenWidthMinMedium - 1;\nexport var ScreenWidthMaxMedium = ScreenWidthMinLarge - 1;\nexport var ScreenWidthMaxLarge = ScreenWidthMinXLarge - 1;\nexport var ScreenWidthMaxXLarge = ScreenWidthMinXXLarge - 1;\nexport var ScreenWidthMaxXXLarge = ScreenWidthMinXXXLarge - 1;\nexport var ScreenWidthMinUhfMobile = 768;\nexport function getScreenSelector(min, max) {\n return \"@media only screen and (min-width: \" + min + \"px) and (max-width: \" + max + \"px)\";\n}\n//# sourceMappingURL=CommonStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/zIndexes.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/zIndexes.js", - "index": 409, - "index2": 396, - "size": 344, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony side effect evaluation", - "userRequest": "./zIndexes", - "loc": "3:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./zIndexes", - "loc": "15:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./zIndexes", - "loc": "15:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "userRequest": "./zIndexes", - "loc": "38:24-32" - } - ], - "usedExports": [ - "ZIndexes" - ], - "providedExports": [ - "ZIndexes" - ], - "optimizationBailout": [], - "depth": 9, - "source": "export var ZIndexes;\n(function (ZIndexes) {\n ZIndexes.Nav = 1;\n /**\n * @deprecated ScrollablePane\n */\n ZIndexes.ScrollablePane = 1;\n ZIndexes.FocusStyle = 1;\n ZIndexes.Coachmark = 1000;\n ZIndexes.Layer = 1000000;\n ZIndexes.KeytipLayer = 1000001;\n})(ZIndexes || (ZIndexes = {}));\n//# sourceMappingURL=zIndexes.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "index": 407, - "index2": 400, - "size": 3869, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getFocusStyle", - "loc": "5:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getFocusStyle", - "loc": "5:0-32" - } - ], - "usedExports": [ - "getFocusStyle", - "focusClear" - ], - "providedExports": [ - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { HighContrastSelector } from './CommonStyles';\nimport { IsFocusVisibleClassName } from '@uifabric/utilities';\nimport { ZIndexes } from './zIndexes';\nexport function getFocusStyle(theme, insetOrOptions, position, highContrastStyle, borderColor, outlineColor, isFocusedOnly) {\n if (typeof insetOrOptions === 'number' || !insetOrOptions) {\n return _getFocusStyleInternal(theme, { inset: insetOrOptions, position: position, highContrastStyle: highContrastStyle, borderColor: borderColor, outlineColor: outlineColor, isFocusedOnly: isFocusedOnly });\n }\n else {\n return _getFocusStyleInternal(theme, insetOrOptions);\n }\n}\nfunction _getFocusStyleInternal(theme, options) {\n if (options === void 0) { options = {}; }\n var _a = options.inset, inset = _a === void 0 ? 0 : _a, _b = options.width, width = _b === void 0 ? 1 : _b, _c = options.position, position = _c === void 0 ? 'relative' : _c, highContrastStyle = options.highContrastStyle, _d = options.borderColor, borderColor = _d === void 0 ? theme.palette.white : _d, _e = options.outlineColor, outlineColor = _e === void 0 ? theme.palette.neutralSecondary : _e, _f = options.isFocusedOnly, isFocusedOnly = _f === void 0 ? true : _f;\n return {\n // Clear browser-specific focus styles and use 'transparent' as placeholder for focus style.\n outline: 'transparent',\n // Requirement because pseudo-element is absolutely positioned.\n position: position,\n selectors: (_g = {\n // Clear the focus border in Firefox.\n // Reference: http://stackoverflow.com/a/199319/1436671\n '::-moz-focus-inner': {\n border: '0'\n }\n },\n // When the element that uses this mixin is in a :focus state, add a pseudo-element to\n // create a border.\n _g[\".\" + IsFocusVisibleClassName + \" &\" + (isFocusedOnly ? ':focus' : '') + \":after\"] = {\n content: '\"\"',\n position: 'absolute',\n left: inset + 1,\n top: inset + 1,\n bottom: inset + 1,\n right: inset + 1,\n border: width + \"px solid \" + borderColor,\n outline: width + \"px solid \" + outlineColor,\n zIndex: ZIndexes.FocusStyle,\n selectors: (_h = {},\n _h[HighContrastSelector] = highContrastStyle,\n _h)\n },\n _g)\n };\n var _g, _h;\n}\n/**\n * Generates style to clear browser specific focus styles.\n */\nexport function focusClear() {\n return {\n selectors: {\n '&::-moz-focus-inner': {\n // Clear the focus border in Firefox. Reference: http://stackoverflow.com/a/199319/1436671\n border: 0\n },\n '&': {\n // Clear browser specific focus styles and use transparent as placeholder for focus style\n outline: 'transparent'\n }\n }\n };\n}\n/**\n * Generates a style which can be used to set a border on focus.\n *\n * @param theme - The theme object to use.\n * @param inset - The number of pixels to inset the border (default 0)\n * @param width - The border width in pixels (default 1)\n * @param color - Color of the outline (default `theme.palette.neutralSecondary`)\n * @returns The style object.\n */\nexport function getFocusOutlineStyle(theme, inset, width, color) {\n if (inset === void 0) { inset = 0; }\n if (width === void 0) { width = 1; }\n return {\n selectors: (_a = {},\n _a[\":global(\" + IsFocusVisibleClassName + \") &:focus\"] = {\n outline: width + \" solid \" + (color || theme.palette.neutralSecondary),\n outlineOffset: -inset + \"px\"\n },\n _a)\n };\n var _a;\n}\n//# sourceMappingURL=getFocusStyle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/hiddenContentStyle.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/hiddenContentStyle.js", - "index": 413, - "index2": 401, - "size": 208, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hiddenContentStyle", - "loc": "6:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hiddenContentStyle", - "loc": "6:0-58" - } - ], - "usedExports": [ - "hiddenContentStyle" - ], - "providedExports": [ - "hiddenContentStyle" - ], - "optimizationBailout": [], - "depth": 9, - "source": "export var hiddenContentStyle = {\n position: 'absolute',\n width: 1,\n height: 1,\n margin: -1,\n padding: 0,\n border: 0,\n overflow: 'hidden'\n};\n//# sourceMappingURL=hiddenContentStyle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "index": 414, - "index2": 402, - "size": 3225, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PulsingBeaconAnimationStyles", - "loc": "7:0-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PulsingBeaconAnimationStyles", - "loc": "7:0-78" - } - ], - "usedExports": false, - "providedExports": [ - "PulsingBeaconAnimationStyles" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import * as tslib_1 from \"tslib\";\nimport { keyframes } from '@uifabric/merge-styles';\nvar DEFAULT_DURATION = '14s';\nvar DEFAULT_DELAY = '2s';\nvar DEFAULT_ITERATION_COUNT = '1';\nfunction _continuousPulseStepOne(beaconColorOne, innerDimension) {\n return {\n borderColor: beaconColorOne,\n borderWidth: '0px',\n width: innerDimension,\n height: innerDimension\n };\n}\nfunction _continuousPulseStepTwo(borderWidth) {\n return {\n opacity: 1,\n borderWidth: borderWidth\n };\n}\nfunction _continuousPulseStepThree() {\n return {\n opacity: 1\n };\n}\nfunction _continuousPulseStepFour(beaconColorTwo, outerDimension) {\n return {\n borderWidth: '0',\n width: outerDimension,\n height: outerDimension,\n opacity: 0,\n borderColor: beaconColorTwo\n };\n}\nfunction _continuousPulseStepFive(beaconColorOne, innerDimension) {\n return tslib_1.__assign({}, _continuousPulseStepOne(beaconColorOne, innerDimension), {\n opacity: 0\n });\n}\nfunction _continuousPulseAnimationDouble(beaconColorOne, beaconColorTwo, innerDimension, outerDimension, borderWidth) {\n return keyframes({\n '0%': _continuousPulseStepOne(beaconColorOne, innerDimension),\n '1.42%': _continuousPulseStepTwo(borderWidth),\n '3.57%': _continuousPulseStepThree(),\n '7.14%': _continuousPulseStepFour(beaconColorTwo, outerDimension),\n '8%': _continuousPulseStepFive(beaconColorOne, innerDimension),\n '29.99%': _continuousPulseStepFive(beaconColorOne, innerDimension),\n '30%': _continuousPulseStepOne(beaconColorOne, innerDimension),\n '31.42%': _continuousPulseStepTwo(borderWidth),\n '33.57%': _continuousPulseStepThree(),\n '37.14%': _continuousPulseStepFour(beaconColorTwo, outerDimension),\n '38%': _continuousPulseStepFive(beaconColorOne, innerDimension),\n '79.42%': _continuousPulseStepFive(beaconColorOne, innerDimension),\n '79.43': _continuousPulseStepOne(beaconColorOne, innerDimension),\n '81.85': _continuousPulseStepTwo(borderWidth),\n '83.42': _continuousPulseStepThree(),\n '87%': _continuousPulseStepFour(beaconColorTwo, outerDimension),\n '100%': {}\n });\n}\nfunction _continuousPulseAnimationSingle(beaconColorOne, beaconColorTwo, innerDimension, outerDimension, borderWidth) {\n return keyframes({\n '0%': _continuousPulseStepOne(beaconColorOne, innerDimension),\n '14.2%': _continuousPulseStepTwo(borderWidth),\n '35.7%': _continuousPulseStepThree(),\n '71.4%': _continuousPulseStepFour(beaconColorTwo, outerDimension),\n '100%': {}\n });\n}\nfunction _createDefaultAnimation(animationName, delayLength) {\n return {\n animationName: animationName,\n animationIterationCount: DEFAULT_ITERATION_COUNT,\n animationDuration: DEFAULT_DURATION,\n animationDelay: delayLength || DEFAULT_DELAY\n };\n}\nexport var PulsingBeaconAnimationStyles = {\n continuousPulseAnimationDouble: _continuousPulseAnimationDouble,\n continuousPulseAnimationSingle: _continuousPulseAnimationSingle,\n createDefaultAnimation: _createDefaultAnimation\n};\n//# sourceMappingURL=PulsingBeaconAnimationStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "index": 415, - "index2": 403, - "size": 1509, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getGlobalClassNames", - "loc": "8:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getGlobalClassNames", - "loc": "8:0-60" - } - ], - "usedExports": [ - "getGlobalClassNames" - ], - "providedExports": [ - "getGlobalClassNames" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { Stylesheet } from '@uifabric/merge-styles';\nimport { memoizeFunction } from '@uifabric/utilities';\n/**\n * Internal memoized function which simply takes in the class map and the\n * disable boolean. These immutable values can be memoized.\n */\nvar _getGlobalClassNames = memoizeFunction(function (classNames, disableGlobalClassNames) {\n var styleSheet = Stylesheet.getInstance();\n if (disableGlobalClassNames) {\n // disable global classnames\n return Object.keys(classNames).reduce(function (acc, className) {\n acc[className] = styleSheet.getClassName(classNames[className]);\n return acc;\n }, {});\n }\n // use global classnames\n return classNames;\n});\n/**\n * Checks for the `disableGlobalClassNames` property on the `theme` to determine if it should return `classNames`\n * Note that calls to this function are memoized.\n *\n * @param classNames - The collection of global class names that apply when the flag is false. Make sure to pass in\n * the same instance on each call to benefit from memoization.\n * @param theme - The theme to check the flag on\n * @param disableGlobalClassNames - Optional. Explicitly opt in/out of disabling global classnames. Defaults to false.\n */\nexport function getGlobalClassNames(classNames, theme, disableGlobalClassNames) {\n return _getGlobalClassNames(classNames, disableGlobalClassNames !== undefined ? disableGlobalClassNames : theme.disableGlobalClassNames);\n}\n//# sourceMappingURL=getGlobalClassNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/scheme.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/scheme.js", - "index": 416, - "index2": 405, - "size": 2087, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./scheme", - "loc": "9:0-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./scheme", - "loc": "9:0-25" - } - ], - "usedExports": false, - "providedExports": [ - "getThemedContext" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { Customizations, mergeSettings } from '@uifabric/utilities';\n/**\n * @internal\n * This function is still in experimental phase in support of Foundation experimental development. Its API signature and existence\n * are subject to change.\n *\n * Modify context to activate the specified scheme or theme. For schemes, look in context (if available) and fall back to global\n * Customizations. If both scheme and theme are specified, scheme will be looked up in theme. In this case, scheme must be\n * present in theme arg, otherwise new context will default to theme arg (there is no fallback to settings to look up scheme.)\n *\n * @param context - Context in which to get schemed customizations.\n * @param scheme - Scheme to get customizations for from theme arg (if supplied) OR from context and global settings.\n * @param theme - Theme to merge into context.\n * @returns modified schemed context if scheme is valid and not already applied, unmodified context otherwise.\n */\nexport function getThemedContext(context, scheme, theme) {\n var newContext = context;\n var newSettings;\n // Only fall back to context and customizations when theme arg is not provided.\n var schemeSource = theme || Customizations.getSettings(['theme'], undefined, context.customizations).theme;\n if (theme) {\n newSettings = { theme: theme };\n }\n var schemeTheme = scheme && schemeSource && schemeSource.schemes && schemeSource.schemes[scheme];\n // These first two checks are logically redundant but TS doesn't infer schemeSource.schemes is defined when schemeTheme is defined.\n if (schemeSource && schemeTheme && schemeSource !== schemeTheme) {\n newSettings = { theme: schemeTheme };\n newSettings.theme.schemes = schemeSource.schemes;\n }\n if (newSettings) {\n newContext = {\n customizations: {\n settings: mergeSettings(context.customizations.settings, newSettings),\n scopedSettings: context.customizations.scopedSettings\n }\n };\n }\n return newContext;\n}\n//# sourceMappingURL=scheme.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "index": 418, - "index2": 410, - "size": 10656, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./theme", - "loc": "10:0-137" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "10:0-137" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "10:0-137" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "10:0-137" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "10:0-137" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "10:0-137" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "10:0-137" - } - ], - "usedExports": [ - "getTheme" - ], - "providedExports": [ - "ThemeSettingName", - "getTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "loadTheme", - "createTheme" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import * as tslib_1 from \"tslib\";\nimport { Customizations, merge, getWindow } from '@uifabric/utilities';\nimport { DefaultFontStyles } from './DefaultFontStyles';\nimport { DefaultPalette } from './DefaultPalette';\nimport { DefaultSpacing } from './DefaultSpacing';\nimport { loadTheme as legacyLoadTheme } from '@microsoft/load-themed-styles';\nimport { DefaultEffects } from './DefaultEffects';\nvar _theme = createTheme({\n palette: DefaultPalette,\n semanticColors: _makeSemanticColorsFromPalette(DefaultPalette, false, false),\n fonts: DefaultFontStyles,\n isInverted: false,\n disableGlobalClassNames: false\n});\nvar _onThemeChangeCallbacks = [];\nexport var ThemeSettingName = 'theme';\nif (!Customizations.getSettings([ThemeSettingName]).theme) {\n var win = getWindow();\n // tslint:disable:no-string-literal no-any\n if (win && win['FabricConfig'] && win['FabricConfig'].theme) {\n _theme = createTheme(win['FabricConfig'].theme);\n }\n // tslint:enable:no-string-literal no-any\n // Set the default theme.\n Customizations.applySettings((_a = {}, _a[ThemeSettingName] = _theme, _a));\n}\n/**\n * Gets the theme object\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\nexport function getTheme(depComments) {\n if (depComments === void 0) { depComments = false; }\n if (depComments === true) {\n _theme = createTheme({}, depComments);\n }\n return _theme;\n}\n/**\n * Registers a callback that gets called whenever the theme changes.\n * This should only be used when the component cannot automatically get theme changes through its state.\n * This will not register duplicate callbacks.\n */\nexport function registerOnThemeChangeCallback(callback) {\n if (_onThemeChangeCallbacks.indexOf(callback) === -1) {\n _onThemeChangeCallbacks.push(callback);\n }\n}\n/**\n * See registerOnThemeChangeCallback().\n * Removes previously registered callbacks.\n */\nexport function removeOnThemeChangeCallback(callback) {\n var i = _onThemeChangeCallbacks.indexOf(callback);\n if (i === -1) {\n return;\n }\n _onThemeChangeCallbacks.splice(i, 1);\n}\n/**\n * Applies the theme, while filling in missing slots.\n * @param theme - Partial theme object.\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\nexport function loadTheme(theme, depComments) {\n if (depComments === void 0) { depComments = false; }\n _theme = createTheme(theme, depComments);\n // Invoke the legacy method of theming the page as well.\n legacyLoadTheme(tslib_1.__assign({}, _theme.palette, _theme.semanticColors, _theme.effects, _loadFonts(_theme)));\n Customizations.applySettings((_a = {}, _a[ThemeSettingName] = _theme, _a));\n _onThemeChangeCallbacks.forEach(function (callback) {\n try {\n callback(_theme);\n }\n catch (e) {\n // don't let a bad callback break everything else\n }\n });\n return _theme;\n var _a;\n}\n/**\n * Loads font variables into a JSON object.\n * @param theme - The theme object\n */\nfunction _loadFonts(theme) {\n var lines = {};\n for (var _i = 0, _a = Object.keys(theme.fonts); _i < _a.length; _i++) {\n var fontName = _a[_i];\n var font = theme.fonts[fontName];\n for (var _b = 0, _c = Object.keys(font); _b < _c.length; _b++) {\n var propName = _c[_b];\n var name_1 = fontName + propName.charAt(0).toUpperCase() + propName.slice(1);\n var value = font[propName];\n if (propName === 'fontSize' && typeof value === 'number') {\n value = value + 'px';\n }\n lines[name_1] = value;\n }\n }\n return lines;\n}\n/**\n * Creates a custom theme definition which can be used with the Customizer.\n * @param theme - Partial theme object.\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\nexport function createTheme(theme, depComments) {\n if (depComments === void 0) { depComments = false; }\n var newPalette = tslib_1.__assign({}, DefaultPalette, theme.palette);\n if (!theme.palette || !theme.palette.accent) {\n newPalette.accent = newPalette.themePrimary;\n }\n // mix in custom overrides with good slots first, since custom overrides might be used in fixing deprecated slots\n var newSemanticColors = tslib_1.__assign({}, _makeSemanticColorsFromPalette(newPalette, !!theme.isInverted, depComments), theme.semanticColors);\n var defaultFontStyles = tslib_1.__assign({}, DefaultFontStyles);\n if (theme.defaultFontStyle) {\n for (var _i = 0, _a = Object.keys(defaultFontStyles); _i < _a.length; _i++) {\n var fontStyle = _a[_i];\n defaultFontStyles[fontStyle] = merge({}, defaultFontStyles[fontStyle], theme.defaultFontStyle);\n }\n }\n if (theme.fonts) {\n for (var _b = 0, _c = Object.keys(theme.fonts); _b < _c.length; _b++) {\n var fontStyle = _c[_b];\n defaultFontStyles[fontStyle] = merge({}, defaultFontStyles[fontStyle], theme.fonts[fontStyle]);\n }\n }\n return {\n palette: newPalette,\n fonts: tslib_1.__assign({}, defaultFontStyles),\n semanticColors: newSemanticColors,\n isInverted: !!theme.isInverted,\n disableGlobalClassNames: !!theme.disableGlobalClassNames,\n spacing: tslib_1.__assign({}, DefaultSpacing, theme.spacing),\n effects: tslib_1.__assign({}, DefaultEffects, theme.effects)\n };\n}\n/**\n * Helper to pull a given property name from a given set of sources, in order, if available. Otherwise returns the property name.\n */\nfunction _expandFrom(propertyName) {\n var maps = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n maps[_i - 1] = arguments[_i];\n }\n if (propertyName) {\n for (var _a = 0, maps_1 = maps; _a < maps_1.length; _a++) {\n var map = maps_1[_a];\n if (map[propertyName]) {\n return map[propertyName];\n }\n }\n }\n return propertyName;\n}\n// Generates all the semantic slot colors based on the Fabric palette.\n// We'll use these as fallbacks for semantic slots that the passed in theme did not define.\nfunction _makeSemanticColorsFromPalette(p, isInverted, depComments) {\n var toReturn = {\n bodyBackground: p.white,\n bodyStandoutBackground: p.neutralLighterAlt,\n bodyFrameBackground: p.white,\n bodyFrameDivider: p.neutralLight,\n bodyText: p.neutralPrimary,\n bodyTextChecked: p.black,\n bodySubtext: p.neutralSecondary,\n bodyDivider: p.neutralLight,\n disabledBackground: p.neutralLighter,\n disabledText: p.neutralTertiary,\n disabledBodyText: p.neutralTertiary,\n disabledSubtext: p.neutralQuaternary,\n disabledBodySubtext: p.neutralTertiaryAlt,\n focusBorder: p.neutralSecondary,\n variantBorder: p.neutralLight,\n variantBorderHovered: p.neutralTertiary,\n defaultStateBackground: p.neutralLighterAlt,\n errorText: !isInverted ? p.redDark : '#ff5f5f',\n warningText: !isInverted ? '#333333' : '#ffffff',\n successText: !isInverted ? '#107C10' : '#92c353',\n errorBackground: !isInverted ? 'rgba(232, 17, 35, .2)' : 'rgba(232, 17, 35, .5)',\n blockingBackground: !isInverted ? 'rgba(234, 67, 0, .2)' : 'rgba(234, 67, 0, .5)',\n warningBackground: !isInverted ? 'rgba(255, 185, 0, .2)' : 'rgba(255, 251, 0, .6)',\n warningHighlight: !isInverted ? '#ffb900' : '#fff100',\n successBackground: !isInverted ? 'rgba(186, 216, 10, .2)' : 'rgba(186, 216, 10, .4)',\n inputBorder: p.neutralTertiary,\n inputBorderHovered: p.neutralPrimary,\n inputBackground: p.white,\n inputBackgroundChecked: p.themePrimary,\n inputBackgroundCheckedHovered: p.themeDarkAlt,\n inputForegroundChecked: p.white,\n inputFocusBorderAlt: p.themePrimary,\n smallInputBorder: p.neutralSecondary,\n inputText: p.neutralPrimary,\n inputTextHovered: p.neutralDark,\n inputPlaceholderText: p.neutralSecondary,\n buttonBackground: p.neutralLighter,\n buttonBackgroundChecked: p.neutralTertiaryAlt,\n buttonBackgroundHovered: p.neutralLight,\n buttonBackgroundCheckedHovered: p.neutralLight,\n buttonBackgroundPressed: p.neutralLight,\n buttonBackgroundDisabled: p.neutralLighter,\n buttonBorder: 'transparent',\n buttonText: p.neutralPrimary,\n buttonTextHovered: p.neutralDark,\n buttonTextChecked: p.neutralDark,\n buttonTextCheckedHovered: p.black,\n buttonTextPressed: p.neutralDark,\n buttonTextDisabled: p.neutralTertiary,\n buttonBorderDisabled: 'transparent',\n primaryButtonBackground: p.themePrimary,\n primaryButtonBackgroundHovered: p.themeDarkAlt,\n primaryButtonBackgroundPressed: p.themeDark,\n primaryButtonBackgroundDisabled: p.neutralLighter,\n primaryButtonBorder: 'transparent',\n primaryButtonText: p.white,\n primaryButtonTextHovered: p.white,\n primaryButtonTextPressed: p.white,\n primaryButtonTextDisabled: p.neutralQuaternary,\n accentButtonBackground: p.accent,\n accentButtonText: p.white,\n menuBackground: p.white,\n menuDivider: p.neutralTertiaryAlt,\n menuIcon: p.themePrimary,\n menuHeader: p.themePrimary,\n menuItemBackgroundHovered: p.neutralLighter,\n menuItemBackgroundPressed: p.neutralLight,\n menuItemText: p.neutralPrimary,\n menuItemTextHovered: p.neutralDark,\n listBackground: p.white,\n listText: p.neutralPrimary,\n listItemBackgroundHovered: p.neutralLighter,\n listItemBackgroundChecked: p.neutralLight,\n listItemBackgroundCheckedHovered: p.neutralQuaternaryAlt,\n listHeaderBackgroundHovered: p.neutralLighter,\n listHeaderBackgroundPressed: p.neutralLight,\n actionLink: p.neutralPrimary,\n actionLinkHovered: p.neutralDark,\n link: p.themePrimary,\n linkHovered: p.themeDarker,\n // Deprecated slots, second pass by _fixDeprecatedSlots() later for self-referential slots\n listTextColor: '',\n menuItemBackgroundChecked: p.neutralLight\n };\n return _fixDeprecatedSlots(toReturn, depComments);\n}\nfunction _fixDeprecatedSlots(s, depComments) {\n // Add @deprecated tag as comment if enabled\n var dep = '';\n if (depComments === true) {\n dep = ' /* @deprecated */';\n }\n s.listTextColor = s.listText + dep;\n s.menuItemBackgroundChecked += dep;\n return s;\n}\nvar _a;\n//# sourceMappingURL=theme.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/GeneralStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/GeneralStyles.js", - "index": 423, - "index2": 411, - "size": 319, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GeneralStyles", - "loc": "12:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GeneralStyles", - "loc": "12:0-32" - } - ], - "usedExports": false, - "providedExports": [ - "normalize", - "noWrap" - ], - "optimizationBailout": [], - "depth": 9, - "source": "// This file mimics styles and mixins from _General.Mixins.scss\nexport var normalize = {\n boxShadow: 'none',\n margin: 0,\n padding: 0,\n boxSizing: 'border-box'\n};\nexport var noWrap = {\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap'\n};\n//# sourceMappingURL=GeneralStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFadedOverflowStyle.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getFadedOverflowStyle.js", - "index": 424, - "index2": 412, - "size": 4719, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getFadedOverflowStyle", - "loc": "13:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getFadedOverflowStyle", - "loc": "13:0-40" - } - ], - "usedExports": false, - "providedExports": [ - "getFadedOverflowStyle" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var DEFAULT_HEIGHT = '50%';\nvar DEFAULT_WIDTH = 20;\n/**\n * - Generates a style used to fade out an overflowing content by defining a style for an :after pseudo element.\n * - Apply it to the :after selector for all combination of states the parent of content might have (normal, hover, selected, focus).\n * - Requires the target to have position set to relative and overflow set to hidden.\n *\n * @example\n * ```tsx\n * // Assuming the following DOM structure and the different background colors coming from the parent holding the content.\n *

\n * Overflown Content\n *
\n * ```\n * ```ts\n * // This is how the style set would look in Component.styles.ts\n * const { bodyBackground } = theme.semanticColors;\n * const { neutralLighter } = theme.palette;\n *\n * // The second argument of getFadedOverflowStyle function is a string representing a key of ISemanticColors or IPalette.\n *\n * const styles = {\n * parent: [\n * backgroundColor: bodyBackground,\n * selectors: {\n * '&:hover: {\n * backgroundColor: neutralLighter\n * },\n * '$content:after': {\n * ...getFadedOverflowStyle(theme, 'bodyBackground')\n * },\n * '&:hover $content:after': {\n * ...getFadedOverflowStyle(theme, 'neutralLighter')\n * }\n * }\n * ],\n * content: [\n * width: '100%',\n * display: 'inline-block',\n * position: 'relative',\n * overflow: 'hidden'\n * ]\n * }\n * ```\n * @param theme - The theme object to use.\n * @param color - The background color to fade out to. Accepts only keys of ISemanticColors or IPalette. Defaults to 'bodyBackground'.\n * @param direction - The direction of the overflow. Defaults to horizontal.\n * @param width - The width of the fading overflow. Vertical direction defaults it to 100% vs 20px when horizontal.\n * @param height - The Height of the fading overflow. Vertical direction defaults it to 50% vs 100% when horizontal.\n * @returns The style object.\n */\nexport function getFadedOverflowStyle(theme, color, direction, width, height) {\n if (color === void 0) { color = 'bodyBackground'; }\n if (direction === void 0) { direction = 'horizontal'; }\n if (width === void 0) { width = getDefaultValue('width', direction); }\n if (height === void 0) { height = getDefaultValue('height', direction); }\n // Get the color value string from the theme semanticColors or palette.\n var colorValue = theme.semanticColors[color] || theme.palette[color];\n // Get the red, green, blue values of the colorValue.\n var rgbColor = color2rgb(colorValue);\n // Apply opacity 0 to serve as a start color of the gradient.\n var rgba = \"rgba(\" + rgbColor.r + \", \" + rgbColor.g + \", \" + rgbColor.b + \", 0)\";\n // Get the direction of the gradient.\n var gradientDirection = direction === 'vertical' ? 'to bottom' : 'to right'; // mergeStyles take care of RTL direction.\n return {\n content: '\"\"',\n position: 'absolute',\n right: 0,\n bottom: 0,\n width: width,\n height: height,\n pointerEvents: 'none',\n backgroundImage: \"linear-gradient(\" + gradientDirection + \", \" + rgba + \" 0%, \" + colorValue + \" 100%)\"\n };\n}\n// TODO consider moving this to a separate module along with some more color functions from OUFR/utilities.\n/**\n * Helper function to convert a string hex color to an RGB object.\n *\n * @param colorValue - Color to be converted from hex to rgba.\n */\nfunction color2rgb(colorValue) {\n if (colorValue[0] === '#') {\n // If it's a hex code\n return {\n r: parseInt(colorValue.slice(1, 3), 16),\n g: parseInt(colorValue.slice(3, 5), 16),\n b: parseInt(colorValue.slice(5, 7), 16)\n };\n }\n else if (colorValue.indexOf('rgba(') === 0) {\n // If it's an rgba color string\n colorValue = colorValue.match(/rgba\\(([^)]+)\\)/)[1];\n var parts = colorValue.split(/ *, */).map(Number);\n return {\n r: parts[0],\n g: parts[1],\n b: parts[2]\n };\n }\n // The only remaining possibility is transparent.\n return {\n r: 255,\n g: 255,\n b: 255\n };\n}\n/**\n * Helper function to get the default values for parameters of main function.\n *\n * @param style - Which style to get the default value for.\n * @param direction - What direction to take into consideration.\n */\nfunction getDefaultValue(style, direction) {\n if (style === 'width') {\n return direction === 'horizontal' ? DEFAULT_WIDTH : '100%';\n }\n else {\n return direction === 'vertical' ? DEFAULT_HEIGHT : '100%';\n }\n}\n//# sourceMappingURL=getFadedOverflowStyle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getPlaceholderStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getPlaceholderStyles.js", - "index": 425, - "index2": 413, - "size": 529, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getPlaceholderStyles", - "loc": "14:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getPlaceholderStyles", - "loc": "14:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "getPlaceholderStyles" - ], - "optimizationBailout": [], - "depth": 9, - "source": "/**\n * Generates placeholder style for each of the browsers supported by office-ui-fabric-react.\n * @param styles - The style to use.\n * @returns The placeholder style object for each browser depending on the placeholder directive it uses.\n */\nexport function getPlaceholderStyles(styles) {\n return {\n selectors: {\n '::placeholder': styles,\n ':-ms-input-placeholder': styles,\n '::-ms-input-placeholder': styles // Edge\n }\n };\n}\n//# sourceMappingURL=getPlaceholderStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "index": 389, - "index2": 415, - "size": 261, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./AnimationClassNames", - "loc": "1:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "type": "harmony export imported specifier", - "userRequest": "./AnimationClassNames", - "loc": "1:0-60" - } - ], - "usedExports": [ - "AnimationClassNames" - ], - "providedExports": [ - "AnimationClassNames" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { buildClassMap } from '../utilities/index';\nimport { AnimationStyles } from '../styles/index';\n/**\n * {@docCategory AnimationClassNames}\n */\nexport var AnimationClassNames = buildClassMap(AnimationStyles);\n//# sourceMappingURL=AnimationClassNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "index": 426, - "index2": 416, - "size": 270, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FontClassNames", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FontClassNames", - "loc": "2:0-50" - } - ], - "usedExports": false, - "providedExports": [ - "FontClassNames" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { buildClassMap } from '../utilities/buildClassMap';\nimport { DefaultFontStyles } from '../styles/DefaultFontStyles';\n/**\n * {@docCategory FontClassNames}\n */\nexport var FontClassNames = buildClassMap(DefaultFontStyles);\n//# sourceMappingURL=FontClassNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "index": 427, - "index2": 417, - "size": 1526, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorClassNames", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ColorClassNames", - "loc": "3:0-52" - } - ], - "usedExports": false, - "providedExports": [ - "ColorClassNames" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { mergeStyles } from '@uifabric/merge-styles';\nimport { DefaultPalette } from '../styles/DefaultPalette';\nimport { getTheme } from '../styles/index';\nexport var ColorClassNames = {};\nfor (var colorName in DefaultPalette) {\n if (DefaultPalette.hasOwnProperty(colorName)) {\n // Foreground color\n _defineGetter(ColorClassNames, colorName, '', false, 'color');\n // Hover color\n _defineGetter(ColorClassNames, colorName, 'Hover', true, 'color');\n // Background color\n _defineGetter(ColorClassNames, colorName, 'Background', false, 'background');\n // Background hover\n _defineGetter(ColorClassNames, colorName, 'BackgroundHover', true, 'background');\n // Border color\n _defineGetter(ColorClassNames, colorName, 'Border', false, 'borderColor');\n // Border hover color\n _defineGetter(ColorClassNames, colorName, 'BorderHover', true, 'borderColor');\n }\n}\n/**\n * Defines a getter for the given class configuration.\n */\nfunction _defineGetter(obj, colorName, suffix, isHover, cssProperty) {\n Object.defineProperty(obj, colorName + suffix, {\n get: function () {\n // tslint:disable-next-line:no-any\n var style = (_a = {}, _a[cssProperty] = getTheme().palette[colorName], _a);\n return mergeStyles(isHover ? { selectors: { ':hover': style } } : style).toString();\n var _a;\n },\n enumerable: true,\n configurable: true\n });\n}\n//# sourceMappingURL=ColorClassNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "index": 590, - "index2": 582, - "size": 1071, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "9MBR", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "9MBR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "5:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "186:8-38" - }, - { - "moduleId": "9MBR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "2:0-54" - }, - { - "moduleId": "9MBR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "2:0-54" - } - ], - "usedExports": [ - "warnConditionallyRequiredProps" - ], - "providedExports": [ - "warnConditionallyRequiredProps" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { warn } from './warn';\n/**\n * Warns when props are required if a condition is met.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param requiredProps - The name of the props that are required when the condition is met.\n * @param conditionalPropName - The name of the prop that the condition is based on.\n * @param condition - Whether the condition is met.\n */\nexport function warnConditionallyRequiredProps(componentName, props, requiredProps, conditionalPropName, condition) {\n if (condition === true && process.env.NODE_ENV !== 'production') {\n for (var _i = 0, requiredProps_1 = requiredProps; _i < requiredProps_1.length; _i++) {\n var requiredPropName = requiredProps_1[_i];\n if (!(requiredPropName in props)) {\n warn(componentName + \" property '\" + requiredPropName + \"' is required when '\" + conditionalPropName + \"' is used.'\");\n }\n }\n }\n}\n//# sourceMappingURL=warnConditionallyRequiredProps.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "index": 589, - "index2": 581, - "size": 994, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "9MBR", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "9MBR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "6:0-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "176:8-29" - }, - { - "moduleId": "9MBR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "4:0-45" - }, - { - "moduleId": "9MBR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "4:0-45" - } - ], - "usedExports": [ - "warnMutuallyExclusive" - ], - "providedExports": [ - "warnMutuallyExclusive" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { warn } from './warn';\n/**\n * Warns when two props which are mutually exclusive are both being used.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param exclusiveMap - A map where the key is a parameter, and the value is the other parameter.\n */\nexport function warnMutuallyExclusive(componentName, props, exclusiveMap) {\n if (process.env.NODE_ENV !== 'production') {\n for (var propName in exclusiveMap) {\n if (props && props[propName] !== undefined) {\n var propInExclusiveMapValue = exclusiveMap[propName];\n if (propInExclusiveMapValue && props[propInExclusiveMapValue] !== undefined) {\n warn(componentName + \" property '\" + propName + \"' is mutually exclusive with '\" + exclusiveMap[propName] + \"'. Use one or the other.\");\n }\n }\n }\n }\n}\n//# sourceMappingURL=warnMutuallyExclusive.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "index": 588, - "index2": 580, - "size": 1034, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "9MBR", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "9MBR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnDeprecations", - "loc": "7:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnDeprecations", - "loc": "168:8-24" - }, - { - "moduleId": "9MBR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnDeprecations", - "loc": "3:0-40" - }, - { - "moduleId": "9MBR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnDeprecations", - "loc": "3:0-40" - } - ], - "usedExports": [ - "warnDeprecations" - ], - "providedExports": [ - "warnDeprecations" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { warn } from './warn';\n/**\n * Warns when a deprecated props are being used.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\n * either null or a replacement prop name.\n */\nexport function warnDeprecations(componentName, props, deprecationMap) {\n if (process.env.NODE_ENV !== 'production') {\n for (var propName in deprecationMap) {\n if (props && propName in props) {\n var deprecationMessage = componentName + \" property '\" + propName + \"' was used but has been deprecated.\";\n var replacementPropName = deprecationMap[propName];\n if (replacementPropName) {\n deprecationMessage += \" Use '\" + replacementPropName + \"' instead.\";\n }\n warn(deprecationMessage);\n }\n }\n }\n}\n//# sourceMappingURL=warnDeprecations.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeDir.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initializeDir.js", - "index": 585, - "index2": 577, - "size": 488, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./initializeDir", - "loc": "9:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./initializeDir", - "loc": "29:8-21" - } - ], - "usedExports": [ - "initializeDir" - ], - "providedExports": [ - "initializeDir" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { getWindow } from './dom/getWindow';\nexport function initializeDir(win) {\n var w = (win || getWindow());\n if (w && !w.__hasInitializedDir__) {\n w.__hasInitializedDir__ = true;\n // Ensure that the documentElement has a 'dir' attribute.\n var documentElement = w.document.documentElement;\n if (!documentElement.hasAttribute('dir')) {\n documentElement.setAttribute('dir', 'ltr');\n }\n }\n}\n//# sourceMappingURL=initializeDir.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/isVirtualElement.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/isVirtualElement.js", - "index": 604, - "index2": 591, - "size": 231, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "type": "harmony side effect evaluation", - "userRequest": "./isVirtualElement", - "loc": "1:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "type": "harmony import specifier", - "userRequest": "./isVirtualElement", - "loc": "9:17-33" - }, - { - "moduleId": "4R8s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "type": "harmony side effect evaluation", - "userRequest": "./isVirtualElement", - "loc": "1:0-54" - }, - { - "moduleId": "4R8s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "type": "harmony import specifier", - "userRequest": "./isVirtualElement", - "loc": "16:36-52" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/isVirtualElement", - "loc": "10:0-39" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/isVirtualElement", - "loc": "10:0-39" - } - ], - "usedExports": [ - "isVirtualElement" - ], - "providedExports": [ - "isVirtualElement" - ], - "optimizationBailout": [], - "depth": 9, - "source": "/**\n * Determines whether or not an element has the virtual hierarchy extension.\n *\n * @public\n */\nexport function isVirtualElement(element) {\n return element && !!element._virtual;\n}\n//# sourceMappingURL=isVirtualElement.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getVirtualParent.js", - "index": 603, - "index2": 592, - "size": 356, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "type": "harmony side effect evaluation", - "userRequest": "./getVirtualParent", - "loc": "1:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "type": "harmony import specifier", - "userRequest": "./getVirtualParent", - "loc": "11:45-61" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getVirtualParent", - "loc": "8:0-39" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getVirtualParent", - "loc": "8:0-39" - } - ], - "usedExports": [ - "getVirtualParent" - ], - "providedExports": [ - "getVirtualParent" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { isVirtualElement } from './isVirtualElement';\n/**\n * Gets the virtual parent given the child element, if it exists.\n *\n * @public\n */\nexport function getVirtualParent(child) {\n var parent;\n if (child && isVirtualElement(child)) {\n parent = child._virtual.parent;\n }\n return parent;\n}\n//# sourceMappingURL=getVirtualParent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getParent.js", - "index": 602, - "index2": 593, - "size": 533, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "type": "harmony side effect evaluation", - "userRequest": "./getParent", - "loc": "1:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "type": "harmony side effect evaluation", - "userRequest": "./getParent", - "loc": "1:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getParent", - "loc": "3:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "type": "harmony import specifier", - "userRequest": "./getParent", - "loc": "12:67-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "type": "harmony import specifier", - "userRequest": "./getParent", - "loc": "16:33-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "60:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "106:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "303:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "userRequest": "./dom/getParent", - "loc": "305:23-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "309:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "506:21-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "816:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "821:28-37" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getParent", - "loc": "6:0-32" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getParent", - "loc": "6:0-32" - } - ], - "usedExports": [ - "getParent" - ], - "providedExports": [ - "getParent" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { getVirtualParent } from './getVirtualParent';\n/**\n * Gets the element which is the parent of a given element.\n * If `allowVirtuaParents` is `true`, this method prefers the virtual parent over\n * real DOM parent when present.\n *\n * @public\n */\nexport function getParent(child, allowVirtualParents) {\n if (allowVirtualParents === void 0) { allowVirtualParents = true; }\n return child && ((allowVirtualParents && getVirtualParent(child)) || (child.parentNode && child.parentNode));\n}\n//# sourceMappingURL=getParent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "index": 601, - "index2": 594, - "size": 979, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/elementContains", - "loc": "2:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "31:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:21-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "91:39-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "133:13-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "157:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "184:72-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "189:67-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "191:35-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "205:13-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "userRequest": "./dom/elementContains", - "loc": "236:32-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "389:16-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "438:41-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "829:40-55" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/elementContains", - "loc": "1:0-38" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/elementContains", - "loc": "1:0-38" - } - ], - "usedExports": [ - "elementContains" - ], - "providedExports": [ - "elementContains" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { getParent } from './getParent';\n/**\n * Determines whether or not a parent element contains a given child element.\n * If `allowVirtualParents` is true, this method may return `true` if the child\n * has the parent in its virtual element hierarchy.\n *\n * @public\n */\nexport function elementContains(parent, child, allowVirtualParents) {\n if (allowVirtualParents === void 0) { allowVirtualParents = true; }\n var isContained = false;\n if (parent && child) {\n if (allowVirtualParents) {\n isContained = false;\n while (child) {\n var nextParent = getParent(child);\n if (nextParent === parent) {\n isContained = true;\n break;\n }\n child = nextParent;\n }\n }\n else if (parent.contains) {\n isContained = parent.contains(child);\n }\n }\n return isContained;\n}\n//# sourceMappingURL=elementContains.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "index": 607, - "index2": 595, - "size": 602, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "type": "harmony side effect evaluation", - "userRequest": "./findElementRecursive", - "loc": "1:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "type": "harmony side effect evaluation", - "userRequest": "./findElementRecursive", - "loc": "1:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "type": "harmony import specifier", - "userRequest": "./findElementRecursive", - "loc": "9:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "type": "harmony import specifier", - "userRequest": "./findElementRecursive", - "loc": "11:23-43" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/findElementRecursive", - "loc": "3:0-43" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/findElementRecursive", - "loc": "3:0-43" - } - ], - "usedExports": [ - "findElementRecursive" - ], - "providedExports": [ - "findElementRecursive" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { getParent } from './getParent';\n/**\n * Finds the first parent element where the matchFunction returns true\n * @param element - element to start searching at\n * @param matchFunction - the function that determines if the element is a match\n * @returns the matched element or null no match was found\n */\nexport function findElementRecursive(element, matchFunction) {\n if (!element || element === document.body) {\n return null;\n }\n return matchFunction(element) ? element : findElementRecursive(getParent(element), matchFunction);\n}\n//# sourceMappingURL=findElementRecursive.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "index": 606, - "index2": 596, - "size": 611, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/elementContainsAttribute", - "loc": "1:0-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "userRequest": "./dom/elementContainsAttribute", - "loc": "248:11-35" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/elementContainsAttribute", - "loc": "2:0-47" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/elementContainsAttribute", - "loc": "2:0-47" - } - ], - "usedExports": [ - "elementContainsAttribute" - ], - "providedExports": [ - "elementContainsAttribute" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { findElementRecursive } from './findElementRecursive';\n/**\n * Determines if an element, or any of its ancestors, contain the given attribute\n * @param element - element to start searching at\n * @param attribute - the attribute to search for\n * @returns the value of the first instance found\n */\nexport function elementContainsAttribute(element, attribute) {\n var elementMatch = findElementRecursive(element, function (testElement) { return testElement.hasAttribute(attribute); });\n return elementMatch && elementMatch.getAttribute(attribute);\n}\n//# sourceMappingURL=elementContainsAttribute.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/on.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/on.js", - "index": 611, - "index2": 601, - "size": 246, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:35-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:82-84" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:35-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:89-91" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "83:16-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "84:16-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:36-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:101-103" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:166-168" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:258-260" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "212:40-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "219:40-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "314:43-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "317:35-37" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/on", - "loc": "11:0-25" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/on", - "loc": "11:0-25" - } - ], - "usedExports": [ - "on" - ], - "providedExports": [ - "on" - ], - "optimizationBailout": [], - "depth": 9, - "source": "export function on(element, eventName, callback, options) {\n element.addEventListener(eventName, callback, options);\n return function () { return element.removeEventListener(eventName, callback, options); };\n}\n//# sourceMappingURL=on.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "index": 619, - "index2": 608, - "size": 323, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "type": "harmony side effect evaluation", - "userRequest": "./setPortalAttribute", - "loc": "2:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "type": "harmony import specifier", - "userRequest": "./setPortalAttribute", - "loc": "11:135-156" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "type": "harmony import specifier", - "userRequest": "./setPortalAttribute", - "loc": "12:62-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:12-30" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/setPortalAttribute", - "loc": "14:0-41" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/setPortalAttribute", - "loc": "14:0-41" - } - ], - "usedExports": [ - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute" - ], - "providedExports": [ - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute" - ], - "optimizationBailout": [], - "depth": 9, - "source": "export var DATA_PORTAL_ATTRIBUTE = 'data-portal-element';\n/**\n * Identify element as a portal by setting an attribute.\n * @param element - Element to mark as a portal.\n */\nexport function setPortalAttribute(element) {\n element.setAttribute(DATA_PORTAL_ATTRIBUTE, 'true');\n}\n//# sourceMappingURL=setPortalAttribute.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/setVirtualParent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/setVirtualParent.js", - "index": 620, - "index2": 609, - "size": 998, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "26:12-28" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/setVirtualParent", - "loc": "15:0-39" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/setVirtualParent", - "loc": "15:0-39" - } - ], - "usedExports": [ - "setVirtualParent" - ], - "providedExports": [ - "setVirtualParent" - ], - "optimizationBailout": [], - "depth": 9, - "source": "/**\n * Sets the virtual parent of an element.\n * Pass `undefined` as the `parent` to clear the virtual parent.\n *\n * @public\n */\nexport function setVirtualParent(child, parent) {\n var virtualChild = child;\n var virtualParent = parent;\n if (!virtualChild._virtual) {\n virtualChild._virtual = {\n children: []\n };\n }\n var oldParent = virtualChild._virtual.parent;\n if (oldParent && oldParent !== parent) {\n // Remove the child from its old parent.\n var index = oldParent._virtual.children.indexOf(virtualChild);\n if (index > -1) {\n oldParent._virtual.children.splice(index, 1);\n }\n }\n virtualChild._virtual.parent = virtualParent || undefined;\n if (virtualParent) {\n if (!virtualParent._virtual) {\n virtualParent._virtual = {\n children: []\n };\n }\n virtualParent._virtual.children.push(virtualChild);\n }\n}\n//# sourceMappingURL=setVirtualParent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js", - "index": 614, - "index2": 605, - "size": 1306, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseDecorator", - "loc": "4:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "userRequest": "./BaseDecorator", - "loc": "76:6-19" - } - ], - "usedExports": [ - "BaseDecorator" - ], - "providedExports": [ - "BaseDecorator" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import * as tslib_1 from \"tslib\";\nimport { BaseComponent, hoistMethods, unhoistMethods } from '../../Utilities';\nvar BaseDecorator = /** @class */ (function (_super) {\n tslib_1.__extends(BaseDecorator, _super);\n function BaseDecorator(props) {\n var _this = _super.call(this, props) || this;\n // tslint:disable-next-line:typedef\n _this._skipComponentRefResolution = true;\n _this._updateComposedComponentRef = _this._updateComposedComponentRef.bind(_this);\n return _this;\n }\n /**\n * Updates the ref to the component composed by the decorator, which will also take care of hoisting\n * (and unhoisting as appropriate) methods from said component.\n *\n * Pass this method as the argument to the 'ref' property of the composed component.\n */\n BaseDecorator.prototype._updateComposedComponentRef = function (composedComponentInstance) {\n this._composedComponentInstance = composedComponentInstance;\n if (composedComponentInstance) {\n this._hoisted = hoistMethods(this, composedComponentInstance);\n }\n else if (this._hoisted) {\n unhoistMethods(this, this._hoisted);\n }\n };\n return BaseDecorator;\n}(BaseComponent));\nexport { BaseDecorator };\n//# sourceMappingURL=BaseDecorator.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "index": 658, - "index2": 644, - "size": 971, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:44-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "915:50-71" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/portalContainsElement", - "loc": "12:0-44" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/portalContainsElement", - "loc": "12:0-44" - } - ], - "usedExports": [ - "portalContainsElement" - ], - "providedExports": [ - "portalContainsElement" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { findElementRecursive } from './findElementRecursive';\nimport { DATA_PORTAL_ATTRIBUTE } from './setPortalAttribute';\n/**\n * Determine whether a target is within a portal from perspective of root or optional parent.\n * This function only works against portal components that use the setPortalAttribute function.\n * If both parent and child are within the same portal this function will return false.\n * @param target - Element to query portal containment status of.\n * @param parent - Optional parent perspective. Search for containing portal stops at parent (or root if parent is undefined or invalid.)\n */\nexport function portalContainsElement(target, parent) {\n var elementMatch = findElementRecursive(target, function (testElement) { return parent === testElement || testElement.hasAttribute(DATA_PORTAL_ATTRIBUTE); });\n return elementMatch !== null && elementMatch.hasAttribute(DATA_PORTAL_ATTRIBUTE);\n}\n//# sourceMappingURL=portalContainsElement.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "index": 642, - "index2": 629, - "size": 598, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerId": "mFTx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.types", - "loc": "3:0-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "55:38-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "55:90-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "411:38-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "445:38-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "445:90-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "523:49-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "553:28-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "556:17-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "559:17-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "564:17-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "584:26-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "730:34-56" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.types", - "loc": "3:0-39" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenu.types", - "loc": "3:0-39" - } - ], - "usedExports": [ - "ContextualMenuItemType" - ], - "providedExports": [ - "DirectionalHint", - "ContextualMenuItemType" - ], - "optimizationBailout": [], - "depth": 9, - "source": "export { DirectionalHint } from '../../common/DirectionalHint';\n/**\n * {@docCategory ContextualMenu}\n */\nexport var ContextualMenuItemType;\n(function (ContextualMenuItemType) {\n ContextualMenuItemType[ContextualMenuItemType[\"Normal\"] = 0] = \"Normal\";\n ContextualMenuItemType[ContextualMenuItemType[\"Divider\"] = 1] = \"Divider\";\n ContextualMenuItemType[ContextualMenuItemType[\"Header\"] = 2] = \"Header\";\n ContextualMenuItemType[ContextualMenuItemType[\"Section\"] = 3] = \"Section\";\n})(ContextualMenuItemType || (ContextualMenuItemType = {}));\n//# sourceMappingURL=ContextualMenu.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "index": 646, - "index2": 632, - "size": 731, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "./sessionStorage", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./sessionStorage", - "loc": "14:23-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./sessionStorage", - "loc": "37:8-15" - } - ], - "usedExports": [ - "getItem", - "setItem" - ], - "providedExports": [ - "getItem", - "setItem" - ], - "optimizationBailout": [], - "depth": 9, - "source": "/**\n * Fetches an item from session storage without throwing an exception\n * @param key The key of the item to fetch from session storage\n */\nexport function getItem(key) {\n var result = null;\n try {\n result = window.sessionStorage.getItem(key);\n }\n catch (e) {\n /* Eat the exception */\n }\n return result;\n}\n/**\n * Inserts an item into session storage without throwing an exception\n * @param key The key of the item to add to session storage\n * @param data The data to put into session storage\n */\nexport function setItem(key, data) {\n try {\n window.sessionStorage.setItem(key, data);\n }\n catch (e) {\n /* Eat the exception */\n }\n}\n//# sourceMappingURL=sessionStorage.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/raiseClick.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/raiseClick.js", - "index": 657, - "index2": 643, - "size": 543, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "503:16-26" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/raiseClick", - "loc": "13:0-33" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/raiseClick", - "loc": "13:0-33" - } - ], - "usedExports": [ - "raiseClick" - ], - "providedExports": [ - "raiseClick" - ], - "optimizationBailout": [], - "depth": 9, - "source": "/** Raises a click event. */\nexport function raiseClick(target) {\n var event = createNewEvent('MouseEvents');\n event.initEvent('click', true, true);\n target.dispatchEvent(event);\n}\nfunction createNewEvent(eventName) {\n var event;\n if (typeof Event === 'function') {\n // Chrome, Opera, Firefox\n event = new Event(eventName);\n }\n else {\n // IE\n event = document.createEvent('Event');\n event.initEvent(eventName, true, true);\n }\n return event;\n}\n//# sourceMappingURL=raiseClick.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "index": 663, - "index2": 649, - "size": 3784, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerId": "mFTx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItem.base", - "loc": "2:0-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItem.base", - "loc": "7:39-61" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItem.base", - "loc": "5:0-42" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuItem.base", - "loc": "5:0-42" - } - ], - "usedExports": [ - "ContextualMenuItemBase" - ], - "providedExports": [ - "ContextualMenuItemBase" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { hasSubmenu, getIsChecked } from '../../utilities/contextualMenu/index';\nimport { BaseComponent, getRTL } from '../../Utilities';\nimport { Icon } from '../../Icon';\nvar renderItemIcon = function (props) {\n var item = props.item, hasIcons = props.hasIcons, classNames = props.classNames;\n var iconProps = item.iconProps;\n if (!hasIcons) {\n return null;\n }\n if (item.onRenderIcon) {\n return item.onRenderIcon(props);\n }\n return React.createElement(Icon, tslib_1.__assign({}, iconProps, { className: classNames.icon }));\n};\nvar renderCheckMarkIcon = function (_a) {\n var onCheckmarkClick = _a.onCheckmarkClick, item = _a.item, classNames = _a.classNames;\n var isItemChecked = getIsChecked(item);\n if (onCheckmarkClick) {\n // Ensures that the item is passed as the first argument to the checkmark click callback.\n var onClick = function (e) { return onCheckmarkClick(item, e); };\n return React.createElement(Icon, { iconName: isItemChecked ? 'CheckMark' : '', className: classNames.checkmarkIcon, onClick: onClick });\n }\n return null;\n};\nvar renderItemName = function (_a) {\n var item = _a.item, classNames = _a.classNames;\n if (item.text || item.name) {\n return React.createElement(\"span\", { className: classNames.label }, item.text || item.name);\n }\n return null;\n};\nvar renderSecondaryText = function (_a) {\n var item = _a.item, classNames = _a.classNames;\n if (item.secondaryText) {\n return React.createElement(\"span\", { className: classNames.secondaryText }, item.secondaryText);\n }\n return null;\n};\nvar renderSubMenuIcon = function (_a) {\n var item = _a.item, classNames = _a.classNames;\n if (hasSubmenu(item)) {\n return React.createElement(Icon, tslib_1.__assign({ iconName: getRTL() ? 'ChevronLeft' : 'ChevronRight' }, item.submenuIconProps, { className: classNames.subMenuIcon }));\n }\n return null;\n};\nvar ContextualMenuItemBase = /** @class */ (function (_super) {\n tslib_1.__extends(ContextualMenuItemBase, _super);\n function ContextualMenuItemBase() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.openSubMenu = function () {\n var _a = _this.props, item = _a.item, openSubMenu = _a.openSubMenu, getSubmenuTarget = _a.getSubmenuTarget;\n if (getSubmenuTarget) {\n var submenuTarget = getSubmenuTarget();\n if (hasSubmenu(item) && openSubMenu && submenuTarget) {\n openSubMenu(item, submenuTarget);\n }\n }\n };\n _this.dismissSubMenu = function () {\n var _a = _this.props, item = _a.item, dismissSubMenu = _a.dismissSubMenu;\n if (hasSubmenu(item) && dismissSubMenu) {\n dismissSubMenu();\n }\n };\n _this.dismissMenu = function (dismissAll) {\n var dismissMenu = _this.props.dismissMenu;\n if (dismissMenu) {\n dismissMenu(undefined /* ev */, dismissAll);\n }\n };\n return _this;\n }\n ContextualMenuItemBase.prototype.render = function () {\n var _a = this.props, item = _a.item, classNames = _a.classNames;\n return (React.createElement(\"div\", { className: item.split ? classNames.linkContentMenu : classNames.linkContent },\n renderCheckMarkIcon(this.props),\n renderItemIcon(this.props),\n renderItemName(this.props),\n renderSecondaryText(this.props),\n renderSubMenuIcon(this.props)));\n };\n return ContextualMenuItemBase;\n}(BaseComponent));\nexport { ContextualMenuItemBase };\n//# sourceMappingURL=ContextualMenuItem.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "index": 662, - "index2": 650, - "size": 382, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerId": "mFTx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../ContextualMenuItem", - "loc": "4:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony side effect evaluation", - "userRequest": "../ContextualMenuItem", - "loc": "7:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../ContextualMenuItem", - "loc": "7:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItem", - "loc": "11:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenuItem", - "loc": "20:300-318" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenuItem", - "loc": "26:300-318" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenuItem", - "loc": "104:94-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenuItem", - "loc": "127:94-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItem", - "loc": "623:85-103" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItem", - "loc": "4:0-37" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuItem", - "loc": "4:0-37" - } - ], - "usedExports": [ - "ContextualMenuItem" - ], - "providedExports": [ - "ContextualMenuItem" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { styled } from '../../Utilities';\nimport { ContextualMenuItemBase } from './ContextualMenuItem.base';\nimport { getItemStyles } from './ContextualMenu.classNames';\n/**\n * ContextualMenuItem description\n */\nexport var ContextualMenuItem = styled(ContextualMenuItemBase, getItemStyles, undefined, { scope: 'ContextualMenuItem' });\n//# sourceMappingURL=ContextualMenuItem.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "index": 665, - "index2": 656, - "size": 3199, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "issuerId": "H+sk", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "//Os", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "H+sk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "41:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "55:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../KeytipData", - "loc": "98:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "407:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../KeytipData", - "loc": "447:36-46" - }, - { - "moduleId": "H+sk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipData", - "loc": "1:0-29" - }, - { - "moduleId": "H+sk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeytipData", - "loc": "1:0-29" - } - ], - "usedExports": [ - "KeytipData" - ], - "providedExports": [ - "KeytipData" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { mergeAriaAttributeValues } from '../../Utilities';\nimport { KeytipManager } from '../../utilities/keytips/KeytipManager';\nimport { mergeOverflows, sequencesToID, getAriaDescribedBy } from '../../utilities/keytips/KeytipUtils';\n/**\n * A small element to help the target component correctly read out its aria-describedby for its Keytip\n * {@docCategory Keytips}\n */\nvar KeytipData = /** @class */ (function (_super) {\n tslib_1.__extends(KeytipData, _super);\n function KeytipData() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._keytipManager = KeytipManager.getInstance();\n return _this;\n }\n KeytipData.prototype.componentDidMount = function () {\n // Register Keytip in KeytipManager\n if (this.props.keytipProps) {\n this._uniqueId = this._keytipManager.register(this._getKtpProps());\n }\n };\n KeytipData.prototype.componentWillUnmount = function () {\n // Unregister Keytip in KeytipManager\n this.props.keytipProps && this._keytipManager.unregister(this._getKtpProps(), this._uniqueId);\n };\n KeytipData.prototype.componentDidUpdate = function () {\n // Update Keytip in KeytipManager\n this.props.keytipProps && this._keytipManager.update(this._getKtpProps(), this._uniqueId);\n };\n KeytipData.prototype.render = function () {\n var _a = this.props, children = _a.children, keytipProps = _a.keytipProps, ariaDescribedBy = _a.ariaDescribedBy;\n var nativeKeytipProps = {};\n if (keytipProps) {\n nativeKeytipProps = this._getKtpAttrs(keytipProps, ariaDescribedBy);\n }\n return children(nativeKeytipProps);\n };\n KeytipData.prototype._getKtpProps = function () {\n return tslib_1.__assign({ disabled: this.props.disabled }, this.props.keytipProps);\n };\n /**\n * Gets the aria- and data- attributes to attach to the component\n * @param keytipProps - props for Keytip\n * @param describedByPrepend - ariaDescribedBy value to prepend\n */\n KeytipData.prototype._getKtpAttrs = function (keytipProps, describedByPrepend) {\n if (keytipProps) {\n // Add the parent overflow sequence if necessary\n var newKeytipProps = this._keytipManager.addParentOverflow(keytipProps);\n // Construct aria-describedby and data-ktp-id attributes and return\n var ariaDescribedBy = getAriaDescribedBy(newKeytipProps.keySequences);\n var keySequences = newKeytipProps.keySequences.slice();\n if (newKeytipProps.overflowSetSequence) {\n keySequences = mergeOverflows(keySequences, newKeytipProps.overflowSetSequence);\n }\n var ktpId = sequencesToID(keySequences);\n return {\n 'aria-describedby': mergeAriaAttributeValues(describedByPrepend, ariaDescribedBy),\n 'data-ktp-target': ktpId,\n 'data-ktp-execute-target': ktpId\n };\n }\n return undefined;\n };\n return KeytipData;\n}(React.Component));\nexport { KeytipData };\n//# sourceMappingURL=KeytipData.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "index": 641, - "index2": 664, - "size": 43212, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerId": "mFTx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.base", - "loc": "4:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.base", - "loc": "11:29-47" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.base", - "loc": "2:0-38" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenu.base", - "loc": "2:0-38" - } - ], - "usedExports": [ - "ContextualMenuBase" - ], - "providedExports": [ - "getSubmenuItems", - "canAnyMenuItemsCheck", - "ContextualMenuBase" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { ContextualMenuItemType } from './ContextualMenu.types';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { FocusZone, FocusZoneDirection, FocusZoneTabbableElements } from '../../FocusZone';\nimport { divProperties, getNativeProps, shallowCompare } from '../../Utilities';\nimport { assign, BaseComponent, classNamesFunction, css, getDocument, getFirstFocusable, getId, getLastFocusable, getRTL, getWindow, KeyCodes, shouldWrapFocus, isIOS, isMac } from '../../Utilities';\nimport { hasSubmenu, getIsChecked, isItemDisabled } from '../../utilities/contextualMenu/index';\nimport { withResponsiveMode, ResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nimport { Callout } from '../../Callout';\nimport { ContextualMenuItem } from './ContextualMenuItem';\nimport { ContextualMenuSplitButton, ContextualMenuButton, ContextualMenuAnchor } from './ContextualMenuItemWrapper/index';\nimport { mergeStyleSets } from '../../Styling';\nimport { getItemStyles } from './ContextualMenu.classNames';\nvar getClassNames = classNamesFunction({\n disableCaching: true\n});\nvar getContextualMenuItemClassNames = classNamesFunction({\n disableCaching: true\n});\nexport function getSubmenuItems(item) {\n return item.subMenuProps ? item.subMenuProps.items : item.items;\n}\n/**\n * Returns true if a list of menu items can contain a checkbox\n */\nexport function canAnyMenuItemsCheck(items) {\n return items.some(function (item) {\n if (item.canCheck) {\n return true;\n }\n // If the item is a section, check if any of the items in the section can check.\n if (item.sectionProps && item.sectionProps.items.some(function (submenuItem) { return submenuItem.canCheck === true; })) {\n return true;\n }\n return false;\n });\n}\nvar NavigationIdleDelay = 250 /* ms */;\nvar ContextualMenuBase = /** @class */ (function (_super) {\n tslib_1.__extends(ContextualMenuBase, _super);\n function ContextualMenuBase(props) {\n var _this = _super.call(this, props) || this;\n _this._mounted = false;\n _this.dismiss = function (ev, dismissAll) {\n var onDismiss = _this.props.onDismiss;\n if (onDismiss) {\n onDismiss(ev, dismissAll);\n }\n };\n _this._onRenderMenuList = function (menuListProps, defaultRender) {\n var indexCorrection = 0;\n return (React.createElement(\"ul\", { className: _this._classNames.list, onKeyDown: _this._onKeyDown, onKeyUp: _this._onKeyUp, role: \"menu\" }, menuListProps.items.map(function (item, index) {\n var menuItem = _this._renderMenuItem(item, index, indexCorrection, menuListProps.totalItemCount, menuListProps.hasCheckmarks, menuListProps.hasIcons);\n if (item.itemType !== ContextualMenuItemType.Divider && item.itemType !== ContextualMenuItemType.Header) {\n var indexIncrease = item.customOnRenderListLength ? item.customOnRenderListLength : 1;\n indexCorrection += indexIncrease;\n }\n return menuItem;\n })));\n };\n _this._onKeyDown = function (ev) {\n // Take note if we are processing an alt (option) or meta (command) keydown.\n // See comment in _shouldHandleKeyUp for reasoning.\n _this._lastKeyDownWasAltOrMeta = _this._isAltOrMeta(ev);\n // On Mac, pressing escape dismisses all levels of native context menus\n var dismissAllMenus = ev.which === KeyCodes.escape && (isMac() || isIOS());\n return _this._keyHandler(ev, _this._shouldHandleKeyDown, dismissAllMenus);\n };\n _this._shouldHandleKeyDown = function (ev) {\n return ev.which === KeyCodes.escape || _this._shouldCloseSubMenu(ev) || (ev.which === KeyCodes.up && (ev.altKey || ev.metaKey));\n };\n _this._onMenuFocusCapture = function (ev) {\n if (_this.props.delayUpdateFocusOnHover) {\n _this._shouldUpdateFocusOnMouseEvent = true;\n }\n };\n _this._onKeyUp = function (ev) {\n return _this._keyHandler(ev, _this._shouldHandleKeyUp, true /* dismissAllMenus */);\n };\n /**\n * We close the menu on key up only if ALL of the following are true:\n * - Most recent key down was alt or meta (command)\n * - The alt/meta key down was NOT followed by some other key (such as down/up arrow to\n * expand/collapse the menu)\n * - We're not on a Mac (or iOS)\n *\n * This is because on Windows, pressing alt moves focus to the application menu bar or similar,\n * closing any open context menus. There is not a similar behavior on Macs.\n */\n _this._shouldHandleKeyUp = function (ev) {\n var keyPressIsAltOrMetaAlone = _this._lastKeyDownWasAltOrMeta && _this._isAltOrMeta(ev);\n _this._lastKeyDownWasAltOrMeta = false;\n return !!keyPressIsAltOrMetaAlone && !(isIOS() || isMac());\n };\n /**\n * Calls `shouldHandleKey` to determine whether the keyboard event should be handled;\n * if so, stops event propagation and dismisses menu(s).\n * @param ev - The keyboard event.\n * @param shouldHandleKey - Returns whether we should handle this keyboard event.\n * @param dismissAllMenus - If true, dismiss all menus. Otherwise, dismiss only the current menu.\n * Only does anything if `shouldHandleKey` returns true.\n * @returns Whether the event was handled.\n */\n _this._keyHandler = function (ev, shouldHandleKey, dismissAllMenus) {\n var handled = false;\n if (shouldHandleKey(ev)) {\n _this._isFocusingPreviousElement = true;\n ev.preventDefault();\n ev.stopPropagation();\n _this.dismiss(ev, dismissAllMenus);\n handled = true;\n }\n return handled;\n };\n /**\n * Checks if the submenu should be closed\n */\n _this._shouldCloseSubMenu = function (ev) {\n var submenuCloseKey = getRTL() ? KeyCodes.right : KeyCodes.left;\n if (ev.which !== submenuCloseKey || !_this.props.isSubMenu) {\n return false;\n }\n return (_this._adjustedFocusZoneProps.direction === FocusZoneDirection.vertical ||\n (!!_this._adjustedFocusZoneProps.checkForNoWrap && !shouldWrapFocus(ev.target, 'data-no-horizontal-wrap')));\n };\n _this._onMenuKeyDown = function (ev) {\n // Mark as handled if onKeyDown returns true (for handling collapse cases)\n // or if we are attempting to expand a submenu\n var handled = _this._onKeyDown(ev);\n if (handled || !_this._host) {\n return;\n }\n // If we have a modifier key being pressed, we do not want to move focus.\n // Otherwise, handle up and down keys.\n var hasModifier = !!(ev.altKey || ev.metaKey);\n var isUp = ev.which === KeyCodes.up;\n var isDown = ev.which === KeyCodes.down;\n if (!hasModifier && (isUp || isDown)) {\n var elementToFocus = isUp\n ? getLastFocusable(_this._host, _this._host.lastChild, true)\n : getFirstFocusable(_this._host, _this._host.firstChild, true);\n if (elementToFocus) {\n elementToFocus.focus();\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n /**\n * Scroll handler for the callout to make sure the mouse events\n * for updating focus are not interacting during scroll\n */\n _this._onScroll = function () {\n if (!_this._isScrollIdle && _this._scrollIdleTimeoutId !== undefined) {\n _this._async.clearTimeout(_this._scrollIdleTimeoutId);\n _this._scrollIdleTimeoutId = undefined;\n }\n else {\n _this._isScrollIdle = false;\n }\n _this._scrollIdleTimeoutId = _this._async.setTimeout(function () {\n _this._isScrollIdle = true;\n }, NavigationIdleDelay);\n };\n _this._onItemMouseEnterBase = function (item, ev, target) {\n if (_this._shouldIgnoreMouseEvent()) {\n return;\n }\n _this._updateFocusOnMouseEvent(item, ev, target);\n };\n _this._onItemMouseMoveBase = function (item, ev, target) {\n var targetElement = ev.currentTarget;\n // Always do this check to make sure we record a mouseMove if needed (even if we are timed out)\n if (_this._shouldUpdateFocusOnMouseEvent) {\n _this._gotMouseMove = true;\n }\n else {\n return;\n }\n if (!_this._isScrollIdle ||\n _this._enterTimerId !== undefined ||\n targetElement === _this._targetWindow.document.activeElement) {\n return;\n }\n _this._updateFocusOnMouseEvent(item, ev, target);\n };\n _this._onMouseItemLeave = function (item, ev) {\n if (_this._shouldIgnoreMouseEvent()) {\n return;\n }\n if (_this._enterTimerId !== undefined) {\n _this._async.clearTimeout(_this._enterTimerId);\n _this._enterTimerId = undefined;\n }\n if (_this.state.expandedMenuItemKey !== undefined) {\n return;\n }\n /**\n * IE11 focus() method forces parents to scroll to top of element.\n * Edge and IE expose a setActive() function for focusable divs that\n * sets the page focus but does not scroll the parent element.\n */\n if (_this._host.setActive) {\n try {\n _this._host.setActive();\n }\n catch (e) {\n /* no-op */\n }\n }\n else {\n _this._host.focus();\n }\n };\n _this._onItemMouseDown = function (item, ev) {\n if (item.onMouseDown) {\n item.onMouseDown(item, ev);\n }\n };\n _this._onItemClick = function (item, ev) {\n _this._onItemClickBase(item, ev, ev.currentTarget);\n };\n _this._onItemClickBase = function (item, ev, target) {\n var items = getSubmenuItems(item);\n // Cancel a async menu item hover timeout action from being taken and instead\n // just trigger the click event instead.\n _this._cancelSubMenuTimer();\n if (!hasSubmenu(item) && (!items || !items.length)) {\n // This is an item without a menu. Click it.\n _this._executeItemClick(item, ev);\n }\n else {\n if (item.key !== _this.state.expandedMenuItemKey) {\n // This has a collapsed sub menu. Expand it.\n _this.setState({\n // When Edge + Narrator are used together (regardless of if the button is in a form or not), pressing\n // \"Enter\" fires this method and not _onMenuKeyDown. Checking ev.nativeEvent.detail differentiates\n // between a real click event and a keypress event (detail should be the number of mouse clicks).\n // ...Plot twist! For a real click event in IE 11, detail is always 0 (Edge sets it properly to 1).\n // So we also check the pointerType property, which both Edge and IE set to \"mouse\" for real clicks\n // and \"\" for pressing \"Enter\" with Narrator on.\n expandedByMouseClick: ev.nativeEvent.detail !== 0 || ev.nativeEvent.pointerType === 'mouse'\n });\n _this._onItemSubMenuExpand(item, target);\n }\n }\n ev.stopPropagation();\n ev.preventDefault();\n };\n _this._onAnchorClick = function (item, ev) {\n _this._executeItemClick(item, ev);\n ev.stopPropagation();\n };\n _this._executeItemClick = function (item, ev) {\n if (item.disabled || item.isDisabled) {\n return;\n }\n var dismiss = false;\n if (item.onClick) {\n dismiss = !!item.onClick(ev, item);\n }\n else if (_this.props.onItemClick) {\n dismiss = !!_this.props.onItemClick(ev, item);\n }\n (dismiss || !ev.defaultPrevented) && _this.dismiss(ev, true);\n };\n _this._onItemKeyDown = function (item, ev) {\n var openKey = getRTL() ? KeyCodes.left : KeyCodes.right;\n if (!item.disabled &&\n (ev.which === openKey || ev.which === KeyCodes.enter || (ev.which === KeyCodes.down && (ev.altKey || ev.metaKey)))) {\n _this.setState({\n expandedByMouseClick: false\n });\n _this._onItemSubMenuExpand(item, ev.currentTarget);\n ev.preventDefault();\n }\n };\n // Cancel a async menu item hover timeout action from being taken and instead\n // do new upcoming behavior\n _this._cancelSubMenuTimer = function () {\n if (_this._enterTimerId !== undefined) {\n _this._async.clearTimeout(_this._enterTimerId);\n _this._enterTimerId = undefined;\n }\n };\n _this._onItemSubMenuExpand = function (item, target) {\n if (_this.state.expandedMenuItemKey !== item.key) {\n if (_this.state.expandedMenuItemKey) {\n _this._onSubMenuDismiss();\n }\n // Focus the target to ensure when we close it, we're focusing on the correct element.\n target.focus();\n _this.setState({\n expandedMenuItemKey: item.key,\n submenuTarget: target\n });\n }\n };\n /**\n * This function is called ASYNCHRONOUSLY, and so there is a chance it is called\n * after the component is unmounted. The _mounted property is added to prevent\n * from calling setState() after unmount. Do NOT copy this pattern in synchronous\n * code.\n */\n _this._onSubMenuDismiss = function (ev, dismissAll) {\n if (dismissAll) {\n _this.dismiss(ev, dismissAll);\n }\n else if (_this._mounted) {\n _this.setState({\n dismissedMenuItemKey: _this.state.expandedMenuItemKey,\n expandedMenuItemKey: undefined,\n submenuTarget: undefined\n });\n }\n };\n _this._getSubMenuId = function (item) {\n var subMenuId = _this.state.subMenuId;\n if (item.subMenuProps && item.subMenuProps.id) {\n subMenuId = item.subMenuProps.id;\n }\n return subMenuId;\n };\n _this._onPointerAndTouchEvent = function (ev) {\n _this._cancelSubMenuTimer();\n };\n _this.state = {\n contextualMenuItems: undefined,\n subMenuId: getId('ContextualMenu')\n };\n _this._warnDeprecations({\n getMenuClassNames: 'styles'\n });\n _this._isFocusingPreviousElement = false;\n _this._isScrollIdle = true;\n _this._shouldUpdateFocusOnMouseEvent = !_this.props.delayUpdateFocusOnHover;\n _this._gotMouseMove = false;\n return _this;\n }\n ContextualMenuBase.prototype.shouldComponentUpdate = function (newProps, newState) {\n if (this.props.hidden && newProps.hidden) {\n // Do not update when hidden.\n return false;\n }\n return !shallowCompare(this.props, newProps) || !shallowCompare(this.state, newState);\n };\n ContextualMenuBase.prototype.componentWillUpdate = function (newProps) {\n if (newProps.target !== this.props.target) {\n var newTarget = newProps.target;\n this._setTargetWindowAndElement(newTarget);\n }\n if (newProps.hidden !== this.props.hidden) {\n if (newProps.hidden) {\n this._onMenuClosed();\n }\n else {\n this._onMenuOpened();\n this._previousActiveElement = this._targetWindow ? this._targetWindow.document.activeElement : null;\n }\n }\n if (newProps.delayUpdateFocusOnHover !== this.props.delayUpdateFocusOnHover) {\n // update shouldUpdateFocusOnMouseEvent to follow what was passed in\n this._shouldUpdateFocusOnMouseEvent = !newProps.delayUpdateFocusOnHover;\n // If shouldUpdateFocusOnMouseEvent is false, we need to reset gotMouseMove to false\n this._gotMouseMove = this._shouldUpdateFocusOnMouseEvent && this._gotMouseMove;\n }\n };\n // Invoked once, both on the client and server, immediately before the initial rendering occurs.\n ContextualMenuBase.prototype.componentWillMount = function () {\n var target = this.props.target;\n this._setTargetWindowAndElement(target);\n if (!this.props.hidden) {\n this._previousActiveElement = this._targetWindow ? this._targetWindow.document.activeElement : null;\n }\n };\n // Invoked once, only on the client (not on the server), immediately after the initial rendering occurs.\n ContextualMenuBase.prototype.componentDidMount = function () {\n if (!this.props.hidden) {\n this._onMenuOpened();\n }\n this._mounted = true;\n };\n // Invoked immediately before a component is unmounted from the DOM.\n ContextualMenuBase.prototype.componentWillUnmount = function () {\n this._tryFocusPreviousActiveElement();\n if (this.props.onMenuDismissed) {\n this.props.onMenuDismissed(this.props);\n }\n this._events.dispose();\n this._async.dispose();\n this._mounted = false;\n };\n ContextualMenuBase.prototype.render = function () {\n var _this = this;\n var isBeakVisible = this.props.isBeakVisible;\n var _a = this.props, items = _a.items, labelElementId = _a.labelElementId, id = _a.id, className = _a.className, beakWidth = _a.beakWidth, directionalHint = _a.directionalHint, directionalHintForRTL = _a.directionalHintForRTL, alignTargetEdge = _a.alignTargetEdge, gapSpace = _a.gapSpace, coverTarget = _a.coverTarget, ariaLabel = _a.ariaLabel, doNotLayer = _a.doNotLayer, target = _a.target, bounds = _a.bounds, useTargetWidth = _a.useTargetWidth, useTargetAsMinWidth = _a.useTargetAsMinWidth, directionalHintFixed = _a.directionalHintFixed, shouldFocusOnMount = _a.shouldFocusOnMount, shouldFocusOnContainer = _a.shouldFocusOnContainer, title = _a.title, styles = _a.styles, theme = _a.theme, calloutProps = _a.calloutProps, _b = _a.onRenderSubMenu, onRenderSubMenu = _b === void 0 ? this._onRenderSubMenu : _b, _c = _a.onRenderMenuList, onRenderMenuList = _c === void 0 ? this._onRenderMenuList : _c, focusZoneProps = _a.focusZoneProps, getMenuClassNames = _a.getMenuClassNames;\n this._classNames = getMenuClassNames\n ? getMenuClassNames(theme, className)\n : getClassNames(styles, {\n theme: theme,\n className: className\n });\n var hasIcons = itemsHaveIcons(items);\n function itemsHaveIcons(contextualMenuItems) {\n for (var _i = 0, contextualMenuItems_1 = contextualMenuItems; _i < contextualMenuItems_1.length; _i++) {\n var item = contextualMenuItems_1[_i];\n if (!!item.iconProps) {\n return true;\n }\n if (item.itemType === ContextualMenuItemType.Section && item.sectionProps && itemsHaveIcons(item.sectionProps.items)) {\n return true;\n }\n }\n return false;\n }\n this._adjustedFocusZoneProps = tslib_1.__assign({}, focusZoneProps, { direction: this._getFocusZoneDirection() });\n var hasCheckmarks = canAnyMenuItemsCheck(items);\n var submenuProps = this.state.expandedMenuItemKey && this.props.hidden !== true ? this._getSubmenuProps() : null;\n isBeakVisible = isBeakVisible === undefined ? this.props.responsiveMode <= ResponsiveMode.medium : isBeakVisible;\n /**\n * When useTargetWidth is true, get the width of the target element and apply it for the context menu container\n */\n var contextMenuStyle;\n var targetAsHtmlElement = this._target;\n if ((useTargetWidth || useTargetAsMinWidth) && targetAsHtmlElement && targetAsHtmlElement.offsetWidth) {\n var targetBoundingRect = targetAsHtmlElement.getBoundingClientRect();\n var targetWidth = targetBoundingRect.width - 2 /* Accounts for 1px border */;\n if (useTargetWidth) {\n contextMenuStyle = {\n width: targetWidth\n };\n }\n else if (useTargetAsMinWidth) {\n contextMenuStyle = {\n minWidth: targetWidth\n };\n }\n }\n // The menu should only return if items were provided, if no items were provided then it should not appear.\n if (items && items.length > 0) {\n var totalItemCount = 0;\n for (var _i = 0, items_1 = items; _i < items_1.length; _i++) {\n var item = items_1[_i];\n if (item.itemType !== ContextualMenuItemType.Divider && item.itemType !== ContextualMenuItemType.Header) {\n var itemCount = item.customOnRenderListLength ? item.customOnRenderListLength : 1;\n totalItemCount += itemCount;\n }\n }\n var calloutStyles = !getMenuClassNames && this._classNames.subComponentStyles\n ? this._classNames.subComponentStyles.callout\n : undefined;\n return (React.createElement(Callout, tslib_1.__assign({ styles: calloutStyles }, calloutProps, { target: target, isBeakVisible: isBeakVisible, beakWidth: beakWidth, directionalHint: directionalHint, directionalHintForRTL: directionalHintForRTL, gapSpace: gapSpace, coverTarget: coverTarget, doNotLayer: doNotLayer, className: css('ms-ContextualMenu-Callout', calloutProps && calloutProps.className), setInitialFocus: shouldFocusOnMount, onDismiss: this.props.onDismiss, onScroll: this._onScroll, bounds: bounds, directionalHintFixed: directionalHintFixed, alignTargetEdge: alignTargetEdge, hidden: this.props.hidden }),\n React.createElement(\"div\", { \"aria-label\": ariaLabel, \"aria-labelledby\": labelElementId, style: contextMenuStyle, ref: function (host) { return (_this._host = host); }, id: id, className: this._classNames.container, tabIndex: shouldFocusOnContainer ? 0 : -1, onKeyDown: this._onMenuKeyDown, onKeyUp: this._onKeyUp, onFocusCapture: this._onMenuFocusCapture },\n title && React.createElement(\"div\", { className: this._classNames.title },\n \" \",\n title,\n \" \"),\n items && items.length ? (React.createElement(FocusZone, tslib_1.__assign({}, this._adjustedFocusZoneProps, { className: this._classNames.root, isCircularNavigation: true, handleTabKey: FocusZoneTabbableElements.all }), onRenderMenuList({\n items: items,\n totalItemCount: totalItemCount,\n hasCheckmarks: hasCheckmarks,\n hasIcons: hasIcons\n }, this._onRenderMenuList))) : null,\n submenuProps && onRenderSubMenu(submenuProps, this._onRenderSubMenu))));\n }\n else {\n return null;\n }\n };\n ContextualMenuBase.prototype._onMenuOpened = function () {\n this._events.on(this._targetWindow, 'resize', this.dismiss);\n this._shouldUpdateFocusOnMouseEvent = !this.props.delayUpdateFocusOnHover;\n this._gotMouseMove = false;\n this.props.onMenuOpened && this.props.onMenuOpened(this.props);\n };\n ContextualMenuBase.prototype._onMenuClosed = function () {\n this._events.off(this._targetWindow, 'resize', this.dismiss);\n this._tryFocusPreviousActiveElement();\n if (this.props.onMenuDismissed) {\n this.props.onMenuDismissed(this.props);\n }\n this._shouldUpdateFocusOnMouseEvent = !this.props.delayUpdateFocusOnHover;\n // We need to dismiss any submenu related state properties,\n // so that when the menu is shown again, the submenu is collapsed\n this.setState({\n expandedByMouseClick: undefined,\n dismissedMenuItemKey: undefined,\n expandedMenuItemKey: undefined,\n submenuTarget: undefined\n });\n };\n ContextualMenuBase.prototype._tryFocusPreviousActiveElement = function () {\n var _this = this;\n if (this._isFocusingPreviousElement && this._previousActiveElement) {\n // This slight delay is required so that we can unwind the stack, const react try to mess with focus, and then\n // apply the correct focus. Without the setTimeout, we end up focusing the correct thing, and then React wants\n // to reset the focus back to the thing it thinks should have been focused.\n // Note: Cannot be replaced by this._async.setTimout because those will be removed by the time this is called.\n setTimeout(function () {\n _this._previousActiveElement && _this._previousActiveElement.focus();\n }, 0);\n }\n };\n /**\n * Gets the focusZoneDirection by using the arrowDirection if specified,\n * the direction specificed in the focusZoneProps, or defaults to FocusZoneDirection.vertical\n */\n ContextualMenuBase.prototype._getFocusZoneDirection = function () {\n var focusZoneProps = this.props.focusZoneProps;\n return focusZoneProps && focusZoneProps.direction !== undefined ? focusZoneProps.direction : FocusZoneDirection.vertical;\n };\n ContextualMenuBase.prototype._onRenderSubMenu = function (subMenuProps, defaultRender) {\n throw Error('ContextualMenuBase: onRenderSubMenu callback is null or undefined. ' +\n 'Please ensure to set `onRenderSubMenu` property either manually or with `styled` helper.');\n };\n ContextualMenuBase.prototype._renderMenuItem = function (item, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n var renderedItems = [];\n var iconProps = item.iconProps || { iconName: 'None' };\n var getItemClassNames = item.getItemClassNames, itemProps = item.itemProps;\n var styles = itemProps ? itemProps.styles : undefined;\n // We only send a dividerClassName when the item to be rendered is a divider. For all other cases, the default divider style is used.\n var dividerClassName = item.itemType === ContextualMenuItemType.Divider ? item.className : undefined;\n var subMenuIconClassName = item.submenuIconProps ? item.submenuIconProps.className : '';\n var itemClassNames;\n // IContextualMenuItem#getItemClassNames for backwards compatibility\n // otherwise uses mergeStyles for class names.\n if (getItemClassNames) {\n itemClassNames = getItemClassNames(this.props.theme, isItemDisabled(item), this.state.expandedMenuItemKey === item.key, !!getIsChecked(item), !!item.href, iconProps.iconName !== 'None', item.className, dividerClassName, iconProps.className, subMenuIconClassName, item.primaryDisabled);\n }\n else {\n var itemStyleProps = {\n theme: this.props.theme,\n disabled: isItemDisabled(item),\n expanded: this.state.expandedMenuItemKey === item.key,\n checked: !!getIsChecked(item),\n isAnchorLink: !!item.href,\n knownIcon: iconProps.iconName !== 'None',\n itemClassName: item.className,\n dividerClassName: dividerClassName,\n iconClassName: iconProps.className,\n subMenuClassName: subMenuIconClassName,\n primaryDisabled: item.primaryDisabled\n };\n var menuItemStyles = this._classNames.subComponentStyles\n ? this._classNames.subComponentStyles.menuItem\n : undefined;\n // We need to generate default styles then override if styles are provided\n // since the ContextualMenu currently handles item classNames.\n itemClassNames = mergeStyleSets(getContextualMenuItemClassNames(getItemStyles, itemStyleProps), getContextualMenuItemClassNames(menuItemStyles, itemStyleProps), getContextualMenuItemClassNames(styles, itemStyleProps));\n }\n if (item.text === '-' || item.name === '-') {\n item.itemType = ContextualMenuItemType.Divider;\n }\n switch (item.itemType) {\n case ContextualMenuItemType.Divider:\n renderedItems.push(this._renderSeparator(index, itemClassNames));\n break;\n case ContextualMenuItemType.Header:\n renderedItems.push(this._renderSeparator(index, itemClassNames));\n var headerItem = this._renderHeaderMenuItem(item, itemClassNames, index, hasCheckmarks, hasIcons);\n renderedItems.push(this._renderListItem(headerItem, item.key || index, itemClassNames, item.title));\n break;\n case ContextualMenuItemType.Section:\n renderedItems.push(this._renderSectionItem(item, itemClassNames, index, hasCheckmarks, hasIcons));\n break;\n default:\n var menuItem = this._renderNormalItem(item, itemClassNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n renderedItems.push(this._renderListItem(menuItem, item.key || index, itemClassNames, item.title));\n break;\n }\n return renderedItems;\n };\n ContextualMenuBase.prototype._renderSectionItem = function (sectionItem, menuClassNames, index, hasCheckmarks, hasIcons) {\n var _this = this;\n var sectionProps = sectionItem.sectionProps;\n if (!sectionProps) {\n return;\n }\n var headerItem;\n if (sectionProps.title) {\n var headerContextualMenuItem = {\n key: \"section-\" + sectionProps.title + \"-title\",\n itemType: ContextualMenuItemType.Header,\n text: sectionProps.title\n };\n headerItem = this._renderHeaderMenuItem(headerContextualMenuItem, menuClassNames, index, hasCheckmarks, hasIcons);\n }\n if (sectionProps.items && sectionProps.items.length > 0) {\n return (React.createElement(\"li\", { role: \"presentation\", key: sectionProps.key || sectionItem.key || \"section-\" + index },\n React.createElement(\"div\", { role: \"group\" },\n React.createElement(\"ul\", { className: this._classNames.list },\n sectionProps.topDivider && this._renderSeparator(index, menuClassNames, true, true),\n headerItem && this._renderListItem(headerItem, sectionItem.key || index, menuClassNames, sectionItem.title),\n sectionProps.items.map(function (contextualMenuItem, itemsIndex) {\n return _this._renderMenuItem(contextualMenuItem, itemsIndex, itemsIndex, sectionProps.items.length, hasCheckmarks, hasIcons);\n }),\n sectionProps.bottomDivider && this._renderSeparator(index, menuClassNames, false, true)))));\n }\n };\n ContextualMenuBase.prototype._renderListItem = function (content, key, classNames, title) {\n return (React.createElement(\"li\", { role: \"presentation\", title: title, key: key, className: classNames.item }, content));\n };\n ContextualMenuBase.prototype._renderSeparator = function (index, classNames, top, fromSection) {\n if (fromSection || index > 0) {\n return (React.createElement(\"li\", { role: \"separator\", key: 'separator-' + index + (top === undefined ? '' : top ? '-top' : '-bottom'), className: classNames.divider, \"aria-hidden\": \"true\" }));\n }\n return null;\n };\n ContextualMenuBase.prototype._renderNormalItem = function (item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n if (item.onRender) {\n return item.onRender(tslib_1.__assign({ 'aria-posinset': focusableElementIndex + 1, 'aria-setsize': totalItemCount }, item), this.dismiss);\n }\n if (item.href) {\n return this._renderAnchorMenuItem(item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n }\n if (item.split && hasSubmenu(item)) {\n return this._renderSplitButton(item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n }\n return this._renderButtonItem(item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n };\n ContextualMenuBase.prototype._renderHeaderMenuItem = function (item, classNames, index, hasCheckmarks, hasIcons) {\n var _a = this.props.contextualMenuItemAs, ChildrenRenderer = _a === void 0 ? ContextualMenuItem : _a;\n var itemProps = item.itemProps;\n var divHtmlProperties = itemProps && getNativeProps(itemProps, divProperties);\n return (React.createElement(\"div\", tslib_1.__assign({ className: this._classNames.header }, divHtmlProperties, { style: item.style }),\n React.createElement(ChildrenRenderer, tslib_1.__assign({ item: item, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks ? this._onItemClick : undefined, hasIcons: hasIcons }, itemProps))));\n };\n ContextualMenuBase.prototype._renderAnchorMenuItem = function (item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n var contextualMenuItemAs = this.props.contextualMenuItemAs;\n var expandedMenuItemKey = this.state.expandedMenuItemKey;\n return (React.createElement(ContextualMenuAnchor, { item: item, classNames: classNames, index: index, focusableElementIndex: focusableElementIndex, totalItemCount: totalItemCount, hasCheckmarks: hasCheckmarks, hasIcons: hasIcons, contextualMenuItemAs: contextualMenuItemAs, onItemMouseEnter: this._onItemMouseEnterBase, onItemMouseLeave: this._onMouseItemLeave, onItemMouseMove: this._onItemMouseMoveBase, onItemMouseDown: this._onItemMouseDown, executeItemClick: this._executeItemClick, onItemClick: this._onAnchorClick, onItemKeyDown: this._onItemKeyDown, getSubMenuId: this._getSubMenuId, expandedMenuItemKey: expandedMenuItemKey, openSubMenu: this._onItemSubMenuExpand, dismissSubMenu: this._onSubMenuDismiss, dismissMenu: this.dismiss }));\n };\n ContextualMenuBase.prototype._renderButtonItem = function (item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n var contextualMenuItemAs = this.props.contextualMenuItemAs;\n var expandedMenuItemKey = this.state.expandedMenuItemKey;\n return (React.createElement(ContextualMenuButton, { item: item, classNames: classNames, index: index, focusableElementIndex: focusableElementIndex, totalItemCount: totalItemCount, hasCheckmarks: hasCheckmarks, hasIcons: hasIcons, contextualMenuItemAs: contextualMenuItemAs, onItemMouseEnter: this._onItemMouseEnterBase, onItemMouseLeave: this._onMouseItemLeave, onItemMouseMove: this._onItemMouseMoveBase, onItemMouseDown: this._onItemMouseDown, executeItemClick: this._executeItemClick, onItemClick: this._onItemClick, onItemClickBase: this._onItemClickBase, onItemKeyDown: this._onItemKeyDown, getSubMenuId: this._getSubMenuId, expandedMenuItemKey: expandedMenuItemKey, openSubMenu: this._onItemSubMenuExpand, dismissSubMenu: this._onSubMenuDismiss, dismissMenu: this.dismiss }));\n };\n ContextualMenuBase.prototype._renderSplitButton = function (item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n var contextualMenuItemAs = this.props.contextualMenuItemAs;\n var expandedMenuItemKey = this.state.expandedMenuItemKey;\n return (React.createElement(ContextualMenuSplitButton, { item: item, classNames: classNames, index: index, focusableElementIndex: focusableElementIndex, totalItemCount: totalItemCount, hasCheckmarks: hasCheckmarks, hasIcons: hasIcons, contextualMenuItemAs: contextualMenuItemAs, onItemMouseEnter: this._onItemMouseEnterBase, onItemMouseLeave: this._onMouseItemLeave, onItemMouseMove: this._onItemMouseMoveBase, onItemMouseDown: this._onItemMouseDown, executeItemClick: this._executeItemClick, onItemClick: this._onItemClick, onItemClickBase: this._onItemClickBase, onItemKeyDown: this._onItemKeyDown, openSubMenu: this._onItemSubMenuExpand, dismissSubMenu: this._onSubMenuDismiss, dismissMenu: this.dismiss, expandedMenuItemKey: expandedMenuItemKey, onTap: this._onPointerAndTouchEvent }));\n };\n /**\n * Returns true if the key for the event is alt (Mac option) or meta (Mac command).\n */\n ContextualMenuBase.prototype._isAltOrMeta = function (ev) {\n return ev.which === KeyCodes.alt || ev.key === 'Meta';\n };\n ContextualMenuBase.prototype._shouldIgnoreMouseEvent = function () {\n return !this._isScrollIdle || !this._gotMouseMove;\n };\n /**\n * Handles updating focus when mouseEnter or mouseMove fire.\n * As part of updating focus, This function will also update\n * the expand/collapse state accordingly.\n */\n ContextualMenuBase.prototype._updateFocusOnMouseEvent = function (item, ev, target) {\n var _this = this;\n var targetElement = target ? target : ev.currentTarget;\n var _a = this.props.subMenuHoverDelay, timeoutDuration = _a === void 0 ? NavigationIdleDelay : _a;\n if (item.key === this.state.expandedMenuItemKey) {\n return;\n }\n if (this._enterTimerId !== undefined) {\n this._async.clearTimeout(this._enterTimerId);\n this._enterTimerId = undefined;\n }\n // If the menu is not expanded we can update focus without any delay\n if (this.state.expandedMenuItemKey === undefined) {\n targetElement.focus();\n }\n // Delay updating expanding/dismissing the submenu\n // and only set focus if we have not already done so\n if (hasSubmenu(item)) {\n ev.stopPropagation();\n this._enterTimerId = this._async.setTimeout(function () {\n targetElement.focus();\n _this.setState({\n expandedByMouseClick: true\n });\n _this._onItemSubMenuExpand(item, targetElement);\n _this._enterTimerId = undefined;\n }, timeoutDuration);\n }\n else {\n this._enterTimerId = this._async.setTimeout(function () {\n _this._onSubMenuDismiss(ev);\n targetElement.focus();\n _this._enterTimerId = undefined;\n }, timeoutDuration);\n }\n };\n ContextualMenuBase.prototype._getSubmenuProps = function () {\n var _a = this.state, submenuTarget = _a.submenuTarget, expandedMenuItemKey = _a.expandedMenuItemKey;\n var item = this._findItemByKey(expandedMenuItemKey);\n var submenuProps = null;\n if (item) {\n submenuProps = {\n items: getSubmenuItems(item),\n target: submenuTarget,\n onDismiss: this._onSubMenuDismiss,\n isSubMenu: true,\n id: this.state.subMenuId,\n shouldFocusOnMount: true,\n shouldFocusOnContainer: this.state.expandedByMouseClick,\n directionalHint: getRTL() ? DirectionalHint.leftTopEdge : DirectionalHint.rightTopEdge,\n className: this.props.className,\n gapSpace: 0,\n isBeakVisible: false\n };\n if (item.subMenuProps) {\n assign(submenuProps, item.subMenuProps);\n }\n }\n return submenuProps;\n };\n ContextualMenuBase.prototype._findItemByKey = function (key) {\n var items = this.props.items;\n return this._findItemByKeyFromItems(key, items);\n };\n /**\n * Returns the item that mathes a given key if any.\n * @param key - The key of the item to match\n * @param items - The items to look for the key\n */\n ContextualMenuBase.prototype._findItemByKeyFromItems = function (key, items) {\n for (var _i = 0, items_2 = items; _i < items_2.length; _i++) {\n var item = items_2[_i];\n if (item.itemType === ContextualMenuItemType.Section && item.sectionProps) {\n var match = this._findItemByKeyFromItems(key, item.sectionProps.items);\n if (match) {\n return match;\n }\n }\n else if (item.key && item.key === key) {\n return item;\n }\n }\n };\n ContextualMenuBase.prototype._setTargetWindowAndElement = function (target) {\n var currentElement = this._host;\n if (target) {\n if (typeof target === 'string') {\n var currentDoc = getDocument(currentElement);\n this._target = currentDoc ? currentDoc.querySelector(target) : null;\n this._targetWindow = getWindow(currentElement);\n }\n else if (target.stopPropagation) {\n this._targetWindow = getWindow(target.toElement);\n this._target = target;\n }\n else if (target.x !== undefined && target.y !== undefined) {\n this._targetWindow = getWindow(currentElement);\n this._target = target;\n }\n else {\n var targetElement = target;\n this._targetWindow = getWindow(targetElement);\n this._target = target;\n }\n }\n else {\n this._targetWindow = getWindow(currentElement);\n }\n };\n // The default ContextualMenu properties have no items and beak, the default submenu direction is right and top.\n ContextualMenuBase.defaultProps = {\n items: [],\n shouldFocusOnMount: true,\n gapSpace: 0,\n directionalHint: DirectionalHint.bottomAutoEdge,\n beakWidth: 16\n };\n ContextualMenuBase = tslib_1.__decorate([\n withResponsiveMode\n ], ContextualMenuBase);\n return ContextualMenuBase;\n}(BaseComponent));\nexport { ContextualMenuBase };\n//# sourceMappingURL=ContextualMenu.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "index": 640, - "index2": 666, - "size": 741, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerId": "mFTx", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../ContextualMenu", - "loc": "77:49-63" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu", - "loc": "1:0-33" - }, - { - "moduleId": "mFTx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenu", - "loc": "1:0-33" - } - ], - "usedExports": [ - "ContextualMenu" - ], - "providedExports": [ - "ContextualMenu" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { styled } from '../../Utilities';\nimport { ContextualMenuBase } from './ContextualMenu.base';\nimport { getStyles } from './ContextualMenu.styles';\n// This is to prevent cyclic import with ContextualMenu.base.tsx.\nvar LocalContextualMenu;\nfunction onRenderSubMenu(subMenuProps) {\n return React.createElement(LocalContextualMenu, tslib_1.__assign({}, subMenuProps));\n}\nLocalContextualMenu = styled(ContextualMenuBase, getStyles, function () {\n return {\n onRenderSubMenu: onRenderSubMenu\n };\n}, { scope: 'ContextualMenu' });\n/**\n * ContextualMenu description\n */\nexport var ContextualMenu = LocalContextualMenu;\n//# sourceMappingURL=ContextualMenu.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "index": 371, - "index2": 364, - "size": 3495, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "l6cK", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSets", - "loc": "2:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./concatStyleSets", - "loc": "27:27-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "42:47-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "104:15-30" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSets", - "loc": "3:0-52" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./concatStyleSets", - "loc": "3:0-52" - } - ], - "usedExports": [ - "concatStyleSets" - ], - "providedExports": [ - "concatStyleSets" - ], - "optimizationBailout": [], - "depth": 10, - "source": "/**\n * Combine a set of styles together (but does not register css classes).\n * @param styleSets - One or more stylesets to be merged (each param can also be falsy).\n */\nexport function concatStyleSets() {\n var styleSets = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styleSets[_i] = arguments[_i];\n }\n if (styleSets && styleSets.length === 1 && styleSets[0] && !styleSets[0].subComponentStyles) {\n return styleSets[0];\n }\n var mergedSet = {};\n // We process sub component styles in two phases. First we collect them, then we combine them into 1 style function.\n var workingSubcomponentStyles = {};\n for (var _a = 0, styleSets_1 = styleSets; _a < styleSets_1.length; _a++) {\n var currentSet = styleSets_1[_a];\n if (currentSet) {\n for (var prop in currentSet) {\n if (currentSet.hasOwnProperty(prop)) {\n if (prop === 'subComponentStyles' && currentSet.subComponentStyles !== undefined) {\n // subcomponent styles - style functions or objects\n var currentComponentStyles = currentSet.subComponentStyles;\n for (var subCompProp in currentComponentStyles) {\n if (currentComponentStyles.hasOwnProperty(subCompProp)) {\n if (workingSubcomponentStyles.hasOwnProperty(subCompProp)) {\n workingSubcomponentStyles[subCompProp].push(currentComponentStyles[subCompProp]);\n }\n else {\n workingSubcomponentStyles[subCompProp] = [currentComponentStyles[subCompProp]];\n }\n }\n }\n continue;\n }\n // the as any casts below is a workaround for ts 2.8.\n // todo: remove cast to any in ts 2.9.\n var mergedValue = mergedSet[prop];\n var currentValue = currentSet[prop];\n if (mergedValue === undefined) {\n mergedSet[prop] = currentValue;\n }\n else {\n mergedSet[prop] = (Array.isArray(mergedValue) ? mergedValue : [mergedValue]).concat((Array.isArray(currentValue) ? currentValue : [currentValue]));\n }\n }\n }\n }\n }\n if (Object.keys(workingSubcomponentStyles).length > 0) {\n mergedSet.subComponentStyles = {};\n var mergedSubStyles = mergedSet.subComponentStyles;\n var _loop_1 = function (subCompProp) {\n if (workingSubcomponentStyles.hasOwnProperty(subCompProp)) {\n var workingSet_1 = workingSubcomponentStyles[subCompProp];\n mergedSubStyles[subCompProp] = function (styleProps) {\n return concatStyleSets.apply(void 0, workingSet_1.map(function (styleFunctionOrObject) {\n return typeof styleFunctionOrObject === 'function' ? styleFunctionOrObject(styleProps) : styleFunctionOrObject;\n }));\n };\n }\n };\n // now we process the subcomponent styles if there are any\n for (var subCompProp in workingSubcomponentStyles) {\n _loop_1(subCompProp);\n }\n }\n return mergedSet;\n}\n//# sourceMappingURL=concatStyleSets.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "index": 374, - "index2": 366, - "size": 7612, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "l6cK", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "1:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "1:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "type": "harmony side effect evaluation", - "userRequest": "../Stylesheet", - "loc": "1:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "1:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "1:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/memoize.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/memoize.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/memoize.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "2:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/memoize.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/memoize.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/memoize.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "4:4-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "4:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "8:4-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "8:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "9:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "13:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "13:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "type": "harmony import specifier", - "userRequest": "../Stylesheet", - "loc": "20:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "65:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/object.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "80:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "184:25-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "203:21-31" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "6:0-57" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Stylesheet", - "loc": "6:0-57" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Stylesheet", - "loc": "6:0-57" - } - ], - "usedExports": [ - "Stylesheet" - ], - "providedExports": [ - "InjectionMode", - "Stylesheet" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import * as tslib_1 from \"tslib\";\nexport var InjectionMode = {\n /**\n * Avoids style injection, use getRules() to read the styles.\n */\n none: 0,\n /**\n * Inserts rules using the insertRule api.\n */\n insertNode: 1,\n /**\n * Appends rules using appendChild.\n */\n appendChild: 2\n};\nvar STYLESHEET_SETTING = '__stylesheet__';\n// tslint:disable-next-line:no-any\nvar _global = {};\n// Grab window.\ntry {\n _global = window;\n}\ncatch (_a) {\n /* leave as blank object */\n}\nvar _stylesheet;\n/**\n * Represents the state of styles registered in the page. Abstracts\n * the surface for adding styles to the stylesheet, exposes helpers\n * for reading the styles registered in server rendered scenarios.\n *\n * @public\n */\nvar Stylesheet = /** @class */ (function () {\n function Stylesheet(config) {\n this._rules = [];\n this._preservedRules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._keyToClassName = {};\n this._onResetCallbacks = [];\n // tslint:disable-next-line:no-any\n this._classNameToArgs = {};\n this._config = tslib_1.__assign({ injectionMode: InjectionMode.insertNode, defaultPrefix: 'css', namespace: undefined, cspSettings: undefined }, config);\n }\n /**\n * Gets the singleton instance.\n */\n Stylesheet.getInstance = function () {\n // tslint:disable-next-line:no-any\n _stylesheet = _global[STYLESHEET_SETTING];\n if (!_stylesheet || (_stylesheet._lastStyleElement && _stylesheet._lastStyleElement.ownerDocument !== document)) {\n // tslint:disable-next-line:no-string-literal\n var fabricConfig = (_global && _global['FabricConfig']) || {};\n _stylesheet = _global[STYLESHEET_SETTING] = new Stylesheet(fabricConfig.mergeStyles);\n }\n return _stylesheet;\n };\n /**\n * Configures the stylesheet.\n */\n Stylesheet.prototype.setConfig = function (config) {\n this._config = tslib_1.__assign({}, this._config, config);\n };\n /**\n * Configures a reset callback.\n *\n * @param callback - A callback which will be called when the Stylesheet is reset.\n */\n Stylesheet.prototype.onReset = function (callback) {\n this._onResetCallbacks.push(callback);\n };\n /**\n * Generates a unique classname.\n *\n * @param displayName - Optional value to use as a prefix.\n */\n Stylesheet.prototype.getClassName = function (displayName) {\n var namespace = this._config.namespace;\n var prefix = displayName || this._config.defaultPrefix;\n return \"\" + (namespace ? namespace + '-' : '') + prefix + \"-\" + this._counter++;\n };\n /**\n * Used internally to cache information about a class which was\n * registered with the stylesheet.\n */\n Stylesheet.prototype.cacheClassName = function (className, key, args, rules) {\n this._keyToClassName[key] = className;\n this._classNameToArgs[className] = {\n args: args,\n rules: rules\n };\n };\n /**\n * Gets the appropriate classname given a key which was previously\n * registered using cacheClassName.\n */\n Stylesheet.prototype.classNameFromKey = function (key) {\n return this._keyToClassName[key];\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.argsFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.args;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.insertedRulesFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.rules;\n };\n /**\n * Inserts a css rule into the stylesheet.\n * @param preserve - Preserves the rule beyond a reset boundary.\n */\n Stylesheet.prototype.insertRule = function (rule, preserve) {\n var injectionMode = this._config.injectionMode;\n var element = injectionMode !== InjectionMode.none ? this._getStyleElement() : undefined;\n if (preserve) {\n this._preservedRules.push(rule);\n }\n if (element) {\n switch (this._config.injectionMode) {\n case InjectionMode.insertNode:\n var sheet = element.sheet;\n try {\n sheet.insertRule(rule, sheet.cssRules.length);\n }\n catch (e) {\n // The browser will throw exceptions on unsupported rules (such as a moz prefix in webkit.)\n // We need to swallow the exceptions for this scenario, otherwise we'd need to filter\n // which could be slower and bulkier.\n }\n break;\n case InjectionMode.appendChild:\n element.appendChild(document.createTextNode(rule));\n break;\n }\n }\n else {\n this._rules.push(rule);\n }\n if (this._config.onInsertRule) {\n this._config.onInsertRule(rule);\n }\n };\n /**\n * Gets all rules registered with the stylesheet; only valid when\n * using InsertionMode.none.\n */\n Stylesheet.prototype.getRules = function (includePreservedRules) {\n return (includePreservedRules ? this._preservedRules.join('') : '') + this._rules.join('') + this._rulesToInsert.join('');\n };\n /**\n * Resets the internal state of the stylesheet. Only used in server\n * rendered scenarios where we're using InsertionMode.none.\n */\n Stylesheet.prototype.reset = function () {\n this._rules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._classNameToArgs = {};\n this._keyToClassName = {};\n this._onResetCallbacks.forEach(function (callback) { return callback(); });\n };\n // Forces the regeneration of incoming styles without totally resetting the stylesheet.\n Stylesheet.prototype.resetKeys = function () {\n this._keyToClassName = {};\n };\n Stylesheet.prototype._getStyleElement = function () {\n var _this = this;\n if (!this._styleElement && typeof document !== 'undefined') {\n this._styleElement = this._createStyleElement();\n // Reset the style element on the next frame.\n window.requestAnimationFrame(function () {\n _this._styleElement = undefined;\n });\n }\n return this._styleElement;\n };\n Stylesheet.prototype._createStyleElement = function () {\n var styleElement = document.createElement('style');\n styleElement.setAttribute('data-merge-styles', 'true');\n styleElement.type = 'text/css';\n var cspSettings = this._config.cspSettings;\n if (cspSettings) {\n if (cspSettings.nonce) {\n styleElement.setAttribute('nonce', cspSettings.nonce);\n }\n }\n if (this._lastStyleElement && this._lastStyleElement.nextElementSibling) {\n document.head.insertBefore(styleElement, this._lastStyleElement.nextElementSibling);\n }\n else {\n document.head.appendChild(styleElement);\n }\n this._lastStyleElement = styleElement;\n return styleElement;\n };\n return Stylesheet;\n}());\nexport { Stylesheet };\n//# sourceMappingURL=Stylesheet.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "index": 380, - "index2": 370, - "size": 3039, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "l6cK", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/rtlifyRules", - "loc": "5:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "22:12-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "40:4-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./transforms/rtlifyRules", - "loc": "167:8-19" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/rtlifyRules", - "loc": "7:0-50" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./transforms/rtlifyRules", - "loc": "7:0-50" - } - ], - "usedExports": [ - "rtlifyRules", - "setRTL" - ], - "providedExports": [ - "setRTL", - "getRTL", - "rtlifyRules" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { Stylesheet } from '../Stylesheet';\nvar LEFT = 'left';\nvar RIGHT = 'right';\nvar NO_FLIP = '@noflip';\nvar NAME_REPLACEMENTS = (_a = {},\n _a[LEFT] = RIGHT,\n _a[RIGHT] = LEFT,\n _a);\nvar VALUE_REPLACEMENTS = {\n 'w-resize': 'e-resize',\n 'sw-resize': 'se-resize',\n 'nw-resize': 'ne-resize'\n};\nvar _rtl = getRTL();\n/**\n * Sets the current RTL value.\n */\nexport function setRTL(isRTL) {\n if (_rtl !== isRTL) {\n Stylesheet.getInstance().resetKeys();\n _rtl = isRTL;\n }\n}\n/**\n * Gets the current RTL value.\n */\nexport function getRTL() {\n if (_rtl === undefined) {\n _rtl = typeof document !== 'undefined' && !!document.documentElement && document.documentElement.getAttribute('dir') === 'rtl';\n }\n return _rtl;\n}\n/**\n * RTLifies the rulePair in the array at the current index. This mutates the array for performance\n * reasons.\n */\nexport function rtlifyRules(rulePairs, index) {\n if (getRTL()) {\n var name_1 = rulePairs[index];\n if (!name_1) {\n return;\n }\n var value = rulePairs[index + 1];\n if (typeof value === 'string' && value.indexOf(NO_FLIP) >= 0) {\n rulePairs[index + 1] = value.replace(/\\s*(?:\\/\\*\\s*)?\\@noflip\\b(?:\\s*\\*\\/)?\\s*?/g, '');\n }\n else if (name_1.indexOf(LEFT) >= 0) {\n rulePairs[index] = name_1.replace(LEFT, RIGHT);\n }\n else if (name_1.indexOf(RIGHT) >= 0) {\n rulePairs[index] = name_1.replace(RIGHT, LEFT);\n }\n else if (String(value).indexOf(LEFT) >= 0) {\n rulePairs[index + 1] = value.replace(LEFT, RIGHT);\n }\n else if (String(value).indexOf(RIGHT) >= 0) {\n rulePairs[index + 1] = value.replace(RIGHT, LEFT);\n }\n else if (NAME_REPLACEMENTS[name_1]) {\n rulePairs[index] = NAME_REPLACEMENTS[name_1];\n }\n else if (VALUE_REPLACEMENTS[value]) {\n rulePairs[index + 1] = VALUE_REPLACEMENTS[value];\n }\n else {\n switch (name_1) {\n case 'margin':\n case 'padding':\n rulePairs[index + 1] = flipQuad(value);\n break;\n case 'box-shadow':\n rulePairs[index + 1] = negateNum(value, 0);\n break;\n }\n }\n }\n}\n/**\n * Given a string value in a space delimited format (e.g. \"1 2 3 4\"), negates a particular value.\n */\nfunction negateNum(value, partIndex) {\n var parts = value.split(' ');\n var numberVal = parseInt(parts[partIndex], 10);\n parts[0] = parts[0].replace(String(numberVal), String(numberVal * -1));\n return parts.join(' ');\n}\n/**\n * Given a string quad, flips the left and right values.\n */\nfunction flipQuad(value) {\n if (typeof value === 'string') {\n var parts = value.split(' ');\n if (parts.length === 4) {\n return parts[0] + \" \" + parts[3] + \" \" + parts[2] + \" \" + parts[1];\n }\n }\n return value;\n}\nvar _a;\n//# sourceMappingURL=rtlifyRules.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "index": 375, - "index2": 374, - "size": 2327, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "l6cK", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "52:34-48" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeStyleSets", - "loc": "2:0-50" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mergeStyleSets", - "loc": "2:0-50" - } - ], - "usedExports": [ - "mergeStyleSets" - ], - "providedExports": [ - "mergeStyleSets" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { extractStyleParts } from './extractStyleParts';\nimport { concatStyleSets } from './concatStyleSets';\nimport { styleToRegistration, applyRegistration } from './styleToClassName';\n/**\n * Takes in one or more style set objects, each consisting of a set of areas,\n * each which will produce a class name. Using this is analogous to calling\n * `mergeStyles` for each property in the object, but ensures we maintain the\n * set ordering when multiple style sets are merged.\n *\n * @param styleSets - One or more style sets to be merged.\n */\nexport function mergeStyleSets() {\n var styleSets = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styleSets[_i] = arguments[_i];\n }\n // tslint:disable-next-line:no-any\n var classNameSet = { subComponentStyles: {} };\n var classMap = {};\n var styleSet = styleSets[0];\n if (!styleSet && styleSets.length <= 1) {\n return { subComponentStyles: {} };\n }\n var concatenatedStyleSet = \n // we have guarded against falsey values just above.\n styleSet;\n concatenatedStyleSet = concatStyleSets.apply(void 0, styleSets);\n var registrations = [];\n for (var styleSetArea in concatenatedStyleSet) {\n if (concatenatedStyleSet.hasOwnProperty(styleSetArea)) {\n if (styleSetArea === 'subComponentStyles') {\n classNameSet.subComponentStyles = concatenatedStyleSet.subComponentStyles || {};\n continue;\n }\n var styles = concatenatedStyleSet[styleSetArea];\n var _a = extractStyleParts(styles), classes = _a.classes, objects = _a.objects;\n var registration = styleToRegistration({ displayName: styleSetArea }, objects);\n registrations.push(registration);\n if (registration) {\n classMap[styleSetArea] = registration.className;\n // as any cast not needed in ts >=2.9\n classNameSet[styleSetArea] = classes.concat([registration.className]).join(' ');\n }\n }\n }\n for (var _b = 0, registrations_1 = registrations; _b < registrations_1.length; _b++) {\n var registration = registrations_1[_b];\n if (registration) {\n applyRegistration(registration, classMap);\n }\n }\n return classNameSet;\n}\n//# sourceMappingURL=mergeStyleSets.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "index": 393, - "index2": 379, - "size": 726, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "l6cK", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "9:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "13:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "40:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "41:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "45:19-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "49:20-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "53:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "57:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "61:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "61:17-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "130:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "136:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "142:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "148:11-20" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./keyframes", - "loc": "5:0-40" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./keyframes", - "loc": "5:0-40" - } - ], - "usedExports": [ - "keyframes" - ], - "providedExports": [ - "keyframes" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { Stylesheet } from './Stylesheet';\nimport { serializeRuleEntries } from './styleToClassName';\n/**\n * Registers keyframe definitions.\n *\n * @public\n */\nexport function keyframes(timeline) {\n var stylesheet = Stylesheet.getInstance();\n var name = stylesheet.getClassName();\n var rulesArray = [];\n for (var prop in timeline) {\n if (timeline.hasOwnProperty(prop)) {\n rulesArray.push(prop, '{', serializeRuleEntries(timeline[prop]), '}');\n }\n }\n var rules = rulesArray.join('');\n stylesheet.insertRule(\"@keyframes \" + name + \"{\" + rules + \"}\", true);\n stylesheet.cacheClassName(name, rules, [], ['keyframes', rules]);\n return name;\n}\n//# sourceMappingURL=keyframes.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "index": 394, - "index2": 380, - "size": 600, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "l6cK", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "6:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "16:20-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "19:26-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "29:19-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "119:39-50" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeStyles", - "loc": "1:0-44" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mergeStyles", - "loc": "1:0-44" - } - ], - "usedExports": [ - "mergeStyles" - ], - "providedExports": [ - "mergeStyles" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { styleToClassName } from './styleToClassName';\nimport { extractStyleParts } from './extractStyleParts';\n/**\n * Concatination helper, which can merge class names together. Skips over falsey values.\n *\n * @public\n */\nexport function mergeStyles() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var _a = extractStyleParts(args), classes = _a.classes, objects = _a.objects;\n if (objects.length) {\n classes.push(styleToClassName(objects));\n }\n return classes.join(' ');\n}\n//# sourceMappingURL=mergeStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "index": 397, - "index2": 384, - "size": 315, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "l6cK", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "11:4-12" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "115:20-28" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fontFace", - "loc": "4:0-38" - }, - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./fontFace", - "loc": "4:0-38" - } - ], - "usedExports": [ - "fontFace" - ], - "providedExports": [ - "fontFace" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { Stylesheet } from './Stylesheet';\nimport { serializeRuleEntries } from './styleToClassName';\n/**\n * Registers a font face.\n * @public\n */\nexport function fontFace(font) {\n Stylesheet.getInstance().insertRule(\"@font-face{\" + serializeRuleEntries(font) + \"}\", true);\n}\n//# sourceMappingURL=fontFace.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultSpacing.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultSpacing.js", - "index": 419, - "index2": 406, - "size": 151, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultSpacing", - "loc": "5:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "./DefaultSpacing", - "loc": "134:38-52" - } - ], - "usedExports": [ - "DefaultSpacing" - ], - "providedExports": [ - "DefaultSpacing" - ], - "optimizationBailout": [], - "depth": 10, - "source": "export var DefaultSpacing = {\n s2: '4px',\n s1: '8px',\n m: '16px',\n l1: '20px',\n l2: '32px'\n};\n//# sourceMappingURL=DefaultSpacing.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "index": 421, - "index2": 408, - "size": 336, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultEffects", - "loc": "7:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "./DefaultEffects", - "loc": "135:38-52" - } - ], - "usedExports": [ - "DefaultEffects" - ], - "providedExports": [ - "DefaultEffects" - ], - "optimizationBailout": [], - "depth": 10, - "source": "export var DefaultEffects = {\n // commented values are the defaults for Fluent\n elevation4: '0 0 5px 0 rgba(0,0,0,.4)',\n elevation8: '0 0 5px 0 rgba(0,0,0,.4)',\n elevation16: '0 0 5px 0 rgba(0,0,0,.4)',\n elevation64: '0 0 5px 0 rgba(0,0,0,.4)',\n roundedCorner2: '0px' // 2\n};\n//# sourceMappingURL=DefaultEffects.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "index": 597, - "index2": 624, - "size": 13721, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "issuerId": "bgSp", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony import specifier", - "userRequest": "./Modal.base", - "loc": "4:26-35" - }, - { - "moduleId": "bgSp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal.base", - "loc": "2:0-29" - }, - { - "moduleId": "bgSp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Modal.base", - "loc": "2:0-29" - } - ], - "usedExports": [ - "ModalBase" - ], - "providedExports": [ - "ModalBase" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseComponent, classNamesFunction, getId, allowScrollOnElement, KeyCodes } from '../../Utilities';\nimport { FocusTrapZone } from '../FocusTrapZone/index';\nimport { animationDuration } from './Modal.styles';\nimport { Overlay } from '../../Overlay';\nimport { Layer } from '../../Layer';\nimport { Popup } from '../Popup/index';\nimport { withResponsiveMode, ResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nimport { DirectionalHint } from '../Callout/index';\nimport { Icon } from '../Icon/index';\nimport { DraggableZone } from '../../utilities/DraggableZone/index';\n// @TODO - need to change this to a panel whenever the breakpoint is under medium (verify the spec)\nvar DefaultLayerProps = {\n eventBubblingEnabled: false\n};\nvar getClassNames = classNamesFunction();\nvar ModalBase = /** @class */ (function (_super) {\n tslib_1.__extends(ModalBase, _super);\n function ModalBase(props) {\n var _this = _super.call(this, props) || this;\n _this._focusTrapZone = React.createRef();\n // Allow the user to scroll within the modal but not on the body\n _this._allowScrollOnModal = function (elt) {\n if (elt) {\n allowScrollOnElement(elt, _this._events);\n }\n else {\n _this._events.off(_this._scrollableContent);\n }\n _this._scrollableContent = elt;\n };\n _this._onModalContextMenuClose = function () {\n _this.setState({ isModalMenuOpen: false });\n };\n _this._onModalClose = function () {\n _this._lastSetX = 0;\n _this._lastSetY = 0;\n _this.setState({\n isModalMenuOpen: false,\n isInKeyboardMoveMode: false,\n isOpen: false,\n x: 0,\n y: 0\n });\n // Call the onDismiss callback\n if (_this.props.onDismissed) {\n _this.props.onDismissed();\n }\n };\n _this._onDragStart = function () {\n _this.setState({ isModalMenuOpen: false, isInKeyboardMoveMode: false });\n };\n _this._onDrag = function (_, ui) {\n var _a = _this.state, x = _a.x, y = _a.y;\n _this.setState({ x: x + ui.delta.x, y: y + ui.delta.y });\n };\n _this._onDragStop = function () {\n _this.focus();\n };\n _this._onDialogKeyUp = function (event) {\n // Need to handle the CTRL + ALT + SPACE key during keyup due to FireFox bug:\n // https://bugzilla.mozilla.org/show_bug.cgi?id=1220143\n // Otherwise it would continue to fire a click even if the event was cancelled\n // during mouseDown.\n if (event.altKey && event.ctrlKey && event.keyCode === KeyCodes.space) {\n _this.setState({ isModalMenuOpen: !_this.state.isModalMenuOpen });\n event.preventDefault();\n event.stopPropagation();\n }\n };\n _this._onDialogKeyDown = function (event) {\n if (event.altKey && event.ctrlKey && event.keyCode === KeyCodes.space) {\n // CTRL + ALT + SPACE is handled during keyUp\n event.preventDefault();\n event.stopPropagation();\n return;\n }\n if (_this.state.isModalMenuOpen && (event.altKey || event.keyCode === KeyCodes.escape)) {\n _this.setState({ isModalMenuOpen: false });\n }\n if (_this.state.isInKeyboardMoveMode && (event.keyCode === KeyCodes.escape || event.keyCode === KeyCodes.enter)) {\n _this.setState({ isInKeyboardMoveMode: false });\n event.preventDefault();\n event.stopPropagation();\n }\n if (_this.state.isInKeyboardMoveMode) {\n var handledEvent = true;\n var delta = _this._getMoveDelta(event);\n switch (event.keyCode) {\n case KeyCodes.escape:\n _this.setState({ x: _this._lastSetX, y: _this._lastSetY });\n case KeyCodes.enter: {\n _this._lastSetX = 0;\n _this._lastSetY = 0;\n _this.setState({ isInKeyboardMoveMode: false });\n break;\n }\n case KeyCodes.up: {\n _this.setState({\n y: _this.state.y - delta\n });\n break;\n }\n case KeyCodes.down: {\n _this.setState({\n y: _this.state.y + delta\n });\n break;\n }\n case KeyCodes.left: {\n _this.setState({\n x: _this.state.x - delta\n });\n break;\n }\n case KeyCodes.right: {\n _this.setState({\n x: _this.state.x + delta\n });\n break;\n }\n default: {\n handledEvent = false;\n }\n }\n if (handledEvent) {\n event.preventDefault();\n event.stopPropagation();\n }\n }\n };\n _this._onEnterKeyboardMoveMode = function () {\n _this._lastSetX = _this.state.x;\n _this._lastSetY = _this.state.y;\n _this.setState({ isInKeyboardMoveMode: true, isModalMenuOpen: false });\n };\n _this._onExitKeyboardMoveMode = function () {\n _this._lastSetX = 0;\n _this._lastSetY = 0;\n _this.setState({ isInKeyboardMoveMode: false });\n };\n _this.state = {\n id: getId('Modal'),\n isOpen: props.isOpen,\n isVisible: props.isOpen,\n hasBeenOpened: props.isOpen,\n x: 0,\n y: 0\n };\n _this._lastSetX = 0;\n _this._lastSetY = 0;\n _this._warnDeprecations({\n onLayerDidMount: 'layerProps.onLayerDidMount'\n });\n return _this;\n }\n ModalBase.prototype.componentWillReceiveProps = function (newProps) {\n clearTimeout(this._onModalCloseTimer);\n // Opening the dialog\n if (newProps.isOpen) {\n if (!this.state.isOpen) {\n // First Open\n this.setState({\n isOpen: true\n });\n }\n else {\n // Modal has been opened\n // Reopen during closing\n this.setState({\n hasBeenOpened: true,\n isVisible: true\n });\n if (newProps.topOffsetFixed) {\n var dialogMain = document.getElementsByClassName('ms-Dialog-main');\n var modalRectangle = void 0;\n if (dialogMain.length > 0) {\n modalRectangle = dialogMain[0].getBoundingClientRect();\n this.setState({\n modalRectangleTop: modalRectangle.top\n });\n }\n }\n }\n }\n // Closing the dialog\n if (!newProps.isOpen && this.state.isOpen) {\n this._onModalCloseTimer = this._async.setTimeout(this._onModalClose, parseFloat(animationDuration) * 1000);\n this.setState({\n isVisible: false\n });\n }\n };\n ModalBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n if (!prevProps.isOpen && !prevState.isVisible) {\n this.setState({\n isVisible: true\n });\n }\n };\n ModalBase.prototype.render = function () {\n var _a = this.props, className = _a.className, containerClassName = _a.containerClassName, scrollableContentClassName = _a.scrollableContentClassName, elementToFocusOnDismiss = _a.elementToFocusOnDismiss, firstFocusableSelector = _a.firstFocusableSelector, forceFocusInsideTrap = _a.forceFocusInsideTrap, ignoreExternalFocusing = _a.ignoreExternalFocusing, isBlocking = _a.isBlocking, isClickableOutsideFocusTrap = _a.isClickableOutsideFocusTrap, isDarkOverlay = _a.isDarkOverlay, onDismiss = _a.onDismiss, layerProps = _a.layerProps, responsiveMode = _a.responsiveMode, titleAriaId = _a.titleAriaId, styles = _a.styles, subtitleAriaId = _a.subtitleAriaId, theme = _a.theme, topOffsetFixed = _a.topOffsetFixed, onLayerDidMount = _a.onLayerDidMount, isModeless = _a.isModeless, dragOptions = _a.dragOptions;\n var _b = this.state, isOpen = _b.isOpen, isVisible = _b.isVisible, hasBeenOpened = _b.hasBeenOpened, modalRectangleTop = _b.modalRectangleTop, x = _b.x, y = _b.y, isInKeyboardMoveMode = _b.isInKeyboardMoveMode;\n if (!isOpen) {\n return null;\n }\n var layerClassName = layerProps === undefined ? '' : layerProps.className;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n containerClassName: containerClassName,\n scrollableContentClassName: scrollableContentClassName,\n isOpen: isOpen,\n isVisible: isVisible,\n hasBeenOpened: hasBeenOpened,\n modalRectangleTop: modalRectangleTop,\n topOffsetFixed: topOffsetFixed,\n isModeless: isModeless,\n layerClassName: layerClassName,\n isDefaultDragHandle: dragOptions && !dragOptions.dragHandleSelector\n });\n var mergedLayerProps = tslib_1.__assign({}, DefaultLayerProps, this.props.layerProps, { onLayerDidMount: layerProps && layerProps.onLayerDidMount ? layerProps.onLayerDidMount : onLayerDidMount, insertFirst: isModeless, className: classNames.layer });\n var modalContent = (React.createElement(FocusTrapZone, { componentRef: this._focusTrapZone, className: classNames.main, elementToFocusOnDismiss: elementToFocusOnDismiss, isClickableOutsideFocusTrap: isModeless || isClickableOutsideFocusTrap || !isBlocking, ignoreExternalFocusing: ignoreExternalFocusing, forceFocusInsideTrap: isModeless ? !isModeless : forceFocusInsideTrap, firstFocusableSelector: firstFocusableSelector, focusPreviouslyFocusedInnerElement: true, onKeyDown: dragOptions ? this._onDialogKeyDown : undefined, onKeyUp: dragOptions ? this._onDialogKeyUp : undefined, onBlur: isInKeyboardMoveMode ? this._onExitKeyboardMoveMode : undefined },\n dragOptions && isInKeyboardMoveMode && (React.createElement(\"div\", { className: classNames.keyboardMoveIconContainer }, dragOptions.keyboardMoveIconProps ? (React.createElement(Icon, tslib_1.__assign({}, dragOptions.keyboardMoveIconProps))) : (React.createElement(Icon, { iconName: \"move\", className: classNames.keyboardMoveIcon })))),\n React.createElement(\"div\", { ref: this._allowScrollOnModal, className: classNames.scrollableContent, \"data-is-scrollable\": true },\n dragOptions && this.state.isModalMenuOpen && (React.createElement(dragOptions.menu, { items: [\n { key: 'move', text: dragOptions.moveMenuItemText, onClick: this._onEnterKeyboardMoveMode },\n { key: 'close', text: dragOptions.closeMenuItemText, onClick: this._onModalClose }\n ], onDismiss: this._onModalContextMenuClose, alignTargetEdge: true, coverTarget: true, directionalHint: DirectionalHint.topLeftEdge, directionalHintFixed: true, shouldFocusOnMount: true, target: this._scrollableContent })),\n this.props.children)));\n // @temp tuatology - Will adjust this to be a panel at certain breakpoints\n if (responsiveMode >= ResponsiveMode.small) {\n return (React.createElement(Layer, tslib_1.__assign({}, mergedLayerProps),\n React.createElement(Popup, { role: isModeless || !isBlocking ? 'dialog' : 'alertdialog', \"aria-modal\": !isModeless, ariaLabelledBy: titleAriaId, ariaDescribedBy: subtitleAriaId, onDismiss: onDismiss },\n React.createElement(\"div\", { className: classNames.root },\n !isModeless && React.createElement(Overlay, { isDarkThemed: isDarkOverlay, onClick: isBlocking ? undefined : onDismiss }),\n dragOptions ? (React.createElement(DraggableZone, { handleSelector: dragOptions.dragHandleSelector || \".\" + classNames.main.split(' ')[0], preventDragSelector: \"button\", onStart: this._onDragStart, onDragChange: this._onDrag, onStop: this._onDragStop, position: { x: x, y: y } }, modalContent)) : (modalContent)))));\n }\n return null;\n };\n ModalBase.prototype.focus = function () {\n if (this._focusTrapZone.current) {\n this._focusTrapZone.current.focus();\n }\n };\n ModalBase.prototype._getMoveDelta = function (event) {\n var delta = 10;\n if (event.shiftKey) {\n if (!event.ctrlKey) {\n delta = 50;\n }\n }\n else if (event.ctrlKey) {\n delta = 1;\n }\n return delta;\n };\n ModalBase.defaultProps = {\n isOpen: false,\n isDarkOverlay: true,\n isBlocking: false,\n className: '',\n containerClassName: ''\n };\n ModalBase = tslib_1.__decorate([\n withResponsiveMode\n ], ModalBase);\n return ModalBase;\n}(BaseComponent));\nexport { ModalBase };\n//# sourceMappingURL=Modal.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "index": 596, - "index2": 625, - "size": 245, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "issuerId": "bgSp", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Modal", - "loc": "90:36-41" - }, - { - "moduleId": "3xoV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./components/Modal/index", - "loc": "2:0-60" - }, - { - "moduleId": "bgSp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal", - "loc": "1:0-24" - }, - { - "moduleId": "bgSp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Modal", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Modal" - ], - "providedExports": [ - "Modal" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { styled } from '../../Utilities';\nimport { ModalBase } from './Modal.base';\nimport { getStyles } from './Modal.styles';\nexport var Modal = styled(ModalBase, getStyles, undefined, {\n scope: 'Modal'\n});\n//# sourceMappingURL=Modal.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "index": 659, - "index2": 648, - "size": 7345, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.classNames", - "loc": "3:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../ContextualMenu.classNames", - "loc": "5:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.classNames", - "loc": "7:63-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.classNames", - "loc": "14:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenu.classNames", - "loc": "123:83-122" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.classNames", - "loc": "550:76-89" - } - ], - "usedExports": [ - "getItemStyles", - "getSplitButtonVerticalDividerClassNames" - ], - "providedExports": [ - "getSplitButtonVerticalDividerClassNames", - "getItemClassNames", - "getItemStyles" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { getDividerClassNames } from '../Divider/VerticalDivider.classNames';\nimport { getMenuItemStyles } from './ContextualMenu.cnstyles';\nimport { mergeStyleSets, getGlobalClassNames, getScreenSelector, ScreenWidthMaxMedium } from '../../Styling';\nimport { memoizeFunction, IsFocusVisibleClassName } from '../../Utilities';\nvar MediumScreenSelector = getScreenSelector(0, ScreenWidthMaxMedium);\nexport var getSplitButtonVerticalDividerClassNames = memoizeFunction(function (theme) {\n return mergeStyleSets(getDividerClassNames(theme), {\n wrapper: {\n position: 'absolute',\n right: 28,\n selectors: (_a = {},\n _a[MediumScreenSelector] = {\n right: 32 // fontSize of the icon increased from 12px to 16px\n },\n _a)\n },\n divider: {\n height: 16,\n width: 1\n }\n });\n var _a;\n});\nvar GlobalClassNames = {\n item: 'ms-ContextualMenu-item',\n divider: 'ms-ContextualMenu-divider',\n root: 'ms-ContextualMenu-link',\n isChecked: 'is-checked',\n isExpanded: 'is-expanded',\n isDisabled: 'is-disabled',\n linkContent: 'ms-ContextualMenu-linkContent',\n linkContentMenu: 'ms-ContextualMenu-linkContent',\n icon: 'ms-ContextualMenu-icon',\n iconColor: 'ms-ContextualMenu-iconColor',\n checkmarkIcon: 'ms-ContextualMenu-checkmarkIcon',\n subMenuIcon: 'ms-ContextualMenu-submenuIcon',\n label: 'ms-ContextualMenu-itemText',\n secondaryText: 'ms-ContextualMenu-secondaryText'\n};\n/**\n * @deprecated To be removed in 7.0.\n * @internal\n * This is a package-internal method that has been depended on.\n * It is being kept in this form for backwards compatibility.\n * It should be cleaned up in 7.0.\n *\n * TODO: Audit perf. impact of and potentially remove memoizeFunction.\n * https://github.com/OfficeDev/office-ui-fabric-react/issues/5534\n */\nexport var getItemClassNames = memoizeFunction(function (theme, disabled, expanded, checked, isAnchorLink, knownIcon, itemClassName, dividerClassName, iconClassName, subMenuClassName, primaryDisabled, className) {\n var styles = getMenuItemStyles(theme);\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return mergeStyleSets({\n item: [classNames.item, styles.item, itemClassName],\n divider: [classNames.divider, styles.divider, dividerClassName],\n root: [\n classNames.root,\n styles.root,\n checked && [classNames.isChecked, styles.rootChecked],\n isAnchorLink && styles.anchorLink,\n expanded && [classNames.isExpanded, styles.rootExpanded],\n disabled && [classNames.isDisabled, styles.rootDisabled],\n !disabled &&\n !expanded && [\n {\n selectors: (_a = {\n ':hover': styles.rootHovered,\n ':active': styles.rootPressed\n },\n _a[\".\" + IsFocusVisibleClassName + \" &:focus, .\" + IsFocusVisibleClassName + \" &:focus:hover\"] = styles.rootFocused,\n _a[\".\" + IsFocusVisibleClassName + \" &:hover\"] = { background: 'inherit;' },\n _a)\n }\n ],\n className\n ],\n splitPrimary: [\n styles.root,\n checked && ['is-checked', styles.rootChecked],\n (disabled || primaryDisabled) && ['is-disabled', styles.rootDisabled],\n !(disabled || primaryDisabled) &&\n !checked && [\n {\n selectors: (_b = {\n ':hover': styles.rootHovered,\n ':hover ~ $splitMenu': styles.rootHovered,\n ':active': styles.rootPressed\n },\n _b[\".\" + IsFocusVisibleClassName + \" &:focus, .\" + IsFocusVisibleClassName + \" &:focus:hover\"] = styles.rootFocused,\n _b[\".\" + IsFocusVisibleClassName + \" &:hover\"] = { background: 'inherit;' },\n _b)\n }\n ]\n ],\n splitMenu: [\n styles.root,\n {\n flexBasis: '0',\n padding: '0 8px',\n minWidth: 28\n },\n expanded && ['is-expanded', styles.rootExpanded],\n disabled && ['is-disabled', styles.rootDisabled],\n !disabled &&\n !expanded && [\n {\n selectors: (_c = {\n ':hover': styles.rootHovered,\n ':active': styles.rootPressed\n },\n _c[\".\" + IsFocusVisibleClassName + \" &:focus, .\" + IsFocusVisibleClassName + \" &:focus:hover\"] = styles.rootFocused,\n _c[\".\" + IsFocusVisibleClassName + \" &:hover\"] = { background: 'inherit;' },\n _c)\n }\n ]\n ],\n anchorLink: styles.anchorLink,\n linkContent: [classNames.linkContent, styles.linkContent],\n linkContentMenu: [\n classNames.linkContentMenu,\n styles.linkContent,\n {\n justifyContent: 'center'\n }\n ],\n icon: [\n classNames.icon,\n knownIcon && styles.iconColor,\n styles.icon,\n iconClassName,\n disabled && [classNames.isDisabled, styles.iconDisabled]\n ],\n iconColor: styles.iconColor,\n checkmarkIcon: [classNames.checkmarkIcon, knownIcon && styles.checkmarkIcon, styles.icon, iconClassName],\n subMenuIcon: [classNames.subMenuIcon, styles.subMenuIcon, subMenuClassName],\n label: [classNames.label, styles.label],\n secondaryText: [classNames.secondaryText, styles.secondaryText],\n splitContainer: [\n styles.splitButtonFlexContainer,\n {\n alignItems: 'flex-start'\n },\n !disabled &&\n !checked && [\n {\n selectors: (_d = {},\n _d[\".\" + IsFocusVisibleClassName + \" &:focus, .\" + IsFocusVisibleClassName + \" &:focus:hover\"] = styles.rootFocused,\n _d)\n }\n ]\n ]\n });\n var _a, _b, _c, _d;\n});\n/**\n * Wrapper function for generating ContextualMenuItem classNames which adheres to\n * the getStyles API, but invokes memoized className generator function with\n * primitive values.\n *\n * @param props the ContextualMenuItem style props used to generate its styles.\n */\nexport var getItemStyles = function (props) {\n var theme = props.theme, disabled = props.disabled, expanded = props.expanded, checked = props.checked, isAnchorLink = props.isAnchorLink, knownIcon = props.knownIcon, itemClassName = props.itemClassName, dividerClassName = props.dividerClassName, iconClassName = props.iconClassName, subMenuClassName = props.subMenuClassName, primaryDisabled = props.primaryDisabled, className = props.className;\n return getItemClassNames(theme, disabled, expanded, checked, isAnchorLink, knownIcon, itemClassName, dividerClassName, iconClassName, subMenuClassName, primaryDisabled, className);\n};\n//# sourceMappingURL=ContextualMenu.classNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "index": 666, - "index2": 653, - "size": 6804, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "//Os", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "H+sk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipManager", - "loc": "4:0-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipManager", - "loc": "14:31-44" - } - ], - "usedExports": [ - "KeytipManager" - ], - "providedExports": [ - "KeytipManager" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import * as tslib_1 from \"tslib\";\nimport { arraysEqual, replaceElement, findIndex, find, EventGroup, getId } from '../../Utilities';\nimport { KeytipEvents } from '../../utilities/keytips/KeytipConstants';\n/**\n * This class is responsible for handling registering, updating, and unregistering of keytips\n */\nvar KeytipManager = /** @class */ (function () {\n function KeytipManager() {\n this.keytips = [];\n this.persistedKeytips = [];\n // This is (and should be) updated and kept in sync\n // with the inKeytipMode in KeytipLayer.\n this.inKeytipMode = false;\n // Boolean that gets checked before entering keytip mode by the KeytipLayer\n // Used for an override in special cases (e.g. Disable entering keytip mode when a modal is shown)\n this.shouldEnterKeytipMode = true;\n }\n /**\n * Static function to get singleton KeytipManager instance\n *\n * @returns {KeytipManager} Singleton KeytipManager instance\n */\n KeytipManager.getInstance = function () {\n return this._instance;\n };\n /**\n * Registers a keytip\n *\n * @param keytipProps - Keytip to register\n * @param persisted - T/F if this keytip should be persisted, default is false\n * @returns {string} Unique ID for this keytip\n */\n KeytipManager.prototype.register = function (keytipProps, persisted) {\n if (persisted === void 0) { persisted = false; }\n var props = keytipProps;\n if (!persisted) {\n // Add the overflowSetSequence if necessary\n props = this.addParentOverflow(keytipProps);\n }\n // Create a unique keytip\n var uniqueKeytip = this._getUniqueKtp(props);\n // Add to array\n persisted ? this.persistedKeytips.push(uniqueKeytip) : this.keytips.push(uniqueKeytip);\n var event = persisted ? KeytipEvents.PERSISTED_KEYTIP_ADDED : KeytipEvents.KEYTIP_ADDED;\n EventGroup.raise(this, event, {\n keytip: props,\n uniqueID: uniqueKeytip.uniqueID\n });\n return uniqueKeytip.uniqueID;\n };\n /**\n * Update a keytip\n *\n * @param keytipProps - Keytip to update\n * @param uniqueID - Unique ID of this keytip\n */\n KeytipManager.prototype.update = function (keytipProps, uniqueID) {\n var newKeytipProps = this.addParentOverflow(keytipProps);\n var uniqueKeytip = this._getUniqueKtp(newKeytipProps, uniqueID);\n var keytipIndex = findIndex(this.keytips, function (ktp) {\n return ktp.uniqueID === uniqueID;\n });\n if (keytipIndex >= 0) {\n // Update everything except 'visible'\n uniqueKeytip.keytip.visible = this.keytips[keytipIndex].keytip.visible;\n // Update keytip in this.keytips\n this.keytips = replaceElement(this.keytips, uniqueKeytip, keytipIndex);\n // Raise event\n EventGroup.raise(this, KeytipEvents.KEYTIP_UPDATED, {\n keytip: uniqueKeytip.keytip,\n uniqueID: uniqueKeytip.uniqueID\n });\n }\n };\n /**\n * Unregisters a keytip\n *\n * @param keytipToRemove - IKeytipProps of the keytip to remove\n * @param uniqueID - Unique ID of this keytip\n * @param persisted - T/F if this keytip should be persisted, default is false\n */\n KeytipManager.prototype.unregister = function (keytipToRemove, uniqueID, persisted) {\n if (persisted === void 0) { persisted = false; }\n if (persisted) {\n // Remove keytip from this.persistedKeytips\n this.persistedKeytips = this.persistedKeytips.filter(function (uniqueKtp) {\n return uniqueKtp.uniqueID !== uniqueID;\n });\n }\n else {\n // Remove keytip from this.keytips\n this.keytips = this.keytips.filter(function (uniqueKtp) {\n return uniqueKtp.uniqueID !== uniqueID;\n });\n }\n var event = persisted ? KeytipEvents.PERSISTED_KEYTIP_REMOVED : KeytipEvents.KEYTIP_REMOVED;\n EventGroup.raise(this, event, {\n keytip: keytipToRemove,\n uniqueID: uniqueID\n });\n };\n /**\n * Manual call to enter keytip mode\n */\n KeytipManager.prototype.enterKeytipMode = function () {\n EventGroup.raise(this, KeytipEvents.ENTER_KEYTIP_MODE);\n };\n /**\n * Manual call to exit keytip mode\n */\n KeytipManager.prototype.exitKeytipMode = function () {\n EventGroup.raise(this, KeytipEvents.EXIT_KEYTIP_MODE);\n };\n /**\n * Gets all IKeytipProps from this.keytips\n *\n * @returns {IKeytipProps[]} All keytips stored in the manager\n */\n KeytipManager.prototype.getKeytips = function () {\n return this.keytips.map(function (uniqueKeytip) {\n return uniqueKeytip.keytip;\n });\n };\n /**\n * Adds the overflowSetSequence to the keytipProps if its parent keytip also has it\n *\n * @param keytipProps - Keytip props to add overflowSetSequence to if necessary\n * @returns {IKeytipProps} - Modified keytip props, if needed to be modified\n */\n KeytipManager.prototype.addParentOverflow = function (keytipProps) {\n var fullSequence = keytipProps.keySequences.slice();\n fullSequence.pop();\n if (fullSequence.length !== 0) {\n var parentKeytip = find(this.getKeytips(), function (keytip) {\n return arraysEqual(fullSequence, keytip.keySequences);\n });\n if (parentKeytip && parentKeytip.overflowSetSequence) {\n return tslib_1.__assign({}, keytipProps, { overflowSetSequence: parentKeytip.overflowSetSequence });\n }\n }\n return keytipProps;\n };\n /**\n * Public function to bind for overflow items that have a submenu\n *\n * @param overflowButtonSequences\n * @param keytipSequences\n */\n KeytipManager.prototype.menuExecute = function (overflowButtonSequences, keytipSequences) {\n EventGroup.raise(this, KeytipEvents.PERSISTED_KEYTIP_EXECUTE, {\n overflowButtonSequences: overflowButtonSequences,\n keytipSequences: keytipSequences\n });\n };\n /**\n * Creates an IUniqueKeytip object\n *\n * @param keytipProps - IKeytipProps\n * @param uniqueID - Unique ID, will default to the next unique ID if not passed\n * @returns {IUniqueKeytip} IUniqueKeytip object\n */\n KeytipManager.prototype._getUniqueKtp = function (keytipProps, uniqueID) {\n if (uniqueID === void 0) { uniqueID = getId(); }\n return { keytip: tslib_1.__assign({}, keytipProps), uniqueID: uniqueID };\n };\n KeytipManager._instance = new KeytipManager();\n return KeytipManager;\n}());\nexport { KeytipManager };\n//# sourceMappingURL=KeytipManager.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "index": 669, - "index2": 654, - "size": 2520, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "//Os", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "H+sk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "5:0-104" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "52:34-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "55:31-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipUtils", - "loc": "57:24-37" - } - ], - "usedExports": [ - "getAriaDescribedBy", - "mergeOverflows", - "sequencesToID" - ], - "providedExports": [ - "sequencesToID", - "mergeOverflows", - "ktpTargetFromSequences", - "ktpTargetFromId", - "getAriaDescribedBy" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { KTP_SEPARATOR, KTP_PREFIX, DATAKTP_TARGET, DATAKTP_EXECUTE_TARGET, KTP_LAYER_ID } from './KeytipConstants';\nimport { addElementAtIndex } from '../../Utilities';\n/**\n * Converts a whole set of KeySequences into one keytip ID, which will be the ID for the last keytip sequence specified\n * keySequences should not include the initial keytip 'start' sequence.\n *\n * @param keySequences - Full path of IKeySequences for one keytip.\n * @returns {string} String to use for the keytip ID.\n */\nexport function sequencesToID(keySequences) {\n return keySequences.reduce(function (prevValue, keySequence) {\n return prevValue + KTP_SEPARATOR + keySequence.split('').join(KTP_SEPARATOR);\n }, KTP_PREFIX);\n}\n/**\n * Merges an overflow sequence with a key sequence.\n *\n * @param keySequences - Full sequence for one keytip.\n * @param overflowKeySequences - Full overflow keytip sequence.\n * @returns {string[]} Sequence that will be used by the keytip when in the overflow.\n */\nexport function mergeOverflows(keySequences, overflowKeySequences) {\n var overflowSequenceLen = overflowKeySequences.length;\n var overflowSequence = overflowKeySequences.slice().pop();\n var newKeySequences = keySequences.slice();\n return addElementAtIndex(newKeySequences, overflowSequenceLen - 1, overflowSequence);\n}\n/**\n * Constructs the data-ktp-target attribute selector from a full key sequence.\n *\n * @param keySequences - Full string[] for a Keytip.\n * @returns {string} String selector to use to query for the keytip target.\n */\nexport function ktpTargetFromSequences(keySequences) {\n return '[' + DATAKTP_TARGET + '=\"' + sequencesToID(keySequences) + '\"]';\n}\n/**\n * Constructs the data-ktp-execute-target attribute selector from a keytip ID.\n *\n * @param keytipId - ID of the Keytip.\n * @returns {string} String selector to use to query for the keytip execute target.\n */\nexport function ktpTargetFromId(keytipId) {\n return '[' + DATAKTP_EXECUTE_TARGET + '=\"' + keytipId + '\"]';\n}\n/**\n * Gets the aria-describedby value to put on the component with this keytip.\n *\n * @param keySequences - KeySequences of the keytip.\n * @returns {string} The aria-describedby value to set on the component with this keytip.\n */\nexport function getAriaDescribedBy(keySequences) {\n var describedby = ' ' + KTP_LAYER_ID;\n if (!keySequences.length) {\n // Return just the layer ID\n return describedby;\n }\n return describedby + ' ' + sequencesToID(keySequences);\n}\n//# sourceMappingURL=KeytipUtils.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "index": 677, - "index2": 665, - "size": 2338, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.styles", - "loc": "5:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.styles", - "loc": "11:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 10, - "source": "import { getGlobalClassNames, FontWeights } from '../../Styling';\nimport { CONTEXTUAL_MENU_ITEM_HEIGHT } from './ContextualMenu.cnstyles';\nvar GlobalClassNames = {\n root: 'ms-ContextualMenu',\n container: 'ms-ContextualMenu-container',\n list: 'ms-ContextualMenu-list',\n header: 'ms-ContextualMenu-header',\n title: 'ms-ContextualMenu-title',\n isopen: 'is-open'\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var palette = theme.palette, fonts = theme.fonts, semanticColors = theme.semanticColors;\n return {\n root: [\n theme.fonts.medium,\n classNames.root,\n classNames.isopen,\n {\n backgroundColor: semanticColors.bodyBackground,\n minWidth: '180px'\n },\n className\n ],\n container: [\n classNames.container,\n {\n selectors: {\n ':focus': { outline: 0 }\n }\n }\n ],\n list: [\n classNames.list,\n classNames.isopen,\n {\n listStyleType: 'none',\n margin: '0',\n padding: '0'\n }\n ],\n header: [\n classNames.header,\n fonts.small,\n {\n fontWeight: FontWeights.semibold,\n color: semanticColors.menuHeader,\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n cursor: 'default',\n padding: '0px 6px',\n userSelect: 'none',\n textAlign: 'left'\n }\n ],\n title: [\n classNames.title,\n {\n fontSize: '16px',\n paddingRight: '14px',\n paddingLeft: '14px',\n paddingBottom: '5px',\n paddingTop: '5px',\n backgroundColor: palette.neutralLight\n }\n ],\n subComponentStyles: { callout: {}, menuItem: {} }\n };\n};\n//# sourceMappingURL=ContextualMenu.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "index": 376, - "index2": 367, - "size": 1691, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./extractStyleParts", - "loc": "1:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./extractStyleParts", - "loc": "2:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony import specifier", - "userRequest": "./extractStyleParts", - "loc": "13:13-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./extractStyleParts", - "loc": "36:21-38" - } - ], - "usedExports": [ - "extractStyleParts" - ], - "providedExports": [ - "extractStyleParts" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import { Stylesheet } from './Stylesheet';\n/**\n * Separates the classes and style objects. Any classes that are pre-registered\n * args are auto expanded into objects.\n */\nexport function extractStyleParts() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var classes = [];\n var objects = [];\n var stylesheet = Stylesheet.getInstance();\n function _processArgs(argsList) {\n for (var _i = 0, argsList_1 = argsList; _i < argsList_1.length; _i++) {\n var arg = argsList_1[_i];\n if (arg) {\n if (typeof arg === 'string') {\n if (arg.indexOf(' ') >= 0) {\n _processArgs(arg.split(' '));\n }\n else {\n var translatedArgs = stylesheet.argsFromClassName(arg);\n if (translatedArgs) {\n _processArgs(translatedArgs);\n }\n else {\n // Avoid adding the same class twice.\n if (classes.indexOf(arg) === -1) {\n classes.push(arg);\n }\n }\n }\n }\n else if (Array.isArray(arg)) {\n _processArgs(arg);\n }\n else if (typeof arg === 'object') {\n objects.push(arg);\n }\n }\n }\n }\n _processArgs(args);\n return {\n classes: classes,\n objects: objects\n };\n}\n//# sourceMappingURL=extractStyleParts.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "index": 377, - "index2": 373, - "size": 10056, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "1:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "2:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "2:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "3:0-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "8:56-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "14:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "15:21-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "37:31-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "49:12-29" - } - ], - "usedExports": [ - "styleToRegistration", - "applyRegistration", - "styleToClassName", - "serializeRuleEntries" - ], - "providedExports": [ - "serializeRuleEntries", - "styleToRegistration", - "applyRegistration", - "styleToClassName" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import { Stylesheet } from './Stylesheet';\nimport { kebabRules } from './transforms/kebabRules';\nimport { prefixRules } from './transforms/prefixRules';\nimport { provideUnits } from './transforms/provideUnits';\nimport { rtlifyRules } from './transforms/rtlifyRules';\nvar DISPLAY_NAME = 'displayName';\nfunction getDisplayName(rules) {\n var rootStyle = rules && rules['&'];\n return rootStyle ? rootStyle.displayName : undefined;\n}\nvar globalSelectorRegExp = /\\:global\\((.+?)\\)/g;\n/**\n * Finds comma separated selectors in a :global() e.g. \":global(.class1, .class2, .class3)\"\n * and wraps them each in their own global \":global(.class1), :global(.class2), :global(.class3)\"\n *\n * @param selectorWithGlobals The selector to process\n * @returns The updated selector\n */\nfunction expandCommaSeparatedGlobals(selectorWithGlobals) {\n // We the selector does not have a :global() we can shortcut\n if (!globalSelectorRegExp.test(selectorWithGlobals)) {\n return selectorWithGlobals;\n }\n var replacementInfo = [];\n var findGlobal = /\\:global\\((.+?)\\)/g;\n var match = null;\n // Create a result list for global selectors so we can replace them.\n while ((match = findGlobal.exec(selectorWithGlobals))) {\n // Only if the found selector is a comma separated list we'll process it.\n if (match[1].indexOf(',') > -1) {\n replacementInfo.push([\n match.index,\n match.index + match[0].length,\n // Wrap each of the found selectors in :global()\n match[1]\n .split(',')\n .map(function (v) { return \":global(\" + v.trim() + \")\"; })\n .join(', ')\n ]);\n }\n }\n // Replace the found selectors with their wrapped variants in reverse order\n return replacementInfo.reverse().reduce(function (selector, _a) {\n var matchIndex = _a[0], matchEndIndex = _a[1], replacement = _a[2];\n var prefix = selector.slice(0, matchIndex);\n var suffix = selector.slice(matchEndIndex);\n return prefix + replacement + suffix;\n }, selectorWithGlobals);\n}\nfunction expandSelector(newSelector, currentSelector) {\n if (newSelector.indexOf(':global(') >= 0) {\n return newSelector.replace(globalSelectorRegExp, '$1');\n }\n else if (newSelector.indexOf(':') === 0) {\n return currentSelector + newSelector;\n }\n else if (newSelector.indexOf('&') < 0) {\n return currentSelector + ' ' + newSelector;\n }\n return newSelector;\n}\nfunction extractRules(args, rules, currentSelector) {\n if (rules === void 0) { rules = { __order: [] }; }\n if (currentSelector === void 0) { currentSelector = '&'; }\n var stylesheet = Stylesheet.getInstance();\n var currentRules = rules[currentSelector];\n if (!currentRules) {\n currentRules = {};\n rules[currentSelector] = currentRules;\n rules.__order.push(currentSelector);\n }\n for (var _i = 0, args_1 = args; _i < args_1.length; _i++) {\n var arg = args_1[_i];\n // If the arg is a string, we need to look up the class map and merge.\n if (typeof arg === 'string') {\n var expandedRules = stylesheet.argsFromClassName(arg);\n if (expandedRules) {\n extractRules(expandedRules, rules, currentSelector);\n }\n // Else if the arg is an array, we need to recurse in.\n }\n else if (Array.isArray(arg)) {\n extractRules(arg, rules, currentSelector);\n }\n else {\n // tslint:disable-next-line:no-any\n for (var prop in arg) {\n if (prop === 'selectors') {\n // tslint:disable-next-line:no-any\n var selectors = arg.selectors;\n for (var newSelector in selectors) {\n if (selectors.hasOwnProperty(newSelector)) {\n var selectorValue = selectors[newSelector];\n if (newSelector.indexOf('@') === 0) {\n newSelector = newSelector + '{' + currentSelector;\n extractRules([selectorValue], rules, newSelector);\n }\n else if (newSelector.indexOf(',') > -1) {\n var commaSeparatedSelectors = expandCommaSeparatedGlobals(newSelector)\n .split(/,/g)\n .map(function (s) { return s.trim(); });\n extractRules([selectorValue], rules, commaSeparatedSelectors\n .map(function (commaSeparatedSelector) { return expandSelector(commaSeparatedSelector, currentSelector); })\n .join(', '));\n }\n else {\n extractRules([selectorValue], rules, expandSelector(newSelector, currentSelector));\n }\n }\n }\n }\n else {\n if (arg[prop] !== undefined) {\n // Else, add the rule to the currentSelector.\n if (prop === 'margin' || prop === 'padding') {\n // tslint:disable-next-line:no-any\n expandQuads(currentRules, prop, arg[prop]);\n }\n else {\n // tslint:disable-next-line:no-any\n currentRules[prop] = arg[prop];\n }\n }\n }\n }\n }\n }\n return rules;\n}\nfunction expandQuads(currentRules, name, value) {\n var parts = typeof value === 'string' ? value.split(' ') : [value];\n currentRules[name + 'Top'] = parts[0];\n currentRules[name + 'Right'] = parts[1] || parts[0];\n currentRules[name + 'Bottom'] = parts[2] || parts[0];\n currentRules[name + 'Left'] = parts[3] || parts[1] || parts[0];\n}\nfunction getKeyForRules(rules) {\n var serialized = [];\n var hasProps = false;\n for (var _i = 0, _a = rules.__order; _i < _a.length; _i++) {\n var selector = _a[_i];\n serialized.push(selector);\n var rulesForSelector = rules[selector];\n for (var propName in rulesForSelector) {\n if (rulesForSelector.hasOwnProperty(propName) && rulesForSelector[propName] !== undefined) {\n hasProps = true;\n serialized.push(propName, rulesForSelector[propName]);\n }\n }\n }\n return hasProps ? serialized.join('') : undefined;\n}\nexport function serializeRuleEntries(ruleEntries) {\n if (!ruleEntries) {\n return '';\n }\n var allEntries = [];\n for (var entry in ruleEntries) {\n if (ruleEntries.hasOwnProperty(entry) && entry !== DISPLAY_NAME && ruleEntries[entry] !== undefined) {\n allEntries.push(entry, ruleEntries[entry]);\n }\n }\n // Apply transforms.\n for (var i = 0; i < allEntries.length; i += 2) {\n kebabRules(allEntries, i);\n provideUnits(allEntries, i);\n rtlifyRules(allEntries, i);\n prefixRules(allEntries, i);\n }\n // Apply punctuation.\n for (var i = 1; i < allEntries.length; i += 4) {\n allEntries.splice(i, 1, ':', allEntries[i], ';');\n }\n return allEntries.join('');\n}\nexport function styleToRegistration() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var rules = extractRules(args);\n var key = getKeyForRules(rules);\n if (key) {\n var stylesheet = Stylesheet.getInstance();\n var registration = {\n className: stylesheet.classNameFromKey(key),\n key: key,\n args: args\n };\n if (!registration.className) {\n registration.className = stylesheet.getClassName(getDisplayName(rules));\n var rulesToInsert = [];\n for (var _a = 0, _b = rules.__order; _a < _b.length; _a++) {\n var selector = _b[_a];\n rulesToInsert.push(selector, serializeRuleEntries(rules[selector]));\n }\n registration.rulesToInsert = rulesToInsert;\n }\n return registration;\n }\n}\nexport function applyRegistration(registration, classMap) {\n var stylesheet = Stylesheet.getInstance();\n var className = registration.className, key = registration.key, args = registration.args, rulesToInsert = registration.rulesToInsert;\n if (rulesToInsert) {\n // rulesToInsert is an ordered array of selector/rule pairs.\n for (var i = 0; i < rulesToInsert.length; i += 2) {\n var rules = rulesToInsert[i + 1];\n if (rules) {\n var selector = rulesToInsert[i];\n // Fix selector using map.\n selector = selector.replace(/(&)|\\$([\\w-]+)\\b/g, function (match, amp, cn) {\n if (amp) {\n return '.' + registration.className;\n }\n else if (cn) {\n return '.' + ((classMap && classMap[cn]) || cn);\n }\n return '';\n });\n // Insert. Note if a media query, we must close the query with a final bracket.\n var processedRule = selector + \"{\" + rules + \"}\" + (selector.indexOf('@') === 0 ? '}' : '');\n stylesheet.insertRule(processedRule);\n }\n }\n stylesheet.cacheClassName(className, key, args, rulesToInsert);\n }\n}\nexport function styleToClassName() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var registration = styleToRegistration.apply(void 0, args);\n if (registration) {\n applyRegistration(registration);\n return registration.className;\n }\n return '';\n}\n//# sourceMappingURL=styleToClassName.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "index": 599, - "index2": 590, - "size": 3544, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "type": "harmony import specifier", - "userRequest": "./Modal.styles", - "loc": "4:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Modal.styles", - "loc": "5:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "userRequest": "./Modal.styles", - "loc": "189:92-109" - } - ], - "usedExports": [ - "getStyles", - "animationDuration" - ], - "providedExports": [ - "animationDuration", - "getStyles" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import { AnimationVariables, getGlobalClassNames, ZIndexes } from '../../Styling';\nexport var animationDuration = AnimationVariables.durationValue2;\nvar globalClassNames = {\n root: 'ms-Modal',\n main: 'ms-Dialog-main',\n scrollableContent: 'ms-Modal-scrollableContent',\n isOpen: 'is-open',\n layer: 'ms-Modal-Layer'\n};\nexport var getStyles = function (props) {\n var className = props.className, containerClassName = props.containerClassName, scrollableContentClassName = props.scrollableContentClassName, isOpen = props.isOpen, isVisible = props.isVisible, hasBeenOpened = props.hasBeenOpened, modalRectangleTop = props.modalRectangleTop, theme = props.theme, topOffsetFixed = props.topOffsetFixed, isModeless = props.isModeless, layerClassName = props.layerClassName, isDefaultDragHandle = props.isDefaultDragHandle;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(globalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n backgroundColor: 'transparent',\n position: isModeless ? 'absolute' : 'fixed',\n height: '100%',\n width: '100%',\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n opacity: 0,\n pointerEvents: 'none',\n transition: \"opacity \" + animationDuration\n },\n topOffsetFixed &&\n hasBeenOpened && {\n alignItems: 'flex-start'\n },\n isOpen && classNames.isOpen,\n isVisible && {\n opacity: 1,\n pointerEvents: 'auto'\n },\n className\n ],\n main: [\n classNames.main,\n {\n boxShadow: '0 0 5px 0 rgba(0, 0, 0, 0.4)',\n backgroundColor: palette.white,\n boxSizing: 'border-box',\n position: 'relative',\n textAlign: 'left',\n outline: '3px solid transparent',\n maxHeight: '100%',\n overflowY: 'auto',\n zIndex: isModeless ? ZIndexes.Layer : undefined\n },\n topOffsetFixed &&\n hasBeenOpened && {\n top: modalRectangleTop\n },\n isDefaultDragHandle && {\n cursor: 'move'\n },\n containerClassName\n ],\n scrollableContent: [\n classNames.scrollableContent,\n {\n overflowY: 'auto',\n flexGrow: 1,\n maxHeight: '100vh',\n selectors: (_a = {},\n _a['@supports (-webkit-overflow-scrolling: touch)'] = {\n maxHeight: window.innerHeight\n },\n _a)\n },\n scrollableContentClassName\n ],\n layer: isModeless && [\n layerClassName,\n classNames.layer,\n {\n position: 'static',\n width: 'unset',\n height: 'unset'\n }\n ],\n keyboardMoveIconContainer: {\n position: 'absolute',\n display: 'flex',\n justifyContent: 'center',\n width: '100%',\n padding: '3px 0px'\n },\n keyboardMoveIcon: {\n fontSize: '24px',\n width: '24px'\n }\n };\n var _a;\n};\n//# sourceMappingURL=Modal.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/contextualMenuUtility.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/contextualMenuUtility.js", - "index": 648, - "index2": 635, - "size": 827, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "issuerId": "KQAI", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js" - }, - { - "id": "KQAI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "19:24-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "22:24-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "25:29-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "32:29-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "34:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "41:676-690" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "43:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "47:29-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "55:147-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "56:20-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "63:16-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "93:29-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "98:86-100" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "98:412-426" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "107:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "130:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "229:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "529:65-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "529:134-146" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "534:26-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "536:27-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "617:26-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "675:12-22" - }, - { - "moduleId": "KQAI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./contextualMenuUtility", - "loc": "1:0-40" - }, - { - "moduleId": "KQAI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./contextualMenuUtility", - "loc": "1:0-40" - } - ], - "usedExports": [ - "hasSubmenu", - "isItemDisabled", - "getIsChecked" - ], - "providedExports": [ - "getIsChecked", - "hasSubmenu", - "isItemDisabled" - ], - "optimizationBailout": [], - "depth": 11, - "source": "/**\n * Determines the effective checked state of a menu item.\n *\n * @param item {IContextualMenuItem} to get the check state of.\n * @returns {true} if the item is checked.\n * @returns {false} if the item is unchecked.\n * @returns {null} if the item is not checkable.\n */\nexport function getIsChecked(item) {\n if (item.canCheck) {\n return !!(item.isChecked || item.checked);\n }\n if (typeof item.isChecked === 'boolean') {\n return item.isChecked;\n }\n if (typeof item.checked === 'boolean') {\n return item.checked;\n }\n // Item is not checkable.\n return null;\n}\nexport function hasSubmenu(item) {\n return !!(item.subMenuProps || item.items);\n}\nexport function isItemDisabled(item) {\n return !!(item.isDisabled || item.disabled);\n}\n//# sourceMappingURL=contextualMenuUtility.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "index": 660, - "index2": 646, - "size": 607, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../Divider/VerticalDivider.classNames", - "loc": "1:0-77" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "userRequest": "../Divider/VerticalDivider.classNames", - "loc": "7:26-46" - } - ], - "usedExports": [ - "getDividerClassNames" - ], - "providedExports": [ - "getDividerClassNames" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import { memoizeFunction } from '../../Utilities';\nimport { mergeStyleSets } from '../../Styling';\n/**\n * @deprecated use getStyles exported from VerticalDivider.styles.ts\n */\nexport var getDividerClassNames = memoizeFunction(function (theme) {\n return mergeStyleSets({\n wrapper: {\n display: 'inline-flex',\n height: '100%',\n alignItems: 'center'\n },\n divider: {\n width: 1,\n height: '100%',\n backgroundColor: theme.palette.neutralTertiaryAlt\n }\n });\n});\n//# sourceMappingURL=VerticalDivider.classNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "index": 661, - "index2": 647, - "size": 6274, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "2:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "2:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "51:17-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "52:24-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "53:28-55" - } - ], - "usedExports": [ - "CONTEXTUAL_MENU_ITEM_HEIGHT", - "getMenuItemStyles" - ], - "providedExports": [ - "CONTEXTUAL_MENU_ITEM_HEIGHT", - "getMenuItemStyles" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import * as tslib_1 from \"tslib\";\nimport { concatStyleSets, FontSizes, getFocusStyle, HighContrastSelector, getScreenSelector, ScreenWidthMaxMedium } from '../../Styling';\nimport { memoizeFunction } from '../../Utilities';\nexport var CONTEXTUAL_MENU_ITEM_HEIGHT = '32px';\nvar MediumScreenSelector = getScreenSelector(0, ScreenWidthMaxMedium);\nvar getItemHighContrastStyles = memoizeFunction(function () {\n return {\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n backgroundColor: 'Highlight',\n borderColor: 'Highlight',\n color: 'HighlightText',\n MsHighContrastAdjust: 'none'\n },\n _a)\n };\n var _a;\n});\nexport var getMenuItemStyles = memoizeFunction(function (theme) {\n var semanticColors = theme.semanticColors, fonts = theme.fonts;\n var ContextualMenuItemBackgroundHoverColor = semanticColors.menuItemBackgroundHovered;\n var ContextualMenuItemBackgroundSelectedColor = semanticColors.menuItemBackgroundChecked;\n var ContextualMenuItemDividerColor = semanticColors.bodyDivider;\n var menuItemStyles = {\n item: [\n fonts.medium,\n {\n color: semanticColors.bodyText,\n position: 'relative',\n boxSizing: 'border-box'\n }\n ],\n divider: {\n display: 'block',\n height: '1px',\n backgroundColor: ContextualMenuItemDividerColor,\n position: 'relative'\n },\n root: [\n getFocusStyle(theme),\n fonts.medium,\n {\n color: semanticColors.bodyText,\n backgroundColor: 'transparent',\n border: 'none',\n width: '100%',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n display: 'block',\n cursor: 'pointer',\n padding: '0px 8px 0 4px',\n textAlign: 'left'\n }\n ],\n rootDisabled: {\n color: semanticColors.disabledBodyText,\n cursor: 'default',\n pointerEvents: 'none',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'GrayText',\n opacity: 1\n },\n _a)\n },\n rootHovered: tslib_1.__assign({ backgroundColor: ContextualMenuItemBackgroundHoverColor }, getItemHighContrastStyles()),\n rootFocused: tslib_1.__assign({ backgroundColor: ContextualMenuItemBackgroundHoverColor }, getItemHighContrastStyles()),\n rootChecked: tslib_1.__assign({}, getItemHighContrastStyles()),\n rootPressed: tslib_1.__assign({ backgroundColor: ContextualMenuItemBackgroundSelectedColor }, getItemHighContrastStyles()),\n rootExpanded: tslib_1.__assign({ backgroundColor: ContextualMenuItemBackgroundSelectedColor, color: semanticColors.bodyTextChecked }, getItemHighContrastStyles()),\n linkContent: {\n whiteSpace: 'nowrap',\n height: 'inherit',\n display: 'flex',\n alignItems: 'center',\n maxWidth: '100%'\n },\n anchorLink: {\n padding: '0px 8px 0 4px',\n textRendering: 'auto',\n color: 'inherit',\n letterSpacing: 'normal',\n wordSpacing: 'normal',\n textTransform: 'none',\n textIndent: '0px',\n textShadow: 'none',\n textDecoration: 'none',\n boxSizing: 'border-box'\n },\n label: {\n margin: '0 4px',\n verticalAlign: 'middle',\n display: 'inline-block',\n flexGrow: '1',\n textOverflow: 'ellipsis',\n overflow: 'hidden',\n whiteSpace: 'nowrap'\n },\n secondaryText: {\n color: theme.palette.neutralSecondary,\n paddingLeft: '20px',\n textAlign: 'right'\n },\n icon: {\n display: 'inline-block',\n minHeight: '1px',\n maxHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n width: '14px',\n margin: '0 4px',\n verticalAlign: 'middle',\n flexShrink: '0'\n },\n iconColor: {\n color: semanticColors.menuIcon,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'inherit'\n },\n _b['$root:hover &'] = {\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'HighlightText'\n },\n _c)\n },\n _b['$root:focus &'] = {\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'HighlightText'\n },\n _d)\n },\n _b)\n },\n iconDisabled: {\n color: semanticColors.disabledBodyText\n },\n checkmarkIcon: {\n color: semanticColors.bodySubtext,\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n color: 'HighlightText'\n },\n _e)\n },\n subMenuIcon: {\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n textAlign: 'center',\n display: 'inline-block',\n verticalAlign: 'middle',\n flexShrink: '0',\n fontSize: FontSizes.small,\n selectors: (_f = {},\n _f[MediumScreenSelector] = {\n fontSize: FontSizes.icon // 16px\n },\n _f)\n },\n splitButtonFlexContainer: [\n getFocusStyle(theme),\n {\n display: 'flex',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'center'\n }\n ]\n };\n return concatStyleSets(menuItemStyles);\n var _a, _b, _c, _d, _e, _f;\n});\n//# sourceMappingURL=ContextualMenu.cnstyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "index": 671, - "index2": 657, - "size": 2215, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerId": "qMUB", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "4:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "4:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "9:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "45:2-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "59:2-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "169:2-27" - }, - { - "moduleId": "qMUB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "4:0-44" - }, - { - "moduleId": "qMUB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "4:0-44" - } - ], - "usedExports": [ - "ContextualMenuItemWrapper" - ], - "providedExports": [ - "ContextualMenuItemWrapper" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import * as tslib_1 from \"tslib\";\nimport { BaseComponent, shallowCompare } from '../../../Utilities';\nvar ContextualMenuItemWrapper = /** @class */ (function (_super) {\n tslib_1.__extends(ContextualMenuItemWrapper, _super);\n function ContextualMenuItemWrapper() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onItemMouseEnter = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(item, ev, ev.currentTarget);\n }\n };\n _this._onItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClickBase = _a.onItemClickBase;\n if (onItemClickBase) {\n onItemClickBase(item, ev, ev.currentTarget);\n }\n };\n _this._onItemMouseLeave = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseLeave = _a.onItemMouseLeave;\n if (onItemMouseLeave) {\n onItemMouseLeave(item, ev);\n }\n };\n _this._onItemKeyDown = function (ev) {\n var _a = _this.props, item = _a.item, onItemKeyDown = _a.onItemKeyDown;\n if (onItemKeyDown) {\n onItemKeyDown(item, ev);\n }\n };\n _this._onItemMouseMove = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(item, ev, ev.currentTarget);\n }\n };\n _this._getSubMenuId = function (item) {\n var getSubMenuId = _this.props.getSubMenuId;\n if (getSubMenuId) {\n return getSubMenuId(item);\n }\n };\n _this._getSubmenuTarget = function () {\n return undefined;\n };\n return _this;\n }\n ContextualMenuItemWrapper.prototype.shouldComponentUpdate = function (newProps) {\n return !shallowCompare(newProps, this.props);\n };\n return ContextualMenuItemWrapper;\n}(BaseComponent));\nexport { ContextualMenuItemWrapper };\n//# sourceMappingURL=ContextualMenuItemWrapper.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConstants.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConstants.js", - "index": 667, - "index2": 651, - "size": 921, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "//Os", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "H+sk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipConstants", - "loc": "1:0-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "3:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "12:27-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "12:70-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "13:7-17" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "35:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "44:17-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "44:32-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "44:70-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "userRequest": "./KeytipConstants", - "loc": "53:28-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "69:35-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "96:32-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "96:72-84" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "106:31-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "112:31-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/KeytipConstants", - "loc": "150:31-43" - } - ], - "usedExports": [ - "KTP_SEPARATOR", - "KTP_PREFIX", - "DATAKTP_TARGET", - "DATAKTP_EXECUTE_TARGET", - "KTP_LAYER_ID", - "KeytipEvents" - ], - "providedExports": [ - "KTP_PREFIX", - "KTP_SEPARATOR", - "KTP_FULL_PREFIX", - "DATAKTP_TARGET", - "DATAKTP_EXECUTE_TARGET", - "KTP_LAYER_ID", - "KTP_ARIA_SEPARATOR", - "KeytipEvents" - ], - "optimizationBailout": [], - "depth": 11, - "source": "export var KTP_PREFIX = 'ktp';\nexport var KTP_SEPARATOR = '-';\nexport var KTP_FULL_PREFIX = KTP_PREFIX + KTP_SEPARATOR;\nexport var DATAKTP_TARGET = 'data-ktp-target';\nexport var DATAKTP_EXECUTE_TARGET = 'data-ktp-execute-target';\nexport var KTP_LAYER_ID = 'ktp-layer-id';\nexport var KTP_ARIA_SEPARATOR = ', ';\n// Events\nexport var KeytipEvents;\n(function (KeytipEvents) {\n KeytipEvents.KEYTIP_ADDED = 'keytipAdded';\n KeytipEvents.KEYTIP_REMOVED = 'keytipRemoved';\n KeytipEvents.KEYTIP_UPDATED = 'keytipUpdated';\n KeytipEvents.PERSISTED_KEYTIP_ADDED = 'persistedKeytipAdded';\n KeytipEvents.PERSISTED_KEYTIP_REMOVED = 'persistedKeytipRemoved';\n KeytipEvents.PERSISTED_KEYTIP_EXECUTE = 'persistedKeytipExecute';\n KeytipEvents.ENTER_KEYTIP_MODE = 'enterKeytipMode';\n KeytipEvents.EXIT_KEYTIP_MODE = 'exitKeytipMode';\n})(KeytipEvents || (KeytipEvents = {}));\n//# sourceMappingURL=KeytipConstants.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "index": 664, - "index2": 658, - "size": 3831, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerId": "qMUB", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./ContextualMenuItemWrapper/index", - "loc": "632:36-56" - }, - { - "moduleId": "qMUB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuAnchor", - "loc": "1:0-39" - }, - { - "moduleId": "qMUB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuAnchor", - "loc": "1:0-39" - } - ], - "usedExports": [ - "ContextualMenuAnchor" - ], - "providedExports": [ - "ContextualMenuAnchor" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { anchorProperties, getNativeProps } from '../../../Utilities';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nimport { KeytipData } from '../../../KeytipData';\nimport { isItemDisabled, hasSubmenu } from '../../../utilities/contextualMenu/index';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nvar ContextualMenuAnchor = /** @class */ (function (_super) {\n tslib_1.__extends(ContextualMenuAnchor, _super);\n function ContextualMenuAnchor() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._anchor = React.createRef();\n _this._getSubmenuTarget = function () {\n return _this._anchor.current ? _this._anchor.current : undefined;\n };\n _this._onItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClick = _a.onItemClick;\n if (onItemClick) {\n onItemClick(item, ev);\n }\n };\n return _this;\n }\n ContextualMenuAnchor.prototype.render = function () {\n var _this = this;\n var _a = this.props, item = _a.item, classNames = _a.classNames, index = _a.index, focusableElementIndex = _a.focusableElementIndex, totalItemCount = _a.totalItemCount, hasCheckmarks = _a.hasCheckmarks, hasIcons = _a.hasIcons, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, expandedMenuItemKey = _a.expandedMenuItemKey, onItemClick = _a.onItemClick, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var anchorRel = item.rel;\n if (item.target && item.target.toLowerCase() === '_blank') {\n anchorRel = anchorRel ? anchorRel : 'nofollow noopener noreferrer'; // Safe default to prevent tabjacking\n }\n var subMenuId = this._getSubMenuId(item);\n var itemHasSubmenu = hasSubmenu(item);\n var nativeProps = getNativeProps(item, anchorProperties);\n var disabled = isItemDisabled(item);\n var itemProps = item.itemProps;\n var keytipProps = item.keytipProps;\n if (keytipProps && itemHasSubmenu) {\n keytipProps = tslib_1.__assign({}, keytipProps, { hasMenu: true });\n }\n return (React.createElement(\"div\", null,\n React.createElement(KeytipData, { keytipProps: item.keytipProps, ariaDescribedBy: nativeProps['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return (React.createElement(\"a\", tslib_1.__assign({}, nativeProps, keytipAttributes, { ref: _this._anchor, href: item.href, target: item.target, rel: anchorRel, className: classNames.root, role: \"menuitem\", \"aria-owns\": item.key === expandedMenuItemKey ? subMenuId : undefined, \"aria-haspopup\": itemHasSubmenu || undefined, \"aria-expanded\": itemHasSubmenu ? item.key === expandedMenuItemKey : undefined, \"aria-posinset\": focusableElementIndex + 1, \"aria-setsize\": totalItemCount, \"aria-disabled\": isItemDisabled(item), style: item.style, onClick: _this._onItemClick, onMouseEnter: _this._onItemMouseEnter, onMouseLeave: _this._onItemMouseLeave, onMouseMove: _this._onItemMouseMove, onKeyDown: itemHasSubmenu ? _this._onItemKeyDown : undefined }),\n React.createElement(ChildrenRenderer, tslib_1.__assign({ componentRef: item.componentRef, item: item, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: _this._getSubmenuTarget }, itemProps)))); })));\n };\n return ContextualMenuAnchor;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuAnchor };\n//# sourceMappingURL=ContextualMenuAnchor.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "index": 672, - "index2": 659, - "size": 4145, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerId": "qMUB", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./ContextualMenuItemWrapper/index", - "loc": "637:36-56" - }, - { - "moduleId": "qMUB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuButton", - "loc": "2:0-39" - }, - { - "moduleId": "qMUB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuButton", - "loc": "2:0-39" - } - ], - "usedExports": [ - "ContextualMenuButton" - ], - "providedExports": [ - "ContextualMenuButton" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { buttonProperties, getNativeProps } from '../../../Utilities';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nimport { KeytipData } from '../../../KeytipData';\nimport { getIsChecked, isItemDisabled, hasSubmenu } from '../../../utilities/contextualMenu/index';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nvar ContextualMenuButton = /** @class */ (function (_super) {\n tslib_1.__extends(ContextualMenuButton, _super);\n function ContextualMenuButton() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._btn = React.createRef();\n _this._getSubmenuTarget = function () {\n return _this._btn.current ? _this._btn.current : undefined;\n };\n return _this;\n }\n ContextualMenuButton.prototype.render = function () {\n var _this = this;\n var _a = this.props, item = _a.item, classNames = _a.classNames, index = _a.index, focusableElementIndex = _a.focusableElementIndex, totalItemCount = _a.totalItemCount, hasCheckmarks = _a.hasCheckmarks, hasIcons = _a.hasIcons, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, expandedMenuItemKey = _a.expandedMenuItemKey, onItemMouseDown = _a.onItemMouseDown, onItemClick = _a.onItemClick, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var subMenuId = this._getSubMenuId(item);\n var isChecked = getIsChecked(item);\n var canCheck = isChecked !== null;\n var defaultRole = canCheck ? 'menuitemcheckbox' : 'menuitem';\n var itemHasSubmenu = hasSubmenu(item);\n var itemProps = item.itemProps, ariaLabel = item.ariaLabel;\n var buttonNativeProperties = getNativeProps(item, buttonProperties);\n // Do not add the disabled attribute to the button so that it is focusable\n delete buttonNativeProperties.disabled;\n var itemButtonProperties = {\n className: classNames.root,\n onClick: this._onItemClick,\n onKeyDown: itemHasSubmenu ? this._onItemKeyDown : undefined,\n onMouseEnter: this._onItemMouseEnter,\n onMouseLeave: this._onItemMouseLeave,\n onMouseDown: function (ev) { return (onItemMouseDown ? onItemMouseDown(item, ev) : undefined); },\n onMouseMove: this._onItemMouseMove,\n href: item.href,\n title: item.title,\n 'aria-label': ariaLabel,\n 'aria-haspopup': itemHasSubmenu || undefined,\n 'aria-owns': item.key === expandedMenuItemKey ? subMenuId : undefined,\n 'aria-expanded': itemHasSubmenu ? item.key === expandedMenuItemKey : undefined,\n 'aria-checked': canCheck ? !!isChecked : undefined,\n 'aria-posinset': focusableElementIndex + 1,\n 'aria-setsize': totalItemCount,\n 'aria-disabled': isItemDisabled(item),\n role: item.role || defaultRole,\n style: item.style\n };\n var keytipProps = item.keytipProps;\n if (keytipProps && itemHasSubmenu) {\n keytipProps = tslib_1.__assign({}, keytipProps, { hasMenu: true });\n }\n return (React.createElement(KeytipData, { keytipProps: keytipProps, ariaDescribedBy: buttonNativeProperties['aria-describedby'], disabled: isItemDisabled(item) }, function (keytipAttributes) { return (React.createElement(\"button\", tslib_1.__assign({ ref: _this._btn }, buttonNativeProperties, itemButtonProperties, keytipAttributes),\n React.createElement(ChildrenRenderer, tslib_1.__assign({ componentRef: item.componentRef, item: item, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: _this._getSubmenuTarget }, itemProps)))); }));\n };\n return ContextualMenuButton;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuButton };\n//# sourceMappingURL=ContextualMenuButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "index": 673, - "index2": 663, - "size": 10343, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerId": "qMUB", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./ContextualMenuItemWrapper/index", - "loc": "642:36-61" - }, - { - "moduleId": "qMUB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuSplitButton", - "loc": "3:0-44" - }, - { - "moduleId": "qMUB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuSplitButton", - "loc": "3:0-44" - } - ], - "usedExports": [ - "ContextualMenuSplitButton" - ], - "providedExports": [ - "ContextualMenuSplitButton" - ], - "optimizationBailout": [], - "depth": 11, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { buttonProperties, getNativeProps, KeyCodes, mergeAriaAttributeValues } from '../../../Utilities';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nimport { getSplitButtonVerticalDividerClassNames } from '../ContextualMenu.classNames';\nimport { KeytipData } from '../../../KeytipData';\nimport { isItemDisabled, hasSubmenu } from '../../../utilities/contextualMenu/index';\nimport { VerticalDivider } from '../../../Divider';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nvar TouchIdleDelay = 500; /* ms */\nvar ContextualMenuSplitButton = /** @class */ (function (_super) {\n tslib_1.__extends(ContextualMenuSplitButton, _super);\n function ContextualMenuSplitButton() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onItemKeyDown = function (ev) {\n var _a = _this.props, item = _a.item, onItemKeyDown = _a.onItemKeyDown;\n if (ev.which === KeyCodes.enter) {\n _this._executeItemClick(ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n else if (onItemKeyDown) {\n onItemKeyDown(item, ev);\n }\n };\n _this._getSubmenuTarget = function () {\n return _this._splitButton;\n };\n _this._onItemMouseEnterPrimary = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(tslib_1.__assign({}, item, { subMenuProps: undefined, items: undefined }), ev, _this._splitButton);\n }\n };\n _this._onItemMouseEnterIcon = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(item, ev, _this._splitButton);\n }\n };\n _this._onItemMouseMovePrimary = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(tslib_1.__assign({}, item, { subMenuProps: undefined, items: undefined }), ev, _this._splitButton);\n }\n };\n _this._onItemMouseMoveIcon = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(item, ev, _this._splitButton);\n }\n };\n _this._onIconItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClickBase = _a.onItemClickBase;\n if (onItemClickBase) {\n onItemClickBase(item, ev, (_this._splitButton ? _this._splitButton : ev.currentTarget));\n }\n };\n _this._executeItemClick = function (ev) {\n var _a = _this.props, item = _a.item, executeItemClick = _a.executeItemClick, onItemClick = _a.onItemClick;\n if (item.disabled || item.isDisabled) {\n return;\n }\n if (_this._processingTouch && onItemClick) {\n return onItemClick(item, ev);\n }\n if (executeItemClick) {\n executeItemClick(item, ev);\n }\n };\n _this._onTouchStart = function (ev) {\n if (_this._splitButton && !('onpointerdown' in _this._splitButton)) {\n _this._handleTouchAndPointerEvent(ev);\n }\n };\n _this._onPointerDown = function (ev) {\n if (ev.pointerType === 'touch') {\n _this._handleTouchAndPointerEvent(ev);\n ev.preventDefault();\n ev.stopImmediatePropagation();\n }\n };\n return _this;\n }\n ContextualMenuSplitButton.prototype.componentDidMount = function () {\n if (this._splitButton && 'onpointerdown' in this._splitButton) {\n this._events.on(this._splitButton, 'pointerdown', this._onPointerDown, true);\n }\n };\n ContextualMenuSplitButton.prototype.render = function () {\n var _this = this;\n var _a = this.props, item = _a.item, classNames = _a.classNames, index = _a.index, focusableElementIndex = _a.focusableElementIndex, totalItemCount = _a.totalItemCount, hasCheckmarks = _a.hasCheckmarks, hasIcons = _a.hasIcons, onItemMouseLeave = _a.onItemMouseLeave, expandedMenuItemKey = _a.expandedMenuItemKey;\n var itemHasSubmenu = hasSubmenu(item);\n var keytipProps = item.keytipProps;\n if (keytipProps) {\n keytipProps = tslib_1.__assign({}, keytipProps, { hasMenu: true });\n }\n return (React.createElement(KeytipData, { keytipProps: keytipProps, disabled: isItemDisabled(item) }, function (keytipAttributes) { return (React.createElement(\"div\", { \"data-ktp-target\": keytipAttributes['data-ktp-target'], ref: function (splitButton) { return (_this._splitButton = splitButton); }, role: 'menuitem', \"aria-label\": item.ariaLabel, className: classNames.splitContainer, \"aria-disabled\": isItemDisabled(item), \"aria-expanded\": itemHasSubmenu ? item.key === expandedMenuItemKey : undefined, \"aria-haspopup\": true, \"aria-describedby\": mergeAriaAttributeValues(item.ariaDescription, keytipAttributes['aria-describedby']), \"aria-checked\": item.isChecked || item.checked, \"aria-posinset\": focusableElementIndex + 1, \"aria-setsize\": totalItemCount, onMouseEnter: _this._onItemMouseEnterPrimary, onMouseLeave: onItemMouseLeave ? onItemMouseLeave.bind(_this, tslib_1.__assign({}, item, { subMenuProps: null, items: null })) : undefined, onMouseMove: _this._onItemMouseMovePrimary, onKeyDown: _this._onItemKeyDown, onClick: _this._executeItemClick, onTouchStart: _this._onTouchStart, tabIndex: 0, \"data-is-focusable\": true, \"aria-roledescription\": item['aria-roledescription'] },\n _this._renderSplitPrimaryButton(item, classNames, index, hasCheckmarks, hasIcons),\n _this._renderSplitDivider(item),\n _this._renderSplitIconButton(item, classNames, index, keytipAttributes))); }));\n };\n ContextualMenuSplitButton.prototype._renderSplitPrimaryButton = function (item, classNames, index, hasCheckmarks, hasIcons) {\n var _a = this.props, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, onItemClick = _a.onItemClick;\n var itemProps = {\n key: item.key,\n disabled: isItemDisabled(item) || item.primaryDisabled,\n name: item.name,\n text: item.text || item.name,\n className: classNames.splitPrimary,\n canCheck: item.canCheck,\n isChecked: item.isChecked,\n checked: item.checked,\n iconProps: item.iconProps,\n 'data-is-focusable': false,\n 'aria-hidden': true\n };\n var itemComponentProps = item.itemProps;\n return (React.createElement(\"button\", tslib_1.__assign({}, getNativeProps(itemProps, buttonProperties)),\n React.createElement(ChildrenRenderer, tslib_1.__assign({ \"data-is-focusable\": false, item: itemProps, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons }, itemComponentProps))));\n };\n ContextualMenuSplitButton.prototype._renderSplitDivider = function (item) {\n var getDividerClassNames = item.getSplitButtonVerticalDividerClassNames || getSplitButtonVerticalDividerClassNames;\n return React.createElement(VerticalDivider, { getClassNames: getDividerClassNames });\n };\n ContextualMenuSplitButton.prototype._renderSplitIconButton = function (item, classNames, index, keytipAttributes) {\n var _a = this.props, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, onItemMouseLeave = _a.onItemMouseLeave, onItemMouseDown = _a.onItemMouseDown, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var itemProps = {\n onClick: this._onIconItemClick,\n disabled: isItemDisabled(item),\n className: classNames.splitMenu,\n subMenuProps: item.subMenuProps,\n submenuIconProps: item.submenuIconProps,\n split: true,\n key: item.key\n };\n var buttonProps = tslib_1.__assign({}, getNativeProps(itemProps, buttonProperties), {\n onMouseEnter: this._onItemMouseEnterIcon,\n onMouseLeave: onItemMouseLeave ? onItemMouseLeave.bind(this, item) : undefined,\n onMouseDown: function (ev) { return (onItemMouseDown ? onItemMouseDown(item, ev) : undefined); },\n onMouseMove: this._onItemMouseMoveIcon,\n 'data-is-focusable': false,\n 'data-ktp-execute-target': keytipAttributes['data-ktp-execute-target'],\n 'aria-hidden': true\n });\n var itemComponentProps = item.itemProps;\n return (React.createElement(\"button\", tslib_1.__assign({}, buttonProps),\n React.createElement(ChildrenRenderer, tslib_1.__assign({ componentRef: item.componentRef, item: itemProps, classNames: classNames, index: index, hasIcons: false, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: this._getSubmenuTarget }, itemComponentProps))));\n };\n ContextualMenuSplitButton.prototype._handleTouchAndPointerEvent = function (ev) {\n var _this = this;\n var onTap = this.props.onTap;\n if (onTap) {\n onTap(ev);\n }\n // If we already have an existing timeout from a previous touch/pointer event\n // cancel that timeout so we can set a new one.\n if (this._lastTouchTimeoutId) {\n this._async.clearTimeout(this._lastTouchTimeoutId);\n this._lastTouchTimeoutId = undefined;\n }\n this._processingTouch = true;\n this._lastTouchTimeoutId = this._async.setTimeout(function () {\n _this._processingTouch = false;\n _this._lastTouchTimeoutId = undefined;\n }, TouchIdleDelay);\n };\n return ContextualMenuSplitButton;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuSplitButton };\n//# sourceMappingURL=ContextualMenuSplitButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/kebabRules.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/kebabRules.js", - "index": 378, - "index2": 368, - "size": 4238, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/kebabRules", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./transforms/kebabRules", - "loc": "165:8-18" - } - ], - "usedExports": [ - "kebabRules" - ], - "providedExports": [ - "kebabRules" - ], - "optimizationBailout": [], - "depth": 12, - "source": "var rules = {\n MozOsxFontSmoothing: '-moz-osx-font-smoothing',\n MsHighContrastAdjust: '-ms-high-contrast-adjust',\n WebkitFontSmoothing: '-webkit-font-smoothing',\n WebkitOverflowScrolling: '-webkit-overflow-scrolling',\n WebkitTapHighlightColor: '-webkit-tap-highlight-color',\n alignContent: 'align-content',\n alignItems: 'align-items',\n alignSelf: 'align-self',\n animation: 'animation',\n animationDelay: 'animation-delay',\n animationDirection: 'animation-direction',\n animationDuration: 'animation-duration',\n animationFillMode: 'animation-fill-mode',\n animationIterationCount: 'animation-iteration-count',\n animationName: 'animation-name',\n animationTimingFunction: 'animation-timing-function',\n background: 'background',\n backgroundClip: 'background-clip',\n backgroundColor: 'background-color',\n backgroundImage: 'background-image',\n backgroundPosition: 'background-position',\n border: 'border',\n borderBottom: 'border-bottom',\n borderBottomColor: 'border-bottom-color',\n borderBottomStyle: 'border-bottom-style',\n borderBottomWidth: 'border-bottom-width',\n borderCollapse: 'border-collapse',\n borderColor: 'border-color',\n borderLeft: 'border-left',\n borderRadius: 'border-radius',\n borderRight: 'border-right',\n borderStyle: 'border-style',\n borderTop: 'border-top',\n borderTopColor: 'border-top-color',\n borderTopLeftRadius: 'border-top-left-radius',\n borderTopRightRadius: 'border-top-right-radius',\n borderTopStyle: 'border-top-style',\n borderTopWidth: 'border-top-width',\n borderWidth: 'border-width',\n bordercolor: 'bordercolor',\n bottom: 'bottom',\n boxShadow: 'box-shadow',\n boxSizing: 'box-sizing',\n clear: 'clear',\n color: 'color',\n content: 'content',\n cursor: 'cursor',\n display: 'display',\n fill: 'fill',\n flex: 'flex',\n flexBasis: 'flex-basis',\n flexDirection: 'flex-direction',\n flexGrow: 'flex-grow',\n flexShrink: 'flex-shrink',\n flexWrap: 'flex-wrap',\n float: 'float',\n font: 'font',\n fontFamily: 'font-family',\n fontSize: 'font-size',\n fontStyle: 'font-style',\n fontWeight: 'font-weight',\n height: 'height',\n justifyContent: 'justify-content',\n left: 'left',\n lineHeight: 'line-height',\n listStyle: 'list-style',\n listStyleType: 'list-style-type',\n marginBottom: 'margin-bottom',\n marginLeft: 'margin-left',\n marginRight: 'margin-right',\n marginTop: 'margin-top',\n maxHeight: 'max-height',\n maxWidth: 'max-width',\n minHeight: 'min-height',\n minWidth: 'min-width',\n mozOsxFontSmoothing: 'moz-osx-font-smoothing',\n objectFit: 'object-fit',\n opacity: 'opacity',\n order: 'order',\n outline: 'outline',\n outlineColor: 'outline-color',\n outlineOffset: 'outline-offset',\n overflow: 'overflow',\n overflowWrap: 'overflow-wrap',\n overflowX: 'overflow-x',\n overflowY: 'overflow-y',\n paddingBottom: 'padding-bottom',\n paddingLeft: 'padding-left',\n paddingRight: 'padding-right',\n paddingTop: 'padding-top',\n perspective: 'perspective',\n pointerEvents: 'pointer-events',\n position: 'position',\n resize: 'resize',\n right: 'right',\n speak: 'speak',\n src: 'src',\n tableLayout: 'table-layout',\n textAlign: 'text-align',\n textDecoration: 'text-decoration',\n textOverflow: 'text-overflow',\n textTransform: 'text-transform',\n top: 'top',\n transform: 'transform',\n transformOrigin: 'transform-origin',\n transition: 'transition',\n transitionDelay: 'transition-delay',\n transitionDuration: 'transition-duration',\n transitionProperty: 'transition-property',\n transitionTimingFunction: 'transition-timing-function',\n userSelect: 'user-select',\n verticalAlign: 'vertical-align',\n visibility: 'visibility',\n webkitFontSmoothing: 'webkit-font-smoothing',\n whiteSpace: 'white-space',\n width: 'width',\n wordBreak: 'word-break',\n wordWrap: 'word-wrap',\n zIndex: 'z-index'\n};\nexport function kebabRules(rulePairs, index) {\n var rule = rulePairs[index];\n rulePairs[index] = rules[rule] = rules[rule] || rule.replace(/([A-Z])/g, '-$1').toLowerCase();\n}\n//# sourceMappingURL=kebabRules.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "index": 381, - "index2": 372, - "size": 842, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/prefixRules", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./transforms/prefixRules", - "loc": "168:8-19" - } - ], - "usedExports": [ - "prefixRules" - ], - "providedExports": [ - "prefixRules" - ], - "optimizationBailout": [], - "depth": 12, - "source": "import { getVendorSettings } from '../getVendorSettings';\nvar autoPrefixNames = {\n 'user-select': 1\n};\nexport function prefixRules(rulePairs, index) {\n var vendorSettings = getVendorSettings();\n var name = rulePairs[index];\n if (autoPrefixNames[name]) {\n var value = rulePairs[index + 1];\n if (autoPrefixNames[name]) {\n if (vendorSettings.isWebkit) {\n rulePairs.push('-webkit-' + name, value);\n }\n if (vendorSettings.isMoz) {\n rulePairs.push('-moz-' + name, value);\n }\n if (vendorSettings.isMs) {\n rulePairs.push('-ms-' + name, value);\n }\n if (vendorSettings.isOpera) {\n rulePairs.push('-o-' + name, value);\n }\n }\n }\n}\n//# sourceMappingURL=prefixRules.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/provideUnits.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/provideUnits.js", - "index": 379, - "index2": 369, - "size": 544, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/provideUnits", - "loc": "4:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./transforms/provideUnits", - "loc": "166:8-20" - } - ], - "usedExports": [ - "provideUnits" - ], - "providedExports": [ - "provideUnits" - ], - "optimizationBailout": [], - "depth": 12, - "source": "var NON_PIXEL_NUMBER_PROPS = [\n 'column-count',\n 'font-weight',\n 'flex-basis',\n 'flex',\n 'flex-grow',\n 'flex-shrink',\n 'fill-opacity',\n 'opacity',\n 'order',\n 'z-index',\n 'zoom'\n];\nexport function provideUnits(rulePairs, index) {\n var name = rulePairs[index];\n var value = rulePairs[index + 1];\n if (typeof value === 'number') {\n var unit = NON_PIXEL_NUMBER_PROPS.indexOf(name) === -1 ? 'px' : '';\n rulePairs[index + 1] = \"\" + value + unit;\n }\n}\n//# sourceMappingURL=provideUnits.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "index": 600, - "index2": 602, - "size": 12168, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "issuerId": "3MvN", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": "wAdI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js" - }, - { - "id": "S+gH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js" - }, - { - "id": "3MvN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../FocusTrapZone/index", - "loc": "224:48-61" - }, - { - "moduleId": "3MvN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusTrapZone", - "loc": "1:0-32" - }, - { - "moduleId": "3MvN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusTrapZone", - "loc": "1:0-32" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusTrapZone", - "loc": "11:28-41" - } - ], - "usedExports": [ - "FocusTrapZone" - ], - "providedExports": [ - "FocusTrapZone" - ], - "optimizationBailout": [], - "depth": 12, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { elementContains, getNativeProps, divProperties, getFirstTabbable, getLastTabbable, getNextElement, focusAsync, initializeComponentRef, on } from '../../Utilities';\nvar FocusTrapZone = /** @class */ (function (_super) {\n tslib_1.__extends(FocusTrapZone, _super);\n function FocusTrapZone(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._firstBumper = React.createRef();\n _this._lastBumper = React.createRef();\n _this._hasFocus = false;\n _this._onRootFocus = function (ev) {\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n _this._hasFocus = true;\n };\n _this._onRootBlur = function (ev) {\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n var relatedTarget = ev.relatedTarget;\n if (ev.relatedTarget === null) {\n // In IE11, due to lack of support, event.relatedTarget is always\n // null making every onBlur call to be \"outside\" of the ComboBox\n // even when it's not. Using document.activeElement is another way\n // for us to be able to get what the relatedTarget without relying\n // on the event\n relatedTarget = document.activeElement;\n }\n if (!elementContains(_this._root.current, relatedTarget)) {\n _this._hasFocus = false;\n }\n };\n _this._onFirstBumperFocus = function () {\n _this._onBumperFocus(true);\n };\n _this._onLastBumperFocus = function () {\n _this._onBumperFocus(false);\n };\n _this._onBumperFocus = function (isFirstBumper) {\n if (_this.props.disabled) {\n return;\n }\n var currentBumper = (isFirstBumper === _this._hasFocus ? _this._lastBumper.current : _this._firstBumper.current);\n if (_this._root.current) {\n var nextFocusable = isFirstBumper === _this._hasFocus\n ? getLastTabbable(_this._root.current, currentBumper, true, false)\n : getFirstTabbable(_this._root.current, currentBumper, true, false);\n if (nextFocusable) {\n if (_this._isBumper(nextFocusable)) {\n // This can happen when FTZ contains no tabbable elements. focus will take care of finding a focusable element in FTZ.\n _this.focus();\n }\n else {\n nextFocusable.focus();\n }\n }\n }\n };\n _this._onFocusCapture = function (ev) {\n if (_this.props.onFocusCapture) {\n _this.props.onFocusCapture(ev);\n }\n if (ev.target !== ev.currentTarget && !_this._isBumper(ev.target)) {\n // every time focus changes within the trap zone, remember the focused element so that\n // it can be restored if focus leaves the pane and returns via keystroke (i.e. via a call to this.focus(true))\n _this._previouslyFocusedElementInTrapZone = ev.target;\n }\n };\n _this._forceFocusInTrap = function (ev) {\n if (_this.props.disabled) {\n return;\n }\n if (FocusTrapZone._focusStack.length && _this === FocusTrapZone._focusStack[FocusTrapZone._focusStack.length - 1]) {\n var focusedElement = document.activeElement;\n if (!elementContains(_this._root.current, focusedElement)) {\n _this.focus();\n _this._hasFocus = true; // set focus here since we stop event propagation\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n _this._forceClickInTrap = function (ev) {\n if (_this.props.disabled) {\n return;\n }\n if (FocusTrapZone._focusStack.length && _this === FocusTrapZone._focusStack[FocusTrapZone._focusStack.length - 1]) {\n var clickedElement = ev.target;\n if (clickedElement && !elementContains(_this._root.current, clickedElement)) {\n _this.focus();\n _this._hasFocus = true; // set focus here since we stop event propagation\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n initializeComponentRef(_this);\n return _this;\n }\n FocusTrapZone.prototype.componentDidMount = function () {\n this._bringFocusIntoZone();\n this._updateEventHandlers(this.props);\n };\n FocusTrapZone.prototype.componentWillReceiveProps = function (nextProps) {\n var elementToFocusOnDismiss = nextProps.elementToFocusOnDismiss;\n if (elementToFocusOnDismiss && this._previouslyFocusedElementOutsideTrapZone !== elementToFocusOnDismiss) {\n this._previouslyFocusedElementOutsideTrapZone = elementToFocusOnDismiss;\n }\n this._updateEventHandlers(nextProps);\n };\n FocusTrapZone.prototype.componentDidUpdate = function (prevProps) {\n var prevForceFocusInsideTrap = prevProps.forceFocusInsideTrap !== undefined ? prevProps.forceFocusInsideTrap : true;\n var newForceFocusInsideTrap = this.props.forceFocusInsideTrap !== undefined ? this.props.forceFocusInsideTrap : true;\n var prevDisabled = prevProps.disabled !== undefined ? prevProps.disabled : false;\n var newDisabled = this.props.disabled !== undefined ? this.props.disabled : false;\n if ((!prevForceFocusInsideTrap && newForceFocusInsideTrap) || (prevDisabled && !newDisabled)) {\n // Transition from forceFocusInsideTrap / FTZ disabled to enabled.\n // Emulate what happens when a FocusTrapZone gets mounted.\n this._bringFocusIntoZone();\n }\n else if ((prevForceFocusInsideTrap && !newForceFocusInsideTrap) || (!prevDisabled && newDisabled)) {\n // Transition from forceFocusInsideTrap / FTZ enabled to disabled.\n // Emulate what happens when a FocusTrapZone gets unmounted.\n this._returnFocusToInitiator();\n }\n };\n FocusTrapZone.prototype.componentWillUnmount = function () {\n // don't handle return focus unless forceFocusInsideTrap is true or focus is still within FocusTrapZone\n if (!this.props.disabled ||\n this.props.forceFocusInsideTrap ||\n !elementContains(this._root.current, document.activeElement)) {\n this._returnFocusToInitiator();\n }\n };\n FocusTrapZone.prototype.render = function () {\n var _a = this.props, className = _a.className, _b = _a.disabled, disabled = _b === void 0 ? false : _b, ariaLabelledBy = _a.ariaLabelledBy;\n var divProps = getNativeProps(this.props, divProperties);\n var bumperProps = {\n style: {\n pointerEvents: 'none',\n position: 'fixed' // 'fixed' prevents browsers from scrolling to bumpers when viewport does not contain them\n },\n tabIndex: disabled ? -1 : 0,\n 'data-is-visible': true\n };\n return (React.createElement(\"div\", tslib_1.__assign({}, divProps, { className: className, ref: this._root, \"aria-labelledby\": ariaLabelledBy, onFocusCapture: this._onFocusCapture, onFocus: this._onRootFocus, onBlur: this._onRootBlur }),\n React.createElement(\"div\", tslib_1.__assign({}, bumperProps, { ref: this._firstBumper, onFocus: this._onFirstBumperFocus })),\n this.props.children,\n React.createElement(\"div\", tslib_1.__assign({}, bumperProps, { ref: this._lastBumper, onFocus: this._onLastBumperFocus }))));\n };\n FocusTrapZone.prototype.focus = function () {\n var _a = this.props, focusPreviouslyFocusedInnerElement = _a.focusPreviouslyFocusedInnerElement, firstFocusableSelector = _a.firstFocusableSelector;\n if (focusPreviouslyFocusedInnerElement &&\n this._previouslyFocusedElementInTrapZone &&\n elementContains(this._root.current, this._previouslyFocusedElementInTrapZone)) {\n // focus on the last item that had focus in the zone before we left the zone\n this._focusAsync(this._previouslyFocusedElementInTrapZone);\n return;\n }\n var focusSelector = typeof firstFocusableSelector === 'string' ? firstFocusableSelector : firstFocusableSelector && firstFocusableSelector();\n var _firstFocusableChild;\n if (this._root.current) {\n if (focusSelector) {\n _firstFocusableChild = this._root.current.querySelector('.' + focusSelector);\n }\n // Fall back to first element if query selector did not match any elements.\n if (!_firstFocusableChild) {\n _firstFocusableChild = getNextElement(this._root.current, this._root.current.firstChild, false, false, false, true);\n }\n }\n if (_firstFocusableChild) {\n this._focusAsync(_firstFocusableChild);\n }\n };\n FocusTrapZone.prototype._focusAsync = function (element) {\n if (!this._isBumper(element)) {\n focusAsync(element);\n }\n };\n FocusTrapZone.prototype._bringFocusIntoZone = function () {\n var _a = this.props, elementToFocusOnDismiss = _a.elementToFocusOnDismiss, _b = _a.disabled, disabled = _b === void 0 ? false : _b, _c = _a.disableFirstFocus, disableFirstFocus = _c === void 0 ? false : _c;\n if (disabled) {\n return;\n }\n FocusTrapZone._focusStack.push(this);\n this._previouslyFocusedElementOutsideTrapZone = elementToFocusOnDismiss\n ? elementToFocusOnDismiss\n : document.activeElement;\n if (!disableFirstFocus && !elementContains(this._root.current, this._previouslyFocusedElementOutsideTrapZone)) {\n this.focus();\n }\n };\n FocusTrapZone.prototype._returnFocusToInitiator = function () {\n var _this = this;\n var ignoreExternalFocusing = this.props.ignoreExternalFocusing;\n FocusTrapZone._focusStack = FocusTrapZone._focusStack.filter(function (value) {\n return _this !== value;\n });\n var activeElement = document.activeElement;\n if (!ignoreExternalFocusing &&\n this._previouslyFocusedElementOutsideTrapZone &&\n typeof this._previouslyFocusedElementOutsideTrapZone.focus === 'function' &&\n (elementContains(this._root.current, activeElement) || activeElement === document.body)) {\n this._focusAsync(this._previouslyFocusedElementOutsideTrapZone);\n }\n };\n FocusTrapZone.prototype._updateEventHandlers = function (newProps) {\n var _a = newProps.isClickableOutsideFocusTrap, isClickableOutsideFocusTrap = _a === void 0 ? false : _a, _b = newProps.forceFocusInsideTrap, forceFocusInsideTrap = _b === void 0 ? true : _b;\n if (forceFocusInsideTrap && !this._disposeFocusHandler) {\n this._disposeFocusHandler = on(window, 'focus', this._forceFocusInTrap, true);\n }\n else if (!forceFocusInsideTrap && this._disposeFocusHandler) {\n this._disposeFocusHandler();\n this._disposeFocusHandler = undefined;\n }\n if (!isClickableOutsideFocusTrap && !this._disposeClickHandler) {\n this._disposeClickHandler = on(window, 'click', this._forceClickInTrap, true);\n }\n else if (isClickableOutsideFocusTrap && this._disposeClickHandler) {\n this._disposeClickHandler();\n this._disposeClickHandler = undefined;\n }\n };\n FocusTrapZone.prototype._isBumper = function (element) {\n return element === this._firstBumper.current || element === this._lastBumper.current;\n };\n FocusTrapZone._focusStack = [];\n return FocusTrapZone;\n}(React.Component));\nexport { FocusTrapZone };\n//# sourceMappingURL=FocusTrapZone.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "index": 627, - "index2": 618, - "size": 5348, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "issuerId": "KdOp", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js" - }, - { - "id": "YbeO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js" - }, - { - "id": "KdOp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Popup", - "loc": "179:36-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Popup/index", - "loc": "235:36-41" - }, - { - "moduleId": "KdOp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Popup", - "loc": "1:0-24" - }, - { - "moduleId": "KdOp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Popup", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Popup" - ], - "providedExports": [ - "Popup" - ], - "optimizationBailout": [], - "depth": 12, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { Async, KeyCodes, divProperties, doesElementContainFocus, getDocument, getNativeProps, on } from '../../Utilities';\n/**\n * This adds accessibility to Dialog and Panel controls\n */\nvar Popup = /** @class */ (function (_super) {\n tslib_1.__extends(Popup, _super);\n function Popup(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._disposables = [];\n _this._onKeyDown = function (ev) {\n switch (ev.which) {\n case KeyCodes.escape:\n if (_this.props.onDismiss) {\n _this.props.onDismiss(ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n break;\n }\n };\n _this._onFocus = function () {\n _this._containsFocus = true;\n };\n _this._onBlur = function (ev) {\n if (_this._root.current && _this._root.current.contains(ev.relatedTarget)) {\n _this._containsFocus = false;\n }\n };\n _this._async = new Async(_this);\n _this.state = { needsVerticalScrollBar: false };\n return _this;\n }\n Popup.prototype.componentWillMount = function () {\n this._originalFocusedElement = getDocument().activeElement;\n };\n Popup.prototype.componentDidMount = function () {\n if (this._root.current) {\n this._disposables.push(on(this._root.current, 'focus', this._onFocus, true), on(this._root.current, 'blur', this._onBlur, true));\n if (doesElementContainFocus(this._root.current)) {\n this._containsFocus = true;\n }\n }\n this._updateScrollBarAsync();\n };\n Popup.prototype.componentDidUpdate = function () {\n this._updateScrollBarAsync();\n this._async.dispose();\n };\n Popup.prototype.componentWillUnmount = function () {\n this._disposables.forEach(function (dispose) { return dispose(); });\n if (this.props.shouldRestoreFocus &&\n this._originalFocusedElement &&\n this._containsFocus &&\n this._originalFocusedElement !== window) {\n // This slight delay is required so that we can unwind the stack, let react try to mess with focus, and then\n // apply the correct focus. Without the setTimeout, we end up focusing the correct thing, and then React wants\n // to reset the focus back to the thing it thinks should have been focused.\n if (this._originalFocusedElement) {\n this._originalFocusedElement.focus();\n }\n }\n };\n Popup.prototype.render = function () {\n var _a = this.props, role = _a.role, className = _a.className, ariaLabel = _a.ariaLabel, ariaLabelledBy = _a.ariaLabelledBy, ariaDescribedBy = _a.ariaDescribedBy, style = _a.style;\n return (React.createElement(\"div\", tslib_1.__assign({ ref: this._root }, getNativeProps(this.props, divProperties), { className: className, role: role, \"aria-label\": ariaLabel, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy, onKeyDown: this._onKeyDown, style: tslib_1.__assign({ overflowY: this.state.needsVerticalScrollBar ? 'scroll' : undefined, outline: 'none' }, style) }), this.props.children));\n };\n Popup.prototype._updateScrollBarAsync = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () {\n _this._getScrollBar();\n });\n };\n Popup.prototype._getScrollBar = function () {\n // If overflowY is overriden, don't waste time calculating whether the scrollbar is necessary.\n if (this.props.style && this.props.style.overflowY) {\n return;\n }\n var needsVerticalScrollBar = false;\n if (this._root && this._root.current && this._root.current.firstElementChild) {\n // ClientHeight returns the client height of an element rounded to an\n // integer. On some browsers at different zoom levels this rounding\n // can generate different results for the root container and child even\n // though they are the same height. This causes us to show a scroll bar\n // when not needed. Ideally we would use BoundingClientRect().height\n // instead however seems that the API is 90% slower than using ClientHeight.\n // Therefore instead we will calculate the difference between heights and\n // allow for a 1px difference to still be considered ok and not show the\n // scroll bar.\n var rootHeight = this._root.current.clientHeight;\n var firstChildHeight = this._root.current.firstElementChild.clientHeight;\n if (rootHeight > 0 && firstChildHeight > rootHeight) {\n needsVerticalScrollBar = firstChildHeight - rootHeight > 1;\n }\n }\n if (this.state.needsVerticalScrollBar !== needsVerticalScrollBar) {\n this.setState({\n needsVerticalScrollBar: needsVerticalScrollBar\n });\n }\n };\n Popup.defaultProps = {\n shouldRestoreFocus: true\n };\n return Popup;\n}(React.Component));\nexport { Popup };\n//# sourceMappingURL=Popup.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "index": 632, - "index2": 622, - "size": 464, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "issuerId": "xpRR", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - }, - { - "id": "xpRR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "type": "harmony side effect evaluation", - "userRequest": "./DraggableZone.styles", - "loc": "3:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "type": "harmony import specifier", - "userRequest": "./DraggableZone.styles", - "loc": "156:23-36" - }, - { - "moduleId": "xpRR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DraggableZone.styles", - "loc": "2:0-39" - }, - { - "moduleId": "xpRR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DraggableZone.styles", - "loc": "2:0-39" - } - ], - "usedExports": [ - "getClassNames" - ], - "providedExports": [ - "getClassNames" - ], - "optimizationBailout": [], - "depth": 12, - "source": "import { memoizeFunction } from '../../Utilities';\nimport { mergeStyles } from '../../Styling';\nexport var getClassNames = memoizeFunction(function (className, isDragging) {\n return {\n root: mergeStyles(className, isDragging && {\n touchAction: 'none',\n selectors: {\n '& *': {\n userSelect: 'none'\n }\n }\n })\n };\n});\n//# sourceMappingURL=DraggableZone.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "index": 631, - "index2": 623, - "size": 10874, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "issuerId": "xpRR", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - }, - { - "id": "xpRR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/DraggableZone/index", - "loc": "238:59-72" - }, - { - "moduleId": "xpRR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DraggableZone", - "loc": "1:0-32" - }, - { - "moduleId": "xpRR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DraggableZone", - "loc": "1:0-32" - } - ], - "usedExports": [ - "DraggableZone" - ], - "providedExports": [ - "DraggableZone" - ], - "optimizationBailout": [], - "depth": 12, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { getClassNames } from './DraggableZone.styles';\nimport { on } from '../../Utilities';\nvar eventMapping = {\n touch: {\n start: 'touchstart',\n move: 'touchmove',\n stop: 'touchend'\n },\n mouse: {\n start: 'mousedown',\n move: 'mousemove',\n stop: 'mouseup'\n }\n};\nvar DraggableZone = /** @class */ (function (_super) {\n tslib_1.__extends(DraggableZone, _super);\n function DraggableZone(props) {\n var _this = _super.call(this, props) || this;\n _this._currentEventType = eventMapping.mouse;\n _this._events = [];\n _this._onMouseDown = function (event) {\n var onMouseDown = React.Children.only(_this.props.children).props.onMouseDown;\n if (onMouseDown) {\n onMouseDown(event);\n }\n _this._currentEventType = eventMapping.mouse;\n return _this._onDragStart(event);\n };\n _this._onMouseUp = function (event) {\n var onMouseUp = React.Children.only(_this.props.children).props.onMouseUp;\n if (onMouseUp) {\n onMouseUp(event);\n }\n _this._currentEventType = eventMapping.mouse;\n return _this._onDragStop(event);\n };\n _this._onTouchStart = function (event) {\n var onTouchStart = React.Children.only(_this.props.children).props.onTouchStart;\n if (onTouchStart) {\n onTouchStart(event);\n }\n _this._currentEventType = eventMapping.touch;\n return _this._onDragStart(event);\n };\n _this._onTouchEnd = function (event) {\n var onTouchEnd = React.Children.only(_this.props.children).props.onTouchEnd;\n if (onTouchEnd) {\n onTouchEnd(event);\n }\n _this._currentEventType = eventMapping.touch;\n _this._onDragStop(event);\n };\n _this._onDragStart = function (event) {\n // Only handle left click for dragging\n if (typeof event.button === 'number' && event.button !== 0) {\n return false;\n }\n // If the target doesn't match the handleSelector OR\n // if the target does match the preventDragSelector, bail out\n if ((_this.props.handleSelector && !_this._matchesSelector(event.target, _this.props.handleSelector)) ||\n (_this.props.preventDragSelector && _this._matchesSelector(event.target, _this.props.preventDragSelector))) {\n return;\n }\n // Remember the touch identifier if this is a touch event so we can\n // distinguish between individual touches in multitouch scenarios\n // by remembering which touch point we were given\n _this._touchId = _this._getTouchId(event);\n var position = _this._getControlPosition(event);\n if (position === undefined) {\n return;\n }\n var dragData = _this._createDragDataFromPosition(position);\n _this.props.onStart && _this.props.onStart(event, dragData);\n _this.setState({\n isDragging: true,\n lastPosition: position\n });\n // hook up the appropriate mouse/touch events to the body to ensure\n // smooth dragging\n _this._events = [\n on(document.body, _this._currentEventType.move, _this._onDrag),\n on(document.body, _this._currentEventType.stop, _this._onDragStop)\n ];\n };\n _this._onDrag = function (event) {\n // Prevent scrolling on mobile devices\n if (event.type === 'touchmove') {\n event.preventDefault();\n }\n var position = _this._getControlPosition(event);\n if (!position) {\n return;\n }\n // create the updated drag data from the position data\n var updatedData = _this._createUpdatedDragData(_this._createDragDataFromPosition(position));\n var updatedPosition = updatedData.position;\n _this.props.onDragChange && _this.props.onDragChange(event, updatedData);\n _this.setState({\n position: updatedPosition,\n lastPosition: position\n });\n };\n _this._onDragStop = function (event) {\n if (!_this.state.isDragging) {\n return;\n }\n var position = _this._getControlPosition(event);\n if (!position) {\n return;\n }\n var baseDragData = _this._createDragDataFromPosition(position);\n // Set dragging to false and reset the lastPosition\n _this.setState({\n isDragging: false,\n lastPosition: undefined\n });\n _this.props.onStop && _this.props.onStop(event, baseDragData);\n if (_this.props.position) {\n _this.setState({\n position: _this.props.position\n });\n }\n // Remove event handlers\n _this._events.forEach(function (dispose) { return dispose(); });\n };\n _this.state = {\n isDragging: false,\n position: _this.props.position || { x: 0, y: 0 },\n lastPosition: undefined\n };\n return _this;\n }\n DraggableZone.prototype.componentDidUpdate = function (prevProps) {\n if (this.props.position && (!prevProps.position || this.props.position !== prevProps.position)) {\n this.setState({ position: this.props.position });\n }\n };\n DraggableZone.prototype.componentWillUnmount = function () {\n this._events.forEach(function (dispose) { return dispose(); });\n };\n DraggableZone.prototype.render = function () {\n var child = React.Children.only(this.props.children);\n var props = child.props;\n var position = this.props.position;\n var _a = this.state, statePosition = _a.position, isDragging = _a.isDragging;\n var x = statePosition.x;\n var y = statePosition.y;\n if (position && !isDragging) {\n x = position.x;\n y = position.y;\n }\n return React.cloneElement(child, {\n style: tslib_1.__assign({}, props.style, { transform: \"translate(\" + x + \"px, \" + y + \"px)\" }),\n className: getClassNames(props.className, this.state.isDragging).root,\n onMouseDown: this._onMouseDown,\n onMouseUp: this._onMouseUp,\n onTouchStart: this._onTouchStart,\n onTouchEnd: this._onTouchEnd\n });\n };\n /**\n * Get the control position based off the event that fired\n * @param event - The event to get offsets from\n */\n DraggableZone.prototype._getControlPosition = function (event) {\n var touchObj = this._getActiveTouch(event);\n // did we get the right touch?\n if (this._touchId !== undefined && !touchObj) {\n return undefined;\n }\n var eventToGetOffset = touchObj || event;\n return {\n x: eventToGetOffset.clientX,\n y: eventToGetOffset.clientY\n };\n };\n /**\n * Get the active touch point that we have saved from the event's TouchList\n * @param event - The event used to get the TouchList for the active touch point\n */\n DraggableZone.prototype._getActiveTouch = function (event) {\n return ((event.targetTouches && this._findTouchInTouchList(event.targetTouches)) ||\n (event.changedTouches && this._findTouchInTouchList(event.changedTouches)));\n };\n /**\n * Get the initial touch identifier associated with the given event\n * @param event - The event that contains the TouchList\n */\n DraggableZone.prototype._getTouchId = function (event) {\n var touch = (event.targetTouches && event.targetTouches[0]) || (event.changedTouches && event.changedTouches[0]);\n if (touch) {\n return touch.identifier;\n }\n };\n /**\n * Returns if an element (or any of the element's parents) match the given selector\n */\n DraggableZone.prototype._matchesSelector = function (element, selector) {\n if (!element || element === document.body) {\n return false;\n }\n /* tslint:disable-next-line:no-string-literal */\n var matchesSelectorFn = element.matches || element.webkitMatchesSelector || element['msMatchesSelector'] /* for IE */;\n if (!matchesSelectorFn) {\n return false;\n }\n return matchesSelectorFn.call(element, selector) || this._matchesSelector(element.parentElement, selector);\n };\n /**\n * Attempts to find the Touch that matches the identifier we stored in dragStart\n * @param touchList The TouchList to look for the stored identifier from dragStart\n */\n DraggableZone.prototype._findTouchInTouchList = function (touchList) {\n if (this._touchId === undefined) {\n return;\n }\n for (var i = 0; i < touchList.length; i++) {\n if (touchList[i].identifier === this._touchId) {\n return touchList[i];\n }\n }\n return undefined;\n };\n /**\n * Create DragData based off of the last known position and the new position passed in\n * @param position The new position as part of the drag\n */\n DraggableZone.prototype._createDragDataFromPosition = function (position) {\n var lastPosition = this.state.lastPosition;\n // If we have no lastPosition, use the given position\n // for last position\n if (lastPosition === undefined) {\n return {\n delta: { x: 0, y: 0 },\n lastPosition: position,\n position: position\n };\n }\n return {\n delta: {\n x: position.x - lastPosition.x,\n y: position.y - lastPosition.y\n },\n lastPosition: lastPosition,\n position: position\n };\n };\n /**\n * Creates an updated DragData based off the current position and given baseDragData\n * @param baseDragData The base DragData (gotten from _createDragDataFromPosition) used to calculate the updated positions\n */\n DraggableZone.prototype._createUpdatedDragData = function (baseDragData) {\n var position = this.state.position;\n return {\n position: {\n x: position.x + baseDragData.delta.x,\n y: position.y + baseDragData.delta.y\n },\n delta: baseDragData.delta,\n lastPosition: position\n };\n };\n return DraggableZone;\n}(React.Component));\nexport { DraggableZone };\n//# sourceMappingURL=DraggableZone.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.types.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.types.js", - "index": 647, - "index2": 634, - "size": 796, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "issuerId": "Dx+s", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "eWqB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "Dx+s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone.types", - "loc": "3:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "124:64-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "171:42-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "176:42-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "181:42-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "186:42-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "202:57-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "203:58-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "206:46-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "210:51-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "210:98-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "459:205-230" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "511:101-119" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "540:55-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "674:105-123" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "705:103-121" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "794:37-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "919:19-37" - }, - { - "moduleId": "Dx+s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone.types", - "loc": "2:0-34" - }, - { - "moduleId": "Dx+s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone.types", - "loc": "2:0-34" - } - ], - "usedExports": [ - "FocusZoneDirection", - "FocusZoneTabbableElements" - ], - "providedExports": [ - "FocusZoneTabbableElements", - "FocusZoneDirection" - ], - "optimizationBailout": [], - "depth": 12, - "source": "/**\n * {@docCategory FocusZone}\n */\nexport var FocusZoneTabbableElements = {\n /** Tabbing is not allowed */\n none: 0,\n /** All tabbing action is allowed */\n all: 1,\n /** Tabbing is allowed only on input elements */\n inputOnly: 2\n};\n/**\n * {@docCategory FocusZone}\n */\nexport var FocusZoneDirection;\n(function (FocusZoneDirection) {\n /** Only react to up/down arrows. */\n FocusZoneDirection[FocusZoneDirection[\"vertical\"] = 0] = \"vertical\";\n /** Only react to left/right arrows. */\n FocusZoneDirection[FocusZoneDirection[\"horizontal\"] = 1] = \"horizontal\";\n /** React to all arrows. */\n FocusZoneDirection[FocusZoneDirection[\"bidirectional\"] = 2] = \"bidirectional\";\n})(FocusZoneDirection || (FocusZoneDirection = {}));\n//# sourceMappingURL=FocusZone.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/FocusZone.js", - "index": 656, - "index2": 645, - "size": 44075, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "issuerId": "Dx+s", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "eWqB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "Dx+s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "459:65-74" - }, - { - "moduleId": "Dx+s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "Dx+s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone", - "loc": "1:0-28" - } - ], - "usedExports": [ - "FocusZone" - ], - "providedExports": [ - "FocusZone" - ], - "optimizationBailout": [], - "depth": 12, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { FocusZoneDirection, FocusZoneTabbableElements } from './FocusZone.types';\nimport { KeyCodes, css, elementContains, getDocument, getElementIndexPath, getFocusableByIndexPath, getId, getNativeProps, getNextElement, getParent, getPreviousElement, getRTL, htmlElementProperties, initializeComponentRef, isElementFocusSubZone, isElementFocusZone, isElementTabbable, on, raiseClick, shouldWrapFocus, warnDeprecations, portalContainsElement, findScrollableParent } from '../../Utilities';\nimport { mergeStyles } from '@uifabric/merge-styles';\nvar IS_FOCUSABLE_ATTRIBUTE = 'data-is-focusable';\nvar IS_ENTER_DISABLED_ATTRIBUTE = 'data-disable-click-on-enter';\nvar FOCUSZONE_ID_ATTRIBUTE = 'data-focuszone-id';\nvar TABINDEX = 'tabindex';\nvar NO_VERTICAL_WRAP = 'data-no-vertical-wrap';\nvar NO_HORIZONTAL_WRAP = 'data-no-horizontal-wrap';\nvar LARGE_DISTANCE_FROM_CENTER = 999999999;\nvar LARGE_NEGATIVE_DISTANCE_FROM_CENTER = -999999999;\nvar focusZoneStyles;\nvar focusZoneClass = 'ms-FocusZone';\n// Helper function that will return a class for when the root is focused\nfunction getRootClass() {\n if (!focusZoneStyles) {\n focusZoneStyles = mergeStyles({\n selectors: {\n ':focus': {\n outline: 'none'\n }\n }\n }, focusZoneClass);\n }\n return focusZoneStyles;\n}\nvar _allInstances = {};\nvar _outerZones = new Set();\nvar ALLOWED_INPUT_TYPES = ['text', 'number', 'password', 'email', 'tel', 'url', 'search'];\nvar ALLOW_VIRTUAL_ELEMENTS = false;\nvar FocusZone = /** @class */ (function (_super) {\n tslib_1.__extends(FocusZone, _super);\n function FocusZone(props) {\n var _this = _super.call(this, props) || this;\n _this._disposables = [];\n _this._root = React.createRef();\n _this._onFocus = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var _a = _this.props, onActiveElementChanged = _a.onActiveElementChanged, doNotAllowFocusEventToPropagate = _a.doNotAllowFocusEventToPropagate, onFocusNotification = _a.onFocusNotification;\n var isImmediateDescendant = _this._isImmediateDescendantOfZone(ev.target);\n var newActiveElement;\n if (onFocusNotification) {\n onFocusNotification();\n }\n if (isImmediateDescendant) {\n newActiveElement = ev.target;\n }\n else {\n var parentElement = ev.target;\n while (parentElement && parentElement !== _this._root.current) {\n if (isElementTabbable(parentElement) && _this._isImmediateDescendantOfZone(parentElement)) {\n newActiveElement = parentElement;\n break;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n }\n var initialElementFocused = !_this._activeElement;\n // If the new active element is a child of this zone and received focus,\n // update alignment an immediate descendant\n if (newActiveElement && newActiveElement !== _this._activeElement) {\n if (isImmediateDescendant || initialElementFocused) {\n _this._setFocusAlignment(newActiveElement, initialElementFocused);\n }\n _this._activeElement = newActiveElement;\n if (initialElementFocused) {\n _this._updateTabIndexes();\n }\n }\n if (onActiveElementChanged) {\n onActiveElementChanged(_this._activeElement, ev);\n }\n if (doNotAllowFocusEventToPropagate) {\n ev.stopPropagation();\n }\n };\n _this._onBlur = function () {\n _this._setParkedFocus(false);\n };\n /**\n * Handle global tab presses so that we can patch tabindexes on the fly.\n */\n _this._onKeyDownCapture = function (ev) {\n if (ev.which === KeyCodes.tab) {\n _outerZones.forEach(function (zone) { return zone._updateTabIndexes(); });\n }\n };\n _this._onMouseDown = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var disabled = _this.props.disabled;\n if (disabled) {\n return;\n }\n var target = ev.target;\n var path = [];\n while (target && target !== _this._root.current) {\n path.push(target);\n target = getParent(target, ALLOW_VIRTUAL_ELEMENTS);\n }\n while (path.length) {\n target = path.pop();\n if (target && isElementTabbable(target)) {\n _this._setActiveElement(target, true);\n }\n if (isElementFocusZone(target)) {\n // Stop here since the focus zone will take care of its own children.\n break;\n }\n }\n };\n /**\n * Handle the keystrokes.\n */\n _this._onKeyDown = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var _a = _this.props, direction = _a.direction, disabled = _a.disabled, isInnerZoneKeystroke = _a.isInnerZoneKeystroke;\n if (disabled) {\n return;\n }\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n }\n // If the default has been prevented, do not process keyboard events.\n if (ev.isDefaultPrevented()) {\n return;\n }\n if (document.activeElement === _this._root.current && _this._isInnerZone) {\n // If this element has focus, it is being controlled by a parent.\n // Ignore the keystroke.\n return;\n }\n if (isInnerZoneKeystroke && isInnerZoneKeystroke(ev) && _this._isImmediateDescendantOfZone(ev.target)) {\n // Try to focus\n var innerZone = _this._getFirstInnerZone();\n if (innerZone) {\n if (!innerZone.focus(true)) {\n return;\n }\n }\n else if (isElementFocusSubZone(ev.target)) {\n if (!_this.focusElement(getNextElement(ev.target, ev.target.firstChild, true))) {\n return;\n }\n }\n else {\n return;\n }\n }\n else if (ev.altKey) {\n return;\n }\n else {\n switch (ev.which) {\n case KeyCodes.space:\n if (_this._tryInvokeClickForFocusable(ev.target)) {\n break;\n }\n return;\n case KeyCodes.left:\n if (direction !== FocusZoneDirection.vertical && _this._moveFocusLeft()) {\n break;\n }\n return;\n case KeyCodes.right:\n if (direction !== FocusZoneDirection.vertical && _this._moveFocusRight()) {\n break;\n }\n return;\n case KeyCodes.up:\n if (direction !== FocusZoneDirection.horizontal && _this._moveFocusUp()) {\n break;\n }\n return;\n case KeyCodes.down:\n if (direction !== FocusZoneDirection.horizontal && _this._moveFocusDown()) {\n break;\n }\n return;\n case KeyCodes.pageDown:\n if (_this._moveFocusPaging(true)) {\n break;\n }\n return;\n case KeyCodes.pageUp:\n if (_this._moveFocusPaging(false)) {\n break;\n }\n return;\n case KeyCodes.tab:\n if (_this.props.allowTabKey ||\n _this.props.handleTabKey === FocusZoneTabbableElements.all ||\n (_this.props.handleTabKey === FocusZoneTabbableElements.inputOnly && _this._isElementInput(ev.target))) {\n var focusChanged = false;\n _this._processingTabKey = true;\n if (direction === FocusZoneDirection.vertical ||\n !_this._shouldWrapFocus(_this._activeElement, NO_HORIZONTAL_WRAP)) {\n focusChanged = ev.shiftKey ? _this._moveFocusUp() : _this._moveFocusDown();\n }\n else if (direction === FocusZoneDirection.horizontal || direction === FocusZoneDirection.bidirectional) {\n var tabWithDirection = getRTL() ? !ev.shiftKey : ev.shiftKey;\n focusChanged = tabWithDirection ? _this._moveFocusLeft() : _this._moveFocusRight();\n }\n _this._processingTabKey = false;\n if (focusChanged) {\n break;\n }\n }\n return;\n case KeyCodes.home:\n if (_this._isElementInput(ev.target) && !_this._shouldInputLoseFocus(ev.target, false)) {\n return false;\n }\n var firstChild = _this._root.current && _this._root.current.firstChild;\n if (_this._root.current && firstChild && _this.focusElement(getNextElement(_this._root.current, firstChild, true))) {\n break;\n }\n return;\n case KeyCodes.end:\n if (_this._isElementInput(ev.target) && !_this._shouldInputLoseFocus(ev.target, true)) {\n return false;\n }\n var lastChild = _this._root.current && _this._root.current.lastChild;\n if (_this._root.current && _this.focusElement(getPreviousElement(_this._root.current, lastChild, true, true, true))) {\n break;\n }\n return;\n case KeyCodes.enter:\n if (_this._tryInvokeClickForFocusable(ev.target)) {\n break;\n }\n return;\n default:\n return;\n }\n }\n ev.preventDefault();\n ev.stopPropagation();\n };\n _this._getHorizontalDistanceFromCenter = function (isForward, activeRect, targetRect) {\n var leftAlignment = _this._focusAlignment.x;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n var targetRectBottom = Math.floor(targetRect.bottom);\n var activeRectTop = Math.floor(activeRect.top);\n var isValidCandidateOnpagingDown = isForward && targetRectTop > activeRectBottom;\n var isValidCandidateOnpagingUp = !isForward && targetRectBottom < activeRectTop;\n if (isValidCandidateOnpagingDown || isValidCandidateOnpagingUp) {\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n return 0;\n }\n return Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n else {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n };\n // Manage componentRef resolution.\n initializeComponentRef(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('FocusZone', props, {\n rootProps: undefined,\n allowTabKey: 'handleTabKey',\n elementType: 'as',\n ariaDescribedBy: 'aria-describedby',\n ariaLabelledBy: 'aria-labelledby'\n });\n }\n _this._id = getId('FocusZone');\n _this._focusAlignment = {\n x: 0,\n y: 0\n };\n _this._processingTabKey = false;\n return _this;\n }\n /** Used for testing purposes only. */\n FocusZone.getOuterZones = function () {\n return _outerZones.size;\n };\n FocusZone.prototype.componentDidMount = function () {\n var root = this._root.current;\n _allInstances[this._id] = this;\n if (root) {\n var windowElement = root.ownerDocument.defaultView;\n var parentElement = getParent(root, ALLOW_VIRTUAL_ELEMENTS);\n while (parentElement && parentElement !== document.body && parentElement.nodeType === 1) {\n if (isElementFocusZone(parentElement)) {\n this._isInnerZone = true;\n break;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n if (!this._isInnerZone) {\n _outerZones.add(this);\n if (windowElement && _outerZones.size === 1) {\n this._disposables.push(on(windowElement, 'keydown', this._onKeyDownCapture, true));\n }\n }\n this._disposables.push(on(root, 'blur', this._onBlur, true));\n // Assign initial tab indexes so that we can set initial focus as appropriate.\n this._updateTabIndexes();\n if (this.props.defaultActiveElement) {\n this._activeElement = getDocument().querySelector(this.props.defaultActiveElement);\n this.focus();\n }\n }\n };\n FocusZone.prototype.componentDidUpdate = function () {\n var root = this._root.current;\n var doc = getDocument(root);\n if (doc && this._lastIndexPath && (doc.activeElement === doc.body || doc.activeElement === root)) {\n // The element has been removed after the render, attempt to restore focus.\n var elementToFocus = getFocusableByIndexPath(root, this._lastIndexPath);\n if (elementToFocus) {\n this._setActiveElement(elementToFocus, true);\n elementToFocus.focus();\n this._setParkedFocus(false);\n }\n else {\n // We had a focus path to restore, but now that path is unresolvable. Park focus\n // on the container until we can try again.\n this._setParkedFocus(true);\n }\n }\n };\n FocusZone.prototype.componentWillUnmount = function () {\n delete _allInstances[this._id];\n if (!this._isInnerZone) {\n _outerZones.delete(this);\n }\n // Dispose all events.\n this._disposables.forEach(function (d) { return d(); });\n // Clear function references so their closures can be garbage-collected.\n delete this._disposables;\n };\n FocusZone.prototype.render = function () {\n var _a = this.props, rootProps = _a.rootProps, ariaDescribedBy = _a.ariaDescribedBy, ariaLabelledBy = _a.ariaLabelledBy, className = _a.className;\n var divProps = getNativeProps(this.props, htmlElementProperties);\n var Tag = this.props.as || this.props.elementType || 'div';\n // Note, right before rendering/reconciling proceeds, we need to record if focus\n // was in the zone before the update. This helper will track this and, if focus\n // was actually in the zone, what the index path to the element is at this time.\n // Then, later in componentDidUpdate, we can evaluate if we need to restore it in\n // the case the element was removed.\n this._evaluateFocusBeforeRender();\n return (React.createElement(Tag, tslib_1.__assign({ role: \"presentation\", \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy }, divProps, rootProps, { \n // Once the getClassName correctly memoizes inputs this should\n // be replaced so that className is passed to getRootClass and is included there so\n // the class names will always be in the same order.\n className: css(getRootClass(), className), ref: this._root, \"data-focuszone-id\": this._id, onKeyDown: this._onKeyDown, onFocus: this._onFocus, onMouseDownCapture: this._onMouseDown }), this.props.children));\n };\n /**\n * Sets focus to the first tabbable item in the zone.\n * @param forceIntoFirstElement - If true, focus will be forced into the first element, even\n * if focus is already in the focus zone.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focus = function (forceIntoFirstElement) {\n if (forceIntoFirstElement === void 0) { forceIntoFirstElement = false; }\n if (this._root.current) {\n if (!forceIntoFirstElement && this._root.current.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true' && this._isInnerZone) {\n var ownerZoneElement = this._getOwnerZone(this._root.current);\n if (ownerZoneElement !== this._root.current) {\n var ownerZone = _allInstances[ownerZoneElement.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n return !!ownerZone && ownerZone.focusElement(this._root.current);\n }\n return false;\n }\n else if (!forceIntoFirstElement &&\n this._activeElement &&\n elementContains(this._root.current, this._activeElement) &&\n isElementTabbable(this._activeElement)) {\n this._activeElement.focus();\n return true;\n }\n else {\n var firstChild = this._root.current.firstChild;\n return this.focusElement(getNextElement(this._root.current, firstChild, true));\n }\n }\n return false;\n };\n /**\n * Sets focus to a specific child element within the zone. This can be used in conjunction with\n * onBeforeFocus to created delayed focus scenarios (like animate the scroll position to the correct\n * location and then focus.)\n * @param element - The child element within the zone to focus.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focusElement = function (element) {\n var onBeforeFocus = this.props.onBeforeFocus;\n if (onBeforeFocus && !onBeforeFocus(element)) {\n return false;\n }\n if (element) {\n // when we Set focus to a specific child, we should recalculate the alignment depend on its position\n this._setActiveElement(element);\n if (this._activeElement) {\n this._activeElement.focus();\n }\n return true;\n }\n return false;\n };\n /**\n * Forces horizontal alignment in the context of vertical arrowing to use specific point as the reference, rather than a center based on\n * the last horizontal motion.\n * @param point - the new reference point.\n */\n FocusZone.prototype.setFocusAlignment = function (point) {\n this._focusAlignment = point;\n };\n FocusZone.prototype._evaluateFocusBeforeRender = function () {\n var root = this._root.current;\n var doc = getDocument(root);\n if (doc) {\n var focusedElement = doc.activeElement;\n // Only update the index path if we are not parked on the root.\n if (focusedElement !== root) {\n var shouldRestoreFocus = elementContains(root, focusedElement, false);\n this._lastIndexPath = shouldRestoreFocus ? getElementIndexPath(root, doc.activeElement) : undefined;\n }\n }\n };\n /**\n * When focus is in the zone at render time but then all focusable elements are removed,\n * we \"park\" focus temporarily on the root. Once we update with focusable children, we restore\n * focus to the closest path from previous. If the user tabs away from the parked container,\n * we restore focusability to the pre-parked state.\n */\n FocusZone.prototype._setParkedFocus = function (isParked) {\n var root = this._root.current;\n if (root && this._isParked !== isParked) {\n this._isParked = isParked;\n if (isParked) {\n if (!this.props.allowFocusRoot) {\n this._parkedTabIndex = root.getAttribute('tabindex');\n root.setAttribute('tabindex', '-1');\n }\n root.focus();\n }\n else {\n if (!this.props.allowFocusRoot) {\n if (this._parkedTabIndex) {\n root.setAttribute('tabindex', this._parkedTabIndex);\n this._parkedTabIndex = undefined;\n }\n else {\n root.removeAttribute('tabindex');\n }\n }\n }\n }\n };\n FocusZone.prototype._setActiveElement = function (element, forceAlignment) {\n var previousActiveElement = this._activeElement;\n this._activeElement = element;\n if (previousActiveElement) {\n if (isElementFocusZone(previousActiveElement)) {\n this._updateTabIndexes(previousActiveElement);\n }\n previousActiveElement.tabIndex = -1;\n }\n if (this._activeElement) {\n if (!this._focusAlignment || forceAlignment) {\n this._setFocusAlignment(element, true, true);\n }\n this._activeElement.tabIndex = 0;\n }\n };\n /**\n * Walk up the dom try to find a focusable element.\n */\n FocusZone.prototype._tryInvokeClickForFocusable = function (target) {\n if (target === this._root.current) {\n return false;\n }\n do {\n if (target.tagName === 'BUTTON' || target.tagName === 'A' || target.tagName === 'INPUT' || target.tagName === 'TEXTAREA') {\n return false;\n }\n if (this._isImmediateDescendantOfZone(target) &&\n target.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true' &&\n target.getAttribute(IS_ENTER_DISABLED_ATTRIBUTE) !== 'true') {\n raiseClick(target);\n return true;\n }\n target = getParent(target, ALLOW_VIRTUAL_ELEMENTS);\n } while (target !== this._root.current);\n return false;\n };\n /**\n * Traverse to find first child zone.\n */\n FocusZone.prototype._getFirstInnerZone = function (rootElement) {\n rootElement = rootElement || this._activeElement || this._root.current;\n if (!rootElement) {\n return null;\n }\n if (isElementFocusZone(rootElement)) {\n return _allInstances[rootElement.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n }\n var child = rootElement.firstElementChild;\n while (child) {\n if (isElementFocusZone(child)) {\n return _allInstances[child.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n }\n var match = this._getFirstInnerZone(child);\n if (match) {\n return match;\n }\n child = child.nextElementSibling;\n }\n return null;\n };\n FocusZone.prototype._moveFocus = function (isForward, getDistanceFromCenter, ev, useDefaultWrap) {\n if (useDefaultWrap === void 0) { useDefaultWrap = true; }\n var element = this._activeElement;\n var candidateDistance = -1;\n var candidateElement = undefined;\n var changedFocus = false;\n var isBidirectional = this.props.direction === FocusZoneDirection.bidirectional;\n if (!element || !this._root.current) {\n return false;\n }\n if (this._isElementInput(element)) {\n if (!this._shouldInputLoseFocus(element, isForward)) {\n return false;\n }\n }\n var activeRect = isBidirectional ? element.getBoundingClientRect() : null;\n do {\n element = (isForward ? getNextElement(this._root.current, element) : getPreviousElement(this._root.current, element));\n if (isBidirectional) {\n if (element) {\n var targetRect = element.getBoundingClientRect();\n var elementDistance = getDistanceFromCenter(activeRect, targetRect);\n if (elementDistance === -1 && candidateDistance === -1) {\n candidateElement = element;\n break;\n }\n if (elementDistance > -1 && (candidateDistance === -1 || elementDistance < candidateDistance)) {\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n if (candidateDistance >= 0 && elementDistance < 0) {\n break;\n }\n }\n }\n else {\n candidateElement = element;\n break;\n }\n } while (element);\n // Focus the closest candidate\n if (candidateElement && candidateElement !== this._activeElement) {\n changedFocus = true;\n this.focusElement(candidateElement);\n }\n else if (this.props.isCircularNavigation && useDefaultWrap) {\n if (isForward) {\n return this.focusElement(getNextElement(this._root.current, this._root.current.firstElementChild, true));\n }\n else {\n return this.focusElement(getPreviousElement(this._root.current, this._root.current.lastElementChild, true, true, true));\n }\n }\n return changedFocus;\n };\n FocusZone.prototype._moveFocusDown = function () {\n var _this = this;\n var targetTop = -1;\n var leftAlignment = this._focusAlignment.x;\n if (this._moveFocus(true, function (activeRect, targetRect) {\n var distance = -1;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n if (targetRectTop < activeRectBottom) {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n if ((targetTop === -1 && targetRectTop >= activeRectBottom) || targetRectTop === targetTop) {\n targetTop = targetRectTop;\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n distance = 0;\n }\n else {\n distance = Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n }\n return distance;\n })) {\n this._setFocusAlignment(this._activeElement, false, true);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusUp = function () {\n var _this = this;\n var targetTop = -1;\n var leftAlignment = this._focusAlignment.x;\n if (this._moveFocus(false, function (activeRect, targetRect) {\n var distance = -1;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectBottom = Math.floor(targetRect.bottom);\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectTop = Math.floor(activeRect.top);\n if (targetRectBottom > activeRectTop) {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n if ((targetTop === -1 && targetRectBottom <= activeRectTop) || targetRectTop === targetTop) {\n targetTop = targetRectTop;\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n distance = 0;\n }\n else {\n distance = Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n }\n return distance;\n })) {\n this._setFocusAlignment(this._activeElement, false, true);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusLeft = function () {\n var _this = this;\n var shouldWrap = this._shouldWrapFocus(this._activeElement, NO_HORIZONTAL_WRAP);\n if (this._moveFocus(getRTL(), function (activeRect, targetRect) {\n var distance = -1;\n var topBottomComparison;\n if (getRTL()) {\n // When in RTL, this comparison should be the same as the one in _moveFocusRight for LTR.\n // Going left at a leftmost rectangle will go down a line instead of up a line like in LTR.\n // This is important, because we want to be comparing the top of the target rect\n // with the bottom of the active rect.\n topBottomComparison = targetRect.top.toFixed(3) < activeRect.bottom.toFixed(3);\n }\n else {\n topBottomComparison = targetRect.bottom.toFixed(3) > activeRect.top.toFixed(3);\n }\n if (topBottomComparison && targetRect.right <= activeRect.right && _this.props.direction !== FocusZoneDirection.vertical) {\n distance = activeRect.right - targetRect.right;\n }\n else {\n if (!shouldWrap) {\n distance = LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n }\n return distance;\n }, undefined /*ev*/, shouldWrap)) {\n this._setFocusAlignment(this._activeElement, true, false);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusRight = function () {\n var _this = this;\n var shouldWrap = this._shouldWrapFocus(this._activeElement, NO_HORIZONTAL_WRAP);\n if (this._moveFocus(!getRTL(), function (activeRect, targetRect) {\n var distance = -1;\n var topBottomComparison;\n if (getRTL()) {\n // When in RTL, this comparison should be the same as the one in _moveFocusLeft for LTR.\n // Going right at a rightmost rectangle will go up a line instead of down a line like in LTR.\n // This is important, because we want to be comparing the bottom of the target rect\n // with the top of the active rect.\n topBottomComparison = targetRect.bottom.toFixed(3) > activeRect.top.toFixed(3);\n }\n else {\n topBottomComparison = targetRect.top.toFixed(3) < activeRect.bottom.toFixed(3);\n }\n if (topBottomComparison && targetRect.left >= activeRect.left && _this.props.direction !== FocusZoneDirection.vertical) {\n distance = targetRect.left - activeRect.left;\n }\n else if (!shouldWrap) {\n distance = LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return distance;\n }, undefined /*ev*/, shouldWrap)) {\n this._setFocusAlignment(this._activeElement, true, false);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusPaging = function (isForward, useDefaultWrap) {\n if (useDefaultWrap === void 0) { useDefaultWrap = true; }\n if (useDefaultWrap === void 0) {\n useDefaultWrap = true;\n }\n var element = this._activeElement;\n if (!element || !this._root.current) {\n return false;\n }\n if (this._isElementInput(element)) {\n if (!this._shouldInputLoseFocus(element, isForward)) {\n return false;\n }\n }\n var scrollableParent = findScrollableParent(element);\n if (!scrollableParent) {\n return false;\n }\n var candidateDistance = -1;\n var candidateElement = undefined;\n var targetTop = -1;\n var targetBottom = -1;\n var pagesize = scrollableParent.clientHeight;\n var activeRect = element.getBoundingClientRect();\n do {\n element = isForward ? getNextElement(this._root.current, element) : getPreviousElement(this._root.current, element);\n if (element) {\n var targetRect = element.getBoundingClientRect();\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n var targetRectBottom = Math.floor(targetRect.bottom);\n var activeRectTop = Math.floor(activeRect.top);\n var elementDistance = this._getHorizontalDistanceFromCenter(isForward, activeRect, targetRect);\n var isElementPassedPageSizeOnPagingDown = isForward && targetRectTop > activeRectBottom + pagesize;\n var isElementPassedPageSizeOnPagingUp = !isForward && targetRectBottom < activeRectTop - pagesize;\n if (isElementPassedPageSizeOnPagingDown || isElementPassedPageSizeOnPagingUp) {\n break;\n }\n if (elementDistance > -1) {\n // for paging down\n if (isForward && targetRectTop > targetTop) {\n targetTop = targetRectTop;\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n else if (!isForward && targetRectBottom < targetBottom) {\n // for paging up\n targetBottom = targetRectBottom;\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n else {\n if (candidateDistance === -1 || elementDistance <= candidateDistance) {\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n }\n }\n }\n } while (element);\n var changedFocus = false;\n // Focus the closest candidate\n if (candidateElement && candidateElement !== this._activeElement) {\n changedFocus = true;\n this.focusElement(candidateElement);\n this._setFocusAlignment(candidateElement, false, true);\n }\n else if (this.props.isCircularNavigation && useDefaultWrap) {\n if (isForward) {\n return this.focusElement(getNextElement(this._root.current, this._root.current.firstElementChild, true));\n }\n return this.focusElement(getPreviousElement(this._root.current, this._root.current.lastElementChild, true, true, true));\n }\n return changedFocus;\n };\n FocusZone.prototype._setFocusAlignment = function (element, isHorizontal, isVertical) {\n if (this.props.direction === FocusZoneDirection.bidirectional && (!this._focusAlignment || isHorizontal || isVertical)) {\n var rect = element.getBoundingClientRect();\n var left = rect.left + rect.width / 2;\n var top_1 = rect.top + rect.height / 2;\n if (!this._focusAlignment) {\n this._focusAlignment = {\n x: left,\n y: top_1\n };\n }\n if (isHorizontal) {\n this._focusAlignment.x = left;\n }\n if (isVertical) {\n this._focusAlignment.y = top_1;\n }\n }\n };\n FocusZone.prototype._isImmediateDescendantOfZone = function (element) {\n return this._getOwnerZone(element) === this._root.current;\n };\n FocusZone.prototype._getOwnerZone = function (element) {\n var parentElement = getParent(element, ALLOW_VIRTUAL_ELEMENTS);\n while (parentElement && parentElement !== this._root.current && parentElement !== document.body) {\n if (isElementFocusZone(parentElement)) {\n return parentElement;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n return parentElement;\n };\n FocusZone.prototype._updateTabIndexes = function (element) {\n if (!element && this._root.current) {\n this._defaultFocusElement = null;\n element = this._root.current;\n if (this._activeElement && !elementContains(element, this._activeElement)) {\n this._activeElement = null;\n }\n }\n // If active element changes state to disabled, set it to null.\n // Otherwise, we lose keyboard accessibility to other elements in focus zone.\n if (this._activeElement && !isElementTabbable(this._activeElement)) {\n this._activeElement = null;\n }\n var childNodes = element && element.children;\n for (var childIndex = 0; childNodes && childIndex < childNodes.length; childIndex++) {\n var child = childNodes[childIndex];\n if (!isElementFocusZone(child)) {\n // If the item is explicitly set to not be focusable then TABINDEX needs to be set to -1.\n if (child.getAttribute && child.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'false') {\n child.setAttribute(TABINDEX, '-1');\n }\n if (isElementTabbable(child)) {\n if (this.props.disabled) {\n child.setAttribute(TABINDEX, '-1');\n }\n else if (!this._isInnerZone && ((!this._activeElement && !this._defaultFocusElement) || this._activeElement === child)) {\n this._defaultFocusElement = child;\n if (child.getAttribute(TABINDEX) !== '0') {\n child.setAttribute(TABINDEX, '0');\n }\n }\n else if (child.getAttribute(TABINDEX) !== '-1') {\n child.setAttribute(TABINDEX, '-1');\n }\n }\n else if (child.tagName === 'svg' && child.getAttribute('focusable') !== 'false') {\n // Disgusting IE hack. Sad face.\n child.setAttribute('focusable', 'false');\n }\n }\n else if (child.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true') {\n if (!this._isInnerZone && ((!this._activeElement && !this._defaultFocusElement) || this._activeElement === child)) {\n this._defaultFocusElement = child;\n if (child.getAttribute(TABINDEX) !== '0') {\n child.setAttribute(TABINDEX, '0');\n }\n }\n else if (child.getAttribute(TABINDEX) !== '-1') {\n child.setAttribute(TABINDEX, '-1');\n }\n }\n this._updateTabIndexes(child);\n }\n };\n FocusZone.prototype._isElementInput = function (element) {\n if (element && element.tagName && (element.tagName.toLowerCase() === 'input' || element.tagName.toLowerCase() === 'textarea')) {\n return true;\n }\n return false;\n };\n FocusZone.prototype._shouldInputLoseFocus = function (element, isForward) {\n // If a tab was used, we want to focus on the next element.\n if (!this._processingTabKey && element && element.type && ALLOWED_INPUT_TYPES.indexOf(element.type.toLowerCase()) > -1) {\n var selectionStart = element.selectionStart;\n var selectionEnd = element.selectionEnd;\n var isRangeSelected = selectionStart !== selectionEnd;\n var inputValue = element.value;\n // We shouldn't lose focus in the following cases:\n // 1. There is range selected.\n // 2. When selection start is larger than 0 and it is backward.\n // 3. when selection start is not the end of length and it is forward.\n // 4. We press any of the arrow keys when our handleTabKey isn't none or undefined (only losing focus if we hit tab)\n // and if shouldInputLoseFocusOnArrowKey is defined, if scenario prefers to not loose the focus which is determined by calling the\n // callback shouldInputLoseFocusOnArrowKey\n if (isRangeSelected ||\n (selectionStart > 0 && !isForward) ||\n (selectionStart !== inputValue.length && isForward) ||\n (!!this.props.handleTabKey && !(this.props.shouldInputLoseFocusOnArrowKey && this.props.shouldInputLoseFocusOnArrowKey(element)))) {\n return false;\n }\n }\n return true;\n };\n FocusZone.prototype._shouldWrapFocus = function (element, noWrapDataAttribute) {\n return !!this.props.checkForNoWrap ? shouldWrapFocus(element, noWrapDataAttribute) : true;\n };\n /**\n * Returns true if the element is a descendant of the FocusZone through a React portal.\n */\n FocusZone.prototype._portalContainsElement = function (element) {\n return element && !!this._root.current && portalContainsElement(element, this._root.current);\n };\n FocusZone.defaultProps = {\n isCircularNavigation: false,\n direction: FocusZoneDirection.bidirectional\n };\n return FocusZone;\n}(React.Component));\nexport { FocusZone };\n//# sourceMappingURL=FocusZone.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "index": 649, - "index2": 642, - "size": 802, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "issuerId": "93C/", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "453:40-47" - }, - { - "moduleId": "93C/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "93C/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "3:0-36" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "./Callout", - "loc": "10:32-39" - } - ], - "usedExports": [ - "Callout" - ], - "providedExports": [ - "Callout" - ], - "optimizationBailout": [], - "depth": 12, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { CalloutContent } from './CalloutContent';\nimport { Layer } from '../../Layer';\nvar Callout = /** @class */ (function (_super) {\n tslib_1.__extends(Callout, _super);\n function Callout() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Callout.prototype.render = function () {\n var _a = this.props, layerProps = _a.layerProps, rest = tslib_1.__rest(_a, [\"layerProps\"]);\n var content = React.createElement(CalloutContent, tslib_1.__assign({}, rest));\n return this.props.doNotLayer ? content : React.createElement(Layer, tslib_1.__assign({}, layerProps), content);\n };\n return Callout;\n}(React.Component));\nexport { Callout };\n//# sourceMappingURL=Callout.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/getVendorSettings.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/getVendorSettings.js", - "index": 382, - "index2": 371, - "size": 1175, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "type": "harmony side effect evaluation", - "userRequest": "../getVendorSettings", - "loc": "1:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "type": "harmony import specifier", - "userRequest": "../getVendorSettings", - "loc": "6:25-42" - } - ], - "usedExports": [ - "getVendorSettings" - ], - "providedExports": [ - "getVendorSettings", - "setVendorSettings" - ], - "optimizationBailout": [], - "depth": 13, - "source": "var _vendorSettings;\nexport function getVendorSettings() {\n if (!_vendorSettings) {\n var doc = typeof document !== 'undefined' ? document : undefined;\n var nav = typeof navigator !== 'undefined' ? navigator : undefined;\n var userAgent = nav ? nav.userAgent.toLowerCase() : undefined;\n if (!doc) {\n _vendorSettings = {\n isWebkit: true,\n isMoz: true,\n isOpera: true,\n isMs: true\n };\n }\n else {\n _vendorSettings = {\n isWebkit: !!(doc && 'WebkitAppearance' in doc.documentElement.style),\n isMoz: !!(userAgent && userAgent.indexOf('firefox') > -1),\n isOpera: !!(userAgent && userAgent.indexOf('opera') > -1),\n isMs: !!(nav && (/rv:11.0/i.test(nav.userAgent) || /Edge\\/\\d./i.test(navigator.userAgent)))\n };\n }\n }\n return _vendorSettings;\n}\n/**\n * Sets the vendor settings for prefixing and vendor specific operations.\n */\nexport function setVendorSettings(vendorSettings) {\n _vendorSettings = vendorSettings;\n}\n//# sourceMappingURL=getVendorSettings.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "index": 629, - "index2": 619, - "size": 1247, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "issuerId": "vE6b", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - }, - { - "id": "3Xv5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "vE6b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.base", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "userRequest": "./Overlay.base", - "loc": "4:28-39" - }, - { - "moduleId": "vE6b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.base", - "loc": "2:0-31" - }, - { - "moduleId": "vE6b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay.base", - "loc": "2:0-31" - } - ], - "usedExports": [ - "OverlayBase" - ], - "providedExports": [ - "OverlayBase" - ], - "optimizationBailout": [], - "depth": 13, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseComponent, classNamesFunction, getNativeProps, divProperties, enableBodyScroll, disableBodyScroll } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar OverlayBase = /** @class */ (function (_super) {\n tslib_1.__extends(OverlayBase, _super);\n function OverlayBase() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n OverlayBase.prototype.componentDidMount = function () {\n disableBodyScroll();\n };\n OverlayBase.prototype.componentWillUnmount = function () {\n enableBodyScroll();\n };\n OverlayBase.prototype.render = function () {\n var _a = this.props, isDark = _a.isDarkThemed, className = _a.className, theme = _a.theme, styles = _a.styles;\n var divProps = getNativeProps(this.props, divProperties);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n isDark: isDark\n });\n return React.createElement(\"div\", tslib_1.__assign({}, divProps, { className: classNames.root }));\n };\n return OverlayBase;\n}(BaseComponent));\nexport { OverlayBase };\n//# sourceMappingURL=Overlay.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "index": 628, - "index2": 621, - "size": 259, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "issuerId": "vE6b", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - }, - { - "id": "3Xv5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "vE6b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "237:59-66" - }, - { - "moduleId": "vE6b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay", - "loc": "1:0-26" - }, - { - "moduleId": "vE6b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Overlay" - ], - "providedExports": [ - "Overlay" - ], - "optimizationBailout": [], - "depth": 13, - "source": "import { styled } from '../../Utilities';\nimport { OverlayBase } from './Overlay.base';\nimport { getStyles } from './Overlay.styles';\nexport var Overlay = styled(OverlayBase, getStyles, undefined, {\n scope: 'Overlay'\n});\n//# sourceMappingURL=Overlay.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "index": 618, - "index2": 615, - "size": 6328, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "issuerId": "3736", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony import specifier", - "userRequest": "./Layer.base", - "loc": "4:26-35" - }, - { - "moduleId": "3736", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.base", - "loc": "2:0-29" - }, - { - "moduleId": "3736", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Layer.base", - "loc": "2:0-29" - } - ], - "usedExports": [ - "LayerBase" - ], - "providedExports": [ - "LayerBase" - ], - "optimizationBailout": [], - "depth": 13, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { Fabric } from '../../Fabric';\nimport { classNamesFunction, customizable, getDocument, setPortalAttribute, setVirtualParent, warnDeprecations } from '../../Utilities';\nimport { registerLayer, getDefaultTarget, unregisterLayer } from './Layer.notification';\nvar getClassNames = classNamesFunction();\nvar LayerBase = /** @class */ (function (_super) {\n tslib_1.__extends(LayerBase, _super);\n function LayerBase(props) {\n var _this = _super.call(this, props) || this;\n _this._rootRef = React.createRef();\n _this._createLayerElement = function () {\n var hostId = _this.props.hostId;\n var doc = getDocument(_this._rootRef.current);\n var host = _this._getHost();\n if (!doc || !host) {\n return;\n }\n // If one was already existing, remove.\n _this._removeLayerElement();\n var layerElement = doc.createElement('div');\n var classNames = _this._getClassNames();\n layerElement.className = classNames.root;\n setPortalAttribute(layerElement);\n setVirtualParent(layerElement, _this._rootRef.current);\n _this.props.insertFirst ? host.insertBefore(layerElement, host.firstChild) : host.appendChild(layerElement);\n _this.setState({\n hostId: hostId,\n layerElement: layerElement\n }, function () {\n var _a = _this.props, onLayerDidMount = _a.onLayerDidMount, onLayerMounted = _a.onLayerMounted;\n if (onLayerMounted) {\n onLayerMounted();\n }\n if (onLayerDidMount) {\n onLayerDidMount();\n }\n });\n };\n _this.state = {};\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('Layer', props, {\n onLayerMounted: 'onLayerDidMount'\n });\n }\n return _this;\n }\n LayerBase.prototype.componentDidMount = function () {\n var hostId = this.props.hostId;\n this._createLayerElement();\n if (hostId) {\n registerLayer(hostId, this._createLayerElement);\n }\n };\n LayerBase.prototype.render = function () {\n var layerElement = this.state.layerElement;\n var classNames = this._getClassNames();\n var eventBubblingEnabled = this.props.eventBubblingEnabled;\n return (React.createElement(\"span\", { className: \"ms-layer\", ref: this._rootRef }, layerElement &&\n ReactDOM.createPortal(React.createElement(Fabric, tslib_1.__assign({}, (!eventBubblingEnabled && _getFilteredEvents()), { className: classNames.content }), this.props.children), layerElement)));\n };\n LayerBase.prototype.componentDidUpdate = function () {\n if (this.props.hostId !== this.state.hostId) {\n this._createLayerElement();\n }\n };\n LayerBase.prototype.componentWillUnmount = function () {\n var hostId = this.props.hostId;\n this._removeLayerElement();\n if (hostId) {\n unregisterLayer(hostId, this._createLayerElement);\n }\n };\n LayerBase.prototype._removeLayerElement = function () {\n var onLayerWillUnmount = this.props.onLayerWillUnmount;\n var layerElement = this.state.layerElement;\n if (onLayerWillUnmount) {\n onLayerWillUnmount();\n }\n if (layerElement && layerElement.parentNode) {\n var parentNode = layerElement.parentNode;\n if (parentNode) {\n parentNode.removeChild(layerElement);\n }\n }\n };\n LayerBase.prototype._getClassNames = function () {\n var _a = this.props, className = _a.className, styles = _a.styles, theme = _a.theme;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n isNotHost: !this.props.hostId\n });\n return classNames;\n };\n LayerBase.prototype._getHost = function () {\n var hostId = this.props.hostId;\n var doc = getDocument(this._rootRef.current);\n if (!doc) {\n return undefined;\n }\n if (hostId) {\n return doc.getElementById(hostId);\n }\n else {\n var defaultHostSelector = getDefaultTarget();\n return defaultHostSelector ? doc.querySelector(defaultHostSelector) : doc.body;\n }\n };\n LayerBase.defaultProps = {\n onLayerDidMount: function () { return undefined; },\n onLayerWillUnmount: function () { return undefined; }\n };\n LayerBase = tslib_1.__decorate([\n customizable('Layer', ['theme', 'hostId'])\n ], LayerBase);\n return LayerBase;\n}(React.Component));\nexport { LayerBase };\nvar _onFilterEvent = function (ev) {\n // We should just be able to check ev.bubble here and only stop events that are bubbling up. However, even though mouseenter and\n // mouseleave do NOT bubble up, they are showing up as bubbling. Therefore we stop events based on event name rather than ev.bubble.\n if (ev.eventPhase === Event.BUBBLING_PHASE && ev.type !== 'mouseenter' && ev.type !== 'mouseleave') {\n ev.stopPropagation();\n }\n};\nvar _filteredEventProps;\nfunction _getFilteredEvents() {\n if (!_filteredEventProps) {\n _filteredEventProps = {};\n [\n 'onClick',\n 'onContextMenu',\n 'onDoubleClick',\n 'onDrag',\n 'onDragEnd',\n 'onDragEnter',\n 'onDragExit',\n 'onDragLeave',\n 'onDragOver',\n 'onDragStart',\n 'onDrop',\n 'onMouseDown',\n 'onMouseEnter',\n 'onMouseLeave',\n 'onMouseMove',\n 'onMouseOver',\n 'onMouseOut',\n 'onMouseUp',\n 'onKeyDown',\n 'onKeyPress',\n 'onKeyUp',\n 'onFocus',\n 'onBlur',\n 'onChange',\n 'onInput',\n 'onInvalid',\n 'onSubmit'\n ].forEach(function (name) { return (_filteredEventProps[name] = _onFilterEvent); });\n }\n return _filteredEventProps;\n}\n//# sourceMappingURL=Layer.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "index": 617, - "index2": 617, - "size": 288, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "issuerId": "3736", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "13:69-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Layer", - "loc": "234:40-45" - }, - { - "moduleId": "3736", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer", - "loc": "1:0-24" - }, - { - "moduleId": "3736", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Layer", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Layer" - ], - "providedExports": [ - "Layer" - ], - "optimizationBailout": [], - "depth": 13, - "source": "import { styled } from '../../Utilities';\nimport { LayerBase } from './Layer.base';\nimport { getStyles } from './Layer.styles';\nexport var Layer = styled(LayerBase, getStyles, undefined, {\n scope: 'Layer',\n fields: ['hostId', 'theme', 'styles']\n});\n//# sourceMappingURL=Layer.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "index": 650, - "index2": 641, - "size": 304, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent", - "loc": "12:42-56" - } - ], - "usedExports": [ - "CalloutContent" - ], - "providedExports": [ - "CalloutContent" - ], - "optimizationBailout": [], - "depth": 13, - "source": "import { styled } from '../../Utilities';\nimport { CalloutContentBase } from './CalloutContent.base';\nimport { getStyles } from './CalloutContent.styles';\nexport var CalloutContent = styled(CalloutContentBase, getStyles, undefined, { scope: 'CalloutContent' });\n//# sourceMappingURL=CalloutContent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "index": 630, - "index2": 620, - "size": 1298, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - }, - { - "id": "3Xv5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "vE6b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.styles", - "loc": "3:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "userRequest": "./Overlay.styles", - "loc": "4:41-50" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 14, - "source": "import { HighContrastSelector, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Overlay',\n rootDark: 'ms-Overlay--dark'\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme, isNone = props.isNone, isDark = props.isDark;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n backgroundColor: palette.whiteTranslucent40,\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n position: 'absolute',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n border: '1px solid WindowText',\n opacity: 0\n },\n _a)\n },\n isNone && {\n visibility: 'hidden'\n },\n isDark && [\n classNames.rootDark,\n {\n backgroundColor: palette.blackTranslucent40\n }\n ],\n className\n ]\n };\n var _a;\n};\n//# sourceMappingURL=Overlay.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.notification.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.notification.js", - "index": 621, - "index2": 610, - "size": 1746, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "issuerId": "kl0W", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": "kl0W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.notification", - "loc": "6:0-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "53:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "72:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "107:38-54" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.notification", - "loc": "4:0-57" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "14:8-25" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "./Layer.notification", - "loc": "17:8-25" - } - ], - "usedExports": [ - "registerLayer", - "unregisterLayer", - "getDefaultTarget" - ], - "providedExports": [ - "registerLayer", - "unregisterLayer", - "notifyHostChanged", - "setDefaultTarget", - "getDefaultTarget" - ], - "optimizationBailout": [], - "depth": 14, - "source": "var _layersByHostId = {};\nvar _defaultHostSelector;\n/**\n * Register a layer for a given host id\n * @param hostId Id of the layer host\n * @param layer Layer instance\n */\nexport function registerLayer(hostId, callback) {\n if (!_layersByHostId[hostId]) {\n _layersByHostId[hostId] = [];\n }\n _layersByHostId[hostId].push(callback);\n}\n/**\n * Unregister a layer for a given host id\n * @param hostId Id of the layer host\n * @param layer Layer instance\n */\nexport function unregisterLayer(hostId, callback) {\n if (_layersByHostId[hostId]) {\n var idx = _layersByHostId[hostId].indexOf(callback);\n if (idx >= 0) {\n _layersByHostId[hostId].splice(idx, 1);\n if (_layersByHostId[hostId].length === 0) {\n delete _layersByHostId[hostId];\n }\n }\n }\n}\n/**\n * Used for notifying applicable Layers that a host is available/unavailable and to re-evaluate Layers that\n * care about the specific host.\n */\nexport function notifyHostChanged(id) {\n if (_layersByHostId[id]) {\n _layersByHostId[id].forEach(function (callback) { return callback(); });\n }\n}\n/**\n * Sets the default target selector to use when determining the host in which\n * Layered content will be injected into. If not provided, an element will be\n * created at the end of the document body.\n *\n * Passing in a falsey value will clear the default target and reset back to\n * using a created element at the end of document body.\n */\nexport function setDefaultTarget(selector) {\n _defaultHostSelector = selector;\n}\n/**\n * Get the default target selector when determining a host\n */\nexport function getDefaultTarget() {\n return _defaultHostSelector;\n}\n//# sourceMappingURL=Layer.notification.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "index": 626, - "index2": 616, - "size": 1035, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js", - "type": "harmony import specifier", - "userRequest": "./Layer.styles", - "loc": "4:37-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 14, - "source": "import { ZIndexes, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Layer',\n rootNoHost: 'ms-Layer--fixed',\n content: 'ms-Layer-content'\n};\nexport var getStyles = function (props) {\n var className = props.className, isNotHost = props.isNotHost, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n isNotHost && [\n classNames.rootNoHost,\n {\n position: 'fixed',\n zIndex: ZIndexes.Layer,\n top: 0,\n left: 0,\n bottom: 0,\n right: 0,\n visibility: 'hidden'\n }\n ],\n className\n ],\n content: [\n classNames.content,\n {\n visibility: 'visible'\n }\n ]\n };\n};\n//# sourceMappingURL=Layer.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "index": 651, - "index2": 639, - "size": 21124, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent.base", - "loc": "2:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent.base", - "loc": "4:35-53" - } - ], - "usedExports": [ - "CalloutContentBase" - ], - "providedExports": [ - "CalloutContentBase" - ], - "optimizationBailout": [], - "depth": 14, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { Async, assign, css, divProperties, elementContains, focusFirstChild, getDocument, getNativeProps, getWindow, on, shallowCompare } from '../../Utilities';\nimport { positionCallout, getMaxHeight, RectangleEdge, positionCard } from '../../utilities/positioning';\nimport { Popup } from '../../Popup';\nimport { classNamesFunction } from '../../Utilities';\nimport { AnimationClassNames } from '../../Styling';\nvar ANIMATIONS = (_a = {},\n _a[RectangleEdge.top] = AnimationClassNames.slideUpIn10,\n _a[RectangleEdge.bottom] = AnimationClassNames.slideDownIn10,\n _a[RectangleEdge.left] = AnimationClassNames.slideLeftIn10,\n _a[RectangleEdge.right] = AnimationClassNames.slideRightIn10,\n _a);\nvar getClassNames = classNamesFunction({\n disableCaching: true\n});\nvar BORDER_WIDTH = 1;\nvar BEAK_ORIGIN_POSITION = { top: 0, left: 0 };\n// Microsoft Edge will overwrite inline styles if there is an animation pertaining to that style.\n// To help ensure that edge will respect the offscreen style opacity\n// filter needs to be added as an additional way to set opacity.\nvar OFF_SCREEN_STYLE = { opacity: 0, filter: 'opacity(0)' };\n// role and role description go hand-in-hand. Both would be included by spreading getNativeProps for a basic element\n// This constant array can be used to filter these out of native props spread on callout root and apply them together on\n// calloutMain (the Popup component within the callout)\nvar ARIA_ROLE_ATTRIBUTES = ['role', 'aria-roledescription'];\nvar CalloutContentBase = /** @class */ (function (_super) {\n tslib_1.__extends(CalloutContentBase, _super);\n function CalloutContentBase(props) {\n var _this = _super.call(this, props) || this;\n _this._hostElement = React.createRef();\n _this._calloutElement = React.createRef();\n _this._hasListeners = false;\n _this._disposables = [];\n _this.dismiss = function (ev) {\n var onDismiss = _this.props.onDismiss;\n if (onDismiss) {\n onDismiss(ev);\n }\n };\n _this._dismissOnScroll = function (ev) {\n var preventDismissOnScroll = _this.props.preventDismissOnScroll;\n if (_this.state.positions && !preventDismissOnScroll) {\n _this._dismissOnClickOrScroll(ev);\n }\n };\n _this._dismissOnResize = function (ev) {\n var preventDismissOnResize = _this.props.preventDismissOnResize;\n if (!preventDismissOnResize) {\n _this.dismiss(ev);\n }\n };\n _this._dismissOnLostFocus = function (ev) {\n var preventDismissOnLostFocus = _this.props.preventDismissOnLostFocus;\n if (!preventDismissOnLostFocus) {\n _this._dismissOnClickOrScroll(ev);\n }\n };\n _this._setInitialFocus = function () {\n if (_this.props.setInitialFocus && !_this._didSetInitialFocus && _this.state.positions && _this._calloutElement.current) {\n _this._didSetInitialFocus = true;\n _this._async.requestAnimationFrame(function () { return focusFirstChild(_this._calloutElement.current); }, _this._calloutElement.current);\n }\n };\n _this._onComponentDidMount = function () {\n _this._addListeners();\n if (_this.props.onLayerMounted) {\n _this.props.onLayerMounted();\n }\n _this._updateAsyncPosition();\n _this._setHeightOffsetEveryFrame();\n };\n _this._async = new Async(_this);\n _this._didSetInitialFocus = false;\n _this.state = {\n positions: undefined,\n slideDirectionalClassName: undefined,\n // @TODO it looks like this is not even being used anymore.\n calloutElementRect: undefined,\n heightOffset: 0\n };\n _this._positionAttempts = 0;\n return _this;\n }\n CalloutContentBase.prototype.componentDidUpdate = function () {\n if (!this.props.hidden) {\n this._setInitialFocus();\n if (!this._hasListeners) {\n this._addListeners();\n }\n this._updateAsyncPosition();\n }\n else {\n if (this._hasListeners) {\n this._removeListeners();\n }\n }\n };\n CalloutContentBase.prototype.shouldComponentUpdate = function (newProps, newState) {\n if (this.props.hidden && newProps.hidden) {\n // Do not update when hidden.\n return false;\n }\n return !shallowCompare(this.props, newProps) || !shallowCompare(this.state, newState);\n };\n CalloutContentBase.prototype.componentWillMount = function () {\n this._setTargetWindowAndElement(this._getTarget());\n };\n CalloutContentBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._disposables.forEach(function (dispose) { return dispose(); });\n };\n CalloutContentBase.prototype.componentWillUpdate = function (newProps) {\n // If the target element changed, find the new one. If we are tracking target with class name, always find element because we\n // do not know if fabric has rendered a new element and disposed the old element.\n var newTarget = this._getTarget(newProps);\n var oldTarget = this._getTarget();\n if ((newTarget !== oldTarget || typeof newTarget === 'string' || newTarget instanceof String) && !this._blockResetHeight) {\n this._maxHeight = undefined;\n this._setTargetWindowAndElement(newTarget);\n }\n if (newProps.gapSpace !== this.props.gapSpace || this.props.beakWidth !== newProps.beakWidth) {\n this._maxHeight = undefined;\n }\n if (newProps.finalHeight !== this.props.finalHeight) {\n this._setHeightOffsetEveryFrame();\n }\n // Ensure positioning is recalculated when we are about to show a persisted menu.\n if (!newProps.hidden && newProps.hidden !== this.props.hidden) {\n this._maxHeight = undefined;\n // Target might have been updated while hidden.\n this._setTargetWindowAndElement(newTarget);\n this.setState({\n positions: undefined\n });\n this._didSetInitialFocus = false;\n this._bounds = undefined;\n }\n this._blockResetHeight = false;\n };\n CalloutContentBase.prototype.componentDidMount = function () {\n if (!this.props.hidden) {\n this._onComponentDidMount();\n }\n };\n CalloutContentBase.prototype.render = function () {\n // If there is no target window then we are likely in server side rendering and we should not render anything.\n if (!this._targetWindow) {\n return null;\n }\n var target = this.props.target;\n var _a = this.props, styles = _a.styles, style = _a.style, ariaLabel = _a.ariaLabel, ariaDescribedBy = _a.ariaDescribedBy, ariaLabelledBy = _a.ariaLabelledBy, className = _a.className, isBeakVisible = _a.isBeakVisible, children = _a.children, beakWidth = _a.beakWidth, calloutWidth = _a.calloutWidth, calloutMaxWidth = _a.calloutMaxWidth, finalHeight = _a.finalHeight, _b = _a.hideOverflow, hideOverflow = _b === void 0 ? !!finalHeight : _b, backgroundColor = _a.backgroundColor, calloutMaxHeight = _a.calloutMaxHeight, onScroll = _a.onScroll, _c = _a.shouldRestoreFocus, shouldRestoreFocus = _c === void 0 ? true : _c;\n target = this._getTarget();\n var positions = this.state.positions;\n var getContentMaxHeight = this._getMaxHeight() ? this._getMaxHeight() + this.state.heightOffset : undefined;\n var contentMaxHeight = calloutMaxHeight && getContentMaxHeight && calloutMaxHeight < getContentMaxHeight ? calloutMaxHeight : getContentMaxHeight;\n var overflowYHidden = hideOverflow;\n var beakVisible = isBeakVisible && !!target;\n this._classNames = getClassNames(styles, {\n theme: this.props.theme,\n className: className,\n overflowYHidden: overflowYHidden,\n calloutWidth: calloutWidth,\n positions: positions,\n beakWidth: beakWidth,\n backgroundColor: backgroundColor,\n calloutMaxWidth: calloutMaxWidth\n });\n var overflowStyle = tslib_1.__assign({}, style, { maxHeight: contentMaxHeight }, (overflowYHidden && { overflowY: 'hidden' }));\n var visibilityStyle = this.props.hidden ? { visibility: 'hidden' } : undefined;\n // React.CSSProperties does not understand IRawStyle, so the inline animations will need to be cast as any for now.\n var content = (React.createElement(\"div\", { ref: this._hostElement, className: this._classNames.container, style: visibilityStyle },\n React.createElement(\"div\", tslib_1.__assign({}, getNativeProps(this.props, divProperties, ARIA_ROLE_ATTRIBUTES), { className: css(this._classNames.root, positions && positions.targetEdge && ANIMATIONS[positions.targetEdge]), style: positions ? positions.elementPosition : OFF_SCREEN_STYLE, tabIndex: -1, \n // See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Clicking_and_focus\n ref: this._calloutElement }),\n beakVisible && React.createElement(\"div\", { className: this._classNames.beak, style: this._getBeakPosition() }),\n beakVisible && React.createElement(\"div\", { className: this._classNames.beakCurtain }),\n React.createElement(Popup, tslib_1.__assign({}, getNativeProps(this.props, ARIA_ROLE_ATTRIBUTES), { ariaLabel: ariaLabel, ariaDescribedBy: ariaDescribedBy, ariaLabelledBy: ariaLabelledBy, className: this._classNames.calloutMain, onDismiss: this.dismiss, onScroll: onScroll, shouldRestoreFocus: shouldRestoreFocus, style: overflowStyle }), children))));\n return content;\n };\n CalloutContentBase.prototype._dismissOnClickOrScroll = function (ev) {\n var target = ev.target;\n var isEventTargetOutsideCallout = this._hostElement.current && !elementContains(this._hostElement.current, target);\n if ((!this._target && isEventTargetOutsideCallout) ||\n (ev.target !== this._targetWindow &&\n isEventTargetOutsideCallout &&\n (this._target.stopPropagation ||\n (!this._target || (target !== this._target && !elementContains(this._target, target)))))) {\n this.dismiss(ev);\n }\n };\n CalloutContentBase.prototype._addListeners = function () {\n var _this = this;\n // This is added so the callout will dismiss when the window is scrolled\n // but not when something inside the callout is scrolled. The delay seems\n // to be required to avoid React firing an async focus event in IE from\n // the target changing focus quickly prior to rendering the callout.\n this._async.setTimeout(function () {\n _this._disposables.push(on(_this._targetWindow, 'scroll', _this._dismissOnScroll, true), on(_this._targetWindow, 'resize', _this._dismissOnResize, true), on(_this._targetWindow.document.documentElement, 'focus', _this._dismissOnLostFocus, true), on(_this._targetWindow.document.documentElement, 'click', _this._dismissOnLostFocus, true));\n _this._hasListeners = true;\n }, 0);\n };\n CalloutContentBase.prototype._removeListeners = function () {\n this._disposables.forEach(function (dispose) { return dispose(); });\n this._disposables = [];\n this._hasListeners = false;\n };\n CalloutContentBase.prototype._updateAsyncPosition = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () { return _this._updatePosition(); }, this._calloutElement.current);\n };\n CalloutContentBase.prototype._getBeakPosition = function () {\n var positions = this.state.positions;\n var beakPostionStyle = tslib_1.__assign({}, (positions && positions.beakPosition ? positions.beakPosition.elementPosition : null));\n if (!beakPostionStyle.top && !beakPostionStyle.bottom && !beakPostionStyle.left && !beakPostionStyle.right) {\n beakPostionStyle.left = BEAK_ORIGIN_POSITION.left;\n beakPostionStyle.top = BEAK_ORIGIN_POSITION.top;\n }\n return beakPostionStyle;\n };\n CalloutContentBase.prototype._updatePosition = function () {\n // Try to update the target, page might have changed\n this._setTargetWindowAndElement(this._getTarget());\n var positions = this.state.positions;\n var hostElement = this._hostElement.current;\n var calloutElement = this._calloutElement.current;\n // If we expect a target element to position against, we need to wait until `this._target` is resolved. Otherwise\n // we can try to position.\n var expectsTarget = !!this.props.target;\n if (hostElement && calloutElement && (!expectsTarget || this._target)) {\n var currentProps = void 0;\n currentProps = assign(currentProps, this.props);\n currentProps.bounds = this._getBounds();\n currentProps.target = this._target;\n // If there is a finalHeight given then we assume that the user knows and will handle\n // additional positioning adjustments so we should call positionCard\n var newPositions = this.props.finalHeight\n ? positionCard(currentProps, hostElement, calloutElement, positions)\n : positionCallout(currentProps, hostElement, calloutElement, positions);\n // Set the new position only when the positions are not exists or one of the new callout positions are different.\n // The position should not change if the position is within 2 decimal places.\n if ((!positions && newPositions) ||\n (positions && newPositions && !this._arePositionsEqual(positions, newPositions) && this._positionAttempts < 5)) {\n // We should not reposition the callout more than a few times, if it is then the content is likely resizing\n // and we should stop trying to reposition to prevent a stack overflow.\n this._positionAttempts++;\n this.setState({\n positions: newPositions\n });\n }\n else if (this._positionAttempts > 0) {\n // Only call the onPositioned callback if the callout has been re-positioned at least once.\n this._positionAttempts = 0;\n if (this.props.onPositioned) {\n this.props.onPositioned(this.state.positions);\n }\n }\n }\n };\n CalloutContentBase.prototype._getBounds = function () {\n if (!this._bounds) {\n var currentBounds = this.props.bounds;\n if (!currentBounds) {\n currentBounds = {\n top: 0 + this.props.minPagePadding,\n left: 0 + this.props.minPagePadding,\n right: this._targetWindow.innerWidth - this.props.minPagePadding,\n bottom: this._targetWindow.innerHeight - this.props.minPagePadding,\n width: this._targetWindow.innerWidth - this.props.minPagePadding * 2,\n height: this._targetWindow.innerHeight - this.props.minPagePadding * 2\n };\n }\n this._bounds = currentBounds;\n }\n return this._bounds;\n };\n // Max height should remain as synchronous as possible, which is why it is not done using set state.\n // It needs to be synchronous since it will impact the ultimate position of the callout.\n CalloutContentBase.prototype._getMaxHeight = function () {\n var _this = this;\n if (!this._maxHeight) {\n if (this.props.directionalHintFixed && this._target) {\n var beakWidth = this.props.isBeakVisible ? this.props.beakWidth : 0;\n var gapSpace = this.props.gapSpace ? this.props.gapSpace : 0;\n // Since the callout cannot measure it's border size it must be taken into account here. Otherwise it will\n // overlap with the target.\n var totalGap_1 = gapSpace + beakWidth + BORDER_WIDTH * 2;\n this._async.requestAnimationFrame(function () {\n if (_this._target) {\n _this._maxHeight = getMaxHeight(_this._target, _this.props.directionalHint, totalGap_1, _this._getBounds(), _this.props.coverTarget);\n _this._blockResetHeight = true;\n _this.forceUpdate();\n }\n }, this._target);\n }\n else {\n this._maxHeight = this._getBounds().height - BORDER_WIDTH * 2;\n }\n }\n return this._maxHeight;\n };\n CalloutContentBase.prototype._arePositionsEqual = function (positions, newPosition) {\n return (this._comparePositions(positions.elementPosition, newPosition.elementPosition) &&\n this._comparePositions(positions.beakPosition.elementPosition, newPosition.beakPosition.elementPosition));\n };\n CalloutContentBase.prototype._comparePositions = function (oldPositions, newPositions) {\n for (var key in newPositions) {\n // This needs to be checked here and below because there is a linting error if for in does not immediately have an if statement\n if (newPositions.hasOwnProperty(key)) {\n var oldPositionEdge = oldPositions[key];\n var newPositionEdge = newPositions[key];\n if (oldPositionEdge !== undefined && newPositionEdge !== undefined) {\n if (oldPositionEdge.toFixed(2) !== newPositionEdge.toFixed(2)) {\n return false;\n }\n }\n else {\n return false;\n }\n }\n }\n return true;\n };\n CalloutContentBase.prototype._setTargetWindowAndElement = function (target) {\n var currentElement = this._calloutElement.current;\n if (target) {\n if (typeof target === 'string') {\n var currentDoc = getDocument(currentElement);\n this._target = currentDoc ? currentDoc.querySelector(target) : null;\n this._targetWindow = getWindow(currentElement);\n }\n else if (target.stopPropagation) {\n this._targetWindow = getWindow(target.toElement);\n this._target = target;\n }\n else if (target.getBoundingClientRect) {\n var targetElement = target;\n this._targetWindow = getWindow(targetElement);\n this._target = target;\n // HTMLImgElements can have x and y values. The check for it being a point must go last.\n }\n else {\n this._targetWindow = getWindow(currentElement);\n this._target = target;\n }\n }\n else {\n this._targetWindow = getWindow(currentElement);\n }\n };\n CalloutContentBase.prototype._setHeightOffsetEveryFrame = function () {\n var _this = this;\n if (this._calloutElement.current && this.props.finalHeight) {\n this._setHeightOffsetTimer = this._async.requestAnimationFrame(function () {\n var calloutMainElem = _this._calloutElement.current && _this._calloutElement.current.lastChild;\n if (!calloutMainElem) {\n return;\n }\n var cardScrollHeight = calloutMainElem.scrollHeight;\n var cardCurrHeight = calloutMainElem.offsetHeight;\n var scrollDiff = cardScrollHeight - cardCurrHeight;\n _this.setState({\n heightOffset: _this.state.heightOffset + scrollDiff\n });\n if (calloutMainElem.offsetHeight < _this.props.finalHeight) {\n _this._setHeightOffsetEveryFrame();\n }\n else {\n _this._async.cancelAnimationFrame(_this._setHeightOffsetTimer, _this._calloutElement.current);\n }\n }, this._calloutElement.current);\n }\n };\n CalloutContentBase.prototype._getTarget = function (props) {\n if (props === void 0) { props = this.props; }\n var target = props.target;\n return target;\n };\n CalloutContentBase.defaultProps = {\n preventDismissOnLostFocus: false,\n preventDismissOnScroll: false,\n preventDismissOnResize: false,\n isBeakVisible: true,\n beakWidth: 16,\n gapSpace: 0,\n minPagePadding: 8,\n directionalHint: DirectionalHint.bottomAutoEdge\n };\n return CalloutContentBase;\n}(React.Component));\nexport { CalloutContentBase };\nvar _a;\n//# sourceMappingURL=CalloutContent.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "index": 655, - "index2": 640, - "size": 2988, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent.styles", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent.styles", - "loc": "4:55-64" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 14, - "source": "import { HighContrastSelector, focusClear, getGlobalClassNames } from '../../Styling';\nfunction getBeakStyle(beakWidth) {\n return {\n height: beakWidth,\n width: beakWidth\n };\n}\nvar GlobalClassNames = {\n container: 'ms-Callout-container',\n root: 'ms-Callout',\n beak: 'ms-Callout-beak',\n beakCurtain: 'ms-Callout-beakCurtain',\n calloutMain: 'ms-Callout-main'\n};\nexport var getStyles = function (props) {\n var theme = props.theme, className = props.className, overflowYHidden = props.overflowYHidden, calloutWidth = props.calloutWidth, beakWidth = props.beakWidth, backgroundColor = props.backgroundColor, calloutMaxWidth = props.calloutMaxWidth;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var palette = theme.palette;\n return {\n container: [\n classNames.container,\n {\n position: 'relative'\n }\n ],\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n position: 'absolute',\n boxSizing: 'border-box',\n borderWidth: 1,\n borderStyle: 'solid',\n borderColor: palette.neutralLight,\n boxShadow: '0 0 5px 0px rgba(0,0,0,0.4)',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderWidth: 1,\n borderStyle: 'solid',\n borderColor: 'WindowText'\n },\n _a)\n },\n focusClear(),\n className,\n !!calloutWidth && { width: calloutWidth },\n !!calloutMaxWidth && { maxWidth: calloutMaxWidth }\n ],\n beak: [\n classNames.beak,\n {\n position: 'absolute',\n backgroundColor: palette.white,\n boxShadow: 'inherit',\n border: 'inherit',\n boxSizing: 'border-box',\n transform: 'rotate(45deg)'\n },\n getBeakStyle(beakWidth),\n backgroundColor && {\n backgroundColor: backgroundColor\n }\n ],\n beakCurtain: [\n classNames.beakCurtain,\n {\n position: 'absolute',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n backgroundColor: palette.white\n }\n ],\n calloutMain: [\n classNames.calloutMain,\n {\n backgroundColor: palette.white,\n overflowX: 'hidden',\n overflowY: 'auto',\n position: 'relative'\n },\n overflowYHidden && {\n overflowY: 'hidden'\n },\n backgroundColor && {\n backgroundColor: backgroundColor\n }\n ]\n };\n var _a;\n};\n//# sourceMappingURL=CalloutContent.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "index": 674, - "index2": 662, - "size": 315, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "issuerId": "9szA", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js" - }, - { - "id": "0YjV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js" - }, - { - "id": "9szA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Divider", - "loc": "124:35-50" - }, - { - "moduleId": "9szA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./VerticalDivider", - "loc": "1:0-34" - }, - { - "moduleId": "9szA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "type": "harmony export imported specifier", - "userRequest": "./VerticalDivider", - "loc": "1:0-34" - } - ], - "usedExports": [ - "VerticalDivider" - ], - "providedExports": [ - "VerticalDivider" - ], - "optimizationBailout": [], - "depth": 14, - "source": "import { getStyles } from './VerticalDivider.styles';\nimport { VerticalDividerBase } from './VerticalDivider.base';\nimport { styled } from '../../Utilities';\nexport var VerticalDivider = styled(VerticalDividerBase, getStyles, undefined, {\n scope: 'VerticalDivider'\n});\n//# sourceMappingURL=VerticalDivider.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.styles.js", - "index": 676, - "index2": 661, - "size": 837, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js" - }, - { - "id": "0YjV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js" - }, - { - "id": "9szA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony side effect evaluation", - "userRequest": "./VerticalDivider.styles", - "loc": "1:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony import specifier", - "userRequest": "./VerticalDivider.styles", - "loc": "4:57-66" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 15, - "source": "export var getStyles = function (props) {\n var theme = props.theme, getClassNames = props.getClassNames, className = props.className;\n if (!theme) {\n throw new Error('Theme is undefined or null.');\n }\n if (getClassNames) {\n var names = getClassNames(theme);\n return {\n wrapper: [names.wrapper],\n divider: [names.divider]\n };\n }\n return {\n wrapper: [\n {\n display: 'inline-flex',\n height: '100%',\n alignItems: 'center'\n },\n className\n ],\n divider: [\n {\n width: 1,\n height: '100%',\n backgroundColor: theme.palette.neutralTertiaryAlt\n }\n ]\n };\n};\n//# sourceMappingURL=VerticalDivider.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "index": 675, - "index2": 660, - "size": 632, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js" - }, - { - "id": "0YjV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js" - }, - { - "id": "9szA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony side effect evaluation", - "userRequest": "./VerticalDivider.base", - "loc": "2:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony import specifier", - "userRequest": "./VerticalDivider.base", - "loc": "4:36-55" - } - ], - "usedExports": [ - "VerticalDividerBase" - ], - "providedExports": [ - "VerticalDividerBase" - ], - "optimizationBailout": [], - "depth": 15, - "source": "import * as React from 'react';\nimport { classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nexport var VerticalDividerBase = function (props) {\n var styles = props.styles, theme = props.theme, deprecatedGetClassNames = props.getClassNames, className = props.className;\n var classNames = getClassNames(styles, { theme: theme, getClassNames: deprecatedGetClassNames, className: className });\n return (React.createElement(\"span\", { className: classNames.wrapper },\n React.createElement(\"span\", { className: classNames.divider })));\n};\n//# sourceMappingURL=VerticalDivider.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "index": 623, - "index2": 612, - "size": 1963, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "issuerId": "K7IN", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js" - }, - { - "id": "3xEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js" - }, - { - "id": "K7IN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric.base", - "loc": "2:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony import specifier", - "userRequest": "./Fabric.base", - "loc": "4:27-37" - }, - { - "moduleId": "K7IN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric.base", - "loc": "2:0-30" - }, - { - "moduleId": "K7IN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Fabric.base", - "loc": "2:0-30" - } - ], - "usedExports": [ - "FabricBase" - ], - "providedExports": [ - "FabricBase" - ], - "optimizationBailout": [], - "depth": 16, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { getNativeProps, on, divProperties, classNamesFunction, getWindow, isDirectionalKeyCode } from '../../Utilities';\nimport { getStyles } from './Fabric.styles';\nvar getClassNames = classNamesFunction();\nvar FabricBase = /** @class */ (function (_super) {\n tslib_1.__extends(FabricBase, _super);\n function FabricBase(props) {\n var _this = _super.call(this, props) || this;\n _this._rootElement = React.createRef();\n _this._disposables = [];\n _this._onMouseDown = function (ev) {\n _this.setState({ isFocusVisible: false });\n };\n _this._onKeyDown = function (ev) {\n if (isDirectionalKeyCode(ev.which)) {\n _this.setState({ isFocusVisible: true });\n }\n };\n _this.state = { isFocusVisible: false };\n return _this;\n }\n FabricBase.prototype.render = function () {\n var _a = this.props, className = _a.className, rest = tslib_1.__rest(_a, [\"className\"]);\n var classNames = getClassNames(getStyles, {\n theme: this.props.theme,\n className: className,\n isFocusVisible: this.state.isFocusVisible\n });\n var divProps = getNativeProps(rest, divProperties);\n return React.createElement(\"div\", tslib_1.__assign({}, divProps, { className: classNames.root, ref: this._rootElement }));\n };\n FabricBase.prototype.componentDidMount = function () {\n var win = getWindow(this._rootElement.current);\n if (win) {\n this._disposables.push(on(win, 'mousedown', this._onMouseDown, true), on(win, 'keydown', this._onKeyDown, true));\n }\n };\n FabricBase.prototype.componentWillUnmount = function () {\n this._disposables.forEach(function (dispose) { return dispose(); });\n };\n return FabricBase;\n}(React.Component));\nexport { FabricBase };\n//# sourceMappingURL=Fabric.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "index": 622, - "index2": 613, - "size": 252, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "issuerId": "K7IN", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js" - }, - { - "id": "3xEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js" - }, - { - "id": "K7IN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Fabric", - "loc": "61:54-60" - }, - { - "moduleId": "K7IN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric", - "loc": "1:0-25" - }, - { - "moduleId": "K7IN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Fabric", - "loc": "1:0-25" - } - ], - "usedExports": [ - "Fabric" - ], - "providedExports": [ - "Fabric" - ], - "optimizationBailout": [], - "depth": 16, - "source": "import { styled } from '../../Utilities';\nimport { FabricBase } from './Fabric.base';\nimport { getStyles } from './Fabric.styles';\nexport var Fabric = styled(FabricBase, getStyles, undefined, {\n scope: 'Fabric'\n});\n//# sourceMappingURL=Fabric.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "index": 624, - "index2": 611, - "size": 866, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js" - }, - { - "id": "3xEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js" - }, - { - "id": "K7IN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric.styles", - "loc": "3:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric.styles", - "loc": "4:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.js", - "type": "harmony import specifier", - "userRequest": "./Fabric.styles", - "loc": "4:39-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "userRequest": "./Fabric.styles", - "loc": "25:39-48" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 17, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar inheritFont = { fontFamily: 'inherit' };\nvar GlobalClassNames = {\n root: 'ms-Fabric'\n};\nexport var getStyles = function (props) {\n var theme = props.theme, className = props.className, isFocusVisible = props.isFocusVisible;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n isFocusVisible && 'is-focusVisible ms-Fabric--isFocusVisible',\n theme.fonts.medium,\n {\n color: theme.palette.neutralPrimary,\n selectors: {\n '& button': inheritFont,\n '& input': inheritFont,\n '& textarea': inheritFont\n }\n },\n className\n ]\n };\n};\n//# sourceMappingURL=Fabric.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js", - "index": 652, - "index2": 636, - "size": 627, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerId": "8l0F", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js" - }, - { - "id": "957h", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js" - }, - { - "id": "8l0F", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony side effect evaluation", - "userRequest": "./positioning.types", - "loc": "4:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "10:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "11:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "12:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "13:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "22:58-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "22:77-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "23:56-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "24:59-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "24:78-91" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "25:58-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "26:61-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "26:83-96" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "27:59-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "28:62-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "28:84-97" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "29:61-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "30:58-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "30:78-91" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "31:57-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "32:61-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "32:81-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "33:59-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "33:80-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "34:58-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "35:62-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "35:83-96" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "59:25-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "62:25-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "65:25-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "68:25-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "73:16-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "76:9-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "190:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "190:42-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "190:63-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "190:85-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "334:17-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "334:47-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "336:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "337:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "342:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "343:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "383:28-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "389:16-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "475:16-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "476:16-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "531:32-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "531:67-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "552:19-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "555:24-37" - }, - { - "moduleId": "8l0F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./positioning.types", - "loc": "2:0-36" - }, - { - "moduleId": "8l0F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning.types", - "loc": "2:0-36" - } - ], - "usedExports": [ - "RectangleEdge" - ], - "providedExports": [ - "RectangleEdge", - "Position" - ], - "optimizationBailout": [], - "depth": 17, - "source": "export var RectangleEdge;\n(function (RectangleEdge) {\n RectangleEdge[RectangleEdge[\"top\"] = 1] = \"top\";\n RectangleEdge[RectangleEdge[\"bottom\"] = -1] = \"bottom\";\n RectangleEdge[RectangleEdge[\"left\"] = 2] = \"left\";\n RectangleEdge[RectangleEdge[\"right\"] = -2] = \"right\";\n})(RectangleEdge || (RectangleEdge = {}));\nexport var Position;\n(function (Position) {\n Position[Position[\"top\"] = 0] = \"top\";\n Position[Position[\"bottom\"] = 1] = \"bottom\";\n Position[Position[\"start\"] = 2] = \"start\";\n Position[Position[\"end\"] = 3] = \"end\";\n})(Position || (Position = {}));\n//# sourceMappingURL=positioning.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "index": 653, - "index2": 638, - "size": 30980, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerId": "8l0F", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js" - }, - { - "id": "957h", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js" - }, - { - "id": "8l0F", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "239:18-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "240:18-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "291:43-55" - }, - { - "moduleId": "8l0F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./positioning", - "loc": "1:0-30" - }, - { - "moduleId": "8l0F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-30" - } - ], - "usedExports": [ - "positionCard", - "positionCallout", - "getMaxHeight" - ], - "providedExports": [ - "Rectangle", - "__positioningTestPackage", - "positionElement", - "positionCallout", - "positionCard", - "getMaxHeight", - "getOppositeEdge" - ], - "optimizationBailout": [], - "depth": 17, - "source": "import * as tslib_1 from \"tslib\";\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { getScrollbarWidth, getRTL, Rectangle as FullRectangle } from '../../Utilities';\nimport { RectangleEdge } from './positioning.types';\nvar Rectangle = /** @class */ (function (_super) {\n tslib_1.__extends(Rectangle, _super);\n function Rectangle() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return Rectangle;\n}(FullRectangle));\nexport { Rectangle };\nfunction _createPositionData(targetEdge, alignmentEdge, isAuto) {\n return {\n targetEdge: targetEdge,\n alignmentEdge: alignmentEdge,\n isAuto: isAuto\n };\n}\n// Currently the beakPercent is set to 50 for all positions meaning that it should tend to the center of the target\nvar DirectionalDictionary = (_a = {},\n _a[DirectionalHint.topLeftEdge] = _createPositionData(RectangleEdge.top, RectangleEdge.left),\n _a[DirectionalHint.topCenter] = _createPositionData(RectangleEdge.top),\n _a[DirectionalHint.topRightEdge] = _createPositionData(RectangleEdge.top, RectangleEdge.right),\n _a[DirectionalHint.topAutoEdge] = _createPositionData(RectangleEdge.top, undefined, true),\n _a[DirectionalHint.bottomLeftEdge] = _createPositionData(RectangleEdge.bottom, RectangleEdge.left),\n _a[DirectionalHint.bottomCenter] = _createPositionData(RectangleEdge.bottom),\n _a[DirectionalHint.bottomRightEdge] = _createPositionData(RectangleEdge.bottom, RectangleEdge.right),\n _a[DirectionalHint.bottomAutoEdge] = _createPositionData(RectangleEdge.bottom, undefined, true),\n _a[DirectionalHint.leftTopEdge] = _createPositionData(RectangleEdge.left, RectangleEdge.top),\n _a[DirectionalHint.leftCenter] = _createPositionData(RectangleEdge.left),\n _a[DirectionalHint.leftBottomEdge] = _createPositionData(RectangleEdge.left, RectangleEdge.bottom),\n _a[DirectionalHint.rightTopEdge] = _createPositionData(RectangleEdge.right, RectangleEdge.top),\n _a[DirectionalHint.rightCenter] = _createPositionData(RectangleEdge.right),\n _a[DirectionalHint.rightBottomEdge] = _createPositionData(RectangleEdge.right, RectangleEdge.bottom),\n _a);\nfunction _isRectangleWithinBounds(rect, boundingRect) {\n if (rect.top < boundingRect.top) {\n return false;\n }\n if (rect.bottom > boundingRect.bottom) {\n return false;\n }\n if (rect.left < boundingRect.left) {\n return false;\n }\n if (rect.right > boundingRect.right) {\n return false;\n }\n return true;\n}\n/**\n * Gets all of the edges of a rectangle that are outside of the given bounds.\n * If there are no out of bounds edges it returns an empty array.\n */\nfunction _getOutOfBoundsEdges(rect, boundingRect) {\n var outOfBounds = new Array();\n if (rect.top < boundingRect.top) {\n outOfBounds.push(RectangleEdge.top);\n }\n if (rect.bottom > boundingRect.bottom) {\n outOfBounds.push(RectangleEdge.bottom);\n }\n if (rect.left < boundingRect.left) {\n outOfBounds.push(RectangleEdge.left);\n }\n if (rect.right > boundingRect.right) {\n outOfBounds.push(RectangleEdge.right);\n }\n return outOfBounds;\n}\nfunction _getEdgeValue(rect, edge) {\n return rect[RectangleEdge[edge]];\n}\nfunction _setEdgeValue(rect, edge, value) {\n rect[RectangleEdge[edge]] = value;\n return rect;\n}\n/**\n * Returns the middle value of an edge. Only returns 1 value rather than xy coordinates as\n * the itself already contains the other coordinate.\n * For instance, a bottom edge's current value is it's y coordinate, so the number returned is the x.\n *\n * @param {Rectangle} rect\n * @param {RectangleEdge} edge\n * @returns {number}\n */\nfunction _getCenterValue(rect, edge) {\n var edges = _getFlankingEdges(edge);\n return (_getEdgeValue(rect, edges.positiveEdge) + _getEdgeValue(rect, edges.negativeEdge)) / 2;\n}\n/**\n * Flips the value depending on the edge.\n * If the edge is a \"positive\" edge, Top or Left, then the value should stay as it is.\n * If the edge is a \"negative\" edge, Bottom or Right, then the value should be flipped.\n * This is to account for the fact that the coordinates are effectively reveserved in certain cases for the \"negative\" edges.\n * For example, when testing to see if a bottom edge 1 is within the bounds of another bottom edge 2.\n * If edge 1 is greater than edge 2 then it is out of bounds. This is reversed for top edge 1 and top edge 2.\n * If top edge 1 is less than edge 2 then it is out of bounds.\n *\n *\n * @param {RectangleEdge} edge\n * @param {number} value\n * @returns {number}\n */\nfunction _getRelativeEdgeValue(edge, value) {\n if (edge > 0) {\n return value;\n }\n else {\n return value * -1;\n }\n}\nfunction _getRelativeRectEdgeValue(edge, rect) {\n return _getRelativeEdgeValue(edge, _getEdgeValue(rect, edge));\n}\nfunction _getRelativeEdgeDifference(rect, hostRect, edge) {\n var edgeDifference = _getEdgeValue(rect, edge) - _getEdgeValue(hostRect, edge);\n return _getRelativeEdgeValue(edge, edgeDifference);\n}\n/**\n * Moves the edge of a rectangle to the value given. It only moves the edge in a linear direction based on that edge.\n * For example, if it's a bottom edge it will only change y coordinates.\n *\n * @param {Rectangle} rect\n * @param {RectangleEdge} edge\n * @param {number} newValue\n * @returns {Rectangle}\n */\nfunction _moveEdge(rect, edge, newValue) {\n var difference = _getEdgeValue(rect, edge) - newValue;\n rect = _setEdgeValue(rect, edge, newValue);\n rect = _setEdgeValue(rect, edge * -1, _getEdgeValue(rect, edge * -1) - difference);\n return rect;\n}\n/**\n * Aligns the edge on the passed in rect to the target. If there is a gap then it will have that space between the two.\n *\n * @param {Rectangle} rect\n * @param {Rectangle} target\n * @param {RectangleEdge} edge\n * @param {number} [gap=0]\n * @returns {Rectangle}\n */\nfunction _alignEdges(rect, target, edge, gap) {\n if (gap === void 0) { gap = 0; }\n return _moveEdge(rect, edge, _getEdgeValue(target, edge) + _getRelativeEdgeValue(edge, gap));\n}\n/**\n * Aligns the targetEdge on the passed in target to the rects corresponding opposite edge.\n * For instance if targetEdge is bottom, then the rects top will be moved to match it.\n *\n * @param {Rectangle} rect\n * @param {Rectangle} target\n * @param {RectangleEdge} targetEdge\n * @param {number} [gap=0]\n * @returns {Rectangle}\n */\nfunction _alignOppositeEdges(rect, target, targetEdge, gap) {\n if (gap === void 0) { gap = 0; }\n var oppositeEdge = targetEdge * -1;\n var adjustedGap = _getRelativeEdgeValue(oppositeEdge, gap);\n return _moveEdge(rect, targetEdge * -1, _getEdgeValue(target, targetEdge) + adjustedGap);\n}\n/**\n * Tests to see if the given edge is within the bounds of the given rectangle.\n *\n * @param {Rectangle} rect\n * @param {Rectangle} bounds\n * @param {RectangleEdge} edge\n * @returns {boolean}\n */\nfunction _isEdgeInBounds(rect, bounds, edge) {\n var adjustedRectValue = _getRelativeRectEdgeValue(edge, rect);\n return adjustedRectValue > _getRelativeRectEdgeValue(edge, bounds);\n}\n/**\n * Attempts to move the rectangle through various sides of the target to find a place to fit.\n * If no fit is found, the original position should be returned.\n *\n * @param {Rectangle} rect\n * @param {Rectangle} target\n * @param {Rectangle} bounding\n * @param {IPositionDirectionalHintData} positionData\n * @param {number} [gap=0]\n * @returns {IElementPosition}\n */\nfunction _flipToFit(rect, target, bounding, positionData, gap) {\n if (gap === void 0) { gap = 0; }\n var directions = [RectangleEdge.left, RectangleEdge.right, RectangleEdge.bottom, RectangleEdge.top];\n var currentEstimate = rect;\n var currentEdge = positionData.targetEdge;\n var currentAlignment = positionData.alignmentEdge;\n // Keep switching sides until one is found with enough space. If all sides don't fit then return the unmodified element.\n for (var i = 0; i < 4; i++) {\n if (!_isEdgeInBounds(currentEstimate, bounding, currentEdge)) {\n directions.splice(directions.indexOf(currentEdge), 1);\n if (directions.indexOf(currentEdge * -1) > -1) {\n currentEdge = currentEdge * -1;\n }\n else {\n currentAlignment = currentEdge;\n currentEdge = directions.slice(-1)[0];\n }\n currentEstimate = _estimatePosition(rect, target, { targetEdge: currentEdge, alignmentEdge: currentAlignment }, gap);\n }\n else {\n return {\n elementRectangle: currentEstimate,\n targetEdge: currentEdge,\n alignmentEdge: currentAlignment\n };\n }\n }\n return {\n elementRectangle: rect,\n targetEdge: positionData.targetEdge,\n alignmentEdge: currentAlignment\n };\n}\n/**\n * Flips only the alignment edge of an element rectangle. This is used instead of nudging the alignment edges into position,\n * when alignTargetEdge is specified.\n * @param elementEstimate\n * @param target\n * @param bounding\n * @param gap\n */\nfunction _flipAlignmentEdge(elementEstimate, target, gap, coverTarget) {\n var alignmentEdge = elementEstimate.alignmentEdge, targetEdge = elementEstimate.targetEdge, elementRectangle = elementEstimate.elementRectangle;\n var oppositeEdge = alignmentEdge * -1;\n var newEstimate = _estimatePosition(elementRectangle, target, { targetEdge: targetEdge, alignmentEdge: oppositeEdge }, gap, coverTarget);\n return {\n elementRectangle: newEstimate,\n targetEdge: targetEdge,\n alignmentEdge: oppositeEdge\n };\n}\n/**\n * Adjusts a element rectangle to fit within the bounds given. If directionalHintFixed or covertarget is passed in\n * then the element will not flip sides on the target. They will, however, be nudged to fit within the bounds given.\n *\n * @param {Rectangle} element\n * @param {Rectangle} target\n * @param {Rectangle} bounding\n * @param {IPositionDirectionalHintData} positionData\n * @param {number} [gap=0]\n * @param {boolean} [directionalHintFixed]\n * @param {boolean} [coverTarget]\n * @returns {IElementPosition}\n */\nfunction _adjustFitWithinBounds(element, target, bounding, positionData, gap, directionalHintFixed, coverTarget) {\n if (gap === void 0) { gap = 0; }\n var alignmentEdge = positionData.alignmentEdge, alignTargetEdge = positionData.alignTargetEdge;\n var elementEstimate = {\n elementRectangle: element,\n targetEdge: positionData.targetEdge,\n alignmentEdge: alignmentEdge\n };\n if (!directionalHintFixed && !coverTarget) {\n elementEstimate = _flipToFit(element, target, bounding, positionData, gap);\n }\n var outOfBounds = _getOutOfBoundsEdges(element, bounding);\n if (alignTargetEdge) {\n // The edge opposite to the alignment edge might be out of bounds. Flip alignment to see if we can get it within bounds.\n if (elementEstimate.alignmentEdge && outOfBounds.indexOf(elementEstimate.alignmentEdge * -1) > -1) {\n var flippedElementEstimate = _flipAlignmentEdge(elementEstimate, target, gap, coverTarget);\n if (_isRectangleWithinBounds(flippedElementEstimate.elementRectangle, bounding)) {\n return flippedElementEstimate;\n }\n }\n }\n else {\n for (var _i = 0, outOfBounds_1 = outOfBounds; _i < outOfBounds_1.length; _i++) {\n var direction = outOfBounds_1[_i];\n elementEstimate.elementRectangle = _alignEdges(elementEstimate.elementRectangle, bounding, direction);\n }\n }\n return elementEstimate;\n}\n/**\n * Moves the middle point on an edge to the point given.\n * Only moves in one direction. For instance if a bottom edge is passed in, then\n * the bottom edge will be moved in the x axis to match the point.\n *\n * @param {Rectangle} rect\n * @param {RectangleEdge} edge\n * @param {number} point\n * @returns {Rectangle}\n */\nfunction _centerEdgeToPoint(rect, edge, point) {\n var positiveEdge = _getFlankingEdges(edge).positiveEdge;\n var elementMiddle = _getCenterValue(rect, edge);\n var distanceToMiddle = elementMiddle - _getEdgeValue(rect, positiveEdge);\n return _moveEdge(rect, positiveEdge, point - distanceToMiddle);\n}\n/**\n * Moves the element rectangle to be appropriately positioned relative to a given target.\n * Does not flip or adjust the element.\n *\n * @param {Rectangle} elementToPosition\n * @param {Rectangle} target\n * @param {IPositionDirectionalHintData} positionData\n * @param {number} [gap=0]\n * @param {boolean} [coverTarget]\n * @returns {Rectangle}\n */\nfunction _estimatePosition(elementToPosition, target, positionData, gap, coverTarget) {\n if (gap === void 0) { gap = 0; }\n var estimatedElementPosition;\n var alignmentEdge = positionData.alignmentEdge, targetEdge = positionData.targetEdge;\n var elementEdge = coverTarget ? targetEdge : targetEdge * -1;\n estimatedElementPosition = coverTarget\n ? _alignEdges(elementToPosition, target, targetEdge, gap)\n : _alignOppositeEdges(elementToPosition, target, targetEdge, gap);\n // if no alignment edge is provided it's supposed to be centered.\n if (!alignmentEdge) {\n var targetMiddlePoint = _getCenterValue(target, targetEdge);\n estimatedElementPosition = _centerEdgeToPoint(estimatedElementPosition, elementEdge, targetMiddlePoint);\n }\n else {\n estimatedElementPosition = _alignEdges(estimatedElementPosition, target, alignmentEdge);\n }\n return estimatedElementPosition;\n}\n/**\n * Returns the non-opposite edges of the target edge.\n * For instance if bottom is passed in then left and right will be returned.\n *\n * @param {RectangleEdge} edge\n * @returns {{ firstEdge: RectangleEdge, secondEdge: RectangleEdge }}\n */\nfunction _getFlankingEdges(edge) {\n if (edge === RectangleEdge.top || edge === RectangleEdge.bottom) {\n return {\n positiveEdge: RectangleEdge.left,\n negativeEdge: RectangleEdge.right\n };\n }\n else {\n return {\n positiveEdge: RectangleEdge.top,\n negativeEdge: RectangleEdge.bottom\n };\n }\n}\n/**\n * Retrieve the final value for the return edge of elementRectangle.\n * If the elementRectangle is closer to one side of the bounds versus the other, the return edge is flipped to grow inward.\n *\n * @param elementRectangle\n * @param targetEdge\n * @param bounds\n */\nfunction _finalizeReturnEdge(elementRectangle, returnEdge, bounds) {\n if (bounds &&\n Math.abs(_getRelativeEdgeDifference(elementRectangle, bounds, returnEdge)) >\n Math.abs(_getRelativeEdgeDifference(elementRectangle, bounds, returnEdge * -1))) {\n return returnEdge * -1;\n }\n return returnEdge;\n}\n/**\n * Finalizes the element positon based on the hostElement. Only returns the\n * rectangle values to position such that they are anchored to the target.\n * This helps prevent resizing from looking very strange.\n * For instance, if the target edge is top and aligned with the left side then\n * the bottom and left values are returned so as the callou shrinks it shrinks towards that corner.\n *\n * @param {Rectangle} elementRectangle\n * @param {HTMLElement} hostElement\n * @param {RectangleEdge} targetEdge\n * @param {RectangleEdge} bounds\n * @param {RectangleEdge} [alignmentEdge]\n * @param {boolean} coverTarget\n * @param {boolean} doNotFinalizeReturnEdge\n * @returns {IPartialIRectangle}\n */\nfunction _finalizeElementPosition(elementRectangle, hostElement, targetEdge, bounds, alignmentEdge, coverTarget, doNotFinalizeReturnEdge) {\n var returnValue = {};\n var hostRect = _getRectangleFromElement(hostElement);\n var elementEdge = coverTarget ? targetEdge : targetEdge * -1;\n var elementEdgeString = RectangleEdge[elementEdge];\n var returnEdge = alignmentEdge ? alignmentEdge : _getFlankingEdges(targetEdge).positiveEdge;\n if (!doNotFinalizeReturnEdge) {\n returnEdge = _finalizeReturnEdge(elementRectangle, returnEdge, bounds);\n }\n returnValue[elementEdgeString] = _getRelativeEdgeDifference(elementRectangle, hostRect, elementEdge);\n returnValue[RectangleEdge[returnEdge]] = _getRelativeEdgeDifference(elementRectangle, hostRect, returnEdge);\n return returnValue;\n}\n// Since the beak is rotated 45 degrees the actual height/width is the length of the diagonal.\n// We still want to position the beak based on it's midpoint which does not change. It will\n// be at (beakwidth / 2, beakwidth / 2)\nfunction _calculateActualBeakWidthInPixels(beakWidth) {\n return Math.sqrt(beakWidth * beakWidth * 2);\n}\n/**\n * Returns the appropriate IPositionData based on the props altered for RTL.\n * If directionalHintForRTL is passed in that is used if the page is RTL.\n * If a directionalHint is specified and no directionalHintForRTL is available and the page is RTL the hint will be flipped.\n * For instance bottomLeftEdge would become bottomRightEdge.\n * If there is no directionalHint passed in bottomAutoEdge is chosen automatically.\n *\n * @param {IPositionProps} props\n * @returns {IPositionDirectionalHintData}\n */\nfunction _getPositionData(directionalHint, directionalHintForRTL, previousPositions) {\n if (directionalHint === void 0) { directionalHint = DirectionalHint.bottomAutoEdge; }\n if (previousPositions) {\n return {\n alignmentEdge: previousPositions.alignmentEdge,\n isAuto: previousPositions.isAuto,\n targetEdge: previousPositions.targetEdge\n };\n }\n var positionInformation = tslib_1.__assign({}, DirectionalDictionary[directionalHint]);\n if (getRTL()) {\n // If alignment edge exists and that alignment edge is -2 or 2, right or left, then flip it.\n if (positionInformation.alignmentEdge && positionInformation.alignmentEdge % 2 === 0) {\n positionInformation.alignmentEdge = positionInformation.alignmentEdge * -1;\n }\n return directionalHintForRTL !== undefined ? DirectionalDictionary[directionalHintForRTL] : positionInformation;\n }\n return positionInformation;\n}\n/**\n * Get's the alignment data for the given information. This only really matters if the positioning is Auto.\n * If it is auto then the alignmentEdge should be chosen based on the target edge's position relative to\n * the center of the page.\n *\n * @param {IPositionDirectionalHintData} positionData\n * @param {Rectangle} target\n * @param {Rectangle} boundingRect\n * @param {boolean} [coverTarget]\n * @returns {IPositionDirectionalHintData}\n */\nfunction _getAlignmentData(positionData, target, boundingRect, coverTarget, alignTargetEdge) {\n if (positionData.isAuto) {\n positionData.alignmentEdge = getClosestEdge(positionData.targetEdge, target, boundingRect);\n }\n positionData.alignTargetEdge = alignTargetEdge;\n return positionData;\n}\nfunction getClosestEdge(targetEdge, target, boundingRect) {\n var targetCenter = _getCenterValue(target, targetEdge);\n var boundingCenter = _getCenterValue(boundingRect, targetEdge);\n var _a = _getFlankingEdges(targetEdge), positiveEdge = _a.positiveEdge, negativeEdge = _a.negativeEdge;\n if (targetCenter <= boundingCenter) {\n return positiveEdge;\n }\n else {\n return negativeEdge;\n }\n}\nfunction _positionElementWithinBounds(elementToPosition, target, bounding, positionData, gap, directionalHintFixed, coverTarget) {\n var estimatedElementPosition = _estimatePosition(elementToPosition, target, positionData, gap, coverTarget);\n if (_isRectangleWithinBounds(estimatedElementPosition, bounding)) {\n return {\n elementRectangle: estimatedElementPosition,\n targetEdge: positionData.targetEdge,\n alignmentEdge: positionData.alignmentEdge\n };\n }\n else {\n return _adjustFitWithinBounds(elementToPosition, target, bounding, positionData, gap, directionalHintFixed, coverTarget);\n }\n}\nfunction _finalizeBeakPosition(elementPosition, positionedBeak, bounds) {\n var targetEdge = elementPosition.targetEdge * -1;\n // The \"host\" element that we will use to help position the beak.\n var actualElement = new Rectangle(0, elementPosition.elementRectangle.width, 0, elementPosition.elementRectangle.height);\n var returnValue = {};\n var returnEdge = _finalizeReturnEdge(elementPosition.elementRectangle, elementPosition.alignmentEdge ? elementPosition.alignmentEdge : _getFlankingEdges(targetEdge).positiveEdge, bounds);\n returnValue[RectangleEdge[targetEdge]] = _getEdgeValue(positionedBeak, targetEdge);\n returnValue[RectangleEdge[returnEdge]] = _getRelativeEdgeDifference(positionedBeak, actualElement, returnEdge);\n return {\n elementPosition: tslib_1.__assign({}, returnValue),\n closestEdge: getClosestEdge(elementPosition.targetEdge, positionedBeak, actualElement),\n targetEdge: targetEdge\n };\n}\nfunction _positionBeak(beakWidth, elementPosition) {\n var target = elementPosition.targetRectangle;\n /**\n * Note about beak positioning: The actual beak width only matters for getting the gap between the callout and\n * target, it does not impact the beak placement within the callout. For example example, if the beakWidth is 8,\n * then the actual beakWidth is sqrroot(8^2 + 8^2) = 11.31x11.31. So the callout will need to be an extra 3 pixels\n * away from its target. While the beak is being positioned in the callout it still acts as though it were 8x8.\n * */\n var _a = _getFlankingEdges(elementPosition.targetEdge), positiveEdge = _a.positiveEdge, negativeEdge = _a.negativeEdge;\n var beakTargetPoint = _getCenterValue(target, elementPosition.targetEdge);\n var elementBounds = new Rectangle(beakWidth / 2, elementPosition.elementRectangle.width - beakWidth / 2, beakWidth / 2, elementPosition.elementRectangle.height - beakWidth / 2);\n var beakPosition = new Rectangle(0, beakWidth, 0, beakWidth);\n beakPosition = _moveEdge(beakPosition, elementPosition.targetEdge * -1, -beakWidth / 2);\n beakPosition = _centerEdgeToPoint(beakPosition, elementPosition.targetEdge * -1, beakTargetPoint - _getRelativeRectEdgeValue(positiveEdge, elementPosition.elementRectangle));\n if (!_isEdgeInBounds(beakPosition, elementBounds, positiveEdge)) {\n beakPosition = _alignEdges(beakPosition, elementBounds, positiveEdge);\n }\n else if (!_isEdgeInBounds(beakPosition, elementBounds, negativeEdge)) {\n beakPosition = _alignEdges(beakPosition, elementBounds, negativeEdge);\n }\n return beakPosition;\n}\nfunction _getRectangleFromElement(element) {\n var clientRect = element.getBoundingClientRect();\n return new Rectangle(clientRect.left, clientRect.right, clientRect.top, clientRect.bottom);\n}\nfunction _getRectangleFromIRect(rect) {\n return new Rectangle(rect.left, rect.right, rect.top, rect.bottom);\n}\nfunction _getTargetRect(bounds, target) {\n var targetRectangle;\n if (target) {\n if (target.preventDefault) {\n var ev = target;\n targetRectangle = new Rectangle(ev.clientX, ev.clientX, ev.clientY, ev.clientY);\n }\n else if (target.getBoundingClientRect) {\n targetRectangle = _getRectangleFromElement(target);\n // HTMLImgElements can have x and y values. The check for it being a point must go last.\n }\n else {\n var point = target;\n targetRectangle = new Rectangle(point.x, point.x, point.y, point.y);\n }\n if (!_isRectangleWithinBounds(targetRectangle, bounds)) {\n var outOfBounds = _getOutOfBoundsEdges(targetRectangle, bounds);\n for (var _i = 0, outOfBounds_2 = outOfBounds; _i < outOfBounds_2.length; _i++) {\n var direction = outOfBounds_2[_i];\n targetRectangle[RectangleEdge[direction]] = bounds[RectangleEdge[direction]];\n }\n }\n }\n else {\n targetRectangle = new Rectangle(0, 0, 0, 0);\n }\n return targetRectangle;\n}\n/**\n * If max height is less than zero it returns the bounds height instead.\n */\nfunction _getMaxHeightFromTargetRectangle(targetRectangle, targetEdge, gapSpace, bounds, coverTarget) {\n var maxHeight = 0;\n var directionalHint = DirectionalDictionary[targetEdge];\n // If cover target is set, then the max height should be calculated using the opposite of the target edge since\n // that's the direction that the callout will expand in.\n // For instance, if the directionalhint is bottomLeftEdge then the callout will position so it's bottom edge\n // is aligned with the bottom of the target and expand up towards the top of the screen and the calculated max height\n // is (bottom of target) - (top of screen) - gapSpace.\n var target = coverTarget ? directionalHint.targetEdge * -1 : directionalHint.targetEdge;\n if (target === RectangleEdge.top) {\n maxHeight = _getEdgeValue(targetRectangle, directionalHint.targetEdge) - bounds.top - gapSpace;\n }\n else if (target === RectangleEdge.bottom) {\n maxHeight = bounds.bottom - _getEdgeValue(targetRectangle, directionalHint.targetEdge) - gapSpace;\n }\n else {\n maxHeight = bounds.bottom - targetRectangle.top - gapSpace;\n }\n return maxHeight > 0 ? maxHeight : bounds.height;\n}\nfunction _positionElementRelative(props, elementToPosition, boundingRect, previousPositions) {\n var gap = props.gapSpace ? props.gapSpace : 0;\n var targetRect = _getTargetRect(boundingRect, props.target);\n var positionData = _getAlignmentData(_getPositionData(props.directionalHint, props.directionalHintForRTL, previousPositions), targetRect, boundingRect, props.coverTarget, props.alignTargetEdge);\n var positionedElement = _positionElementWithinBounds(_getRectangleFromElement(elementToPosition), targetRect, boundingRect, positionData, gap, props.directionalHintFixed, props.coverTarget);\n return tslib_1.__assign({}, positionedElement, { targetRectangle: targetRect });\n}\nfunction _finalizePositionData(positionedElement, hostElement, bounds, coverTarget, doNotFinalizeReturnEdge) {\n var finalizedElement = _finalizeElementPosition(positionedElement.elementRectangle, hostElement, positionedElement.targetEdge, bounds, positionedElement.alignmentEdge, coverTarget, doNotFinalizeReturnEdge);\n return {\n elementPosition: finalizedElement,\n targetEdge: positionedElement.targetEdge,\n alignmentEdge: positionedElement.alignmentEdge\n };\n}\nfunction _positionElement(props, hostElement, elementToPosition, previousPositions) {\n var boundingRect = props.bounds\n ? _getRectangleFromIRect(props.bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n var positionedElement = _positionElementRelative(props, elementToPosition, boundingRect, previousPositions);\n return _finalizePositionData(positionedElement, hostElement, boundingRect, props.coverTarget);\n}\nfunction _positionCallout(props, hostElement, callout, previousPositions, doNotFinalizeReturnEdge) {\n var beakWidth = props.isBeakVisible ? props.beakWidth || 0 : 0;\n var gap = _calculateActualBeakWidthInPixels(beakWidth) / 2 + (props.gapSpace ? props.gapSpace : 0);\n var positionProps = props;\n positionProps.gapSpace = gap;\n var boundingRect = props.bounds\n ? _getRectangleFromIRect(props.bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n var positionedElement = _positionElementRelative(positionProps, callout, boundingRect, previousPositions);\n var beakPositioned = _positionBeak(beakWidth, positionedElement);\n var finalizedBeakPosition = _finalizeBeakPosition(positionedElement, beakPositioned, boundingRect);\n return tslib_1.__assign({}, _finalizePositionData(positionedElement, hostElement, boundingRect, props.coverTarget, doNotFinalizeReturnEdge), { beakPosition: finalizedBeakPosition });\n}\nfunction _positionCard(props, hostElement, callout, previousPositions) {\n return _positionCallout(props, hostElement, callout, previousPositions, true);\n}\n// END PRIVATE FUNCTIONS\n/* tslint:disable:variable-name */\nexport var __positioningTestPackage = {\n _finalizePositionData: _finalizePositionData,\n _finalizeBeakPosition: _finalizeBeakPosition,\n _calculateActualBeakWidthInPixels: _calculateActualBeakWidthInPixels,\n _positionElementWithinBounds: _positionElementWithinBounds,\n _positionBeak: _positionBeak,\n _getPositionData: _getPositionData,\n _getMaxHeightFromTargetRectangle: _getMaxHeightFromTargetRectangle\n};\n/* tslint:enable:variable-name */\n/**\n * Used to position an element relative to the given positioning props.\n * If positioning has been completed before, previousPositioningData\n * can be passed to ensure that the positioning element repositions based on\n * its previous targets rather than starting with directionalhint.\n *\n * @export\n * @param {IPositionProps} props\n * @param {HTMLElement} hostElement\n * @param {HTMLElement} elementToPosition\n * @param {IPositionedData} previousPositions\n * @returns\n */\nexport function positionElement(props, hostElement, elementToPosition, previousPositions) {\n return _positionElement(props, hostElement, elementToPosition, previousPositions);\n}\nexport function positionCallout(props, hostElement, elementToPosition, previousPositions) {\n return _positionCallout(props, hostElement, elementToPosition, previousPositions);\n}\nexport function positionCard(props, hostElement, elementToPosition, previousPositions) {\n return _positionCard(props, hostElement, elementToPosition, previousPositions);\n}\n/**\n * Get's the maximum height that a rectangle can have in order to fit below or above a target.\n * If the directional hint specifies a left or right edge (i.e. leftCenter) it will limit the height to the topBorder\n * of the target given.\n * If no bounds are provided then the window is treated as the bounds.\n */\nexport function getMaxHeight(target, targetEdge, gapSpace, bounds, coverTarget) {\n if (gapSpace === void 0) { gapSpace = 0; }\n var mouseTarget = target;\n var elementTarget = target;\n var pointTarget = target;\n var targetRect;\n var boundingRectangle = bounds\n ? _getRectangleFromIRect(bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n if (mouseTarget.stopPropagation) {\n targetRect = new Rectangle(mouseTarget.clientX, mouseTarget.clientX, mouseTarget.clientY, mouseTarget.clientY);\n }\n else if (pointTarget.x !== undefined && pointTarget.y !== undefined) {\n targetRect = new Rectangle(pointTarget.x, pointTarget.x, pointTarget.y, pointTarget.y);\n }\n else {\n targetRect = _getRectangleFromElement(elementTarget);\n }\n return _getMaxHeightFromTargetRectangle(targetRect, targetEdge, gapSpace, boundingRectangle, coverTarget);\n}\n/**\n * Returns the opposite edge of the given RectangleEdge.\n */\nexport function getOppositeEdge(edge) {\n return edge * -1;\n}\nvar _a;\n//# sourceMappingURL=positioning.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "kekF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_overArg.js", - "name": "./node_modules/lodash/_overArg.js", - "index": 515, - "index2": 504, - "size": 382, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getPrototype.js", - "issuerId": "LcsW", - "issuerName": "./node_modules/lodash/_getPrototype.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - }, - { - "id": "LcsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getPrototype.js", - "name": "./node_modules/lodash/_getPrototype.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LcsW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getPrototype.js", - "module": "./node_modules/lodash/_getPrototype.js", - "moduleName": "./node_modules/lodash/_getPrototype.js", - "type": "cjs require", - "userRequest": "./_overArg", - "loc": "1:14-35" - }, - { - "moduleId": "V6Ve", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nativeKeys.js", - "module": "./node_modules/lodash/_nativeKeys.js", - "moduleName": "./node_modules/lodash/_nativeKeys.js", - "type": "cjs require", - "userRequest": "./_overArg", - "loc": "1:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * Creates a unary function that invokes `func` with its argument transformed.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {Function} transform The argument transform.\n * @returns {Function} Returns the new function.\n */\nfunction overArg(func, transform) {\n return function(arg) {\n return func(transform(arg));\n };\n}\n\nmodule.exports = overArg;\n" - }, - { - "id": "lSCD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isFunction.js", - "name": "./node_modules/lodash/isFunction.js", - "index": 463, - "index2": 458, - "size": 993, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArrayLike.js", - "issuerId": "MMmD", - "issuerName": "./node_modules/lodash/isArrayLike.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "MMmD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArrayLike.js", - "name": "./node_modules/lodash/isArrayLike.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MMmD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArrayLike.js", - "module": "./node_modules/lodash/isArrayLike.js", - "moduleName": "./node_modules/lodash/isArrayLike.js", - "type": "cjs require", - "userRequest": "./isFunction", - "loc": "1:17-40" - }, - { - "moduleId": "NKxu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "module": "./node_modules/lodash/_baseIsNative.js", - "moduleName": "./node_modules/lodash/_baseIsNative.js", - "type": "cjs require", - "userRequest": "./isFunction", - "loc": "1:17-40" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var baseGetTag = require('./_baseGetTag'),\n isObject = require('./isObject');\n\n/** `Object#toString` result references. */\nvar asyncTag = '[object AsyncFunction]',\n funcTag = '[object Function]',\n genTag = '[object GeneratorFunction]',\n proxyTag = '[object Proxy]';\n\n/**\n * Checks if `value` is classified as a `Function` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n * @example\n *\n * _.isFunction(_);\n * // => true\n *\n * _.isFunction(/abc/);\n * // => false\n */\nfunction isFunction(value) {\n if (!isObject(value)) {\n return false;\n }\n // The use of `Object#toString` avoids issues with the `typeof` operator\n // in Safari 9 which returns 'object' for typed arrays and other constructors.\n var tag = baseGetTag(value);\n return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n}\n\nmodule.exports = isFunction;\n" - }, - { - "id": "ljhN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/eq.js", - "name": "./node_modules/lodash/eq.js", - "index": 451, - "index2": 440, - "size": 799, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "issuerId": "MrPd", - "issuerName": "./node_modules/lodash/_assignValue.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MrPd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "module": "./node_modules/lodash/_assignValue.js", - "moduleName": "./node_modules/lodash/_assignValue.js", - "type": "cjs require", - "userRequest": "./eq", - "loc": "2:9-24" - }, - { - "moduleId": "y1pI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assocIndexOf.js", - "module": "./node_modules/lodash/_assocIndexOf.js", - "moduleName": "./node_modules/lodash/_assocIndexOf.js", - "type": "cjs require", - "userRequest": "./eq", - "loc": "1:9-24" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Performs a\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * comparison between two values to determine if they are equivalent.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.eq(object, object);\n * // => true\n *\n * _.eq(object, other);\n * // => false\n *\n * _.eq('a', 'a');\n * // => true\n *\n * _.eq('a', Object('a'));\n * // => false\n *\n * _.eq(NaN, NaN);\n * // => true\n */\nfunction eq(value, other) {\n return value === other || (value !== value && other !== other);\n}\n\nmodule.exports = eq;\n" - }, - { - "id": "m08b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "index": 855, - "index2": 849, - "size": 592, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "cjs require", - "userRequest": "./PropertyFieldSitePickerListItem.module.css", - "loc": "2:0-55" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var content = require(\"!!../../../../../../css-loader/dist/cjs.js!../../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldSitePickerListItem.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js", - "index": 518, - "index2": 512, - "size": 778, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "issuerId": "G6z8", - "issuerName": "./node_modules/lodash/_getAllKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Dw+G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignIn.js", - "module": "./node_modules/lodash/_baseAssignIn.js", - "moduleName": "./node_modules/lodash/_baseAssignIn.js", - "type": "cjs require", - "userRequest": "./keysIn", - "loc": "2:13-32" - }, - { - "moduleId": "G6z8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "module": "./node_modules/lodash/_getAllKeysIn.js", - "moduleName": "./node_modules/lodash/_getAllKeysIn.js", - "type": "cjs require", - "userRequest": "./keysIn", - "loc": "3:13-32" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var arrayLikeKeys = require('./_arrayLikeKeys'),\n baseKeysIn = require('./_baseKeysIn'),\n isArrayLike = require('./isArrayLike');\n\n/**\n * Creates an array of the own and inherited enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keysIn(new Foo);\n * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n */\nfunction keysIn(object) {\n return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n}\n\nmodule.exports = keysIn;\n" - }, - { - "id": "mWkG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getId.js", - "name": "./node_modules/@uifabric/utilities/lib/getId.js", - "index": 106, - "index2": 94, - "size": 1239, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:34-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "19:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:21-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "35:16-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:35-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "40:38-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "47:32-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "49:38-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "74:38-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:20-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "78:20-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "86:28-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "99:28-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "101:25-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "115:38-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "128:16-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipManager.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "173:46-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "191:16-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "289:25-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "290:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "291:35-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "332:20-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "381:20-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "430:23-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "432:32-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "533:32-37" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "35:20-25" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:25-30" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "255:32-37" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "301:24-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "177:20-25" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "209:32-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "227:26-31" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "228:29-34" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "250:25-30" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "251:25-30" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:17-22" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "11:17-22" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "393:20-25" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "43:20-25" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getId", - "loc": "29:0-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getId", - "loc": "29:0-24" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "63:21-26" - }, - { - "moduleId": "fGTi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useId.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/utilities/lib/getId", - "loc": "2:0-54" - }, - { - "moduleId": "fGTi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useId.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useId.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/utilities/lib/getId", - "loc": "16:22-27" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "21:21-26" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "694:32-37" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1187:48-53" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "75:25-30" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:32-37" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "190:32-37" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "183:32-37" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:20-25" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "27:25-30" - } - ], - "usedExports": [ - "getId" - ], - "providedExports": [ - "getId", - "resetIds" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\nimport { Stylesheet } from '@uifabric/merge-styles';\n// Initialize global window id.\nvar CURRENT_ID_PROPERTY = '__currentId__';\nvar DEFAULT_ID_STRING = 'id__';\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nvar _global = getWindow() || {};\nif (_global[CURRENT_ID_PROPERTY] === undefined) {\n _global[CURRENT_ID_PROPERTY] = 0;\n}\nvar _initializedStylesheetResets = false;\n/**\n * Generates a unique id in the global scope (this spans across duplicate copies of the same library.)\n *\n * @public\n */\nexport function getId(prefix) {\n if (!_initializedStylesheetResets) {\n // Configure ids to reset on stylesheet resets.\n var stylesheet = Stylesheet.getInstance();\n if (stylesheet && stylesheet.onReset) {\n stylesheet.onReset(resetIds);\n }\n _initializedStylesheetResets = true;\n }\n var index = _global[CURRENT_ID_PROPERTY]++;\n return (prefix === undefined ? DEFAULT_ID_STRING : prefix) + index;\n}\n/**\n * Resets id counter to an (optional) number.\n *\n * @public\n */\nexport function resetIds(counter) {\n if (counter === void 0) { counter = 0; }\n _global[CURRENT_ID_PROPERTY] = counter;\n}\n//# sourceMappingURL=getId.js.map" - }, - { - "id": "mdPL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nodeUtil.js", - "name": "./node_modules/lodash/_nodeUtil.js", - "index": 511, - "index2": 500, - "size": 995, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "issuerId": "c6wG", - "issuerName": "./node_modules/lodash/isTypedArray.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - }, - { - "id": "c6wG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "name": "./node_modules/lodash/isTypedArray.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1+5i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSet.js", - "module": "./node_modules/lodash/isSet.js", - "moduleName": "./node_modules/lodash/isSet.js", - "type": "cjs require", - "userRequest": "./_nodeUtil", - "loc": "3:15-37" - }, - { - "moduleId": "c6wG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "module": "./node_modules/lodash/isTypedArray.js", - "moduleName": "./node_modules/lodash/isTypedArray.js", - "type": "cjs require", - "userRequest": "./_nodeUtil", - "loc": "3:15-37" - }, - { - "moduleId": "zEVN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "module": "./node_modules/lodash/isMap.js", - "moduleName": "./node_modules/lodash/isMap.js", - "type": "cjs require", - "userRequest": "./_nodeUtil", - "loc": "3:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var freeGlobal = require('./_freeGlobal');\n\n/** Detect free variable `exports`. */\nvar freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Detect free variable `process` from Node.js. */\nvar freeProcess = moduleExports && freeGlobal.process;\n\n/** Used to access faster Node.js helpers. */\nvar nodeUtil = (function() {\n try {\n // Use `util.types` for Node.js 10+.\n var types = freeModule && freeModule.require && freeModule.require('util').types;\n\n if (types) {\n return types;\n }\n\n // Legacy `process.binding('util')` for Node.js < 10.\n return freeProcess && freeProcess.binding && freeProcess.binding('util');\n } catch (e) {}\n}());\n\nmodule.exports = nodeUtil;\n" - }, - { - "id": "mrSG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/tslib/tslib.es6.js", - "name": "./node_modules/tslib/tslib.es6.js", - "index": 33, - "index2": 21, - "size": 9436, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "fmqj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-13" - }, - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:46-54" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:37-45" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:15-23" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "83:35-43" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "84:39-47" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:43-51" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:52-60" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "88:67-75" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "41:4-13" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "305:43-51" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "307:47-55" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "307:593-601" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "307:602-610" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "308:63-71" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "310:54-62" - }, - { - "moduleId": "/sqS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "/sqS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:7-21" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:29-37" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:38-46" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:47-55" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:56-64" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:65-73" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:234-242" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:243-251" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "236:14-22" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "236:23-31" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "236:32-40" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "238:14-22" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "238:23-31" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "238:32-40" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "240:49-57" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "243:43-51" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "246:63-71" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "247:52-60" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "67:72-80" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-21" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:57-73" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:59-75" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:55-71" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "37:58-74" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:58-74" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:43-51" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "84:43-51" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "90:43-51" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "80:14-28" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "112:18-32" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:48-56" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:17-27" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:48-56" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:23-33" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "204:77-85" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "205:57-65" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-13" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:50-58" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:305-311" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "59:23-31" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:23-31" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "66:19-27" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "66:28-36" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:15-23" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-49" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:24-32" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:33-41" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:48-62" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:58-66" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "79:53-61" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "19:77-85" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:4-13" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "42:29-37" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "42:38-46" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "132:23-31" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "154:43-51" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "278:36-44" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "278:45-53" - }, - { - "moduleId": "5fkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "module": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "5fkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "module": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "91:47-55" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-50" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "521:31-45" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:4-13" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:42-50" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "114:47-55" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "141:27-35" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "141:36-44" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "152:12-20" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "152:21-29" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "152:66-74" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "160:12-20" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "160:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:4-13" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "285:55-63" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "287:159-167" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "288:45-53" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "298:52-60" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "299:52-60" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "344:17-27" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "15:0-52" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:8-17" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:107-113" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:63-71" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:72-80" - }, - { - "moduleId": "8msB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "70:86-94" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "19:4-13" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "58:4-13" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "95:4-13" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "139:4-13" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "183:4-13" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "190:57-65" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "191:57-65" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "196:4-13" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "243:4-13" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "250:58-66" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "253:56-64" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "265:4-13" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "276:60-68" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "279:58-66" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "37:55-63" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "78:51-59" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:51-59" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "123:28-36" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "123:37-45" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "128:36-44" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "128:45-53" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "175:43-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "178:32-40" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:59-65" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:43-51" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:4-13" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "441:41-49" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "122:51-59" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "130:59-67" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "168:55-63" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "179:47-55" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "203:59-67" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "357:48-56" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "367:45-53" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:48-56" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:21-31" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:33-41" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:4-13" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:35-43" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:44-52" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:4-13" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:25-33" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:34-42" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:46-54" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:190-198" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:41-49" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:43-51" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:29-37" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:38-46" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:47-55" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:105-113" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:56-64" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:12-21" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "76:114-122" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-68" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:4-13" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "46:28-42" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "48:36-50" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:19-27" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:28-36" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "58:36-50" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:28-42" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "65:19-27" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "65:28-36" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "103:47-55" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:47-55" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "108:144-150" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "110:50-58" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "113:53-61" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "117:49-57" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:53-61" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "141:28-42" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-60" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:4-13" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "206:29-43" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "237:55-63" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "495:29-43" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:4-13" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:50-58" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "61:166-172" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "72:96-102" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:45-53" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:37-45" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:41-49" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "72:43-51" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "83:43-51" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "83:284-292" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:37-45" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:27-35" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:36-44" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:27-35" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:36-44" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:45-53" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "37:47-55" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-21" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:48-64" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:19-37" - }, - { - "moduleId": "Jdes", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "Jdes", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "28:22-30" - }, - { - "moduleId": "Jdes", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "28:31-39" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:32-40" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:41-49" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:49-57" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:58-66" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "90:51-59" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:50-58" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "19:46-54" - }, - { - "moduleId": "LnTA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/utilities.js", - "module": "./node_modules/@uifabric/foundation/lib/utilities.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/utilities.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "LnTA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/utilities.js", - "module": "./node_modules/@uifabric/foundation/lib/utilities.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/utilities.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "2:20-28" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:168-174" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:33-41" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:4-13" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "218:43-51" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "222:54-62" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "229:55-63" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "221:45-53" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "304:4-13" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "130:15-23" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "163:15-23" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "163:24-32" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "173:23-31" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "173:32-40" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "178:24-32" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "178:33-41" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "181:28-36" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "181:37-45" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "184:28-36" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "184:37-45" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "198:27-35" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "217:4-13" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "253:43-51" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "265:27-35" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-21" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:50-66" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:23-41" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "132:17-31" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "154:16-30" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "261:22-36" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "71:49-57" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "OXrI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "OXrI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:42-56" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "15:0-33" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:8-25" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:107-121" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:62-78" - }, - { - "moduleId": "OxEE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "70:87-103" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "28:57-65" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:59-67" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:55-63" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:58-66" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:58-66" - }, - { - "moduleId": "Q4IW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "module": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "Q4IW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "module": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:23-31" - }, - { - "moduleId": "Q4IW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "module": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "66:23-31" - }, - { - "moduleId": "Q4IW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "module": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "66:32-40" - }, - { - "moduleId": "QbAE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getPropsWithDefaults.js", - "module": "./node_modules/@uifabric/utilities/lib/getPropsWithDefaults.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getPropsWithDefaults.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "QbAE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getPropsWithDefaults.js", - "module": "./node_modules/@uifabric/utilities/lib/getPropsWithDefaults.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getPropsWithDefaults.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:16-24" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:4-13" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "504:77-85" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "514:91-99" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "517:14-22" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "746:4-13" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "780:50-58" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-13" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "171:19-27" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "171:28-36" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "339:43-51" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "88:39-47" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "RWhW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:4-21" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:11-19" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:20-28" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:11-19" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:20-28" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:4-13" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:11-19" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:11-19" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:20-28" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:20-28" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:11-19" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:20-28" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:47-55" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:4-13" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "60:59-67" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "60:68-76" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:25-33" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:34-42" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:43-51" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "242:39-47" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "242:48-56" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "2:0-33" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "2:0-44" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:64-70" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:58-66" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:76-84" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:4-13" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "210:28-36" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "210:37-45" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "210:46-54" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "214:39-47" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "220:43-51" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "263:31-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "280:31-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "360:30-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "415:25-33" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "513:11-19" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "513:20-28" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "541:11-19" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "541:20-28" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:50-58" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:23-33" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "2:0-44" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:4-13" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "164:31-39" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "226:58-66" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:4-13" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:40-48" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:61-69" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "28:42-50" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "28:56-64" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:43-51" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "41:117-125" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:24-34" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:38-46" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "90:51-59" - }, - { - "moduleId": "VwdK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "VwdK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": "VwdK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "19:4-13" - }, - { - "moduleId": "WApJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "WApJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "79:31-39" - }, - { - "moduleId": "WApJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "79:49-57" - }, - { - "moduleId": "WApJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "122:27-35" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "128:42-50" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "129:41-49" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "131:48-56" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:75-81" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:46-54" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:82-90" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:91-99" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:4-13" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:4-13" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:55-63" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:64-72" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "28:32-40" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:47-55" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:56-64" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:56-64" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:62-70" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "119:16-26" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "177:43-51" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "178:39-47" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "180:39-47" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "210:47-55" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:4-13" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "72:31-39" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:26-34" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:35-43" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:31-39" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:40-48" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:49-57" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:58-66" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "92:33-41" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "92:42-50" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "92:51-59" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "95:152-160" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:43-51" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "107:47-55" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "112:17-27" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:16-25" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:70-78" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:79-87" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:74-82" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:70-78" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "198:43-51" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "203:77-85" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "212:52-60" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "216:51-59" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:125-131" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:45-53" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:54-62" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:38-46" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "38:33-41" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:4-13" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:42-50" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:42-50" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "2:0-33" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:4-13" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:47-55" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "90:24-32" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "93:24-32" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "93:33-41" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "96:24-32" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "96:33-41" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "96:42-50" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "99:24-32" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "99:33-41" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "99:42-50" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "99:51-59" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "102:24-32" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "102:33-41" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "102:42-50" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "102:51-59" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "171:27-35" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "216:52-60" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "218:43-51" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "219:39-47" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "220:43-51" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "222:55-63" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:56-64" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "68:41-49" - }, - { - "moduleId": "ddZB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "ddZB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:86-92" - }, - { - "moduleId": "ddZB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:11-19" - }, - { - "moduleId": "ddZB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:20-28" - }, - { - "moduleId": "gTQK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js bc4d268370d78d06620ded50fe0ebdb7", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "gTQK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js bc4d268370d78d06620ded50fe0ebdb7", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "5:4-13" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:4-13" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "193:39-47" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-13" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:43-51" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "57:47-55" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:49-57" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:46-54" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:47-55" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-72" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:4-13" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:31-39" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:40-48" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:90-98" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:99-107" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "55:4-13" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "131:46-54" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "134:48-56" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "247:62-76" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "316:49-57" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "320:140-148" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "320:149-157" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "833:43-51" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "837:34-42" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "837:43-51" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "839:124-132" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "839:133-141" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "890:23-31" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "890:32-40" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "914:23-31" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "914:32-40" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "938:23-31" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "938:32-40" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "982:27-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "982:36-44" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "1071:27-35" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "1661:15-25" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:4-13" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "57:53-61" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "107:90-98" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-31" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-49" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-49" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:53-59" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:10-18" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:27-41" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "26:26-40" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "55:23-37" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "146:27-41" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "151:23-31" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "151:32-40" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "174:25-33" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:42-50" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "2:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "4:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "4:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "5:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:11-19" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:20-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:52-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:18-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:64-78" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:58-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:82-88" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:76-92" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:8-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:48-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:37-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:21-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:16-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "19:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "19:50-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "19:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:20-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:48-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:48-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:32-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:53-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:17-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:20-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:55-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:30-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:39-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:42-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:60-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:62-76" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:40-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:45-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:48-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:49-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "26:30-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "26:39-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "27:43-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "28:32-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:49-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:49-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:51-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:58-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:8-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:12-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:21-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:33-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:42-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:42-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:47-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:13-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:22-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:33-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:37-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:55-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:53-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:61-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:117-133" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:56-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:11-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:54-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "37:17-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "38:15-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "38:26-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "38:70-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "38:83-97" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:15-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:24-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "41:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "41:54-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "41:212-228" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "42:54-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "43:25-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "43:74-90" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:23-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:32-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:41-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:8-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:70-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:4-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "53:26-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:46-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:198-214" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "55:239-255" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "56:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "56:50-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "58:50-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "60:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "61:62-78" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:23-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:39-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:48-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "64:26-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "64:35-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "65:24-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "65:31-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "66:21-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "67:15-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "67:21-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "67:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "68:20-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "68:21-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "68:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "68:43-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "68:292-308" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:21-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:26-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:35-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "70:22-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:26-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:35-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:45-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:110-126" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "74:160-168" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:26-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "77:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "77:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "80:31-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "81:33-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "81:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "81:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:28-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:421-427" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "84:39-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "84:50-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "85:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "85:124-130" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "86:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:27-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:36-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "89:19-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "89:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "90:28-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "90:43-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "91:47-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "91:49-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "96:17-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "96:26-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "97:32-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "98:40-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "98:875-891" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "99:46-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "105:50-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "108:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "108:56-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "109:21-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "112:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "112:33-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "114:28-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "115:16-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "115:28-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "115:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "116:55-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "117:34-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "117:129-137" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:19-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "119:46-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:12-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:50-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:53-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:56-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "121:50-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "121:76-84" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "126:50-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "126:55-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "127:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "129:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "129:33-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "130:15-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "133:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "134:17-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "135:17-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "137:26-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "138:23-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "138:50-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "138:59-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "141:30-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "141:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "141:40-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "141:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "141:49-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "142:32-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "142:41-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "143:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "143:40-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "143:57-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "146:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "146:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "147:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "147:46-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "148:43-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "148:50-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "149:39-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "150:27-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "150:36-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "150:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "150:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "151:39-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "155:12-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "155:19-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "155:21-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:19-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:392-400" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "163:50-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "163:59-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "164:25-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "170:28-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "173:37-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "173:46-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "174:39-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "179:43-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "181:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "188:15-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "188:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "199:42-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "200:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "200:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "215:21-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "215:31-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "221:44-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "223:31-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "225:195-211" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "233:52-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:47-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "239:43-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "266:16-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "282:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "282:40-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "282:49-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "284:195-203" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "292:45-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "292:54-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "293:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "294:698-706" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "295:34-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "296:69-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "315:15-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "315:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "320:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "353:192-200" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "354:34-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "356:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "357:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "364:41-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "367:51-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "379:22-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "379:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "383:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "383:37-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "394:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "394:33-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "401:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "401:37-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "403:26-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "407:238-254" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "414:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "414:37-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "417:30-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "417:39-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "431:15-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "431:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "444:26-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "447:163-179" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "453:49-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "457:27-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "457:36-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "459:76-92" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "475:23-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "478:25-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "482:48-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "518:15-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "518:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "518:33-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "521:62-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "521:71-79" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "568:11-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "596:11-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "612:33-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "619:31-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "621:54-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "626:43-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "627:50-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "672:15-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "672:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "699:15-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "699:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "729:32-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "729:41-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "742:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "742:37-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "770:29-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "770:38-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "771:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "771:37-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "774:47-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "775:25-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "854:22-32" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:46-54" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:55-63" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:98-106" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:107-115" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:46-54" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:35-43" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:44-52" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "86:35-43" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "86:44-52" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "86:53-61" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "89:41-49" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "6:4-21" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:42-58" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "2:0-33" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "34:35-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:35-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "148:39-47" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "163:43-51" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "249:42-50" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "249:51-59" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "318:43-51" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "318:52-60" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "413:47-55" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-49" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:29-37" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:38-46" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:24-32" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:33-41" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "85:61-75" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:4-13" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "93:43-51" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-72" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "5:4-13" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:52-60" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:39-47" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:19-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:19-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:28-36" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:28-36" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:37-45" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:19-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:28-36" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:39-47" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:35-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:19-27" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:28-36" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:95-101" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:53-61" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:57-65" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:33-41" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:42-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:58-66" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "42:54-68" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "46:4-13" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "48:42-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:32-40" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:41-49" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "52:212-220" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "53:4-13" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "55:54-62" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "57:43-51" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "60:21-29" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "68:21-29" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:21-29" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "72:239-247" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "73:50-58" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "74:21-29" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:22-30" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "93:49-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "103:28-36" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "103:37-45" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "105:50-58" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "117:924-932" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "117:933-941" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "145:46-54" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "146:50-58" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "164:26-34" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "164:35-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "176:46-54" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "177:50-58" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "454:84-92" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "522:39-47" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "522:48-56" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "529:91-99" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "554:31-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "554:40-48" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "554:237-245" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "554:246-254" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "556:48-56" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "558:49-57" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "564:76-84" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "659:43-51" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "659:52-60" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "672:43-51" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "697:33-41" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "715:35-43" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "716:50-58" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "879:25-35" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:39-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "112:51-59" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "115:43-51" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "169:43-51" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "204:31-45" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "225:27-41" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "232:27-41" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-21" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:48-64" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:21-39" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:48-56" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:20-30" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "97:28-36" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "97:37-45" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "138:43-51" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "166:43-51" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "200:28-36" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "200:37-45" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "28:4-13" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "48:55-63" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "109:43-51" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "138:47-55" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "165:83-89" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "167:34-42" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "167:43-51" - }, - { - "moduleId": "sNMJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:52-60" - }, - { - "moduleId": "sip3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "sip3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/Context.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:8-25" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:4-13" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:4-13" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "172:43-51" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "337:55-63" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-13" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:52-60" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-21" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:48-64" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "23:23-41" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:25-33" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "37:17-25" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "37:26-34" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:24-32" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:33-41" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:20-28" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:29-37" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:38-46" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:47-55" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "142:30-38" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "142:39-47" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "153:13-21" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "153:22-30" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:39-55" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:35-51" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:23-31" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:32-40" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "250:48-56" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "189:30-38" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "189:39-47" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "190:37-45" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "190:46-54" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "190:55-63" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "191:34-42" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "191:43-51" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "195:88-96" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "195:161-169" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-72" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "2:0-49" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:48-56" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:19-29" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:4-13" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "26:89-97" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "29:15-23" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:30-44" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:47-55" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:56-64" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:37-45" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:46-54" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "77:57-65" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "77:260-268" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "94:31-45" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "114:54-62" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "114:63-71" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:67-75" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:76-84" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "122:54-62" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "122:63-71" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "123:31-45" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "131:31-45" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "261:47-55" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "284:47-55" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "288:22-30" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "288:31-39" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "302:22-36" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "306:28-42" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "323:12-20" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "323:21-29" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "324:47-55" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "645:159-167" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "651:40-48" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "651:49-57" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "869:19-29" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-56" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:50-58" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:20-30" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "7:4-13" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:48-56" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-60" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:37-45" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "30:46-54" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "32:57-65" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:45-53" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "53:40-54" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:32-40" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:41-49" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:104-112" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:268-276" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:277-285" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:372-380" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "58:59-67" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "67:32-46" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:30-38" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "69:39-47" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "89:47-61" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "89:91-105" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "90:30-38" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "90:39-47" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:26-40" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "107:27-41" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "108:34-48" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "111:30-44" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "119:49-57" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:42-50" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:41-57" - }, - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:43-59" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:4-13" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "24:4-13" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:4-13" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "42:86-94" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:4-13" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "60:86-94" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "72:4-13" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "78:86-94" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:4-13" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:4-13" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "214:53-61" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:27-35" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "40:36-44" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:26-34" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:35-43" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "51:45-53" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "53:59-67" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-49" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "128:14-28" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "143:24-38" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "193:47-55" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:4-13" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:84-92" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "60:57-65" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "83:43-51" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:43-51" - }, - { - "moduleId": "yCKU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "yCKU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:11-19" - }, - { - "moduleId": "yCKU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:20-28" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-39" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "254:57-71" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:4-13" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "31:38-46" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:41-49" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-33" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:4-13" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "22:45-53" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "25:50-58" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "206:43-51" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "256:43-51" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "266:43-51" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-44" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "63:43-51" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "79:79-87" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "80:77-85" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "87:47-55" - } - ], - "usedExports": [ - "__assign", - "__decorate", - "__extends", - "__rest", - "__spreadArrays" - ], - "providedExports": [ - "__extends", - "__assign", - "__rest", - "__decorate", - "__param", - "__metadata", - "__awaiter", - "__generator", - "__exportStar", - "__values", - "__read", - "__spread", - "__spreadArrays", - "__await", - "__asyncGenerator", - "__asyncDelegator", - "__asyncValues", - "__makeTemplateObject", - "__importStar", - "__importDefault" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation. All rights reserved.\r\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\r\nthis file except in compliance with the License. You may obtain a copy of the\r\nLicense at http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\r\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\r\nMERCHANTABLITY OR NON-INFRINGEMENT.\r\n\r\nSee the Apache Version 2.0 License for specific language governing permissions\r\nand limitations under the License.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator], i = 0;\r\n if (m) return m.call(o);\r\n return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n" - }, - { - "id": "niPH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "index": 28, - "index2": 113, - "size": 117, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../collectionIconField", - "loc": "70:0-61" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../collectionIconField", - "loc": "487:43-62" - } - ], - "usedExports": [ - "CollectionIconField" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 8, - "source": "export * from \"./ICollectionIconFieldProps\";\nexport * from \"./CollectionIconField\";\n//# sourceMappingURL=index.js.map" - }, - { - "id": "nmnc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Symbol.js", - "name": "./node_modules/lodash/_Symbol.js", - "index": 465, - "index2": 453, - "size": 118, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "issuerId": "NykK", - "issuerName": "./node_modules/lodash/_baseGetTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "AP2z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getRawTag.js", - "module": "./node_modules/lodash/_getRawTag.js", - "moduleName": "./node_modules/lodash/_getRawTag.js", - "type": "cjs require", - "userRequest": "./_Symbol", - "loc": "1:13-33" - }, - { - "moduleId": "BiGR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isFlattenable.js", - "module": "./node_modules/lodash/_isFlattenable.js", - "moduleName": "./node_modules/lodash/_isFlattenable.js", - "type": "cjs require", - "userRequest": "./_Symbol", - "loc": "1:13-33" - }, - { - "moduleId": "NykK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "module": "./node_modules/lodash/_baseGetTag.js", - "moduleName": "./node_modules/lodash/_baseGetTag.js", - "type": "cjs require", - "userRequest": "./_Symbol", - "loc": "1:13-33" - }, - { - "moduleId": "otv/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneSymbol.js", - "module": "./node_modules/lodash/_cloneSymbol.js", - "moduleName": "./node_modules/lodash/_cloneSymbol.js", - "type": "cjs require", - "userRequest": "./_Symbol", - "loc": "1:13-33" - }, - { - "moduleId": "zoYe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseToString.js", - "module": "./node_modules/lodash/_baseToString.js", - "moduleName": "./node_modules/lodash/_baseToString.js", - "type": "cjs require", - "userRequest": "./_Symbol", - "loc": "1:13-33" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var root = require('./_root');\n\n/** Built-in value references. */\nvar Symbol = root.Symbol;\n\nmodule.exports = Symbol;\n" - }, - { - "id": "nsUS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "index": 862, - "index2": 855, - "size": 220, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "issuerId": "VSd+", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js" - }, - { - "id": "VSd+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "VSd+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldSitePickerHost.module.css", - "loc": "1:14-157" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "exports = module.exports = require(\"../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".siteList_80f9934a{list-style:none;padding-left:5px}.bold_80f9934a{font-weight:700}\", \"\"]);\n" - }, - { - "id": "o+WQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "index": 124, - "index2": 115, - "size": 7384, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "issuerId": "Z/cK", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "Z/cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Z/cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionNumberField", - "loc": "1:0-40" - }, - { - "moduleId": "Z/cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionNumberField", - "loc": "1:0-40" - } - ], - "usedExports": [ - "CollectionNumberField" - ], - "providedExports": [ - "CollectionNumberField" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { Async } from 'office-ui-fabric-react/lib/Utilities';\nimport { isEqual } from '@microsoft/sp-lodash-subset';\nvar CollectionNumberField = /** @class */ (function (_super) {\n __extends(CollectionNumberField, _super);\n function CollectionNumberField(props) {\n var _this = _super.call(this, props) || this;\n /**\n * Value change event handler\n *\n * @param field\n * @param value\n */\n _this.valueChange = function (field, value) { return __awaiter(_this, void 0, void 0, function () {\n var inputVal;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n inputVal = typeof value === \"string\" ? parseInt(value) : value;\n this.setState({\n value: inputVal\n });\n return [4 /*yield*/, this.props.fOnValueChange(field.id, value)];\n case 1:\n _a.sent();\n this.delayedValidate(field, inputVal);\n return [2 /*return*/];\n }\n });\n }); };\n /**\n * Delayed field validation\n */\n _this.valueValidation = function (field, value) { return __awaiter(_this, void 0, void 0, function () {\n var validation;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.props.fValidation(field, value)];\n case 1:\n validation = _a.sent();\n // Update the error message\n this.setState({\n errorMessage: validation\n });\n return [2 /*return*/];\n }\n });\n }); };\n _this.state = {\n value: null,\n errorMessage: ''\n };\n _this.async = new Async(_this);\n _this.delayedValidate = _this.async.debounce(_this.valueValidation, (_this.props.field.deferredValidationTime || _this.props.field.deferredValidationTime >= 0) ? _this.props.field.deferredValidationTime : 200);\n return _this;\n }\n /**\n * componentWillMount lifecycle hook\n */\n CollectionNumberField.prototype.componentWillMount = function () {\n this.setState({\n value: this.props.item[this.props.field.id]\n });\n this.valueChange(this.props.field, this.props.item[this.props.field.id]);\n };\n /**\n * componentWillUpdate lifecycle hook\n *\n * @param nextProps\n * @param nextState\n */\n CollectionNumberField.prototype.componentWillUpdate = function (nextProps, nextState) {\n if (!isEqual(nextProps.item, this.props.item)) {\n this.setState({\n value: nextProps.item[nextProps.field.id]\n });\n }\n };\n /**\n * Default React render method\n */\n CollectionNumberField.prototype.render = function () {\n var _this = this;\n return (React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__number-field \" + styles.numberField + \" \" + (this.state.errorMessage ? styles.invalidField : \"\") },\n React.createElement(\"input\", { type: \"number\", role: \"spinbutton\", placeholder: this.props.field.placeholder || this.props.field.title, \"aria-valuemax\": 99999, \"aria-valuemin\": -999999, \"aria-valuenow\": this.props.item[this.props.field.id] || '', \"aria-invalid\": !!this.state.errorMessage, value: this.state.value || '', onChange: function (ev) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.valueChange(this.props.field, ev.target.value)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }, disabled: this.props.disableEdit })));\n };\n return CollectionNumberField;\n}(React.Component));\nexport { CollectionNumberField };\n//# sourceMappingURL=CollectionNumberField.js.map" - }, - { - "id": "o9eJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "index": 19, - "index2": 18, - "size": 1030, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "issuerId": "QcW5", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "38:0-68" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "39:0-68" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "62:0-68" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "80:124-130" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "92:360-366" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "491:215-221" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "506:114-120" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "549:107-113" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "549:160-166" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "550:165-171" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "552:124-130" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "553:123-129" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "553:148-154" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "554:53-59" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "556:109-115" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "558:85-91" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "558:399-405" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "564:53-59" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "567:177-183" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony side effect evaluation", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "22:0-68" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "215:99-105" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "216:108-114" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "216:132-138" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "217:142-148" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "218:181-187" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "221:77-83" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "222:113-119" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "223:113-119" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "226:175-181" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "227:101-107" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "51:0-68" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "128:109-115" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "128:162-168" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "129:52-58" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony side effect evaluation", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "51:0-68" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "62:108-114" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "63:103-109" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony side effect evaluation", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "51:0-68" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "134:110-116" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "../PropertyFieldCollectionDataHost.module.scss", - "loc": "134:164-170" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/* tslint:disable */\nrequire(\"./PropertyFieldCollectionDataHost.module.css\");\nvar styles = {\n collectionData: 'collectionData_106fc03d',\n noCollectionData: 'noCollectionData_106fc03d',\n panelActions: 'panelActions_106fc03d',\n required: 'required_106fc03d',\n addBtn: 'addBtn_106fc03d',\n inputField: 'inputField_106fc03d',\n numberField: 'numberField_106fc03d',\n invalidField: 'invalidField_106fc03d',\n iconField: 'iconField_106fc03d',\n colorField: 'colorField_106fc03d',\n colorIndicator: 'colorIndicator_106fc03d',\n collectionDataField: 'collectionDataField_106fc03d',\n table: 'table_106fc03d',\n tableRow: 'tableRow_106fc03d',\n tableFooter: 'tableFooter_106fc03d',\n tableCell: 'tableCell_106fc03d',\n errorCallout: 'errorCallout_106fc03d',\n errorCalloutLink: 'errorCalloutLink_106fc03d',\n errorMsgs: 'errorMsgs_106fc03d',\n tableHead: 'tableHead_106fc03d'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=PropertyFieldCollectionDataHost.module.scss.js.map" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js", - "index": 528, - "index2": 522, - "size": 754, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "issuerId": "G6z8", - "issuerName": "./node_modules/lodash/_getAllKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "EEGq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbolsIn.js", - "module": "./node_modules/lodash/_copySymbolsIn.js", - "moduleName": "./node_modules/lodash/_copySymbolsIn.js", - "type": "cjs require", - "userRequest": "./_getSymbolsIn", - "loc": "2:19-45" - }, - { - "moduleId": "G6z8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "module": "./node_modules/lodash/_getAllKeysIn.js", - "moduleName": "./node_modules/lodash/_getAllKeysIn.js", - "type": "cjs require", - "userRequest": "./_getSymbolsIn", - "loc": "2:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var arrayPush = require('./_arrayPush'),\n getPrototype = require('./_getPrototype'),\n getSymbols = require('./_getSymbols'),\n stubArray = require('./stubArray');\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n/**\n * Creates an array of the own and inherited enumerable symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of symbols.\n */\nvar getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {\n var result = [];\n while (object) {\n arrayPush(result, getSymbols(object));\n object = getPrototype(object);\n }\n return result;\n};\n\nmodule.exports = getSymbolsIn;\n" - }, - { - "id": "odSE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "index": 208, - "index2": 233, - "size": 144830, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "14:36-46" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseButton", - "loc": "1:0-29" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./BaseButton", - "loc": "1:0-29" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - } - ], - "usedExports": [ - "BaseButton" - ], - "providedExports": [ - "BaseButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/BaseComponent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/EventGroup.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/aria.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/createMergedRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/css.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/focus.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/mobileDetector.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/object.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/osDetector.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/useFocusRects.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "index": 211, - "index2": 196, - "size": 1091, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerId": "d6Sr", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "39:47-56" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ImageIcon", - "loc": "5:0-28" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ImageIcon", - "loc": "5:0-28" - } - ], - "usedExports": [ - "ImageIcon" - ], - "providedExports": [ - "ImageIcon" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { Image } from '../Image/Image';\nimport { css, getNativeProps, htmlElementProperties } from '../../Utilities';\nimport { classNames, MS_ICON } from './Icon.styles';\n/**\n * Fast icon component which only supports images (not font glyphs) and can't be targeted by customizations.\n * To style the icon, use `className` or reference `ms-Icon` in CSS.\n * {@docCategory Icon}\n */\nexport var ImageIcon = function (props) {\n var className = props.className, imageProps = props.imageProps;\n var nativeProps = getNativeProps(props, htmlElementProperties);\n var containerProps = props['aria-label']\n ? {}\n : {\n role: 'presentation',\n 'aria-hidden': imageProps.alt || imageProps['aria-labelledby'] ? false : true,\n };\n return (React.createElement(\"div\", __assign({}, containerProps, nativeProps, { className: css(MS_ICON, classNames.root, classNames.image, className) }),\n React.createElement(Image, __assign({}, imageProps))));\n};\n//# sourceMappingURL=ImageIcon.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.types.js", - "index": 217, - "index2": 200, - "size": 598, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.types", - "loc": "3:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "76:38-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "76:90-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "96:53-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "125:32-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "128:21-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "131:21-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "136:21-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "514:38-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "550:38-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "550:90-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "651:30-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.types", - "loc": "825:34-56" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.types", - "loc": "3:0-39" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenu.types", - "loc": "3:0-39" - } - ], - "usedExports": [ - "ContextualMenuItemType" - ], - "providedExports": [ - "DirectionalHint", - "ContextualMenuItemType" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export { DirectionalHint } from '../../common/DirectionalHint';\n/**\n * {@docCategory ContextualMenu}\n */\nexport var ContextualMenuItemType;\n(function (ContextualMenuItemType) {\n ContextualMenuItemType[ContextualMenuItemType[\"Normal\"] = 0] = \"Normal\";\n ContextualMenuItemType[ContextualMenuItemType[\"Divider\"] = 1] = \"Divider\";\n ContextualMenuItemType[ContextualMenuItemType[\"Header\"] = 2] = \"Header\";\n ContextualMenuItemType[ContextualMenuItemType[\"Section\"] = 3] = \"Section\";\n})(ContextualMenuItemType || (ContextualMenuItemType = {}));\n//# sourceMappingURL=ContextualMenu.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "index": 226, - "index2": 208, - "size": 4587, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItem.base", - "loc": "2:0-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItem.base", - "loc": "7:39-61" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItem.base", - "loc": "5:0-42" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuItem.base", - "loc": "5:0-42" - } - ], - "usedExports": [ - "ContextualMenuItemBase" - ], - "providedExports": [ - "ContextualMenuItemBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { hasSubmenu, getIsChecked } from '../../utilities/contextualMenu/index';\nimport { getRTL, initializeComponentRef } from '../../Utilities';\nimport { Icon } from '../../Icon';\nvar renderItemIcon = function (props) {\n var item = props.item, hasIcons = props.hasIcons, classNames = props.classNames;\n var iconProps = item.iconProps;\n if (!hasIcons) {\n return null;\n }\n if (item.onRenderIcon) {\n return item.onRenderIcon(props);\n }\n return React.createElement(Icon, __assign({}, iconProps, { className: classNames.icon }));\n};\nvar renderCheckMarkIcon = function (_a) {\n var onCheckmarkClick = _a.onCheckmarkClick, item = _a.item, classNames = _a.classNames;\n var isItemChecked = getIsChecked(item);\n if (onCheckmarkClick) {\n // Ensures that the item is passed as the first argument to the checkmark click callback.\n var onClick = function (e) { return onCheckmarkClick(item, e); };\n return (React.createElement(Icon, { iconName: item.canCheck !== false && isItemChecked ? 'CheckMark' : '', className: classNames.checkmarkIcon, \n // eslint-disable-next-line react/jsx-no-bind\n onClick: onClick }));\n }\n return null;\n};\nvar renderItemName = function (_a) {\n var item = _a.item, classNames = _a.classNames;\n /* eslint-disable deprecation/deprecation */\n if (item.text || item.name) {\n return React.createElement(\"span\", { className: classNames.label }, item.text || item.name);\n }\n /* eslint-enable deprecation/deprecation */\n return null;\n};\nvar renderSecondaryText = function (_a) {\n var item = _a.item, classNames = _a.classNames;\n if (item.secondaryText) {\n return React.createElement(\"span\", { className: classNames.secondaryText }, item.secondaryText);\n }\n return null;\n};\nvar renderSubMenuIcon = function (_a) {\n var item = _a.item, classNames = _a.classNames, theme = _a.theme;\n if (hasSubmenu(item)) {\n return (React.createElement(Icon, __assign({ iconName: getRTL(theme) ? 'ChevronLeft' : 'ChevronRight' }, item.submenuIconProps, { className: classNames.subMenuIcon })));\n }\n return null;\n};\nvar ContextualMenuItemBase = /** @class */ (function (_super) {\n __extends(ContextualMenuItemBase, _super);\n function ContextualMenuItemBase(props) {\n var _this = _super.call(this, props) || this;\n _this.openSubMenu = function () {\n var _a = _this.props, item = _a.item, openSubMenu = _a.openSubMenu, getSubmenuTarget = _a.getSubmenuTarget;\n if (getSubmenuTarget) {\n var submenuTarget = getSubmenuTarget();\n if (hasSubmenu(item) && openSubMenu && submenuTarget) {\n openSubMenu(item, submenuTarget);\n }\n }\n };\n _this.dismissSubMenu = function () {\n var _a = _this.props, item = _a.item, dismissSubMenu = _a.dismissSubMenu;\n if (hasSubmenu(item) && dismissSubMenu) {\n dismissSubMenu();\n }\n };\n _this.dismissMenu = function (dismissAll) {\n var dismissMenu = _this.props.dismissMenu;\n if (dismissMenu) {\n dismissMenu(undefined /* ev */, dismissAll);\n }\n };\n initializeComponentRef(_this);\n return _this;\n }\n ContextualMenuItemBase.prototype.render = function () {\n var _a = this.props, item = _a.item, classNames = _a.classNames;\n var renderContent = item.onRenderContent || this._renderLayout;\n return (React.createElement(\"div\", { className: item.split ? classNames.linkContentMenu : classNames.linkContent }, renderContent(this.props, {\n renderCheckMarkIcon: renderCheckMarkIcon,\n renderItemIcon: renderItemIcon,\n renderItemName: renderItemName,\n renderSecondaryText: renderSecondaryText,\n renderSubMenuIcon: renderSubMenuIcon,\n })));\n };\n ContextualMenuItemBase.prototype._renderLayout = function (props, defaultRenders) {\n return (React.createElement(React.Fragment, null,\n defaultRenders.renderCheckMarkIcon(props),\n defaultRenders.renderItemIcon(props),\n defaultRenders.renderItemName(props),\n defaultRenders.renderSecondaryText(props),\n defaultRenders.renderSubMenuIcon(props)));\n };\n return ContextualMenuItemBase;\n}(React.Component));\nexport { ContextualMenuItemBase };\n//# sourceMappingURL=ContextualMenuItem.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "index": 216, - "index2": 198, - "size": 7683, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "2:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "2:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "52:24-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "53:28-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "58:17-34" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "6:0-62" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenu.cnstyles", - "loc": "6:0-62" - } - ], - "usedExports": [ - "CONTEXTUAL_MENU_ITEM_HEIGHT", - "getMenuItemStyles" - ], - "providedExports": [ - "CONTEXTUAL_MENU_ITEM_HEIGHT", - "getMenuItemStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { concatStyleSets, getFocusStyle, HighContrastSelector, getScreenSelector, ScreenWidthMaxMedium, IconFontSizes, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { memoizeFunction } from '../../Utilities';\nexport var CONTEXTUAL_MENU_ITEM_HEIGHT = 36;\nvar MediumScreenSelector = getScreenSelector(0, ScreenWidthMaxMedium);\nvar getItemHighContrastStyles = memoizeFunction(function () {\n var _a;\n return {\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ backgroundColor: 'Highlight', borderColor: 'Highlight', color: 'HighlightText' }, getHighContrastNoAdjustStyle()),\n _a),\n };\n});\nexport var getMenuItemStyles = memoizeFunction(function (theme) {\n var _a, _b, _c, _d, _e, _f, _g;\n var semanticColors = theme.semanticColors, fonts = theme.fonts, palette = theme.palette;\n var ContextualMenuItemBackgroundHoverColor = semanticColors.menuItemBackgroundHovered;\n var ContextualMenuItemTextHoverColor = semanticColors.menuItemTextHovered;\n var ContextualMenuItemBackgroundSelectedColor = semanticColors.menuItemBackgroundPressed;\n var ContextualMenuItemDividerColor = semanticColors.bodyDivider;\n var menuItemStyles = {\n item: [\n fonts.medium,\n {\n color: semanticColors.bodyText,\n position: 'relative',\n boxSizing: 'border-box',\n },\n ],\n divider: {\n display: 'block',\n height: '1px',\n backgroundColor: ContextualMenuItemDividerColor,\n position: 'relative',\n },\n root: [\n getFocusStyle(theme),\n fonts.medium,\n {\n color: semanticColors.bodyText,\n backgroundColor: 'transparent',\n border: 'none',\n width: '100%',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n display: 'block',\n cursor: 'pointer',\n padding: '0px 8px 0 4px',\n textAlign: 'left',\n },\n ],\n rootDisabled: {\n color: semanticColors.disabledBodyText,\n cursor: 'default',\n pointerEvents: 'none',\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'GrayText', opacity: 1 }, getHighContrastNoAdjustStyle()),\n _a),\n },\n rootHovered: __assign({ backgroundColor: ContextualMenuItemBackgroundHoverColor, color: ContextualMenuItemTextHoverColor, selectors: {\n '.ms-ContextualMenu-icon': {\n color: palette.themeDarkAlt,\n },\n '.ms-ContextualMenu-submenuIcon': {\n color: palette.neutralPrimary,\n },\n } }, getItemHighContrastStyles()),\n rootFocused: __assign({ backgroundColor: palette.white }, getItemHighContrastStyles()),\n rootChecked: __assign({ selectors: {\n '.ms-ContextualMenu-checkmarkIcon': {\n color: palette.neutralPrimary,\n },\n } }, getItemHighContrastStyles()),\n rootPressed: __assign({ backgroundColor: ContextualMenuItemBackgroundSelectedColor, selectors: {\n '.ms-ContextualMenu-icon': {\n color: palette.themeDark,\n },\n '.ms-ContextualMenu-submenuIcon': {\n color: palette.neutralPrimary,\n },\n } }, getItemHighContrastStyles()),\n rootExpanded: __assign({ backgroundColor: ContextualMenuItemBackgroundSelectedColor, color: semanticColors.bodyTextChecked }, getItemHighContrastStyles()),\n linkContent: {\n whiteSpace: 'nowrap',\n height: 'inherit',\n display: 'flex',\n alignItems: 'center',\n maxWidth: '100%',\n },\n anchorLink: {\n padding: '0px 8px 0 4px',\n textRendering: 'auto',\n color: 'inherit',\n letterSpacing: 'normal',\n wordSpacing: 'normal',\n textTransform: 'none',\n textIndent: '0px',\n textShadow: 'none',\n textDecoration: 'none',\n boxSizing: 'border-box',\n },\n label: {\n margin: '0 4px',\n verticalAlign: 'middle',\n display: 'inline-block',\n flexGrow: '1',\n textOverflow: 'ellipsis',\n overflow: 'hidden',\n whiteSpace: 'nowrap',\n },\n secondaryText: {\n color: theme.palette.neutralSecondary,\n paddingLeft: '20px',\n textAlign: 'right',\n },\n icon: {\n display: 'inline-block',\n minHeight: '1px',\n maxHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n fontSize: IconFontSizes.medium,\n width: IconFontSizes.medium,\n margin: '0 4px',\n verticalAlign: 'middle',\n flexShrink: '0',\n selectors: (_b = {},\n _b[MediumScreenSelector] = {\n fontSize: IconFontSizes.large,\n width: IconFontSizes.large,\n },\n _b),\n },\n iconColor: {\n color: semanticColors.menuIcon,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'inherit',\n },\n _c['$root:hover &'] = {\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _d),\n },\n _c['$root:focus &'] = {\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _e),\n },\n _c),\n },\n iconDisabled: {\n color: semanticColors.disabledBodyText,\n },\n checkmarkIcon: {\n color: semanticColors.bodySubtext,\n selectors: (_f = {},\n _f[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _f),\n },\n subMenuIcon: {\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n color: palette.neutralSecondary,\n textAlign: 'center',\n display: 'inline-block',\n verticalAlign: 'middle',\n flexShrink: '0',\n fontSize: IconFontSizes.small,\n selectors: (_g = {\n ':hover': {\n color: palette.neutralPrimary,\n },\n ':active': {\n color: palette.neutralPrimary,\n }\n },\n _g[MediumScreenSelector] = {\n fontSize: IconFontSizes.medium,\n },\n _g[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _g),\n },\n splitButtonFlexContainer: [\n getFocusStyle(theme),\n {\n display: 'flex',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'flex-start',\n },\n ],\n };\n return concatStyleSets(menuItemStyles);\n});\n//# sourceMappingURL=ContextualMenu.cnstyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "index": 225, - "index2": 209, - "size": 382, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../ContextualMenuItem", - "loc": "4:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../ContextualMenuItem", - "loc": "7:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony side effect evaluation", - "userRequest": "../ContextualMenuItem", - "loc": "7:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItem", - "loc": "10:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenuItem", - "loc": "27:300-318" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenuItem", - "loc": "33:300-318" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenuItem", - "loc": "126:94-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenuItem", - "loc": "154:94-112" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItem", - "loc": "710:85-103" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItem", - "loc": "4:0-37" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuItem", - "loc": "4:0-37" - } - ], - "usedExports": [ - "ContextualMenuItem" - ], - "providedExports": [ - "ContextualMenuItem" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { ContextualMenuItemBase } from './ContextualMenuItem.base';\nimport { getItemStyles } from './ContextualMenu.classNames';\n/**\n * ContextualMenuItem description\n */\nexport var ContextualMenuItem = styled(ContextualMenuItemBase, getItemStyles, undefined, { scope: 'ContextualMenuItem' });\n//# sourceMappingURL=ContextualMenuItem.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "index": 239, - "index2": 223, - "size": 316, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "issuerId": "vurc", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "7daS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/office-ui-fabric-react/lib/Divider.js" - }, - { - "id": "vurc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Divider", - "loc": "150:35-50" - }, - { - "moduleId": "vurc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./VerticalDivider", - "loc": "1:0-34" - }, - { - "moduleId": "vurc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "type": "harmony export imported specifier", - "userRequest": "./VerticalDivider", - "loc": "1:0-34" - } - ], - "usedExports": [ - "VerticalDivider" - ], - "providedExports": [ - "VerticalDivider" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getStyles } from './VerticalDivider.styles';\nimport { VerticalDividerBase } from './VerticalDivider.base';\nimport { styled } from '../../Utilities';\nexport var VerticalDivider = styled(VerticalDividerBase, getStyles, undefined, {\n scope: 'VerticalDivider',\n});\n//# sourceMappingURL=VerticalDivider.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "index": 213, - "index2": 225, - "size": 48569, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.base", - "loc": "4:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.base", - "loc": "10:33-51" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.base", - "loc": "2:0-38" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenu.base", - "loc": "2:0-38" - } - ], - "usedExports": [ - "ContextualMenuBase" - ], - "providedExports": [ - "getSubmenuItems", - "canAnyMenuItemsCheck", - "ContextualMenuBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __decorate, __extends, __spreadArrays } from \"tslib\";\nimport * as React from 'react';\nimport { ContextualMenuItemType, } from './ContextualMenu.types';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { FocusZone, FocusZoneDirection, FocusZoneTabbableElements } from '../../FocusZone';\nimport { divProperties, getNativeProps, shallowCompare, warnDeprecations, Async, EventGroup, assign, classNamesFunction, css, getDocument, getFirstFocusable, getId, getLastFocusable, getRTL, getWindow, KeyCodes, shouldWrapFocus, isIOS, isMac, initializeComponentRef, memoizeFunction, } from '../../Utilities';\nimport { hasSubmenu, getIsChecked, isItemDisabled } from '../../utilities/contextualMenu/index';\nimport { withResponsiveMode, ResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nimport { Callout } from '../../Callout';\nimport { ContextualMenuItem } from './ContextualMenuItem';\nimport { ContextualMenuSplitButton, ContextualMenuButton, ContextualMenuAnchor, } from './ContextualMenuItemWrapper/index';\nimport { concatStyleSetsWithProps } from '../../Styling';\nimport { getItemStyles } from './ContextualMenu.classNames';\nvar getClassNames = classNamesFunction();\nvar getContextualMenuItemClassNames = classNamesFunction();\nexport function getSubmenuItems(item) {\n return item.subMenuProps ? item.subMenuProps.items : item.items;\n}\n/**\n * Returns true if a list of menu items can contain a checkbox\n */\nexport function canAnyMenuItemsCheck(items) {\n return items.some(function (item) {\n if (item.canCheck) {\n return true;\n }\n // If the item is a section, check if any of the items in the section can check.\n if (item.sectionProps && item.sectionProps.items.some(function (submenuItem) { return submenuItem.canCheck === true; })) {\n return true;\n }\n return false;\n });\n}\nvar NavigationIdleDelay = 250; /* ms */\nvar COMPONENT_NAME = 'ContextualMenu';\nvar _getMenuItemStylesFunction = memoizeFunction(function () {\n var styles = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styles[_i] = arguments[_i];\n }\n return function (styleProps) {\n return concatStyleSetsWithProps.apply(void 0, __spreadArrays([styleProps, getItemStyles], styles));\n };\n});\nvar ContextualMenuBase = /** @class */ (function (_super) {\n __extends(ContextualMenuBase, _super);\n function ContextualMenuBase(props) {\n var _this = _super.call(this, props) || this;\n _this._mounted = false;\n _this.dismiss = function (ev, dismissAll) {\n var onDismiss = _this.props.onDismiss;\n if (onDismiss) {\n onDismiss(ev, dismissAll);\n }\n };\n _this._tryFocusPreviousActiveElement = function (options) {\n if (_this.props.onRestoreFocus) {\n _this.props.onRestoreFocus(options);\n }\n else {\n if (options && options.containsFocus && _this._previousActiveElement) {\n // Make sure that the focus method actually exists\n // In some cases the object might exist but not be a real element.\n // This is primarily for IE 11 and should be removed once IE 11 is no longer in use.\n if (_this._previousActiveElement.focus) {\n _this._previousActiveElement.focus();\n }\n }\n }\n };\n _this._onRenderMenuList = function (menuListProps, defaultRender) {\n var indexCorrection = 0;\n var items = menuListProps.items, totalItemCount = menuListProps.totalItemCount, hasCheckmarks = menuListProps.hasCheckmarks, hasIcons = menuListProps.hasIcons;\n return (React.createElement(\"ul\", { className: _this._classNames.list, onKeyDown: _this._onKeyDown, onKeyUp: _this._onKeyUp, role: 'presentation' }, items.map(function (item, index) {\n var menuItem = _this._renderMenuItem(item, index, indexCorrection, totalItemCount, hasCheckmarks, hasIcons);\n if (item.itemType !== ContextualMenuItemType.Divider && item.itemType !== ContextualMenuItemType.Header) {\n var indexIncrease = item.customOnRenderListLength ? item.customOnRenderListLength : 1;\n indexCorrection += indexIncrease;\n }\n return menuItem;\n })));\n };\n /**\n * !!!IMPORTANT!!! Avoid mutating `item: IContextualMenuItem` argument. It will\n * cause the menu items to always re-render because the component update is based on shallow comparison.\n */\n _this._renderMenuItem = function (item, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n var _a;\n var renderedItems = [];\n var iconProps = item.iconProps || { iconName: 'None' };\n var getItemClassNames = item.getItemClassNames, // eslint-disable-line deprecation/deprecation\n itemProps = item.itemProps;\n var styles = itemProps ? itemProps.styles : undefined;\n // We only send a dividerClassName when the item to be rendered is a divider.\n // For all other cases, the default divider style is used.\n var dividerClassName = item.itemType === ContextualMenuItemType.Divider ? item.className : undefined;\n var subMenuIconClassName = item.submenuIconProps ? item.submenuIconProps.className : '';\n // eslint-disable-next-line deprecation/deprecation\n var itemClassNames;\n // IContextualMenuItem#getItemClassNames for backwards compatibility\n // otherwise uses mergeStyles for class names.\n if (getItemClassNames) {\n itemClassNames = getItemClassNames(_this.props.theme, isItemDisabled(item), _this.state.expandedMenuItemKey === item.key, !!getIsChecked(item), !!item.href, iconProps.iconName !== 'None', item.className, dividerClassName, iconProps.className, subMenuIconClassName, item.primaryDisabled);\n }\n else {\n var itemStyleProps = {\n theme: _this.props.theme,\n disabled: isItemDisabled(item),\n expanded: _this.state.expandedMenuItemKey === item.key,\n checked: !!getIsChecked(item),\n isAnchorLink: !!item.href,\n knownIcon: iconProps.iconName !== 'None',\n itemClassName: item.className,\n dividerClassName: dividerClassName,\n iconClassName: iconProps.className,\n subMenuClassName: subMenuIconClassName,\n primaryDisabled: item.primaryDisabled,\n };\n // We need to generate default styles then override if styles are provided\n // since the ContextualMenu currently handles item classNames.\n itemClassNames = getContextualMenuItemClassNames(_getMenuItemStylesFunction((_a = _this._classNames.subComponentStyles) === null || _a === void 0 ? void 0 : _a.menuItem, styles), itemStyleProps);\n }\n // eslint-disable-next-line deprecation/deprecation\n if (item.text === '-' || item.name === '-') {\n item.itemType = ContextualMenuItemType.Divider;\n }\n switch (item.itemType) {\n case ContextualMenuItemType.Divider:\n renderedItems.push(_this._renderSeparator(index, itemClassNames));\n break;\n case ContextualMenuItemType.Header:\n renderedItems.push(_this._renderSeparator(index, itemClassNames));\n var headerItem = _this._renderHeaderMenuItem(item, itemClassNames, index, hasCheckmarks, hasIcons);\n renderedItems.push(_this._renderListItem(headerItem, item.key || index, itemClassNames, item.title));\n break;\n case ContextualMenuItemType.Section:\n renderedItems.push(_this._renderSectionItem(item, itemClassNames, index, hasCheckmarks, hasIcons));\n break;\n default:\n var menuItem = _this._renderNormalItem(item, itemClassNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n renderedItems.push(_this._renderListItem(menuItem, item.key || index, itemClassNames, item.title));\n break;\n }\n // Since multiple nodes *could* be rendered, wrap them all in a fragment with this item's key.\n // This ensures the reconciler handles multi-item output per-node correctly and does not re-mount content.\n return React.createElement(React.Fragment, { key: item.key }, renderedItems);\n };\n _this._defaultMenuItemRenderer = function (item) {\n var index = item.index, focusableElementIndex = item.focusableElementIndex, totalItemCount = item.totalItemCount, hasCheckmarks = item.hasCheckmarks, hasIcons = item.hasIcons;\n return _this._renderMenuItem(item, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n };\n _this._onKeyDown = function (ev) {\n // Take note if we are processing an alt (option) or meta (command) keydown.\n // See comment in _shouldHandleKeyUp for reasoning.\n _this._lastKeyDownWasAltOrMeta = _this._isAltOrMeta(ev);\n // On Mac, pressing escape dismisses all levels of native context menus\n var dismissAllMenus = ev.which === KeyCodes.escape && (isMac() || isIOS());\n return _this._keyHandler(ev, _this._shouldHandleKeyDown, dismissAllMenus);\n };\n _this._shouldHandleKeyDown = function (ev) {\n return (ev.which === KeyCodes.escape ||\n _this._shouldCloseSubMenu(ev) ||\n (ev.which === KeyCodes.up && (ev.altKey || ev.metaKey)));\n };\n _this._onMenuFocusCapture = function (ev) {\n if (_this.props.delayUpdateFocusOnHover) {\n _this._shouldUpdateFocusOnMouseEvent = true;\n }\n };\n _this._onKeyUp = function (ev) {\n return _this._keyHandler(ev, _this._shouldHandleKeyUp, true /* dismissAllMenus */);\n };\n /**\n * We close the menu on key up only if ALL of the following are true:\n * - Most recent key down was alt or meta (command)\n * - The alt/meta key down was NOT followed by some other key (such as down/up arrow to\n * expand/collapse the menu)\n * - We're not on a Mac (or iOS)\n *\n * This is because on Windows, pressing alt moves focus to the application menu bar or similar,\n * closing any open context menus. There is not a similar behavior on Macs.\n */\n _this._shouldHandleKeyUp = function (ev) {\n var keyPressIsAltOrMetaAlone = _this._lastKeyDownWasAltOrMeta && _this._isAltOrMeta(ev);\n _this._lastKeyDownWasAltOrMeta = false;\n return !!keyPressIsAltOrMetaAlone && !(isIOS() || isMac());\n };\n /**\n * Calls `shouldHandleKey` to determine whether the keyboard event should be handled;\n * if so, stops event propagation and dismisses menu(s).\n * @param ev - The keyboard event.\n * @param shouldHandleKey - Returns whether we should handle this keyboard event.\n * @param dismissAllMenus - If true, dismiss all menus. Otherwise, dismiss only the current menu.\n * Only does anything if `shouldHandleKey` returns true.\n * @returns Whether the event was handled.\n */\n _this._keyHandler = function (ev, shouldHandleKey, dismissAllMenus) {\n var handled = false;\n if (shouldHandleKey(ev)) {\n _this._focusingPreviousElement = true;\n _this.dismiss(ev, dismissAllMenus);\n ev.preventDefault();\n ev.stopPropagation();\n handled = true;\n }\n return handled;\n };\n /**\n * Checks if the submenu should be closed\n */\n _this._shouldCloseSubMenu = function (ev) {\n var submenuCloseKey = getRTL(_this.props.theme) ? KeyCodes.right : KeyCodes.left;\n if (ev.which !== submenuCloseKey || !_this.props.isSubMenu) {\n return false;\n }\n return (_this._adjustedFocusZoneProps.direction === FocusZoneDirection.vertical ||\n (!!_this._adjustedFocusZoneProps.checkForNoWrap &&\n !shouldWrapFocus(ev.target, 'data-no-horizontal-wrap')));\n };\n _this._onMenuKeyDown = function (ev) {\n // Mark as handled if onKeyDown returns true (for handling collapse cases)\n // or if we are attempting to expand a submenu\n var handled = _this._onKeyDown(ev);\n if (handled || !_this._host) {\n return;\n }\n // If we have a modifier key being pressed, we do not want to move focus.\n // Otherwise, handle up and down keys.\n var hasModifier = !!(ev.altKey || ev.metaKey);\n var isUp = ev.which === KeyCodes.up;\n var isDown = ev.which === KeyCodes.down;\n if (!hasModifier && (isUp || isDown)) {\n var elementToFocus = isUp\n ? getLastFocusable(_this._host, _this._host.lastChild, true)\n : getFirstFocusable(_this._host, _this._host.firstChild, true);\n if (elementToFocus) {\n elementToFocus.focus();\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n /**\n * Scroll handler for the callout to make sure the mouse events\n * for updating focus are not interacting during scroll\n */\n _this._onScroll = function () {\n if (!_this._isScrollIdle && _this._scrollIdleTimeoutId !== undefined) {\n _this._async.clearTimeout(_this._scrollIdleTimeoutId);\n _this._scrollIdleTimeoutId = undefined;\n }\n else {\n _this._isScrollIdle = false;\n }\n _this._scrollIdleTimeoutId = _this._async.setTimeout(function () {\n _this._isScrollIdle = true;\n }, NavigationIdleDelay);\n };\n _this._onItemMouseEnterBase = function (item, ev, target) {\n if (_this._shouldIgnoreMouseEvent()) {\n return;\n }\n _this._updateFocusOnMouseEvent(item, ev, target);\n };\n _this._onItemMouseMoveBase = function (item, ev, target) {\n var targetElement = ev.currentTarget;\n // Always do this check to make sure we record a mouseMove if needed (even if we are timed out)\n if (_this._shouldUpdateFocusOnMouseEvent) {\n _this._gotMouseMove = true;\n }\n else {\n return;\n }\n if (!_this._isScrollIdle ||\n _this._enterTimerId !== undefined ||\n targetElement === _this._targetWindow.document.activeElement) {\n return;\n }\n _this._updateFocusOnMouseEvent(item, ev, target);\n };\n _this._onMouseItemLeave = function (item, ev) {\n if (_this._shouldIgnoreMouseEvent()) {\n return;\n }\n if (_this._enterTimerId !== undefined) {\n _this._async.clearTimeout(_this._enterTimerId);\n _this._enterTimerId = undefined;\n }\n if (_this.state.expandedMenuItemKey !== undefined) {\n return;\n }\n /**\n * IE11 focus() method forces parents to scroll to top of element.\n * Edge and IE expose a setActive() function for focusable divs that\n * sets the page focus but does not scroll the parent element.\n */\n if (_this._host.setActive) {\n try {\n _this._host.setActive();\n }\n catch (e) {\n /* no-op */\n }\n }\n else {\n _this._host.focus();\n }\n };\n _this._onItemMouseDown = function (item, ev) {\n if (item.onMouseDown) {\n item.onMouseDown(item, ev);\n }\n };\n _this._onItemClick = function (item, ev) {\n _this._onItemClickBase(item, ev, ev.currentTarget);\n };\n _this._onItemClickBase = function (item, ev, target) {\n var items = getSubmenuItems(item);\n // Cancel a async menu item hover timeout action from being taken and instead\n // just trigger the click event instead.\n _this._cancelSubMenuTimer();\n if (!hasSubmenu(item) && (!items || !items.length)) {\n // This is an item without a menu. Click it.\n _this._executeItemClick(item, ev);\n }\n else {\n if (item.key !== _this.state.expandedMenuItemKey) {\n // This has a collapsed sub menu. Expand it.\n _this.setState({\n // When Edge + Narrator are used together (regardless of if the button is in a form or not), pressing\n // \"Enter\" fires this method and not _onMenuKeyDown. Checking ev.nativeEvent.detail differentiates\n // between a real click event and a keypress event (detail should be the number of mouse clicks).\n // ...Plot twist! For a real click event in IE 11, detail is always 0 (Edge sets it properly to 1).\n // So we also check the pointerType property, which both Edge and IE set to \"mouse\" for real clicks\n // and \"\" for pressing \"Enter\" with Narrator on.\n expandedByMouseClick: ev.nativeEvent.detail !== 0 || ev.nativeEvent.pointerType === 'mouse',\n });\n _this._onItemSubMenuExpand(item, target);\n }\n }\n ev.stopPropagation();\n ev.preventDefault();\n };\n _this._onAnchorClick = function (item, ev) {\n _this._executeItemClick(item, ev);\n ev.stopPropagation();\n };\n _this._executeItemClick = function (item, ev) {\n if (item.disabled || item.isDisabled) {\n return;\n }\n var dismiss = false;\n if (item.onClick) {\n dismiss = !!item.onClick(ev, item);\n }\n else if (_this.props.onItemClick) {\n dismiss = !!_this.props.onItemClick(ev, item);\n }\n if (dismiss || !ev.defaultPrevented) {\n _this.dismiss(ev, true);\n // This should be removed whenever possible.\n // This ensures that the hidden dismissal action maintains the same behavior.\n // If the menu is being dismissed then the previously focused element should\n // get focused since the dismiss was triggered by a user click on an item\n // Rather than focus being lost.\n _this._focusingPreviousElement = true;\n }\n };\n _this._onItemKeyDown = function (item, ev) {\n var openKey = getRTL(_this.props.theme) ? KeyCodes.left : KeyCodes.right;\n if (!item.disabled &&\n (ev.which === openKey || ev.which === KeyCodes.enter || (ev.which === KeyCodes.down && (ev.altKey || ev.metaKey)))) {\n _this.setState({\n expandedByMouseClick: false,\n });\n _this._onItemSubMenuExpand(item, ev.currentTarget);\n ev.preventDefault();\n }\n };\n // Cancel a async menu item hover timeout action from being taken and instead\n // do new upcoming behavior\n _this._cancelSubMenuTimer = function () {\n if (_this._enterTimerId !== undefined) {\n _this._async.clearTimeout(_this._enterTimerId);\n _this._enterTimerId = undefined;\n }\n };\n _this._onItemSubMenuExpand = function (item, target) {\n if (_this.state.expandedMenuItemKey !== item.key) {\n if (_this.state.expandedMenuItemKey) {\n _this._onSubMenuDismiss();\n }\n // Focus the target to ensure when we close it, we're focusing on the correct element.\n target.focus();\n _this.setState({\n expandedMenuItemKey: item.key,\n submenuTarget: target,\n });\n }\n };\n /**\n * This function is called ASYNCHRONOUSLY, and so there is a chance it is called\n * after the component is unmounted. The _mounted property is added to prevent\n * from calling setState() after unmount. Do NOT copy this pattern in synchronous\n * code.\n */\n _this._onSubMenuDismiss = function (ev, dismissAll) {\n if (dismissAll) {\n _this.dismiss(ev, dismissAll);\n }\n else if (_this._mounted) {\n _this.setState({\n dismissedMenuItemKey: _this.state.expandedMenuItemKey,\n expandedMenuItemKey: undefined,\n submenuTarget: undefined,\n });\n }\n };\n _this._onPointerAndTouchEvent = function (ev) {\n _this._cancelSubMenuTimer();\n };\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n initializeComponentRef(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n getMenuClassNames: 'styles',\n });\n _this.state = {\n contextualMenuItems: undefined,\n subMenuId: getId('ContextualMenu'),\n };\n _this._id = props.id || getId('ContextualMenu');\n _this._focusingPreviousElement = false;\n _this._isScrollIdle = true;\n _this._shouldUpdateFocusOnMouseEvent = !_this.props.delayUpdateFocusOnHover;\n _this._gotMouseMove = false;\n return _this;\n }\n ContextualMenuBase.prototype.shouldComponentUpdate = function (newProps, newState) {\n if (!newProps.shouldUpdateWhenHidden && this.props.hidden && newProps.hidden) {\n // Do not update when hidden.\n return false;\n }\n return !shallowCompare(this.props, newProps) || !shallowCompare(this.state, newState);\n };\n ContextualMenuBase.prototype.UNSAFE_componentWillUpdate = function (newProps) {\n if (newProps.target !== this.props.target) {\n var newTarget = newProps.target;\n this._setTargetWindowAndElement(newTarget);\n }\n if (this._isHidden(newProps) !== this._isHidden(this.props)) {\n if (this._isHidden(newProps)) {\n this._onMenuClosed();\n }\n else {\n this._onMenuOpened();\n this._previousActiveElement = this._targetWindow\n ? this._targetWindow.document.activeElement\n : undefined;\n }\n }\n if (newProps.delayUpdateFocusOnHover !== this.props.delayUpdateFocusOnHover) {\n // update shouldUpdateFocusOnMouseEvent to follow what was passed in\n this._shouldUpdateFocusOnMouseEvent = !newProps.delayUpdateFocusOnHover;\n // If shouldUpdateFocusOnMouseEvent is false, we need to reset gotMouseMove to false\n this._gotMouseMove = this._shouldUpdateFocusOnMouseEvent && this._gotMouseMove;\n }\n };\n // Invoked once, both on the client and server, immediately before the initial rendering occurs.\n ContextualMenuBase.prototype.UNSAFE_componentWillMount = function () {\n var target = this.props.target;\n this._setTargetWindowAndElement(target);\n if (!this.props.hidden) {\n this._previousActiveElement = this._targetWindow\n ? this._targetWindow.document.activeElement\n : undefined;\n }\n };\n // Invoked once, only on the client (not on the server), immediately after the initial rendering occurs.\n ContextualMenuBase.prototype.componentDidMount = function () {\n if (!this.props.hidden) {\n this._onMenuOpened();\n }\n this._mounted = true;\n };\n // Invoked immediately before a component is unmounted from the DOM.\n ContextualMenuBase.prototype.componentWillUnmount = function () {\n if (this.props.onMenuDismissed) {\n this.props.onMenuDismissed(this.props);\n }\n this._events.dispose();\n this._async.dispose();\n this._mounted = false;\n };\n ContextualMenuBase.prototype.render = function () {\n var _this = this;\n var isBeakVisible = this.props.isBeakVisible;\n var _a = this.props, items = _a.items, labelElementId = _a.labelElementId, id = _a.id, className = _a.className, beakWidth = _a.beakWidth, directionalHint = _a.directionalHint, directionalHintForRTL = _a.directionalHintForRTL, alignTargetEdge = _a.alignTargetEdge, gapSpace = _a.gapSpace, coverTarget = _a.coverTarget, ariaLabel = _a.ariaLabel, doNotLayer = _a.doNotLayer, target = _a.target, bounds = _a.bounds, useTargetWidth = _a.useTargetWidth, useTargetAsMinWidth = _a.useTargetAsMinWidth, directionalHintFixed = _a.directionalHintFixed, shouldFocusOnMount = _a.shouldFocusOnMount, shouldFocusOnContainer = _a.shouldFocusOnContainer, title = _a.title, styles = _a.styles, theme = _a.theme, calloutProps = _a.calloutProps, _b = _a.onRenderSubMenu, onRenderSubMenu = _b === void 0 ? this._onRenderSubMenu : _b, _c = _a.onRenderMenuList, onRenderMenuList = _c === void 0 ? this._onRenderMenuList : _c, focusZoneProps = _a.focusZoneProps, \n // eslint-disable-next-line deprecation/deprecation\n getMenuClassNames = _a.getMenuClassNames;\n this._classNames = getMenuClassNames\n ? getMenuClassNames(theme, className)\n : getClassNames(styles, {\n theme: theme,\n className: className,\n });\n var hasIcons = itemsHaveIcons(items);\n function itemsHaveIcons(contextualMenuItems) {\n for (var _i = 0, contextualMenuItems_1 = contextualMenuItems; _i < contextualMenuItems_1.length; _i++) {\n var item = contextualMenuItems_1[_i];\n if (item.iconProps) {\n return true;\n }\n if (item.itemType === ContextualMenuItemType.Section &&\n item.sectionProps &&\n itemsHaveIcons(item.sectionProps.items)) {\n return true;\n }\n }\n return false;\n }\n this._adjustedFocusZoneProps = __assign(__assign({}, focusZoneProps), { direction: this._getFocusZoneDirection() });\n var hasCheckmarks = canAnyMenuItemsCheck(items);\n var submenuProps = this.state.expandedMenuItemKey && this.props.hidden !== true ? this._getSubmenuProps() : null;\n isBeakVisible = isBeakVisible === undefined ? this.props.responsiveMode <= ResponsiveMode.medium : isBeakVisible;\n /**\n * When useTargetWidth is true, get the width of the target element and apply it for the context menu container\n */\n var contextMenuStyle;\n var targetAsHtmlElement = this._target;\n if ((useTargetWidth || useTargetAsMinWidth) && targetAsHtmlElement && targetAsHtmlElement.offsetWidth) {\n var targetBoundingRect = targetAsHtmlElement.getBoundingClientRect();\n var targetWidth = targetBoundingRect.width - 2; /* Accounts for 1px border */\n if (useTargetWidth) {\n contextMenuStyle = {\n width: targetWidth,\n };\n }\n else if (useTargetAsMinWidth) {\n contextMenuStyle = {\n minWidth: targetWidth,\n };\n }\n }\n // The menu should only return if items were provided, if no items were provided then it should not appear.\n if (items && items.length > 0) {\n var totalItemCount = 0;\n for (var _i = 0, items_1 = items; _i < items_1.length; _i++) {\n var item = items_1[_i];\n if (item.itemType !== ContextualMenuItemType.Divider && item.itemType !== ContextualMenuItemType.Header) {\n var itemCount = item.customOnRenderListLength ? item.customOnRenderListLength : 1;\n totalItemCount += itemCount;\n }\n }\n var calloutStyles = this._classNames.subComponentStyles\n ? this._classNames.subComponentStyles.callout\n : undefined;\n return (React.createElement(Callout, __assign({ styles: calloutStyles, onRestoreFocus: this._tryFocusPreviousActiveElement }, calloutProps, { target: target, isBeakVisible: isBeakVisible, beakWidth: beakWidth, directionalHint: directionalHint, directionalHintForRTL: directionalHintForRTL, gapSpace: gapSpace, coverTarget: coverTarget, doNotLayer: doNotLayer, className: css('ms-ContextualMenu-Callout', calloutProps && calloutProps.className), setInitialFocus: shouldFocusOnMount, onDismiss: this.props.onDismiss, onScroll: this._onScroll, bounds: bounds, directionalHintFixed: directionalHintFixed, alignTargetEdge: alignTargetEdge, hidden: this.props.hidden }),\n React.createElement(\"div\", { style: contextMenuStyle, ref: function (host) { return (_this._host = host); }, id: id, className: this._classNames.container, tabIndex: shouldFocusOnContainer ? 0 : -1, onKeyDown: this._onMenuKeyDown, onKeyUp: this._onKeyUp, onFocusCapture: this._onMenuFocusCapture, \"aria-label\": ariaLabel, \"aria-labelledby\": labelElementId, role: 'menu' },\n title && React.createElement(\"div\", { className: this._classNames.title },\n \" \",\n title,\n \" \"),\n items && items.length ? (React.createElement(FocusZone, __assign({ className: this._classNames.root, isCircularNavigation: true, handleTabKey: FocusZoneTabbableElements.all }, this._adjustedFocusZoneProps), onRenderMenuList({\n ariaLabel: ariaLabel,\n items: items,\n totalItemCount: totalItemCount,\n hasCheckmarks: hasCheckmarks,\n hasIcons: hasIcons,\n defaultMenuItemRenderer: this._defaultMenuItemRenderer,\n labelElementId: labelElementId,\n }, this._onRenderMenuList))) : null,\n submenuProps && onRenderSubMenu(submenuProps, this._onRenderSubMenu))));\n }\n else {\n return null;\n }\n };\n /**\n * Return whether the contextual menu is hidden.\n * Undefined value for hidden is equivalent to hidden being false.\n * @param props - Props for the component\n */\n ContextualMenuBase.prototype._isHidden = function (props) {\n return !!props.hidden;\n };\n ContextualMenuBase.prototype._onMenuOpened = function () {\n this._events.on(this._targetWindow, 'resize', this.dismiss);\n this._shouldUpdateFocusOnMouseEvent = !this.props.delayUpdateFocusOnHover;\n this._gotMouseMove = false;\n this.props.onMenuOpened && this.props.onMenuOpened(this.props);\n };\n ContextualMenuBase.prototype._onMenuClosed = function () {\n this._events.off(this._targetWindow, 'resize', this.dismiss);\n // This is kept for backwards compatability with hidden for right now.\n // This preserves the way that this behaved in the past\n // TODO find a better way to handle this by using the same conventions that\n // Popup uses to determine if focus is contained when dismissal occurs\n this._tryFocusPreviousActiveElement({\n containsFocus: this._focusingPreviousElement,\n documentContainsFocus: this._targetWindow.document.hasFocus(),\n originalElement: this._previousActiveElement,\n });\n this._focusingPreviousElement = false;\n if (this.props.onMenuDismissed) {\n this.props.onMenuDismissed(this.props);\n }\n this._shouldUpdateFocusOnMouseEvent = !this.props.delayUpdateFocusOnHover;\n // We need to dismiss any submenu related state properties,\n // so that when the menu is shown again, the submenu is collapsed\n this.setState({\n expandedByMouseClick: undefined,\n dismissedMenuItemKey: undefined,\n expandedMenuItemKey: undefined,\n submenuTarget: undefined,\n });\n };\n /**\n * Gets the focusZoneDirection by using the arrowDirection if specified,\n * the direction specificed in the focusZoneProps, or defaults to FocusZoneDirection.vertical\n */\n ContextualMenuBase.prototype._getFocusZoneDirection = function () {\n var focusZoneProps = this.props.focusZoneProps;\n return focusZoneProps && focusZoneProps.direction !== undefined\n ? focusZoneProps.direction\n : FocusZoneDirection.vertical;\n };\n ContextualMenuBase.prototype._onRenderSubMenu = function (subMenuProps, defaultRender) {\n throw Error('ContextualMenuBase: onRenderSubMenu callback is null or undefined. ' +\n 'Please ensure to set `onRenderSubMenu` property either manually or with `styled` helper.');\n };\n ContextualMenuBase.prototype._renderSectionItem = function (sectionItem, \n // eslint-disable-next-line deprecation/deprecation\n menuClassNames, index, hasCheckmarks, hasIcons) {\n var _this = this;\n var sectionProps = sectionItem.sectionProps;\n if (!sectionProps) {\n return;\n }\n var headerItem;\n var groupProps;\n if (sectionProps.title) {\n var headerContextualMenuItem = undefined;\n var ariaLabellledby = '';\n if (typeof sectionProps.title === 'string') {\n // Since title is a user-facing string, it needs to be stripped\n // of whitespace in order to build a valid element ID\n var id = this._id + sectionProps.title.replace(/\\s/g, '');\n headerContextualMenuItem = {\n key: \"section-\" + sectionProps.title + \"-title\",\n itemType: ContextualMenuItemType.Header,\n text: sectionProps.title,\n id: id,\n };\n ariaLabellledby = id;\n }\n else {\n var id = sectionProps.title.id || this._id + sectionProps.title.key.replace(/\\s/g, '');\n headerContextualMenuItem = __assign(__assign({}, sectionProps.title), { id: id });\n ariaLabellledby = id;\n }\n if (headerContextualMenuItem) {\n groupProps = {\n role: 'group',\n 'aria-labelledby': ariaLabellledby,\n };\n headerItem = this._renderHeaderMenuItem(headerContextualMenuItem, menuClassNames, index, hasCheckmarks, hasIcons);\n }\n }\n if (sectionProps.items && sectionProps.items.length > 0) {\n return (React.createElement(\"li\", { role: \"presentation\", key: sectionProps.key || sectionItem.key || \"section-\" + index },\n React.createElement(\"div\", __assign({}, groupProps),\n React.createElement(\"ul\", { className: this._classNames.list, role: \"presentation\" },\n sectionProps.topDivider && this._renderSeparator(index, menuClassNames, true, true),\n headerItem &&\n this._renderListItem(headerItem, sectionItem.key || index, menuClassNames, sectionItem.title),\n sectionProps.items.map(function (contextualMenuItem, itemsIndex) {\n return _this._renderMenuItem(contextualMenuItem, itemsIndex, itemsIndex, sectionProps.items.length, hasCheckmarks, hasIcons);\n }),\n sectionProps.bottomDivider && this._renderSeparator(index, menuClassNames, false, true)))));\n }\n };\n ContextualMenuBase.prototype._renderListItem = function (content, key, classNames, // eslint-disable-line deprecation/deprecation\n title) {\n return (React.createElement(\"li\", { role: \"presentation\", title: title, key: key, className: classNames.item }, content));\n };\n ContextualMenuBase.prototype._renderSeparator = function (index, classNames, // eslint-disable-line deprecation/deprecation\n top, fromSection) {\n if (fromSection || index > 0) {\n return (React.createElement(\"li\", { role: \"separator\", key: 'separator-' + index + (top === undefined ? '' : top ? '-top' : '-bottom'), className: classNames.divider, \"aria-hidden\": \"true\" }));\n }\n return null;\n };\n ContextualMenuBase.prototype._renderNormalItem = function (item, classNames, // eslint-disable-line deprecation/deprecation\n index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n if (item.onRender) {\n return item.onRender(__assign({ 'aria-posinset': focusableElementIndex + 1, 'aria-setsize': totalItemCount }, item), this.dismiss);\n }\n if (item.href) {\n return this._renderAnchorMenuItem(item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n }\n if (item.split && hasSubmenu(item)) {\n return this._renderSplitButton(item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n }\n return this._renderButtonItem(item, classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n };\n ContextualMenuBase.prototype._renderHeaderMenuItem = function (item, \n // eslint-disable-next-line deprecation/deprecation\n classNames, index, hasCheckmarks, hasIcons) {\n var _a = this.props.contextualMenuItemAs, ChildrenRenderer = _a === void 0 ? ContextualMenuItem : _a;\n var itemProps = item.itemProps, id = item.id;\n var divHtmlProperties = itemProps && getNativeProps(itemProps, divProperties);\n return (\n // eslint-disable-next-line deprecation/deprecation\n React.createElement(\"div\", __assign({ id: id, className: this._classNames.header }, divHtmlProperties, { style: item.style }),\n React.createElement(ChildrenRenderer, __assign({ item: item, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks ? this._onItemClick : undefined, hasIcons: hasIcons }, itemProps))));\n };\n ContextualMenuBase.prototype._renderAnchorMenuItem = function (item, \n // eslint-disable-next-line deprecation/deprecation\n classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n var contextualMenuItemAs = this.props.contextualMenuItemAs;\n var expandedMenuItemKey = this.state.expandedMenuItemKey;\n return (React.createElement(ContextualMenuAnchor, { item: item, classNames: classNames, index: index, focusableElementIndex: focusableElementIndex, totalItemCount: totalItemCount, hasCheckmarks: hasCheckmarks, hasIcons: hasIcons, contextualMenuItemAs: contextualMenuItemAs, onItemMouseEnter: this._onItemMouseEnterBase, onItemMouseLeave: this._onMouseItemLeave, onItemMouseMove: this._onItemMouseMoveBase, onItemMouseDown: this._onItemMouseDown, executeItemClick: this._executeItemClick, onItemClick: this._onAnchorClick, onItemKeyDown: this._onItemKeyDown, expandedMenuItemKey: expandedMenuItemKey, openSubMenu: this._onItemSubMenuExpand, dismissSubMenu: this._onSubMenuDismiss, dismissMenu: this.dismiss }));\n };\n ContextualMenuBase.prototype._renderButtonItem = function (item, \n // eslint-disable-next-line deprecation/deprecation\n classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n var contextualMenuItemAs = this.props.contextualMenuItemAs;\n var expandedMenuItemKey = this.state.expandedMenuItemKey;\n return (React.createElement(ContextualMenuButton, { item: item, classNames: classNames, index: index, focusableElementIndex: focusableElementIndex, totalItemCount: totalItemCount, hasCheckmarks: hasCheckmarks, hasIcons: hasIcons, contextualMenuItemAs: contextualMenuItemAs, onItemMouseEnter: this._onItemMouseEnterBase, onItemMouseLeave: this._onMouseItemLeave, onItemMouseMove: this._onItemMouseMoveBase, onItemMouseDown: this._onItemMouseDown, executeItemClick: this._executeItemClick, onItemClick: this._onItemClick, onItemClickBase: this._onItemClickBase, onItemKeyDown: this._onItemKeyDown, expandedMenuItemKey: expandedMenuItemKey, openSubMenu: this._onItemSubMenuExpand, dismissSubMenu: this._onSubMenuDismiss, dismissMenu: this.dismiss }));\n };\n ContextualMenuBase.prototype._renderSplitButton = function (item, \n // eslint-disable-next-line deprecation/deprecation\n classNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n var contextualMenuItemAs = this.props.contextualMenuItemAs;\n var expandedMenuItemKey = this.state.expandedMenuItemKey;\n return (React.createElement(ContextualMenuSplitButton, { item: item, classNames: classNames, index: index, focusableElementIndex: focusableElementIndex, totalItemCount: totalItemCount, hasCheckmarks: hasCheckmarks, hasIcons: hasIcons, contextualMenuItemAs: contextualMenuItemAs, onItemMouseEnter: this._onItemMouseEnterBase, onItemMouseLeave: this._onMouseItemLeave, onItemMouseMove: this._onItemMouseMoveBase, onItemMouseDown: this._onItemMouseDown, executeItemClick: this._executeItemClick, onItemClick: this._onItemClick, onItemClickBase: this._onItemClickBase, onItemKeyDown: this._onItemKeyDown, openSubMenu: this._onItemSubMenuExpand, dismissSubMenu: this._onSubMenuDismiss, dismissMenu: this.dismiss, expandedMenuItemKey: expandedMenuItemKey, onTap: this._onPointerAndTouchEvent }));\n };\n /**\n * Returns true if the key for the event is alt (Mac option) or meta (Mac command).\n */\n ContextualMenuBase.prototype._isAltOrMeta = function (ev) {\n return ev.which === KeyCodes.alt || ev.key === 'Meta';\n };\n ContextualMenuBase.prototype._shouldIgnoreMouseEvent = function () {\n return !this._isScrollIdle || !this._gotMouseMove;\n };\n /**\n * Handles updating focus when mouseEnter or mouseMove fire.\n * As part of updating focus, This function will also update\n * the expand/collapse state accordingly.\n */\n ContextualMenuBase.prototype._updateFocusOnMouseEvent = function (item, ev, target) {\n var _this = this;\n var targetElement = target ? target : ev.currentTarget;\n var _a = this.props.subMenuHoverDelay, timeoutDuration = _a === void 0 ? NavigationIdleDelay : _a;\n if (item.key === this.state.expandedMenuItemKey) {\n return;\n }\n if (this._enterTimerId !== undefined) {\n this._async.clearTimeout(this._enterTimerId);\n this._enterTimerId = undefined;\n }\n // If the menu is not expanded we can update focus without any delay\n if (this.state.expandedMenuItemKey === undefined) {\n targetElement.focus();\n }\n // Delay updating expanding/dismissing the submenu\n // and only set focus if we have not already done so\n if (hasSubmenu(item)) {\n ev.stopPropagation();\n this._enterTimerId = this._async.setTimeout(function () {\n targetElement.focus();\n _this.setState({\n expandedByMouseClick: true,\n });\n _this._onItemSubMenuExpand(item, targetElement);\n _this._enterTimerId = undefined;\n }, timeoutDuration);\n }\n else {\n this._enterTimerId = this._async.setTimeout(function () {\n _this._onSubMenuDismiss(ev);\n targetElement.focus();\n _this._enterTimerId = undefined;\n }, timeoutDuration);\n }\n };\n ContextualMenuBase.prototype._getSubmenuProps = function () {\n var _a = this.state, submenuTarget = _a.submenuTarget, expandedMenuItemKey = _a.expandedMenuItemKey;\n var item = this._findItemByKey(expandedMenuItemKey);\n var submenuProps = null;\n if (item) {\n submenuProps = {\n items: getSubmenuItems(item),\n target: submenuTarget,\n onDismiss: this._onSubMenuDismiss,\n isSubMenu: true,\n id: this.state.subMenuId,\n shouldFocusOnMount: true,\n shouldFocusOnContainer: this.state.expandedByMouseClick,\n directionalHint: getRTL(this.props.theme) ? DirectionalHint.leftTopEdge : DirectionalHint.rightTopEdge,\n className: this.props.className,\n gapSpace: 0,\n isBeakVisible: false,\n };\n if (item.subMenuProps) {\n assign(submenuProps, item.subMenuProps);\n }\n }\n return submenuProps;\n };\n ContextualMenuBase.prototype._findItemByKey = function (key) {\n var items = this.props.items;\n return this._findItemByKeyFromItems(key, items);\n };\n /**\n * Returns the item that mathes a given key if any.\n * @param key - The key of the item to match\n * @param items - The items to look for the key\n */\n ContextualMenuBase.prototype._findItemByKeyFromItems = function (key, items) {\n for (var _i = 0, items_2 = items; _i < items_2.length; _i++) {\n var item = items_2[_i];\n if (item.itemType === ContextualMenuItemType.Section && item.sectionProps) {\n var match = this._findItemByKeyFromItems(key, item.sectionProps.items);\n if (match) {\n return match;\n }\n }\n else if (item.key && item.key === key) {\n return item;\n }\n }\n };\n ContextualMenuBase.prototype._setTargetWindowAndElement = function (target) {\n var currentElement = this._host;\n if (target) {\n if (typeof target === 'string') {\n var currentDoc = getDocument(currentElement);\n this._target = currentDoc ? currentDoc.querySelector(target) : null;\n this._targetWindow = getWindow(currentElement);\n // Cast to any prevents error about stopPropagation always existing\n }\n else if (target.stopPropagation) {\n this._targetWindow = getWindow(target.target);\n this._target = target;\n }\n else if (\n // eslint-disable-next-line deprecation/deprecation\n (target.left !== undefined || target.x !== undefined) &&\n // eslint-disable-next-line deprecation/deprecation\n (target.top !== undefined || target.y !== undefined)) {\n this._targetWindow = getWindow(currentElement);\n this._target = target;\n }\n else if (target.current !== undefined) {\n this._target = target.current;\n this._targetWindow = getWindow(this._target);\n }\n else {\n var targetElement = target;\n this._targetWindow = getWindow(targetElement);\n this._target = target;\n }\n }\n else {\n this._targetWindow = getWindow(currentElement);\n }\n };\n // The default ContextualMenu properties have no items and beak, the default submenu direction is right and top.\n ContextualMenuBase.defaultProps = {\n items: [],\n shouldFocusOnMount: true,\n gapSpace: 0,\n directionalHint: DirectionalHint.bottomAutoEdge,\n beakWidth: 16,\n };\n ContextualMenuBase = __decorate([\n withResponsiveMode\n ], ContextualMenuBase);\n return ContextualMenuBase;\n}(React.Component));\nexport { ContextualMenuBase };\n//# sourceMappingURL=ContextualMenu.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "index": 212, - "index2": 227, - "size": 698, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerId": "lkME", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../ContextualMenu", - "loc": "98:49-63" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../ContextualMenu", - "loc": "29:68-82" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu", - "loc": "1:0-33" - }, - { - "moduleId": "lkME", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenu", - "loc": "1:0-33" - } - ], - "usedExports": [ - "ContextualMenu" - ], - "providedExports": [ - "ContextualMenu" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { styled } from '../../Utilities';\nimport { ContextualMenuBase } from './ContextualMenu.base';\nimport { getStyles } from './ContextualMenu.styles';\nfunction onRenderSubMenu(subMenuProps) {\n return React.createElement(LocalContextualMenu, __assign({}, subMenuProps));\n}\n// This is to prevent cyclic import with ContextualMenu.base.tsx.\nvar LocalContextualMenu = styled(ContextualMenuBase, getStyles, function () { return ({ onRenderSubMenu: onRenderSubMenu }); }, { scope: 'ContextualMenu' });\n/**\n * ContextualMenu description\n */\nexport var ContextualMenu = LocalContextualMenu;\n//# sourceMappingURL=ContextualMenu.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "index": 247, - "index2": 232, - "size": 1699, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./SplitButton/SplitButton.classNames", - "loc": "8:0-113" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "userRequest": "./SplitButton/SplitButton.classNames", - "loc": "513:24-52" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SplitButton/SplitButton.classNames", - "loc": "12:0-53" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SplitButton/SplitButton.classNames", - "loc": "12:0-53" - } - ], - "usedExports": [ - "getSplitButtonClassNames" - ], - "providedExports": [ - "getSplitButtonClassNames" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { memoizeFunction } from '../../../Utilities';\nimport { mergeStyles } from '../../../Styling';\nexport var getSplitButtonClassNames = memoizeFunction(function (styles, disabled, expanded, checked, primaryDisabled) {\n return {\n root: mergeStyles(styles.splitButtonMenuButton, expanded && [styles.splitButtonMenuButtonExpanded], disabled && [styles.splitButtonMenuButtonDisabled], checked && !disabled && [styles.splitButtonMenuButtonChecked], primaryDisabled &&\n !disabled && [\n {\n selectors: {\n ':focus': styles.splitButtonMenuFocused,\n },\n },\n ]),\n splitButtonContainer: mergeStyles(styles.splitButtonContainer, !disabled &&\n checked && [\n styles.splitButtonContainerChecked,\n {\n selectors: {\n ':hover': styles.splitButtonContainerCheckedHovered,\n },\n },\n ], !disabled &&\n !checked && [\n {\n selectors: {\n ':hover': styles.splitButtonContainerHovered,\n ':focus': styles.splitButtonContainerFocused,\n },\n },\n ], disabled && styles.splitButtonContainerDisabled),\n icon: mergeStyles(styles.splitButtonMenuIcon, disabled && styles.splitButtonMenuIconDisabled, !disabled && primaryDisabled && styles.splitButtonMenuIcon),\n flexContainer: mergeStyles(styles.splitButtonFlexContainer),\n divider: mergeStyles(styles.splitButtonDivider, (primaryDisabled || disabled) && styles.splitButtonDividerDisabled),\n };\n});\n//# sourceMappingURL=SplitButton.classNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "index": 208, - "index2": 233, - "size": 35955, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "14:36-46" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseButton", - "loc": "1:0-29" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./BaseButton", - "loc": "1:0-29" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton", - "loc": "3:0-43" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../BaseButton", - "loc": "16:36-46" - } - ], - "usedExports": [ - "BaseButton" - ], - "providedExports": [ - "BaseButton" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { anchorProperties, assign, buttonProperties, createMergedRef, css, getId, getNativeProps, initializeComponentRef, memoizeFunction, mergeAriaAttributeValues, nullRender, portalContainsElement, setFocusVisibility, warnConditionallyRequiredProps, warnDeprecations, Async, EventGroup, FocusRects, KeyCodes, } from '../../Utilities';\nimport { Icon, FontIcon, ImageIcon } from '../../Icon';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { ContextualMenu } from '../../ContextualMenu';\nimport { getBaseButtonClassNames } from './BaseButton.classNames';\nimport { getSplitButtonClassNames as getBaseSplitButtonClassNames, } from './SplitButton/SplitButton.classNames';\nimport { KeytipData } from '../../KeytipData';\nvar TouchIdleDelay = 500; /* ms */\nvar COMPONENT_NAME = 'BaseButton';\n/**\n * {@docCategory Button}\n */\nvar BaseButton = /** @class */ (function (_super) {\n __extends(BaseButton, _super);\n function BaseButton(props) {\n var _this = _super.call(this, props) || this;\n _this._buttonElement = React.createRef();\n _this._splitButtonContainer = React.createRef();\n _this._mergedRef = createMergedRef();\n _this._renderedVisibleMenu = false;\n _this._getMemoizedMenuButtonKeytipProps = memoizeFunction(function (keytipProps) {\n return __assign(__assign({}, keytipProps), { hasMenu: true });\n });\n _this._onRenderIcon = function (buttonProps, defaultRender) {\n var iconProps = _this.props.iconProps;\n if (iconProps && (iconProps.iconName !== undefined || iconProps.imageProps)) {\n var className = iconProps.className, imageProps = iconProps.imageProps, rest = __rest(iconProps, [\"className\", \"imageProps\"]);\n // If the styles prop is specified as part of iconProps, fall back to regular Icon as FontIcon and ImageIcon\n // do not have this prop.\n if (iconProps.styles) {\n return React.createElement(Icon, __assign({ className: css(_this._classNames.icon, className), imageProps: imageProps }, rest));\n }\n if (iconProps.iconName) {\n return React.createElement(FontIcon, __assign({ className: css(_this._classNames.icon, className) }, rest));\n }\n if (imageProps) {\n return React.createElement(ImageIcon, __assign({ className: css(_this._classNames.icon, className), imageProps: imageProps }, rest));\n }\n }\n return null;\n };\n _this._onRenderTextContents = function () {\n var _a = _this.props, text = _a.text, children = _a.children, \n // eslint-disable-next-line deprecation/deprecation\n _b = _a.secondaryText, \n // eslint-disable-next-line deprecation/deprecation\n secondaryText = _b === void 0 ? _this.props.description : _b, _c = _a.onRenderText, onRenderText = _c === void 0 ? _this._onRenderText : _c, _d = _a.onRenderDescription, onRenderDescription = _d === void 0 ? _this._onRenderDescription : _d;\n if (text || typeof children === 'string' || secondaryText) {\n return (React.createElement(\"span\", { className: _this._classNames.textContainer },\n onRenderText(_this.props, _this._onRenderText),\n onRenderDescription(_this.props, _this._onRenderDescription)));\n }\n return [onRenderText(_this.props, _this._onRenderText), onRenderDescription(_this.props, _this._onRenderDescription)];\n };\n _this._onRenderText = function () {\n var text = _this.props.text;\n var children = _this.props.children;\n // For backwards compat, we should continue to take in the text content from children.\n if (text === undefined && typeof children === 'string') {\n text = children;\n }\n if (_this._hasText()) {\n return (React.createElement(\"span\", { key: _this._labelId, className: _this._classNames.label, id: _this._labelId }, text));\n }\n return null;\n };\n _this._onRenderChildren = function () {\n var children = _this.props.children;\n // If children is just a string, either it or the text will be rendered via onRenderLabel\n // If children is another component, it will be rendered after text\n if (typeof children === 'string') {\n return null;\n }\n return children;\n };\n _this._onRenderDescription = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = props.secondaryText, secondaryText = _a === void 0 ? _this.props.description : _a;\n // ms-Button-description is only shown when the button type is compound.\n // In other cases it will not be displayed.\n return secondaryText ? (React.createElement(\"span\", { key: _this._descriptionId, className: _this._classNames.description, id: _this._descriptionId }, secondaryText)) : null;\n };\n _this._onRenderAriaDescription = function () {\n var ariaDescription = _this.props.ariaDescription;\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan,\n // otherwise it will be assigned to descriptionSpan.\n return ariaDescription ? (React.createElement(\"span\", { className: _this._classNames.screenReaderText, id: _this._ariaDescriptionId }, ariaDescription)) : null;\n };\n _this._onRenderMenuIcon = function (props) {\n var menuIconProps = _this.props.menuIconProps;\n return React.createElement(FontIcon, __assign({ iconName: \"ChevronDown\" }, menuIconProps, { className: _this._classNames.menuIcon }));\n };\n _this._onRenderMenu = function (menuProps) {\n var persistMenu = _this.props.persistMenu;\n var menuHidden = _this.state.menuHidden;\n var MenuType = _this.props.menuAs || ContextualMenu;\n // the accessible menu label (accessible name) has a relationship to the button.\n // If the menu props do not specify an explicit value for aria-label or aria-labelledBy,\n // AND the button has text, we'll set the menu aria-labelledBy to the text element id.\n if (!menuProps.ariaLabel && !menuProps.labelElementId && _this._hasText()) {\n menuProps = __assign(__assign({}, menuProps), { labelElementId: _this._labelId });\n }\n return (React.createElement(MenuType, __assign({ id: _this._labelId + '-menu', directionalHint: DirectionalHint.bottomLeftEdge }, menuProps, { shouldFocusOnContainer: _this._menuShouldFocusOnContainer, shouldFocusOnMount: _this._menuShouldFocusOnMount, hidden: persistMenu ? menuHidden : undefined, className: css('ms-BaseButton-menuhost', menuProps.className), target: _this._isSplitButton ? _this._splitButtonContainer.current : _this._buttonElement.current, onDismiss: _this._onDismissMenu })));\n };\n _this._onDismissMenu = function (ev) {\n var menuProps = _this.props.menuProps;\n if (menuProps && menuProps.onDismiss) {\n menuProps.onDismiss(ev);\n }\n if (!ev || !ev.defaultPrevented) {\n _this._dismissMenu();\n }\n };\n _this._dismissMenu = function () {\n _this._menuShouldFocusOnMount = undefined;\n _this._menuShouldFocusOnContainer = undefined;\n _this.setState({ menuHidden: true });\n };\n _this._openMenu = function (shouldFocusOnContainer, shouldFocusOnMount) {\n if (shouldFocusOnMount === void 0) { shouldFocusOnMount = true; }\n if (_this.props.menuProps) {\n _this._menuShouldFocusOnContainer = shouldFocusOnContainer;\n _this._menuShouldFocusOnMount = shouldFocusOnMount;\n _this._renderedVisibleMenu = true;\n _this.setState({ menuHidden: false });\n }\n };\n _this._onToggleMenu = function (shouldFocusOnContainer) {\n var shouldFocusOnMount = true;\n if (_this.props.menuProps && _this.props.menuProps.shouldFocusOnMount === false) {\n shouldFocusOnMount = false;\n }\n _this.state.menuHidden ? _this._openMenu(shouldFocusOnContainer, shouldFocusOnMount) : _this._dismissMenu();\n };\n _this._onSplitContainerFocusCapture = function (ev) {\n var container = _this._splitButtonContainer.current;\n // If the target is coming from the portal we do not need to set focus on the container.\n if (!container || (ev.target && portalContainsElement(ev.target, container))) {\n return;\n }\n // We should never be able to focus the individual buttons in a split button. Focus\n // should always remain on the container.\n container.focus();\n };\n _this._onSplitButtonPrimaryClick = function (ev) {\n if (!_this.state.menuHidden) {\n _this._dismissMenu();\n }\n if (!_this._processingTouch && _this.props.onClick) {\n _this.props.onClick(ev);\n }\n else if (_this._processingTouch) {\n _this._onMenuClick(ev);\n }\n };\n _this._onKeyDown = function (ev) {\n // explicity cancelling event so click won't fire after this\n if (_this.props.disabled && (ev.which === KeyCodes.enter || ev.which === KeyCodes.space)) {\n ev.preventDefault();\n ev.stopPropagation();\n }\n else if (!_this.props.disabled) {\n if (_this.props.menuProps) {\n _this._onMenuKeyDown(ev);\n }\n else if (_this.props.onKeyDown !== undefined) {\n _this.props.onKeyDown(ev); // not cancelling event because it's not disabled\n }\n }\n };\n _this._onKeyUp = function (ev) {\n if (!_this.props.disabled && _this.props.onKeyUp !== undefined) {\n _this.props.onKeyUp(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onKeyPress = function (ev) {\n if (!_this.props.disabled && _this.props.onKeyPress !== undefined) {\n _this.props.onKeyPress(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onMouseUp = function (ev) {\n if (!_this.props.disabled && _this.props.onMouseUp !== undefined) {\n _this.props.onMouseUp(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onMouseDown = function (ev) {\n if (!_this.props.disabled && _this.props.onMouseDown !== undefined) {\n _this.props.onMouseDown(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onClick = function (ev) {\n if (!_this.props.disabled) {\n if (_this.props.menuProps) {\n _this._onMenuClick(ev);\n }\n else if (_this.props.onClick !== undefined) {\n _this.props.onClick(ev); // not cancelling event because it's not disabled\n }\n }\n };\n _this._onSplitButtonContainerKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter || ev.which === KeyCodes.space) {\n if (_this._buttonElement.current) {\n _this._buttonElement.current.click();\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n else {\n _this._onMenuKeyDown(ev);\n }\n };\n _this._onMenuKeyDown = function (ev) {\n if (_this.props.disabled) {\n return;\n }\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n }\n var isUp = ev.which === KeyCodes.up;\n var isDown = ev.which === KeyCodes.down;\n if (!ev.defaultPrevented && _this._isValidMenuOpenKey(ev)) {\n var onMenuClick = _this.props.onMenuClick;\n if (onMenuClick) {\n onMenuClick(ev, _this.props);\n }\n _this._onToggleMenu(false);\n ev.preventDefault();\n ev.stopPropagation();\n }\n if (ev.which === KeyCodes.enter || ev.which === KeyCodes.space) {\n // We manually set the focus visibility to true if opening via Enter or Space to account for the scenario where\n // a user clicks on the button, closes the menu and then opens it via keyboard. In this scenario our default logic\n // for setting focus visibility is not triggered since there is no keyboard navigation present beforehand.\n setFocusVisibility(true, ev.target);\n }\n if (!(ev.altKey || ev.metaKey) && (isUp || isDown)) {\n // Suppose a menu, with shouldFocusOnMount: false, is open, and user wants to keyboard to the menu items\n // We need to re-render the menu with shouldFocusOnMount as true.\n if (!_this.state.menuHidden && _this.props.menuProps) {\n var currentShouldFocusOnMount = _this._menuShouldFocusOnMount !== undefined\n ? _this._menuShouldFocusOnMount\n : _this.props.menuProps.shouldFocusOnMount;\n if (!currentShouldFocusOnMount) {\n ev.preventDefault();\n ev.stopPropagation();\n _this._menuShouldFocusOnMount = true;\n _this.forceUpdate();\n }\n }\n }\n };\n _this._onTouchStart = function () {\n if (_this._isSplitButton &&\n _this._splitButtonContainer.current &&\n !('onpointerdown' in _this._splitButtonContainer.current)) {\n _this._handleTouchAndPointerEvent();\n }\n };\n _this._onMenuClick = function (ev) {\n var onMenuClick = _this.props.onMenuClick;\n if (onMenuClick) {\n onMenuClick(ev, _this.props);\n }\n if (!ev.defaultPrevented) {\n // When Edge + Narrator are used together (regardless of if the button is in a form or not), pressing\n // \"Enter\" fires this method and not _onMenuKeyDown. Checking ev.nativeEvent.detail differentiates\n // between a real click event and a keypress event (detail should be the number of mouse clicks).\n // ...Plot twist! For a real click event in IE 11, detail is always 0 (Edge sets it properly to 1).\n // So we also check the pointerType property, which both Edge and IE set to \"mouse\" for real clicks\n // and \"\" for pressing \"Enter\" with Narrator on.\n var shouldFocusOnContainer = ev.nativeEvent.detail !== 0 || ev.nativeEvent.pointerType === 'mouse';\n _this._onToggleMenu(shouldFocusOnContainer);\n ev.preventDefault();\n ev.stopPropagation();\n }\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n warnConditionallyRequiredProps(COMPONENT_NAME, props, ['menuProps', 'onClick'], 'split', _this.props.split);\n warnDeprecations(COMPONENT_NAME, props, {\n rootProps: undefined,\n description: 'secondaryText',\n toggled: 'checked',\n });\n _this._labelId = getId();\n _this._descriptionId = getId();\n _this._ariaDescriptionId = getId();\n _this.state = {\n menuHidden: true,\n };\n return _this;\n }\n Object.defineProperty(BaseButton.prototype, \"_isSplitButton\", {\n get: function () {\n return !!this.props.menuProps && !!this.props.onClick && this.props.split === true;\n },\n enumerable: true,\n configurable: true\n });\n BaseButton.prototype.render = function () {\n var _a;\n var _b = this.props, ariaDescription = _b.ariaDescription, ariaLabel = _b.ariaLabel, ariaHidden = _b.ariaHidden, className = _b.className, disabled = _b.disabled, allowDisabledFocus = _b.allowDisabledFocus, primaryDisabled = _b.primaryDisabled, \n // eslint-disable-next-line deprecation/deprecation\n _c = _b.secondaryText, \n // eslint-disable-next-line deprecation/deprecation\n secondaryText = _c === void 0 ? this.props.description : _c, href = _b.href, iconProps = _b.iconProps, menuIconProps = _b.menuIconProps, styles = _b.styles, checked = _b.checked, variantClassName = _b.variantClassName, theme = _b.theme, toggle = _b.toggle, getClassNames = _b.getClassNames, role = _b.role;\n var menuHidden = this.state.menuHidden;\n // Button is disabled if the whole button (in case of splitButton is disabled) or if the primary action is disabled\n var isPrimaryButtonDisabled = disabled || primaryDisabled;\n this._classNames = getClassNames\n ? getClassNames(theme, className, variantClassName, iconProps && iconProps.className, menuIconProps && menuIconProps.className, isPrimaryButtonDisabled, checked, !menuHidden, !!this.props.menuProps, this.props.split, !!allowDisabledFocus)\n : getBaseButtonClassNames(theme, styles, className, variantClassName, iconProps && iconProps.className, menuIconProps && menuIconProps.className, isPrimaryButtonDisabled, !!this.props.menuProps, checked, !menuHidden, this.props.split);\n var _d = this, _ariaDescriptionId = _d._ariaDescriptionId, _labelId = _d._labelId, _descriptionId = _d._descriptionId;\n // Anchor tag cannot be disabled hence in disabled state rendering\n // anchor button as normal button\n var renderAsAnchor = !isPrimaryButtonDisabled && !!href;\n var tag = renderAsAnchor ? 'a' : 'button';\n var nativeProps = getNativeProps(\n // eslint-disable-next-line deprecation/deprecation\n assign(renderAsAnchor ? {} : { type: 'button' }, this.props.rootProps, this.props), renderAsAnchor ? anchorProperties : buttonProperties, [\n 'disabled',\n ]);\n // Check for ariaLabel passed in via Button props, and fall back to aria-label passed in via native props\n var resolvedAriaLabel = ariaLabel || nativeProps['aria-label'];\n // Check for ariaDescription, secondaryText or aria-describedby in the native props to determine source of\n // aria-describedby. Otherwise default to undefined so property does not appear in output.\n var ariaDescribedBy = undefined;\n if (ariaDescription) {\n ariaDescribedBy = _ariaDescriptionId;\n }\n else if (secondaryText && this.props.onRenderDescription !== nullRender) {\n // for buttons like CompoundButton with a valid onRenderDescription, we need to set an ariaDescribedBy\n // for buttons that do not render anything (via nullRender), we should not set an ariaDescribedBy\n ariaDescribedBy = _descriptionId;\n }\n else if (nativeProps['aria-describedby']) {\n ariaDescribedBy = nativeProps['aria-describedby'];\n }\n // If an explicit ariaLabel is given, use that as the label and we're done.\n // If an explicit aria-labelledby is given, use that and we're done.\n // If any kind of description is given (which will end up as an aria-describedby attribute),\n // set the labelledby element. Otherwise, the button is labeled implicitly by the descendent\n // text on the button (if it exists). Never set both aria-label and aria-labelledby.\n var ariaLabelledBy = undefined;\n if (!resolvedAriaLabel) {\n if (nativeProps['aria-labelledby']) {\n ariaLabelledBy = nativeProps['aria-labelledby'];\n }\n else if (ariaDescribedBy) {\n ariaLabelledBy = this._hasText() ? _labelId : undefined;\n }\n }\n var dataIsFocusable = this.props['data-is-focusable'] === false || (disabled && !allowDisabledFocus) || this._isSplitButton\n ? false\n : true;\n var isCheckboxTypeRole = role === 'menuitemcheckbox' || role === 'checkbox';\n // if isCheckboxTypeRole, always return a checked value.\n // Otherwise only return checked value if toggle is set to true.\n // This is because role=\"checkbox\" always needs to have an aria-checked value\n // but our checked prop only sets aria-pressed if we mark the button as a toggle=\"true\"\n var checkedOrPressedValue = isCheckboxTypeRole ? !!checked : toggle === true ? !!checked : undefined;\n var buttonProps = assign(nativeProps, (_a = {\n className: this._classNames.root,\n // eslint-disable-next-line deprecation/deprecation\n ref: this._mergedRef(this.props.elementRef, this._buttonElement),\n disabled: isPrimaryButtonDisabled && !allowDisabledFocus,\n onKeyDown: this._onKeyDown,\n onKeyPress: this._onKeyPress,\n onKeyUp: this._onKeyUp,\n onMouseDown: this._onMouseDown,\n onMouseUp: this._onMouseUp,\n onClick: this._onClick,\n 'aria-label': resolvedAriaLabel,\n 'aria-labelledby': ariaLabelledBy,\n 'aria-describedby': ariaDescribedBy,\n 'aria-disabled': isPrimaryButtonDisabled,\n 'data-is-focusable': dataIsFocusable\n },\n // aria-pressed attribute should only be present for toggle buttons\n // aria-checked attribute should only be present for toggle buttons with checkbox type role\n _a[isCheckboxTypeRole ? 'aria-checked' : 'aria-pressed'] = checkedOrPressedValue,\n _a));\n if (ariaHidden) {\n buttonProps['aria-hidden'] = true;\n }\n if (this._isSplitButton) {\n return this._onRenderSplitButtonContent(tag, buttonProps);\n }\n else if (this.props.menuProps) {\n assign(buttonProps, {\n 'aria-expanded': !menuHidden,\n 'aria-owns': !menuHidden ? this._labelId + '-menu' : null,\n 'aria-haspopup': true,\n });\n }\n return this._onRenderContent(tag, buttonProps);\n };\n BaseButton.prototype.componentDidMount = function () {\n // For split buttons, touching anywhere in the button should drop the dropdown, which should contain the\n // primary action. This gives more hit target space for touch environments. We're setting the onpointerdown here,\n // because React does not support Pointer events yet.\n if (this._isSplitButton && this._splitButtonContainer.current) {\n if ('onpointerdown' in this._splitButtonContainer.current) {\n this._events.on(this._splitButtonContainer.current, 'pointerdown', this._onPointerDown, true);\n }\n if ('onpointerup' in this._splitButtonContainer.current && this.props.onPointerUp) {\n this._events.on(this._splitButtonContainer.current, 'pointerup', this.props.onPointerUp, true);\n }\n }\n };\n BaseButton.prototype.componentDidUpdate = function (prevProps, prevState) {\n // If Button's menu was closed, run onAfterMenuDismiss.\n if (this.props.onAfterMenuDismiss && !prevState.menuHidden && this.state.menuHidden) {\n this.props.onAfterMenuDismiss();\n }\n };\n BaseButton.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n BaseButton.prototype.focus = function () {\n if (this._isSplitButton && this._splitButtonContainer.current) {\n setFocusVisibility(true);\n this._splitButtonContainer.current.focus();\n }\n else if (this._buttonElement.current) {\n setFocusVisibility(true);\n this._buttonElement.current.focus();\n }\n };\n BaseButton.prototype.dismissMenu = function () {\n this._dismissMenu();\n };\n BaseButton.prototype.openMenu = function (shouldFocusOnContainer, shouldFocusOnMount) {\n this._openMenu(shouldFocusOnContainer, shouldFocusOnMount);\n };\n BaseButton.prototype._onRenderContent = function (tag, buttonProps) {\n var _this = this;\n var props = this.props;\n var Tag = tag;\n var menuIconProps = props.menuIconProps, menuProps = props.menuProps, _a = props.onRenderIcon, onRenderIcon = _a === void 0 ? this._onRenderIcon : _a, _b = props.onRenderAriaDescription, onRenderAriaDescription = _b === void 0 ? this._onRenderAriaDescription : _b, _c = props.onRenderChildren, onRenderChildren = _c === void 0 ? this._onRenderChildren : _c, \n // eslint-disable-next-line deprecation/deprecation\n _d = props.onRenderMenu, \n // eslint-disable-next-line deprecation/deprecation\n onRenderMenu = _d === void 0 ? this._onRenderMenu : _d, _e = props.onRenderMenuIcon, onRenderMenuIcon = _e === void 0 ? this._onRenderMenuIcon : _e, disabled = props.disabled;\n var keytipProps = props.keytipProps;\n if (keytipProps && menuProps) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n var Button = function (keytipAttributes) { return (React.createElement(Tag, __assign({}, buttonProps, keytipAttributes),\n React.createElement(\"span\", { className: _this._classNames.flexContainer, \"data-automationid\": \"splitbuttonprimary\" },\n onRenderIcon(props, _this._onRenderIcon),\n _this._onRenderTextContents(),\n onRenderAriaDescription(props, _this._onRenderAriaDescription),\n onRenderChildren(props, _this._onRenderChildren),\n !_this._isSplitButton &&\n (menuProps || menuIconProps || _this.props.onRenderMenuIcon) &&\n onRenderMenuIcon(_this.props, _this._onRenderMenuIcon),\n menuProps &&\n !menuProps.doNotLayer &&\n _this._shouldRenderMenu() &&\n onRenderMenu(menuProps, _this._onRenderMenu)))); };\n var Content = keytipProps ? (\n // If we're making a split button, we won't put the keytip here\n React.createElement(KeytipData, { keytipProps: !this._isSplitButton ? keytipProps : undefined, ariaDescribedBy: buttonProps['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return Button(keytipAttributes); })) : (Button());\n if (menuProps && menuProps.doNotLayer) {\n return (React.createElement(\"span\", { style: { display: 'inline-block' } },\n Content,\n this._shouldRenderMenu() && onRenderMenu(menuProps, this._onRenderMenu)));\n }\n return (React.createElement(React.Fragment, null,\n Content,\n React.createElement(FocusRects, null)));\n };\n /**\n * Method to help determine if the menu's component tree should\n * be rendered. It takes into account whether the menu is expanded,\n * whether it is a persisted menu and whether it has been shown to the user.\n */\n BaseButton.prototype._shouldRenderMenu = function () {\n var menuHidden = this.state.menuHidden;\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, persistMenu = _a.persistMenu, renderPersistedMenuHiddenOnMount = _a.renderPersistedMenuHiddenOnMount;\n if (!menuHidden) {\n // Always should render a menu when it is expanded\n return true;\n }\n else if (persistMenu && (this._renderedVisibleMenu || renderPersistedMenuHiddenOnMount)) {\n // _renderedVisibleMenu ensures that the first rendering of\n // the menu happens on-screen, as edge's scrollbar calculations are off if done while hidden.\n return true;\n }\n return false;\n };\n BaseButton.prototype._hasText = function () {\n // _onRenderTextContents and _onRenderText do not perform the same checks. Below is parity with what _onRenderText\n // used to have before the refactor that introduced this function. _onRenderTextContents does not require props.\n // text to be undefined in order for props.children to be used as a fallback.\n // Purely a code maintainability/reuse issue, but logged as Issue #4979.\n return this.props.text !== null && (this.props.text !== undefined || typeof this.props.children === 'string');\n };\n BaseButton.prototype._onRenderSplitButtonContent = function (tag, buttonProps) {\n var _this = this;\n var _a = this.props, _b = _a.styles, styles = _b === void 0 ? {} : _b, disabled = _a.disabled, allowDisabledFocus = _a.allowDisabledFocus, checked = _a.checked, getSplitButtonClassNames = _a.getSplitButtonClassNames, primaryDisabled = _a.primaryDisabled, menuProps = _a.menuProps, toggle = _a.toggle, role = _a.role, primaryActionButtonProps = _a.primaryActionButtonProps;\n var keytipProps = this.props.keytipProps;\n var menuHidden = this.state.menuHidden;\n var classNames = getSplitButtonClassNames\n ? getSplitButtonClassNames(!!disabled, !menuHidden, !!checked, !!allowDisabledFocus)\n : styles && getBaseSplitButtonClassNames(styles, !!disabled, !menuHidden, !!checked, !!primaryDisabled);\n assign(buttonProps, {\n onClick: undefined,\n onPointerDown: undefined,\n onPointerUp: undefined,\n tabIndex: -1,\n 'data-is-focusable': false,\n });\n if (keytipProps && menuProps) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n var containerProps = getNativeProps(buttonProps, [], ['disabled']);\n // Add additional props to apply on primary action button\n if (primaryActionButtonProps) {\n assign(buttonProps, primaryActionButtonProps);\n }\n var SplitButton = function (keytipAttributes) { return (React.createElement(\"div\", __assign({}, containerProps, { \"data-ktp-target\": keytipAttributes ? keytipAttributes['data-ktp-target'] : undefined, role: role ? role : 'button', \"aria-disabled\": disabled, \"aria-haspopup\": true, \"aria-expanded\": !menuHidden, \"aria-pressed\": toggle ? !!checked : undefined, \"aria-describedby\": mergeAriaAttributeValues(buttonProps['aria-describedby'], keytipAttributes ? keytipAttributes['aria-describedby'] : undefined), className: classNames && classNames.splitButtonContainer, onKeyDown: _this._onSplitButtonContainerKeyDown, onTouchStart: _this._onTouchStart, ref: _this._splitButtonContainer, \"data-is-focusable\": true, onClick: !disabled && !primaryDisabled ? _this._onSplitButtonPrimaryClick : undefined, tabIndex: (!disabled && !primaryDisabled) || allowDisabledFocus ? 0 : undefined, \"aria-roledescription\": buttonProps['aria-roledescription'], onFocusCapture: _this._onSplitContainerFocusCapture }),\n React.createElement(\"span\", { style: { display: 'flex' } },\n _this._onRenderContent(tag, buttonProps),\n _this._onRenderSplitButtonMenuButton(classNames, keytipAttributes),\n _this._onRenderSplitButtonDivider(classNames)))); };\n return keytipProps ? (React.createElement(KeytipData, { keytipProps: keytipProps, disabled: disabled }, function (keytipAttributes) { return SplitButton(keytipAttributes); })) : (SplitButton());\n };\n BaseButton.prototype._onRenderSplitButtonDivider = function (classNames) {\n if (classNames && classNames.divider) {\n var onClick = function (ev) {\n ev.stopPropagation();\n };\n return React.createElement(\"span\", { className: classNames.divider, \"aria-hidden\": true, onClick: onClick });\n }\n return null;\n };\n BaseButton.prototype._onRenderSplitButtonMenuButton = function (classNames, keytipAttributes) {\n var _a = this.props, allowDisabledFocus = _a.allowDisabledFocus, checked = _a.checked, disabled = _a.disabled, splitButtonMenuProps = _a.splitButtonMenuProps, splitButtonAriaLabel = _a.splitButtonAriaLabel, primaryDisabled = _a.primaryDisabled;\n var menuHidden = this.state.menuHidden;\n var menuIconProps = this.props.menuIconProps;\n if (menuIconProps === undefined) {\n menuIconProps = {\n iconName: 'ChevronDown',\n };\n }\n var splitButtonProps = __assign(__assign({}, splitButtonMenuProps), { styles: classNames, checked: checked, disabled: disabled, allowDisabledFocus: allowDisabledFocus, onClick: this._onMenuClick, menuProps: undefined, iconProps: __assign(__assign({}, menuIconProps), { className: this._classNames.menuIcon }), ariaLabel: splitButtonAriaLabel, 'aria-haspopup': true, 'aria-expanded': !menuHidden, 'data-is-focusable': false });\n // Add data-ktp-execute-target to the split button if the keytip is defined\n return (React.createElement(BaseButton, __assign({}, splitButtonProps, { \"data-ktp-execute-target\": keytipAttributes ? keytipAttributes['data-ktp-execute-target'] : keytipAttributes, onMouseDown: this._onMouseDown, tabIndex: primaryDisabled && !allowDisabledFocus ? 0 : -1 })));\n };\n BaseButton.prototype._onPointerDown = function (ev) {\n var onPointerDown = this.props.onPointerDown;\n if (onPointerDown) {\n onPointerDown(ev);\n }\n if (ev.pointerType === 'touch') {\n this._handleTouchAndPointerEvent();\n ev.preventDefault();\n ev.stopImmediatePropagation();\n }\n };\n BaseButton.prototype._handleTouchAndPointerEvent = function () {\n var _this = this;\n // If we already have an existing timeout from a previous touch and pointer event\n // cancel that timeout so we can set a new one.\n if (this._lastTouchTimeoutId !== undefined) {\n this._async.clearTimeout(this._lastTouchTimeoutId);\n this._lastTouchTimeoutId = undefined;\n }\n this._processingTouch = true;\n this._lastTouchTimeoutId = this._async.setTimeout(function () {\n _this._processingTouch = false;\n _this._lastTouchTimeoutId = undefined;\n // Touch and pointer events don't focus the button naturally,\n // so adding an imperative focus call to guarantee this behavior.\n _this.focus();\n }, TouchIdleDelay);\n };\n /**\n * Returns if the user hits a valid keyboard key to open the menu\n * @param ev - the keyboard event\n * @returns True if user clicks on custom trigger key if enabled or alt + down arrow if not. False otherwise.\n */\n BaseButton.prototype._isValidMenuOpenKey = function (ev) {\n if (this.props.menuTriggerKeyCode) {\n return ev.which === this.props.menuTriggerKeyCode;\n }\n else if (this.props.menuProps) {\n return ev.which === KeyCodes.down && (ev.altKey || ev.metaKey);\n }\n // Note: When enter is pressed, we will let the event continue to propagate\n // to trigger the onClick event on the button\n return false;\n };\n BaseButton.defaultProps = {\n baseClassName: 'ms-Button',\n styles: {},\n split: false,\n };\n return BaseButton;\n}(React.Component));\nexport { BaseButton };\n//# sourceMappingURL=BaseButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "index": 214, - "index2": 199, - "size": 8179, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.classNames", - "loc": "3:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../ContextualMenu.classNames", - "loc": "5:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.classNames", - "loc": "7:63-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.classNames", - "loc": "13:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.classNames", - "loc": "42:82-95" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "userRequest": "../ContextualMenu.classNames", - "loc": "149:83-122" - } - ], - "usedExports": [ - "getItemStyles", - "getSplitButtonVerticalDividerClassNames" - ], - "providedExports": [ - "getSplitButtonVerticalDividerClassNames", - "getItemClassNames", - "getItemStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getDividerClassNames } from '../Divider/VerticalDivider.classNames';\nimport { getMenuItemStyles } from './ContextualMenu.cnstyles';\nimport { mergeStyleSets, getGlobalClassNames, getScreenSelector, ScreenWidthMaxMedium, hiddenContentStyle, } from '../../Styling';\nimport { memoizeFunction, IsFocusVisibleClassName } from '../../Utilities';\nvar CONTEXTUAL_SPLIT_MENU_MINWIDTH = '28px';\nvar MediumScreenSelector = getScreenSelector(0, ScreenWidthMaxMedium);\nexport var getSplitButtonVerticalDividerClassNames = memoizeFunction(\n/* eslint-disable deprecation/deprecation */\nfunction (theme) {\n var _a;\n return mergeStyleSets(getDividerClassNames(theme), {\n /* eslint-enable deprecation/deprecation */\n wrapper: {\n position: 'absolute',\n right: 28,\n selectors: (_a = {},\n _a[MediumScreenSelector] = {\n right: 32,\n },\n _a),\n },\n divider: {\n height: 16,\n width: 1,\n },\n });\n});\nvar GlobalClassNames = {\n item: 'ms-ContextualMenu-item',\n divider: 'ms-ContextualMenu-divider',\n root: 'ms-ContextualMenu-link',\n isChecked: 'is-checked',\n isExpanded: 'is-expanded',\n isDisabled: 'is-disabled',\n linkContent: 'ms-ContextualMenu-linkContent',\n linkContentMenu: 'ms-ContextualMenu-linkContent',\n icon: 'ms-ContextualMenu-icon',\n iconColor: 'ms-ContextualMenu-iconColor',\n checkmarkIcon: 'ms-ContextualMenu-checkmarkIcon',\n subMenuIcon: 'ms-ContextualMenu-submenuIcon',\n label: 'ms-ContextualMenu-itemText',\n secondaryText: 'ms-ContextualMenu-secondaryText',\n splitMenu: 'ms-ContextualMenu-splitMenu',\n screenReaderText: 'ms-ContextualMenu-screenReaderText',\n};\n/**\n * @deprecated To be removed in 7.0.\n * @internal\n * This is a package-internal method that has been depended on.\n * It is being kept in this form for backwards compatibility.\n * It should be cleaned up in 7.0.\n *\n * TODO: Audit perf. impact of and potentially remove memoizeFunction.\n * https://github.com/microsoft/fluentui/issues/5534\n */\nexport var getItemClassNames = memoizeFunction(function (theme, disabled, expanded, checked, isAnchorLink, knownIcon, itemClassName, dividerClassName, iconClassName, subMenuClassName, primaryDisabled, className) {\n var _a, _b, _c, _d;\n var styles = getMenuItemStyles(theme);\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return mergeStyleSets({\n item: [classNames.item, styles.item, itemClassName],\n divider: [classNames.divider, styles.divider, dividerClassName],\n root: [\n classNames.root,\n styles.root,\n checked && [classNames.isChecked, styles.rootChecked],\n isAnchorLink && styles.anchorLink,\n expanded && [classNames.isExpanded, styles.rootExpanded],\n disabled && [classNames.isDisabled, styles.rootDisabled],\n !disabled &&\n !expanded && [\n {\n selectors: (_a = {\n ':hover': styles.rootHovered,\n ':active': styles.rootPressed\n },\n _a[\".\" + IsFocusVisibleClassName + \" &:focus, .\" + IsFocusVisibleClassName + \" &:focus:hover\"] = styles.rootFocused,\n _a[\".\" + IsFocusVisibleClassName + \" &:hover\"] = { background: 'inherit;' },\n _a),\n },\n ],\n className,\n ],\n splitPrimary: [\n styles.root,\n {\n width: \"calc(100% - \" + CONTEXTUAL_SPLIT_MENU_MINWIDTH + \")\",\n },\n checked && ['is-checked', styles.rootChecked],\n (disabled || primaryDisabled) && ['is-disabled', styles.rootDisabled],\n !(disabled || primaryDisabled) &&\n !checked && [\n {\n selectors: (_b = {\n ':hover': styles.rootHovered\n },\n // when hovering over the splitPrimary also affect the splitMenu\n _b[\":hover ~ .\" + classNames.splitMenu] = styles.rootHovered,\n _b[':active'] = styles.rootPressed,\n _b[\".\" + IsFocusVisibleClassName + \" &:focus, .\" + IsFocusVisibleClassName + \" &:focus:hover\"] = styles.rootFocused,\n _b[\".\" + IsFocusVisibleClassName + \" &:hover\"] = { background: 'inherit;' },\n _b),\n },\n ],\n ],\n splitMenu: [\n classNames.splitMenu,\n styles.root,\n {\n flexBasis: '0',\n padding: '0 8px',\n minWidth: CONTEXTUAL_SPLIT_MENU_MINWIDTH,\n },\n expanded && ['is-expanded', styles.rootExpanded],\n disabled && ['is-disabled', styles.rootDisabled],\n !disabled &&\n !expanded && [\n {\n selectors: (_c = {\n ':hover': styles.rootHovered,\n ':active': styles.rootPressed\n },\n _c[\".\" + IsFocusVisibleClassName + \" &:focus, .\" + IsFocusVisibleClassName + \" &:focus:hover\"] = styles.rootFocused,\n _c[\".\" + IsFocusVisibleClassName + \" &:hover\"] = { background: 'inherit;' },\n _c),\n },\n ],\n ],\n anchorLink: styles.anchorLink,\n linkContent: [classNames.linkContent, styles.linkContent],\n linkContentMenu: [\n classNames.linkContentMenu,\n styles.linkContent,\n {\n justifyContent: 'center',\n },\n ],\n icon: [\n classNames.icon,\n knownIcon && styles.iconColor,\n styles.icon,\n iconClassName,\n disabled && [classNames.isDisabled, styles.iconDisabled],\n ],\n iconColor: styles.iconColor,\n checkmarkIcon: [classNames.checkmarkIcon, knownIcon && styles.checkmarkIcon, styles.icon, iconClassName],\n subMenuIcon: [\n classNames.subMenuIcon,\n styles.subMenuIcon,\n subMenuClassName,\n expanded && { color: theme.palette.neutralPrimary },\n disabled && [styles.iconDisabled],\n ],\n label: [classNames.label, styles.label],\n secondaryText: [classNames.secondaryText, styles.secondaryText],\n splitContainer: [\n styles.splitButtonFlexContainer,\n !disabled &&\n !checked && [\n {\n selectors: (_d = {},\n _d[\".\" + IsFocusVisibleClassName + \" &:focus, .\" + IsFocusVisibleClassName + \" &:focus:hover\"] = styles.rootFocused,\n _d),\n },\n ],\n ],\n screenReaderText: [\n classNames.screenReaderText,\n styles.screenReaderText,\n hiddenContentStyle,\n { visibility: 'hidden' },\n ],\n });\n});\n/**\n * Wrapper function for generating ContextualMenuItem classNames which adheres to\n * the getStyles API, but invokes memoized className generator function with\n * primitive values.\n *\n * @param props - the ContextualMenuItem style props used to generate its styles.\n */\nexport var getItemStyles = function (props) {\n var theme = props.theme, disabled = props.disabled, expanded = props.expanded, checked = props.checked, isAnchorLink = props.isAnchorLink, knownIcon = props.knownIcon, itemClassName = props.itemClassName, dividerClassName = props.dividerClassName, iconClassName = props.iconClassName, subMenuClassName = props.subMenuClassName, primaryDisabled = props.primaryDisabled, className = props.className;\n // eslint-disable-next-line deprecation/deprecation\n return getItemClassNames(theme, disabled, expanded, checked, isAnchorLink, knownIcon, itemClassName, dividerClassName, iconClassName, subMenuClassName, primaryDisabled, className);\n};\n//# sourceMappingURL=ContextualMenu.classNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.styles.js", - "index": 241, - "index2": 222, - "size": 899, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "7daS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/office-ui-fabric-react/lib/Divider.js" - }, - { - "id": "vurc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony side effect evaluation", - "userRequest": "./VerticalDivider.styles", - "loc": "1:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony import specifier", - "userRequest": "./VerticalDivider.styles", - "loc": "4:57-66" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "export var getStyles = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var theme = props.theme, getClassNames = props.getClassNames, className = props.className;\n if (!theme) {\n throw new Error('Theme is undefined or null.');\n }\n if (getClassNames) {\n var names = getClassNames(theme);\n return {\n wrapper: [names.wrapper],\n divider: [names.divider],\n };\n }\n return {\n wrapper: [\n {\n display: 'inline-flex',\n height: '100%',\n alignItems: 'center',\n },\n className,\n ],\n divider: [\n {\n width: 1,\n height: '100%',\n backgroundColor: theme.palette.neutralTertiaryAlt,\n },\n ],\n };\n};\n//# sourceMappingURL=VerticalDivider.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "index": 240, - "index2": 221, - "size": 745, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "7daS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/office-ui-fabric-react/lib/Divider.js" - }, - { - "id": "vurc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony side effect evaluation", - "userRequest": "./VerticalDivider.base", - "loc": "2:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.js", - "type": "harmony import specifier", - "userRequest": "./VerticalDivider.base", - "loc": "4:36-55" - } - ], - "usedExports": [ - "VerticalDividerBase" - ], - "providedExports": [ - "VerticalDividerBase" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as React from 'react';\nimport { classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nexport var VerticalDividerBase = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var styles = props.styles, theme = props.theme, deprecatedGetClassNames = props.getClassNames, className = props.className;\n var classNames = getClassNames(styles, { theme: theme, getClassNames: deprecatedGetClassNames, className: className });\n return (React.createElement(\"span\", { className: classNames.wrapper },\n React.createElement(\"span\", { className: classNames.divider })));\n};\nVerticalDividerBase.displayName = 'VerticalDividerBase';\n//# sourceMappingURL=VerticalDivider.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "index": 242, - "index2": 226, - "size": 2530, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu.styles", - "loc": "5:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenu.styles", - "loc": "10:53-62" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames, FontWeights } from '../../Styling';\nimport { CONTEXTUAL_MENU_ITEM_HEIGHT } from './ContextualMenu.cnstyles';\nvar GlobalClassNames = {\n root: 'ms-ContextualMenu',\n container: 'ms-ContextualMenu-container',\n list: 'ms-ContextualMenu-list',\n header: 'ms-ContextualMenu-header',\n title: 'ms-ContextualMenu-title',\n isopen: 'is-open',\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var fonts = theme.fonts, semanticColors = theme.semanticColors, effects = theme.effects;\n return {\n root: [\n theme.fonts.medium,\n classNames.root,\n classNames.isopen,\n {\n backgroundColor: semanticColors.menuBackground,\n minWidth: '180px',\n },\n className,\n ],\n container: [\n classNames.container,\n {\n selectors: {\n ':focus': { outline: 0 },\n },\n },\n ],\n list: [\n classNames.list,\n classNames.isopen,\n {\n listStyleType: 'none',\n margin: '0',\n padding: '0',\n },\n ],\n header: [\n classNames.header,\n fonts.small,\n {\n fontWeight: FontWeights.semibold,\n color: semanticColors.menuHeader,\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n cursor: 'default',\n padding: '0px 6px',\n userSelect: 'none',\n textAlign: 'left',\n },\n ],\n title: [\n classNames.title,\n {\n fontSize: fonts.mediumPlus.fontSize,\n paddingRight: '14px',\n paddingLeft: '14px',\n paddingBottom: '5px',\n paddingTop: '5px',\n backgroundColor: semanticColors.menuItemBackgroundPressed,\n },\n ],\n subComponentStyles: {\n callout: {\n root: {\n boxShadow: effects.elevation8,\n },\n },\n menuItem: {},\n },\n };\n};\n//# sourceMappingURL=ContextualMenu.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "index": 244, - "index2": 229, - "size": 4651, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseButton.classNames", - "loc": "7:0-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "userRequest": "./BaseButton.classNames", - "loc": "316:14-37" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Button/BaseButton.classNames", - "loc": "3:0-79" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "userRequest": "../../../Button/BaseButton.classNames", - "loc": "159:29-51" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseButton.classNames", - "loc": "6:0-66" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "48:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "51:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "60:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "63:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "72:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "75:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "83:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "86:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "95:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "98:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "109:25-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "151:33-55" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../BaseButton.classNames", - "loc": "159:33-55" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button/BaseButton.classNames", - "loc": "2:0-76" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "userRequest": "../../Button/BaseButton.classNames", - "loc": "122:29-51" - } - ], - "usedExports": [ - "getBaseButtonClassNames" - ], - "providedExports": [ - "ButtonGlobalClassNames", - "getBaseButtonClassNames" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { memoizeFunction } from '../../Utilities';\nimport { mergeStyleSets } from '../../Styling';\nimport { getGlobalClassNames } from '../../Styling';\nexport var ButtonGlobalClassNames = {\n msButton: 'ms-Button',\n msButtonHasMenu: 'ms-Button--hasMenu',\n msButtonIcon: 'ms-Button-icon',\n msButtonMenuIcon: 'ms-Button-menuIcon',\n msButtonLabel: 'ms-Button-label',\n msButtonDescription: 'ms-Button-description',\n msButtonScreenReaderText: 'ms-Button-screenReaderText',\n msButtonFlexContainer: 'ms-Button-flexContainer',\n msButtonTextContainer: 'ms-Button-textContainer',\n};\nexport var getBaseButtonClassNames = memoizeFunction(function (theme, styles, className, variantClassName, iconClassName, menuIconClassName, disabled, hasMenu, checked, expanded, isSplit) {\n var _a, _b;\n var classNames = getGlobalClassNames(ButtonGlobalClassNames, theme || {});\n var isExpanded = expanded && !isSplit;\n return mergeStyleSets({\n root: [\n classNames.msButton,\n styles.root,\n variantClassName,\n checked && ['is-checked', styles.rootChecked],\n isExpanded && [\n 'is-expanded',\n styles.rootExpanded,\n {\n selectors: (_a = {},\n _a[\":hover .\" + classNames.msButtonIcon] = styles.iconExpandedHovered,\n // menuIcon falls back to rootExpandedHovered to support original behavior\n _a[\":hover .\" + classNames.msButtonMenuIcon] = styles.menuIconExpandedHovered || styles.rootExpandedHovered,\n _a[':hover'] = styles.rootExpandedHovered,\n _a),\n },\n ],\n hasMenu && [ButtonGlobalClassNames.msButtonHasMenu, styles.rootHasMenu],\n disabled && ['is-disabled', styles.rootDisabled],\n !disabled &&\n !isExpanded &&\n !checked && {\n selectors: (_b = {\n ':hover': styles.rootHovered\n },\n _b[\":hover .\" + classNames.msButtonLabel] = styles.labelHovered,\n _b[\":hover .\" + classNames.msButtonIcon] = styles.iconHovered,\n _b[\":hover .\" + classNames.msButtonDescription] = styles.descriptionHovered,\n _b[\":hover .\" + classNames.msButtonMenuIcon] = styles.menuIconHovered,\n _b[':focus'] = styles.rootFocused,\n _b[':active'] = styles.rootPressed,\n _b[\":active .\" + classNames.msButtonIcon] = styles.iconPressed,\n _b[\":active .\" + classNames.msButtonDescription] = styles.descriptionPressed,\n _b[\":active .\" + classNames.msButtonMenuIcon] = styles.menuIconPressed,\n _b),\n },\n disabled && checked && [styles.rootCheckedDisabled],\n !disabled &&\n checked && {\n selectors: {\n ':hover': styles.rootCheckedHovered,\n ':active': styles.rootCheckedPressed,\n },\n },\n className,\n ],\n flexContainer: [classNames.msButtonFlexContainer, styles.flexContainer],\n textContainer: [classNames.msButtonTextContainer, styles.textContainer],\n icon: [\n classNames.msButtonIcon,\n iconClassName,\n styles.icon,\n isExpanded && styles.iconExpanded,\n checked && styles.iconChecked,\n disabled && styles.iconDisabled,\n ],\n label: [classNames.msButtonLabel, styles.label, checked && styles.labelChecked, disabled && styles.labelDisabled],\n menuIcon: [\n classNames.msButtonMenuIcon,\n menuIconClassName,\n styles.menuIcon,\n checked && styles.menuIconChecked,\n disabled && !isSplit && styles.menuIconDisabled,\n !disabled &&\n !isExpanded &&\n !checked && {\n selectors: {\n ':hover': styles.menuIconHovered,\n ':active': styles.menuIconPressed,\n },\n },\n isExpanded && ['is-expanded', styles.menuIconExpanded],\n ],\n description: [\n classNames.msButtonDescription,\n styles.description,\n checked && styles.descriptionChecked,\n disabled && styles.descriptionDisabled,\n ],\n screenReaderText: [classNames.msButtonScreenReaderText, styles.screenReaderText],\n });\n});\n//# sourceMappingURL=BaseButton.classNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/contextualMenuUtility.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/contextualMenuUtility.js", - "index": 218, - "index2": 201, - "size": 1007, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "issuerId": "ySdz", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "ySdz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "19:24-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "28:24-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "30:26-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "31:29-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "38:29-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "40:23-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "47:8-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "52:597-611" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "60:20-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "61:29-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "67:16-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "72:147-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "103:70-84" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "103:140-152" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "106:29-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "108:30-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "110:31-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "117:86-100" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "117:315-334" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "117:427-441" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "129:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "157:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "322:17-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "702:26-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "770:12-22" - }, - { - "moduleId": "ySdz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./contextualMenuUtility", - "loc": "1:0-40" - }, - { - "moduleId": "ySdz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "type": "harmony export imported specifier", - "userRequest": "./contextualMenuUtility", - "loc": "1:0-40" - } - ], - "usedExports": [ - "isItemDisabled", - "getIsChecked", - "hasSubmenu", - "getMenuItemAriaRole" - ], - "providedExports": [ - "getIsChecked", - "hasSubmenu", - "isItemDisabled", - "getMenuItemAriaRole" - ], - "optimizationBailout": [], - "depth": 7, - "source": "/**\n * Determines the effective checked state of a menu item.\n *\n * @param item {IContextualMenuItem} to get the check state of.\n * @returns {true} if the item is checked.\n * @returns {false} if the item is unchecked.\n * @returns {null} if the item is not checkable.\n */\nexport function getIsChecked(item) {\n if (item.canCheck) {\n return !!(item.isChecked || item.checked);\n }\n if (typeof item.isChecked === 'boolean') {\n return item.isChecked;\n }\n if (typeof item.checked === 'boolean') {\n return item.checked;\n }\n // Item is not checkable.\n return null;\n}\nexport function hasSubmenu(item) {\n return !!(item.subMenuProps || item.items);\n}\nexport function isItemDisabled(item) {\n return !!(item.isDisabled || item.disabled);\n}\nexport function getMenuItemAriaRole(item) {\n var isChecked = getIsChecked(item);\n var canCheck = isChecked !== null;\n return canCheck ? 'menuitemcheckbox' : 'menuitem';\n}\n//# sourceMappingURL=contextualMenuUtility.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "index": 215, - "index2": 197, - "size": 663, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../Divider/VerticalDivider.classNames", - "loc": "1:0-77" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "userRequest": "../Divider/VerticalDivider.classNames", - "loc": "11:26-46" - } - ], - "usedExports": [ - "getDividerClassNames" - ], - "providedExports": [ - "getDividerClassNames" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { memoizeFunction } from '../../Utilities';\nimport { mergeStyleSets } from '../../Styling';\n/**\n * @deprecated use getStyles exported from VerticalDivider.styles.ts\n */\nexport var getDividerClassNames = memoizeFunction(\n// eslint-disable-next-line deprecation/deprecation\nfunction (theme) {\n return mergeStyleSets({\n wrapper: {\n display: 'inline-flex',\n height: '100%',\n alignItems: 'center',\n },\n divider: {\n width: 1,\n height: '100%',\n backgroundColor: theme.palette.neutralTertiaryAlt,\n },\n });\n});\n//# sourceMappingURL=VerticalDivider.classNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "index": 236, - "index2": 218, - "size": 2066, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerId": "p6AR", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "p6AR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "4:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "4:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "9:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "59:2-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "77:2-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "198:2-27" - }, - { - "moduleId": "p6AR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "4:0-44" - }, - { - "moduleId": "p6AR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuItemWrapper", - "loc": "4:0-44" - } - ], - "usedExports": [ - "ContextualMenuItemWrapper" - ], - "providedExports": [ - "ContextualMenuItemWrapper" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, shallowCompare } from '../../../Utilities';\nvar ContextualMenuItemWrapper = /** @class */ (function (_super) {\n __extends(ContextualMenuItemWrapper, _super);\n function ContextualMenuItemWrapper(props) {\n var _this = _super.call(this, props) || this;\n _this._onItemMouseEnter = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(item, ev, ev.currentTarget);\n }\n };\n _this._onItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClickBase = _a.onItemClickBase;\n if (onItemClickBase) {\n onItemClickBase(item, ev, ev.currentTarget);\n }\n };\n _this._onItemMouseLeave = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseLeave = _a.onItemMouseLeave;\n if (onItemMouseLeave) {\n onItemMouseLeave(item, ev);\n }\n };\n _this._onItemKeyDown = function (ev) {\n var _a = _this.props, item = _a.item, onItemKeyDown = _a.onItemKeyDown;\n if (onItemKeyDown) {\n onItemKeyDown(item, ev);\n }\n };\n _this._onItemMouseMove = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(item, ev, ev.currentTarget);\n }\n };\n _this._getSubmenuTarget = function () {\n return undefined;\n };\n initializeComponentRef(_this);\n return _this;\n }\n ContextualMenuItemWrapper.prototype.shouldComponentUpdate = function (newProps) {\n return !shallowCompare(newProps, this.props);\n };\n return ContextualMenuItemWrapper;\n}(React.Component));\nexport { ContextualMenuItemWrapper };\n//# sourceMappingURL=ContextualMenuItemWrapper.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "index": 227, - "index2": 219, - "size": 4897, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerId": "p6AR", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "p6AR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./ContextualMenuItemWrapper/index", - "loc": "723:36-56" - }, - { - "moduleId": "p6AR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuAnchor", - "loc": "1:0-39" - }, - { - "moduleId": "p6AR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuAnchor", - "loc": "1:0-39" - } - ], - "usedExports": [ - "ContextualMenuAnchor" - ], - "providedExports": [ - "ContextualMenuAnchor" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { anchorProperties, getNativeProps, memoizeFunction, getId, mergeAriaAttributeValues } from '../../../Utilities';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nimport { KeytipData } from '../../../KeytipData';\nimport { isItemDisabled, hasSubmenu } from '../../../utilities/contextualMenu/index';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nvar ContextualMenuAnchor = /** @class */ (function (_super) {\n __extends(ContextualMenuAnchor, _super);\n function ContextualMenuAnchor() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._anchor = React.createRef();\n _this._getMemoizedMenuButtonKeytipProps = memoizeFunction(function (keytipProps) {\n return __assign(__assign({}, keytipProps), { hasMenu: true });\n });\n _this._getSubmenuTarget = function () {\n return _this._anchor.current ? _this._anchor.current : undefined;\n };\n _this._onItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClick = _a.onItemClick;\n if (onItemClick) {\n onItemClick(item, ev);\n }\n };\n _this._renderAriaDescription = function (ariaDescription, className) {\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan\n return ariaDescription ? (React.createElement(\"span\", { id: _this._ariaDescriptionId, className: className }, ariaDescription)) : null;\n };\n return _this;\n }\n ContextualMenuAnchor.prototype.render = function () {\n var _this = this;\n var _a = this.props, item = _a.item, classNames = _a.classNames, index = _a.index, focusableElementIndex = _a.focusableElementIndex, totalItemCount = _a.totalItemCount, hasCheckmarks = _a.hasCheckmarks, hasIcons = _a.hasIcons, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, expandedMenuItemKey = _a.expandedMenuItemKey, onItemClick = _a.onItemClick, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var anchorRel = item.rel;\n if (item.target && item.target.toLowerCase() === '_blank') {\n anchorRel = anchorRel ? anchorRel : 'nofollow noopener noreferrer'; // Safe default to prevent tabjacking\n }\n var itemHasSubmenu = hasSubmenu(item);\n var nativeProps = getNativeProps(item, anchorProperties);\n var disabled = isItemDisabled(item);\n var itemProps = item.itemProps, ariaDescription = item.ariaDescription;\n var keytipProps = item.keytipProps;\n if (keytipProps && itemHasSubmenu) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n // Check for ariaDescription to set the _ariaDescriptionId and render a hidden span with\n // the description in it to be added to ariaDescribedBy\n if (ariaDescription) {\n this._ariaDescriptionId = getId();\n }\n return (React.createElement(\"div\", null,\n React.createElement(KeytipData, { keytipProps: item.keytipProps, ariaDescribedBy: nativeProps['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return (React.createElement(\"a\", __assign({}, nativeProps, keytipAttributes, { ref: _this._anchor, href: item.href, target: item.target, rel: anchorRel, className: classNames.root, role: \"menuitem\", \"aria-haspopup\": itemHasSubmenu || undefined, \"aria-expanded\": itemHasSubmenu ? item.key === expandedMenuItemKey : undefined, \"aria-posinset\": focusableElementIndex + 1, \"aria-setsize\": totalItemCount, \"aria-disabled\": isItemDisabled(item), \"aria-describedby\": mergeAriaAttributeValues(ariaDescription ? _this._ariaDescriptionId : undefined, keytipAttributes ? keytipAttributes['aria-describedby'] : undefined), \n // eslint-disable-next-line deprecation/deprecation\n style: item.style, onClick: _this._onItemClick, onMouseEnter: _this._onItemMouseEnter, onMouseLeave: _this._onItemMouseLeave, onMouseMove: _this._onItemMouseMove, onKeyDown: itemHasSubmenu ? _this._onItemKeyDown : undefined }),\n React.createElement(ChildrenRenderer, __assign({ componentRef: item.componentRef, item: item, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: _this._getSubmenuTarget }, itemProps)),\n _this._renderAriaDescription(ariaDescription, classNames.screenReaderText))); })));\n };\n return ContextualMenuAnchor;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuAnchor };\n//# sourceMappingURL=ContextualMenuAnchor.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "index": 237, - "index2": 220, - "size": 5529, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerId": "p6AR", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "p6AR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./ContextualMenuItemWrapper/index", - "loc": "730:36-56" - }, - { - "moduleId": "p6AR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuButton", - "loc": "2:0-39" - }, - { - "moduleId": "p6AR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuButton", - "loc": "2:0-39" - } - ], - "usedExports": [ - "ContextualMenuButton" - ], - "providedExports": [ - "ContextualMenuButton" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { buttonProperties, getNativeProps, memoizeFunction, getId, mergeAriaAttributeValues } from '../../../Utilities';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nimport { KeytipData } from '../../../KeytipData';\nimport { getIsChecked, isItemDisabled, hasSubmenu, getMenuItemAriaRole } from '../../../utilities/contextualMenu/index';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nvar ContextualMenuButton = /** @class */ (function (_super) {\n __extends(ContextualMenuButton, _super);\n function ContextualMenuButton() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._btn = React.createRef();\n _this._getMemoizedMenuButtonKeytipProps = memoizeFunction(function (keytipProps) {\n return __assign(__assign({}, keytipProps), { hasMenu: true });\n });\n _this._renderAriaDescription = function (ariaDescription, className) {\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan\n return ariaDescription ? (React.createElement(\"span\", { id: _this._ariaDescriptionId, className: className }, ariaDescription)) : null;\n };\n _this._getSubmenuTarget = function () {\n return _this._btn.current ? _this._btn.current : undefined;\n };\n return _this;\n }\n ContextualMenuButton.prototype.render = function () {\n var _this = this;\n var _a = this.props, item = _a.item, classNames = _a.classNames, index = _a.index, focusableElementIndex = _a.focusableElementIndex, totalItemCount = _a.totalItemCount, hasCheckmarks = _a.hasCheckmarks, hasIcons = _a.hasIcons, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, expandedMenuItemKey = _a.expandedMenuItemKey, onItemMouseDown = _a.onItemMouseDown, onItemClick = _a.onItemClick, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var isChecked = getIsChecked(item);\n var canCheck = isChecked !== null;\n var defaultRole = getMenuItemAriaRole(item);\n var itemHasSubmenu = hasSubmenu(item);\n var itemProps = item.itemProps, ariaLabel = item.ariaLabel, ariaDescription = item.ariaDescription;\n var buttonNativeProperties = getNativeProps(item, buttonProperties);\n // Do not add the disabled attribute to the button so that it is focusable\n delete buttonNativeProperties.disabled;\n var itemRole = item.role || defaultRole;\n // Check for ariaDescription to set the _ariaDescriptionId and render a hidden span with\n // the description in it to be added to ariaDescribedBy\n if (ariaDescription) {\n this._ariaDescriptionId = getId();\n }\n var ariaDescribedByIds = ariaDescription ? this._ariaDescriptionId : undefined;\n var itemButtonProperties = {\n className: classNames.root,\n onClick: this._onItemClick,\n onKeyDown: itemHasSubmenu ? this._onItemKeyDown : undefined,\n onMouseEnter: this._onItemMouseEnter,\n onMouseLeave: this._onItemMouseLeave,\n onMouseDown: function (ev) {\n return onItemMouseDown ? onItemMouseDown(item, ev) : undefined;\n },\n onMouseMove: this._onItemMouseMove,\n href: item.href,\n title: item.title,\n 'aria-label': ariaLabel,\n 'aria-describedby': ariaDescribedByIds,\n 'aria-haspopup': itemHasSubmenu || undefined,\n 'aria-expanded': itemHasSubmenu ? item.key === expandedMenuItemKey : undefined,\n 'aria-posinset': focusableElementIndex + 1,\n 'aria-setsize': totalItemCount,\n 'aria-disabled': isItemDisabled(item),\n 'aria-checked': (itemRole === 'menuitemcheckbox' || itemRole === 'menuitemradio') && canCheck ? !!isChecked : undefined,\n 'aria-selected': itemRole === 'menuitem' && canCheck ? !!isChecked : undefined,\n role: itemRole,\n // eslint-disable-next-line deprecation/deprecation\n style: item.style,\n };\n var keytipProps = item.keytipProps;\n if (keytipProps && itemHasSubmenu) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n return (React.createElement(KeytipData, { keytipProps: keytipProps, ariaDescribedBy: buttonNativeProperties['aria-describedby'], disabled: isItemDisabled(item) }, function (keytipAttributes) { return (React.createElement(\"button\", __assign({ ref: _this._btn }, buttonNativeProperties, itemButtonProperties, keytipAttributes, { \"aria-describedby\": mergeAriaAttributeValues(itemButtonProperties['aria-describedby'], keytipAttributes ? keytipAttributes['aria-describedby'] : undefined) }),\n React.createElement(ChildrenRenderer, __assign({ componentRef: item.componentRef, item: item, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: _this._getSubmenuTarget }, itemProps)),\n _this._renderAriaDescription(ariaDescription, classNames.screenReaderText))); }));\n };\n return ContextualMenuButton;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuButton };\n//# sourceMappingURL=ContextualMenuButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "index": 238, - "index2": 224, - "size": 11896, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerId": "p6AR", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "lkME", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "p6AR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./ContextualMenuItemWrapper/index", - "loc": "737:36-61" - }, - { - "moduleId": "p6AR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenuSplitButton", - "loc": "3:0-44" - }, - { - "moduleId": "p6AR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenuSplitButton", - "loc": "3:0-44" - } - ], - "usedExports": [ - "ContextualMenuSplitButton" - ], - "providedExports": [ - "ContextualMenuSplitButton" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { buttonProperties, getNativeProps, KeyCodes, mergeAriaAttributeValues, memoizeFunction, Async, EventGroup, getId, } from '../../../Utilities';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nimport { getSplitButtonVerticalDividerClassNames } from '../ContextualMenu.classNames';\nimport { KeytipData } from '../../../KeytipData';\nimport { isItemDisabled, hasSubmenu, getMenuItemAriaRole } from '../../../utilities/contextualMenu/index';\nimport { VerticalDivider } from '../../../Divider';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nvar TouchIdleDelay = 500; /* ms */\nvar ContextualMenuSplitButton = /** @class */ (function (_super) {\n __extends(ContextualMenuSplitButton, _super);\n function ContextualMenuSplitButton(props) {\n var _this = _super.call(this, props) || this;\n _this._getMemoizedMenuButtonKeytipProps = memoizeFunction(function (keytipProps) {\n return __assign(__assign({}, keytipProps), { hasMenu: true });\n });\n _this._renderAriaDescription = function (ariaDescription, className) {\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan\n return ariaDescription ? (React.createElement(\"span\", { id: _this._ariaDescriptionId, className: className }, ariaDescription)) : null;\n };\n _this._onItemKeyDown = function (ev) {\n var _a = _this.props, item = _a.item, onItemKeyDown = _a.onItemKeyDown;\n if (ev.which === KeyCodes.enter) {\n _this._executeItemClick(ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n else if (onItemKeyDown) {\n onItemKeyDown(item, ev);\n }\n };\n _this._getSubmenuTarget = function () {\n return _this._splitButton;\n };\n _this._onItemMouseEnterPrimary = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(__assign(__assign({}, item), { subMenuProps: undefined, items: undefined }), ev, _this._splitButton);\n }\n };\n _this._onItemMouseEnterIcon = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(item, ev, _this._splitButton);\n }\n };\n _this._onItemMouseMovePrimary = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(__assign(__assign({}, item), { subMenuProps: undefined, items: undefined }), ev, _this._splitButton);\n }\n };\n _this._onItemMouseMoveIcon = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(item, ev, _this._splitButton);\n }\n };\n _this._onIconItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClickBase = _a.onItemClickBase;\n if (onItemClickBase) {\n onItemClickBase(item, ev, (_this._splitButton ? _this._splitButton : ev.currentTarget));\n }\n };\n _this._executeItemClick = function (ev) {\n var _a = _this.props, item = _a.item, executeItemClick = _a.executeItemClick, onItemClick = _a.onItemClick;\n if (item.disabled || item.isDisabled) {\n return;\n }\n if (_this._processingTouch && onItemClick) {\n return onItemClick(item, ev);\n }\n if (executeItemClick) {\n executeItemClick(item, ev);\n }\n };\n _this._onTouchStart = function (ev) {\n if (_this._splitButton && !('onpointerdown' in _this._splitButton)) {\n _this._handleTouchAndPointerEvent(ev);\n }\n };\n _this._onPointerDown = function (ev) {\n if (ev.pointerType === 'touch') {\n _this._handleTouchAndPointerEvent(ev);\n ev.preventDefault();\n ev.stopImmediatePropagation();\n }\n };\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n return _this;\n }\n ContextualMenuSplitButton.prototype.componentDidMount = function () {\n if (this._splitButton && 'onpointerdown' in this._splitButton) {\n this._events.on(this._splitButton, 'pointerdown', this._onPointerDown, true);\n }\n };\n ContextualMenuSplitButton.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n ContextualMenuSplitButton.prototype.render = function () {\n var _this = this;\n var _a = this.props, item = _a.item, classNames = _a.classNames, index = _a.index, focusableElementIndex = _a.focusableElementIndex, totalItemCount = _a.totalItemCount, hasCheckmarks = _a.hasCheckmarks, hasIcons = _a.hasIcons, onItemMouseLeave = _a.onItemMouseLeave, expandedMenuItemKey = _a.expandedMenuItemKey;\n var itemHasSubmenu = hasSubmenu(item);\n var keytipProps = item.keytipProps;\n if (keytipProps) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n // Check for ariaDescription to set the _ariaDescriptionId and render a hidden span with\n // the description in it to be added to ariaDescribedBy\n var ariaDescription = item.ariaDescription;\n if (ariaDescription) {\n this._ariaDescriptionId = getId();\n }\n return (React.createElement(KeytipData, { keytipProps: keytipProps, disabled: isItemDisabled(item) }, function (keytipAttributes) { return (React.createElement(\"div\", { \"data-ktp-target\": keytipAttributes['data-ktp-target'], ref: function (splitButton) { return (_this._splitButton = splitButton); }, role: getMenuItemAriaRole(item), \"aria-label\": item.ariaLabel, className: classNames.splitContainer, \"aria-disabled\": isItemDisabled(item), \"aria-expanded\": itemHasSubmenu ? item.key === expandedMenuItemKey : undefined, \"aria-haspopup\": true, \"aria-describedby\": mergeAriaAttributeValues(ariaDescription ? _this._ariaDescriptionId : undefined, keytipAttributes['aria-describedby']), \"aria-checked\": item.isChecked || item.checked, \"aria-posinset\": focusableElementIndex + 1, \"aria-setsize\": totalItemCount, onMouseEnter: _this._onItemMouseEnterPrimary, onMouseLeave: onItemMouseLeave ? onItemMouseLeave.bind(_this, __assign(__assign({}, item), { subMenuProps: null, items: null })) : undefined, onMouseMove: _this._onItemMouseMovePrimary, onKeyDown: _this._onItemKeyDown, onClick: _this._executeItemClick, onTouchStart: _this._onTouchStart, tabIndex: 0, \"data-is-focusable\": true, \"aria-roledescription\": item['aria-roledescription'] },\n _this._renderSplitPrimaryButton(item, classNames, index, hasCheckmarks, hasIcons),\n _this._renderSplitDivider(item),\n _this._renderSplitIconButton(item, classNames, index, keytipAttributes),\n _this._renderAriaDescription(ariaDescription, classNames.screenReaderText))); }));\n };\n ContextualMenuSplitButton.prototype._renderSplitPrimaryButton = function (item, \n // eslint-disable-next-line deprecation/deprecation\n classNames, index, hasCheckmarks, hasIcons) {\n var _a = this.props, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, onItemClick = _a.onItemClick;\n var itemProps = {\n key: item.key,\n disabled: isItemDisabled(item) || item.primaryDisabled,\n /* eslint-disable deprecation/deprecation */\n name: item.name,\n text: item.text || item.name,\n secondaryText: item.secondaryText,\n /* eslint-enable deprecation/deprecation */\n className: classNames.splitPrimary,\n canCheck: item.canCheck,\n isChecked: item.isChecked,\n checked: item.checked,\n iconProps: item.iconProps,\n onRenderIcon: item.onRenderIcon,\n data: item.data,\n 'data-is-focusable': false,\n };\n var itemComponentProps = item.itemProps;\n return (React.createElement(\"button\", __assign({}, getNativeProps(itemProps, buttonProperties)),\n React.createElement(ChildrenRenderer, __assign({ \"data-is-focusable\": false, item: itemProps, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons }, itemComponentProps))));\n };\n ContextualMenuSplitButton.prototype._renderSplitDivider = function (item) {\n var getDividerClassNames = item.getSplitButtonVerticalDividerClassNames || getSplitButtonVerticalDividerClassNames;\n return React.createElement(VerticalDivider, { getClassNames: getDividerClassNames });\n };\n ContextualMenuSplitButton.prototype._renderSplitIconButton = function (item, classNames, // eslint-disable-line deprecation/deprecation\n index, keytipAttributes) {\n var _a = this.props, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, onItemMouseLeave = _a.onItemMouseLeave, onItemMouseDown = _a.onItemMouseDown, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var itemProps = {\n onClick: this._onIconItemClick,\n disabled: isItemDisabled(item),\n className: classNames.splitMenu,\n subMenuProps: item.subMenuProps,\n submenuIconProps: item.submenuIconProps,\n split: true,\n key: item.key,\n };\n var buttonProps = __assign(__assign({}, getNativeProps(itemProps, buttonProperties)), {\n onMouseEnter: this._onItemMouseEnterIcon,\n onMouseLeave: onItemMouseLeave ? onItemMouseLeave.bind(this, item) : undefined,\n onMouseDown: function (ev) {\n return onItemMouseDown ? onItemMouseDown(item, ev) : undefined;\n },\n onMouseMove: this._onItemMouseMoveIcon,\n 'data-is-focusable': false,\n 'data-ktp-execute-target': keytipAttributes['data-ktp-execute-target'],\n 'aria-hidden': true,\n });\n var itemComponentProps = item.itemProps;\n return (React.createElement(\"button\", __assign({}, buttonProps),\n React.createElement(ChildrenRenderer, __assign({ componentRef: item.componentRef, item: itemProps, classNames: classNames, index: index, hasIcons: false, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: this._getSubmenuTarget }, itemComponentProps))));\n };\n ContextualMenuSplitButton.prototype._handleTouchAndPointerEvent = function (ev) {\n var _this = this;\n var onTap = this.props.onTap;\n if (onTap) {\n onTap(ev);\n }\n // If we already have an existing timeout from a previous touch/pointer event\n // cancel that timeout so we can set a new one.\n if (this._lastTouchTimeoutId) {\n this._async.clearTimeout(this._lastTouchTimeoutId);\n this._lastTouchTimeoutId = undefined;\n }\n this._processingTouch = true;\n this._lastTouchTimeoutId = this._async.setTimeout(function () {\n _this._processingTouch = false;\n _this._lastTouchTimeoutId = undefined;\n }, TouchIdleDelay);\n };\n return ContextualMenuSplitButton;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuSplitButton };\n//# sourceMappingURL=ContextualMenuSplitButton.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "otv/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneSymbol.js", - "name": "./node_modules/lodash/_cloneSymbol.js", - "index": 545, - "index2": 537, - "size": 524, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "issuerId": "wrZu", - "issuerName": "./node_modules/lodash/_initCloneByTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "wrZu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "module": "./node_modules/lodash/_initCloneByTag.js", - "moduleName": "./node_modules/lodash/_initCloneByTag.js", - "type": "cjs require", - "userRequest": "./_cloneSymbol", - "loc": "4:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var Symbol = require('./_Symbol');\n\n/** Used to convert symbols to primitives and strings. */\nvar symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n/**\n * Creates a clone of the `symbol` object.\n *\n * @private\n * @param {Object} symbol The symbol object to clone.\n * @returns {Object} Returns the cloned symbol object.\n */\nfunction cloneSymbol(symbol) {\n return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};\n}\n\nmodule.exports = cloneSymbol;\n" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "index": 906, - "index2": 908, - "size": 219, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "issuerId": "jkLH", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "jkLH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/multiSelect/index", - "loc": "1:0-51" - }, - { - "moduleId": "jkLH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/multiSelect/index", - "loc": "1:0-51" - } - ], - "usedExports": [ - "PropertyFieldMultiSelect" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './IPropertyFieldMultiSelect';\nexport * from './PropertyFieldMultiSelect';\nexport * from './IPropertyFieldMultiSelectHost';\nexport * from './PropertyFieldMultiSelectHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "pFRH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "name": "./node_modules/lodash/_baseSetToString.js", - "index": 576, - "index2": 570, - "size": 641, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "issuerId": "wclG", - "issuerName": "./node_modules/lodash/_setToString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "wclG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "name": "./node_modules/lodash/_setToString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "wclG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "module": "./node_modules/lodash/_setToString.js", - "moduleName": "./node_modules/lodash/_setToString.js", - "type": "cjs require", - "userRequest": "./_baseSetToString", - "loc": "1:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var constant = require('./constant'),\n defineProperty = require('./_defineProperty'),\n identity = require('./identity');\n\n/**\n * The base implementation of `setToString` without support for hot loop shorting.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\nvar baseSetToString = !defineProperty ? identity : function(func, string) {\n return defineProperty(func, 'toString', {\n 'configurable': true,\n 'enumerable': false,\n 'value': constant(string),\n 'writable': true\n });\n};\n\nmodule.exports = baseSetToString;\n" - }, - { - "id": "pSRY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheHas.js", - "name": "./node_modules/lodash/_mapCacheHas.js", - "index": 488, - "index2": 478, - "size": 382, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "issuerId": "e4Nc", - "issuerName": "./node_modules/lodash/_MapCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "e4Nc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "module": "./node_modules/lodash/_MapCache.js", - "moduleName": "./node_modules/lodash/_MapCache.js", - "type": "cjs require", - "userRequest": "./_mapCacheHas", - "loc": "4:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var getMapData = require('./_getMapData');\n\n/**\n * Checks if a map value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf MapCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction mapCacheHas(key) {\n return getMapData(this, key).has(key);\n}\n\nmodule.exports = mapCacheHas;\n" - }, - { - "id": "pnrE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/mobileDetector.js", - "name": "./node_modules/@uifabric/utilities/lib/mobileDetector.js", - "index": 220, - "index2": 203, - "size": 380, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "157:78-83" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "186:51-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "855:58-63" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./mobileDetector", - "loc": "42:0-33" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mobileDetector", - "loc": "42:0-33" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "605:75-80" - } - ], - "usedExports": [ - "isIOS" - ], - "providedExports": [ - "isIOS" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Returns true if and only if the user is on a iOS device.\n * Used to determine whether iOS-specific behavior should be applied.\n */\nexport var isIOS = function () {\n if (!window || !window.navigator || !window.navigator.userAgent) {\n return false;\n }\n return /iPad|iPhone|iPod/i.test(window.navigator.userAgent);\n};\n//# sourceMappingURL=mobileDetector.js.map" - }, - { - "id": "qXI7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "name": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "index": 46, - "index2": 32, - "size": 881, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "issuerId": "FbcY", - "issuerName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "FbcY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "name": "./node_modules/@uifabric/utilities/lib/rtl.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "./sessionStorage", - "loc": "3:0-52" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./sessionStorage", - "loc": "18:23-30" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./sessionStorage", - "loc": "41:8-15" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./sessionStorage", - "loc": "3:0-51" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./sessionStorage", - "loc": "19:18-40" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./sessionStorage", - "loc": "43:8-30" - } - ], - "usedExports": [ - "getItem", - "setItem" - ], - "providedExports": [ - "getItem", - "setItem" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getWindow } from './dom/getWindow';\n/**\n * Fetches an item from session storage without throwing an exception\n * @param key The key of the item to fetch from session storage\n */\nexport function getItem(key) {\n var result = null;\n try {\n var win = getWindow();\n result = win ? win.sessionStorage.getItem(key) : null;\n }\n catch (e) {\n /* Eat the exception */\n }\n return result;\n}\n/**\n * Inserts an item into session storage without throwing an exception\n * @param key The key of the item to add to session storage\n * @param data The data to put into session storage\n */\nexport function setItem(key, data) {\n var _a;\n try {\n (_a = getWindow()) === null || _a === void 0 ? void 0 : _a.sessionStorage.setItem(key, data);\n }\n catch (e) {\n /* Eat the exception */\n }\n}\n//# sourceMappingURL=sessionStorage.js.map" - }, - { - "id": "qZTm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeys.js", - "name": "./node_modules/lodash/_getAllKeys.js", - "index": 531, - "index2": 525, - "size": 455, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_getAllKeys", - "loc": "10:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseGetAllKeys = require('./_baseGetAllKeys'),\n getSymbols = require('./_getSymbols'),\n keys = require('./keys');\n\n/**\n * Creates an array of own enumerable property names and symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names and symbols.\n */\nfunction getAllKeys(object) {\n return baseGetAllKeys(object, keys, getSymbols);\n}\n\nmodule.exports = getAllKeys;\n" - }, - { - "id": "qlgd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "index": 849, - "index2": 880, - "size": 106933, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePickerHost", - "loc": "3:0-46" - }, - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldSitePickerHost", - "loc": "3:0-46" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePickerHost", - "loc": "15:0-72" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerHost", - "loc": "58:42-69" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/set-version/lib/index.js because of ./node_modules/office-ui-fabric-react/lib/version.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Label/Label.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-http\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"PropertyControlStrings\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 3, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "index": 849, - "index2": 880, - "size": 9824, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerId": "Bd+z", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePickerHost", - "loc": "3:0-46" - }, - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldSitePickerHost", - "loc": "3:0-46" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePickerHost", - "loc": "15:0-72" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerHost", - "loc": "58:42-69" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __spreadArrays = (this && this.__spreadArrays) || function () {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n};\nimport * as React from 'react';\nimport SPSiteSearchService from '../../services/SPSiteSearchService';\nimport FieldErrorMessage from '../errorMessage/FieldErrorMessage';\nimport * as telemetry from '../../common/telemetry';\nimport { Label } from 'office-ui-fabric-react/lib/Label';\nimport { SearchBox } from 'office-ui-fabric-react/lib/SearchBox';\nimport * as strings from 'PropertyControlStrings';\nimport { Spinner, SpinnerSize } from 'office-ui-fabric-react/lib/Spinner';\nimport { PropertyFieldSitePickerListItem } from './PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem';\nimport styles from './PropertyFieldSitePickerHost.module.scss';\nimport { initializeIcons } from '@uifabric/icons';\nimport { Async } from '@uifabric/utilities/lib';\nvar PropertyFieldSitePickerHost = /** @class */ (function (_super) {\n __extends(PropertyFieldSitePickerHost, _super);\n function PropertyFieldSitePickerHost(props) {\n var _this = _super.call(this, props) || this;\n _this.onSearchFieldChange = function (newValue) { return __awaiter(_this, void 0, void 0, function () {\n var _a, context_1, trimDuplicates, additionalQuery, sites, error_1;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n if (!(newValue && newValue.length > 2)) return [3 /*break*/, 6];\n this.setState({ isLoading: true });\n _b.label = 1;\n case 1:\n _b.trys.push([1, 3, 4, 5]);\n _a = this.props, context_1 = _a.context, trimDuplicates = _a.trimDuplicates, additionalQuery = _a.additionalQuery;\n return [4 /*yield*/, this.searchService.searchSites(this.props.context, newValue, !!trimDuplicates, additionalQuery)];\n case 2:\n sites = _b.sent();\n this.setState({ siteSearchResults: sites });\n return [3 /*break*/, 5];\n case 3:\n error_1 = _b.sent();\n this.setState({ errorMessage: error_1 });\n return [3 /*break*/, 5];\n case 4:\n this.setState({ isLoading: false });\n return [7 /*endfinally*/];\n case 5: return [3 /*break*/, 7];\n case 6:\n this.setState({ siteSearchResults: [] });\n _b.label = 7;\n case 7: return [2 /*return*/];\n }\n });\n }); };\n _this.handleCheckboxChange = function (site, checked) {\n var selectedSites = __spreadArrays(_this.state.selectedSites);\n if (checked) {\n if (_this.props.multiSelect) {\n selectedSites.push(site);\n }\n else {\n selectedSites = [site];\n }\n }\n else {\n if (_this.props.multiSelect) {\n selectedSites.splice(selectedSites.indexOf(site), 1);\n }\n else {\n selectedSites = [];\n }\n }\n _this.props.onPropertyChange(_this.props.targetProperty, _this.state.selectedSites, selectedSites);\n // Trigger the apply button\n if (typeof _this.props.onChange !== 'undefined' && _this.props.onChange !== null) {\n _this.props.onChange(_this.props.targetProperty, selectedSites);\n }\n _this.setState({ selectedSites: selectedSites });\n };\n initializeIcons();\n telemetry.track('PropertyFieldSitePicker', {\n disabled: props.disabled\n });\n _this.state = {\n isLoading: false,\n selectedSites: props.initialSites || [],\n siteSearchResults: [],\n errorMessage: null\n };\n _this.async = new Async(_this);\n _this.searchService = new SPSiteSearchService();\n return _this;\n }\n PropertyFieldSitePickerHost.prototype.render = function () {\n var _this = this;\n var _a = this.state, isLoading = _a.isLoading, siteSearchResults = _a.siteSearchResults, selectedSites = _a.selectedSites;\n return (React.createElement(\"div\", null,\n this.props.label && React.createElement(Label, null, this.props.label),\n React.createElement(SearchBox, { placeholder: strings.SitePickerSearchBoxPlaceholder, onChanged: this.async.debounce(this.onSearchFieldChange, this.props.deferredValidationTime) }),\n isLoading &&\n React.createElement(Spinner, { size: SpinnerSize.medium }),\n !isLoading && siteSearchResults &&\n React.createElement(\"div\", null,\n siteSearchResults.length > 0 &&\n React.createElement(\"ul\", { className: styles.siteList }, siteSearchResults.map(function (site) {\n return React.createElement(PropertyFieldSitePickerListItem, { key: site.url, checked: selectedSites.filter(function (s) { return s.url === site.url; }).length > 0, handleCheckboxChange: _this.handleCheckboxChange, site: site });\n })),\n siteSearchResults.length === 0 &&\n React.createElement(Label, null, strings.SitePickerNoResults)),\n selectedSites && selectedSites.length > 0 &&\n React.createElement(\"div\", null,\n React.createElement(Label, { className: styles.bold },\n selectedSites.length,\n \" \",\n strings.SitePickerSitesChosen),\n React.createElement(\"ul\", { className: styles.siteList }, selectedSites.map(function (site) {\n return React.createElement(PropertyFieldSitePickerListItem, { key: site.url, checked: selectedSites.filter(function (s) { return s.url === site.url; }).length > 0, handleCheckboxChange: _this.handleCheckboxChange, site: site });\n }))),\n React.createElement(FieldErrorMessage, { errorMessage: this.state.errorMessage })));\n };\n return PropertyFieldSitePickerHost;\n}(React.Component));\nexport default PropertyFieldSitePickerHost;\n//# sourceMappingURL=PropertyFieldSitePickerHost.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "index": 850, - "index2": 847, - "size": 8208, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../services/SPSiteSearchService", - "loc": "58:0-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "userRequest": "../../services/SPSiteSearchService", - "loc": "140:34-53" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport { SPHttpClient } from '@microsoft/sp-http';\nimport SPPeoplePickerMockHttpClient from './SPPeopleSearchMockService';\n/**\n * Service implementation to search sites in SharePoint\n */\nvar SPSiteSearchService = /** @class */ (function () {\n function SPSiteSearchService() {\n }\n /**\n * Search sites from the SharePoint\n */\n SPSiteSearchService.prototype.searchSites = function (ctx, query, trimDuplicates, additionalQuery) {\n return __awaiter(this, void 0, void 0, function () {\n var rootUrl, queryText, startRow, rowLimit, totalRows, values, searchRequest, requestUrl, searchResponse, sitesResponse, relevantResults, res;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n rootUrl = ctx.pageContext.web.absoluteUrl;\n if (ctx.pageContext.web.serverRelativeUrl !== \"/\") {\n rootUrl = ctx.pageContext.web.absoluteUrl.replace(ctx.pageContext.web.serverRelativeUrl, '');\n }\n queryText = \"(contentclass:STS_Site contentclass:STS_Web Path:\" + rootUrl + \"* Title:\" + query + \"*)\";\n if (additionalQuery) {\n queryText += \" AND (\" + additionalQuery + \")\";\n }\n startRow = 0;\n rowLimit = 500;\n totalRows = 0;\n values = [];\n searchRequest = {\n QueryTemplate: queryText,\n RowLimit: rowLimit,\n TrimDuplicates: trimDuplicates,\n SelectProperties: ['SiteId', 'SiteID', 'WebId', 'DepartmentId', 'Title', 'Path'],\n StartRow: 0\n };\n requestUrl = ctx.pageContext.web.absoluteUrl + \"/_api/search/postquery\";\n _a.label = 1;\n case 1:\n searchRequest.StartRow = startRow;\n return [4 /*yield*/, ctx.spHttpClient.post(requestUrl, SPHttpClient.configurations.v1, {\n body: JSON.stringify({ request: searchRequest }),\n headers: {\n 'Accept': 'application/json;odata=nometadata',\n 'Content-Type': 'application/json;charset=utf-8',\n 'odata-version': '3.0'\n }\n })];\n case 2:\n searchResponse = _a.sent();\n return [4 /*yield*/, searchResponse.json()];\n case 3:\n sitesResponse = _a.sent();\n relevantResults = sitesResponse.PrimaryQueryResult.RelevantResults;\n values.push.apply(values, relevantResults.Table.Rows);\n totalRows = relevantResults.TotalRows;\n startRow += rowLimit;\n _a.label = 4;\n case 4:\n if (values.length < totalRows) return [3 /*break*/, 1];\n _a.label = 5;\n case 5:\n res = [];\n res = values.map(function (element) {\n var site = {};\n element.Cells.forEach(function (cell) {\n switch (cell.Key) {\n case 'Title':\n site.title = cell.Value;\n break;\n case 'Path':\n site.url = cell.Value;\n break;\n case 'SiteId':\n case 'SiteID':\n site.id = cell.Value;\n break;\n case 'WebId':\n site.webId = cell.Value;\n break;\n case 'DepartmentId':\n if (cell.Value) {\n if (cell.Value.indexOf('{') === 0) {\n site.hubSiteId = cell.Value.slice(1, -1);\n }\n else {\n site.hubSiteId = cell.Value;\n }\n }\n break;\n }\n });\n return site;\n });\n return [2 /*return*/, res];\n }\n });\n });\n };\n /**\n * Returns fake sites results for the Mock mode\n */\n SPSiteSearchService.prototype.searchSitesFromMock = function (ctx, query) {\n return SPPeoplePickerMockHttpClient.searchPeople(ctx.pageContext.web.absoluteUrl).then(function () {\n var results = [\n { title: 'Contoso Site', id: '611453e1-5b5d-45ec-94aa-a180a02df897', url: ctx.pageContext.web.absoluteUrl }\n ];\n return results;\n });\n };\n return SPSiteSearchService;\n}());\nexport default SPSiteSearchService;\n//# sourceMappingURL=SPSiteSearchService.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "index": 853, - "index2": 854, - "size": 958, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem", - "loc": "65:0-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem", - "loc": "155:55-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem", - "loc": "166:51-82" - } - ], - "usedExports": [ - "PropertyFieldSitePickerListItem" - ], - "providedExports": [ - "PropertyFieldSitePickerListItem" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import * as React from 'react';\nimport { Checkbox } from 'office-ui-fabric-react/lib/Checkbox';\nimport styles from './PropertyFieldSitePickerListItem.module.scss';\nimport { toRelativeUrl } from '../../../helpers/GeneralHelper';\nexport var PropertyFieldSitePickerListItem = function (props) {\n var site = props.site, checked = props.checked;\n return (React.createElement(\"li\", { className: styles.siteListItem, key: site.url },\n React.createElement(Checkbox, { className: styles.checkbox, checked: checked, onChange: function (ev, nowChecked) { return props.handleCheckboxChange(site, nowChecked); } }),\n React.createElement(\"div\", { className: styles.content },\n React.createElement(\"span\", { className: styles.title, title: site.title }, site.title),\n React.createElement(\"span\", { className: styles.url, title: site.url }, toRelativeUrl(site.url)))));\n};\n//# sourceMappingURL=PropertyFieldSitePickerListItem.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "index": 860, - "index2": 857, - "size": 264, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePickerHost.module.scss", - "loc": "66:0-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerHost.module.scss", - "loc": "154:63-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerHost.module.scss", - "loc": "161:60-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerHost.module.scss", - "loc": "165:59-65" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/* tslint:disable */\nrequire(\"./PropertyFieldSitePickerHost.module.css\");\nvar styles = {\n siteList: 'siteList_80f9934a',\n bold: 'bold_80f9934a'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=PropertyFieldSitePickerHost.module.scss.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "index": 863, - "index2": 879, - "size": 1766, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/icons", - "loc": "67:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/icons", - "loc": "129:8-23" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { initializeIcons as i } from './fabric-icons';\nimport { initializeIcons as i0 } from './fabric-icons-0';\nimport { initializeIcons as i1 } from './fabric-icons-1';\nimport { initializeIcons as i2 } from './fabric-icons-2';\nimport { initializeIcons as i3 } from './fabric-icons-3';\nimport { initializeIcons as i4 } from './fabric-icons-4';\nimport { initializeIcons as i5 } from './fabric-icons-5';\nimport { initializeIcons as i6 } from './fabric-icons-6';\nimport { initializeIcons as i7 } from './fabric-icons-7';\nimport { initializeIcons as i8 } from './fabric-icons-8';\nimport { initializeIcons as i9 } from './fabric-icons-9';\nimport { initializeIcons as i10 } from './fabric-icons-10';\nimport { initializeIcons as i11 } from './fabric-icons-11';\nimport { initializeIcons as i12 } from './fabric-icons-12';\nimport { initializeIcons as i13 } from './fabric-icons-13';\nimport { initializeIcons as i14 } from './fabric-icons-14';\nimport { initializeIcons as i15 } from './fabric-icons-15';\nimport { initializeIcons as i16 } from './fabric-icons-16';\nimport { initializeIcons as i17 } from './fabric-icons-17';\nimport { registerIconAliases } from './iconAliases';\nvar DEFAULT_BASE_URL = 'https://spoprod-a.akamaihd.net/files/fabric/assets/icons/';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = DEFAULT_BASE_URL; }\n [\n i,\n i0,\n i1,\n i2,\n i3,\n i4,\n i5,\n i6,\n i7,\n i8,\n i9,\n i10,\n i11,\n i12,\n i13,\n i14,\n i15,\n i16,\n i17,\n ].forEach(function (initialize) { return initialize(baseUrl, options); });\n registerIconAliases();\n}\nimport './version';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/services/SPPeopleSearchMockService.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/services/SPPeopleSearchMockService.js", - "index": 852, - "index2": 846, - "size": 715, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "type": "harmony side effect evaluation", - "userRequest": "./SPPeopleSearchMockService", - "loc": "38:0-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "type": "harmony import specifier", - "userRequest": "./SPPeopleSearchMockService", - "loc": "140:15-43" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Defines a http client to request mock data to use the web part with the local workbench\n */\nvar SPPeoplePickerMockHttpClient = /** @class */ (function () {\n function SPPeoplePickerMockHttpClient() {\n }\n /**\n * Mock search People method\n */\n SPPeoplePickerMockHttpClient.searchPeople = function (restUrl, options) {\n return new Promise(function (resolve) {\n resolve(SPPeoplePickerMockHttpClient._results);\n });\n };\n /**\n * Mock SharePoint result sample\n */\n SPPeoplePickerMockHttpClient._results = [];\n return SPPeoplePickerMockHttpClient;\n}());\nexport default SPPeoplePickerMockHttpClient;\n//# sourceMappingURL=SPPeopleSearchMockService.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js", - "index": 854, - "index2": 850, - "size": 375, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePickerListItem.module.scss", - "loc": "3:0-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerListItem.module.scss", - "loc": "7:51-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerListItem.module.scss", - "loc": "8:51-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerListItem.module.scss", - "loc": "9:48-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerListItem.module.scss", - "loc": "10:53-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldSitePickerListItem.module.scss", - "loc": "11:53-59" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/* tslint:disable */\nrequire(\"./PropertyFieldSitePickerListItem.module.css\");\nvar styles = {\n siteListItem: 'siteListItem_03474fe9',\n checkbox: 'checkbox_03474fe9',\n content: 'content_03474fe9',\n title: 'title_03474fe9',\n url: 'url_03474fe9'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=PropertyFieldSitePickerListItem.module.scss.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons.js", - "index": 864, - "index2": 858, - "size": 2607, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons", - "loc": "1:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons", - "loc": "25:8-9" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none',\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-a13498cf.woff') format('woff')\",\n },\n icons: {\n GlobalNavButton: '\\uE700',\n ChevronDown: '\\uE70D',\n ChevronUp: '\\uE70E',\n Edit: '\\uE70F',\n Add: '\\uE710',\n Cancel: '\\uE711',\n More: '\\uE712',\n Settings: '\\uE713',\n Mail: '\\uE715',\n Filter: '\\uE71C',\n Search: '\\uE721',\n Share: '\\uE72D',\n BlockedSite: '\\uE72F',\n FavoriteStar: '\\uE734',\n FavoriteStarFill: '\\uE735',\n CheckMark: '\\uE73E',\n Delete: '\\uE74D',\n ChevronLeft: '\\uE76B',\n ChevronRight: '\\uE76C',\n Calendar: '\\uE787',\n Megaphone: '\\uE789',\n Undo: '\\uE7A7',\n Flag: '\\uE7C1',\n Page: '\\uE7C3',\n Pinned: '\\uE840',\n View: '\\uE890',\n Clear: '\\uE894',\n Download: '\\uE896',\n Upload: '\\uE898',\n Folder: '\\uE8B7',\n Sort: '\\uE8CB',\n AlignRight: '\\uE8E2',\n AlignLeft: '\\uE8E4',\n Tag: '\\uE8EC',\n AddFriend: '\\uE8FA',\n Info: '\\uE946',\n SortLines: '\\uE9D0',\n List: '\\uEA37',\n CircleRing: '\\uEA3A',\n Heart: '\\uEB51',\n HeartFill: '\\uEB52',\n Tiles: '\\uECA5',\n Embed: '\\uECCE',\n Glimmer: '\\uECF4',\n Ascending: '\\uEDC0',\n Descending: '\\uEDC1',\n SortUp: '\\uEE68',\n SortDown: '\\uEE69',\n SyncToPC: '\\uEE6E',\n LargeGrid: '\\uEECB',\n SkypeCheck: '\\uEF80',\n SkypeClock: '\\uEF81',\n SkypeMinus: '\\uEF82',\n ClearFilter: '\\uEF8F',\n Flow: '\\uEF90',\n StatusCircleCheckmark: '\\uF13E',\n MoreVertical: '\\uF2BC',\n },\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "index": 865, - "index2": 859, - "size": 4389, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-0", - "loc": "2:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-0", - "loc": "26:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-0\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-0-467ee27f.woff') format('woff')\"\n },\n icons: {\n 'PageLink': '\\uE302',\n 'CommentSolid': '\\uE30E',\n 'ChangeEntitlements': '\\uE310',\n 'Installation': '\\uE311',\n 'WebAppBuilderModule': '\\uE313',\n 'WebAppBuilderFragment': '\\uE314',\n 'WebAppBuilderSlot': '\\uE315',\n 'BullseyeTargetEdit': '\\uE319',\n 'WebAppBuilderFragmentCreate': '\\uE31B',\n 'PageData': '\\uE31C',\n 'PageHeaderEdit': '\\uE31D',\n 'ProductList': '\\uE31E',\n 'UnpublishContent': '\\uE31F',\n 'DependencyAdd': '\\uE344',\n 'DependencyRemove': '\\uE345',\n 'EntitlementPolicy': '\\uE346',\n 'EntitlementRedemption': '\\uE347',\n 'SchoolDataSyncLogo': '\\uE34C',\n 'PinSolid12': '\\uE352',\n 'PinSolidOff12': '\\uE353',\n 'AddLink': '\\uE35E',\n 'SharepointAppIcon16': '\\uE365',\n 'DataflowsLink': '\\uE366',\n 'TimePicker': '\\uE367',\n 'UserWarning': '\\uE368',\n 'ComplianceAudit': '\\uE369',\n 'InternetSharing': '\\uE704',\n 'Brightness': '\\uE706',\n 'MapPin': '\\uE707',\n 'Airplane': '\\uE709',\n 'Tablet': '\\uE70A',\n 'QuickNote': '\\uE70B',\n 'Video': '\\uE714',\n 'People': '\\uE716',\n 'Phone': '\\uE717',\n 'Pin': '\\uE718',\n 'Shop': '\\uE719',\n 'Stop': '\\uE71A',\n 'Link': '\\uE71B',\n 'AllApps': '\\uE71D',\n 'Zoom': '\\uE71E',\n 'ZoomOut': '\\uE71F',\n 'Microphone': '\\uE720',\n 'Camera': '\\uE722',\n 'Attach': '\\uE723',\n 'Send': '\\uE724',\n 'FavoriteList': '\\uE728',\n 'PageSolid': '\\uE729',\n 'Forward': '\\uE72A',\n 'Back': '\\uE72B',\n 'Refresh': '\\uE72C',\n 'Lock': '\\uE72E',\n 'ReportHacked': '\\uE730',\n 'EMI': '\\uE731',\n 'MiniLink': '\\uE732',\n 'Blocked': '\\uE733',\n 'ReadingMode': '\\uE736',\n 'Favicon': '\\uE737',\n 'Remove': '\\uE738',\n 'Checkbox': '\\uE739',\n 'CheckboxComposite': '\\uE73A',\n 'CheckboxFill': '\\uE73B',\n 'CheckboxIndeterminate': '\\uE73C',\n 'CheckboxCompositeReversed': '\\uE73D',\n 'BackToWindow': '\\uE73F',\n 'FullScreen': '\\uE740',\n 'Print': '\\uE749',\n 'Up': '\\uE74A',\n 'Down': '\\uE74B',\n 'OEM': '\\uE74C',\n 'Save': '\\uE74E',\n 'ReturnKey': '\\uE751',\n 'Cloud': '\\uE753',\n 'Flashlight': '\\uE754',\n 'CommandPrompt': '\\uE756',\n 'Sad': '\\uE757',\n 'RealEstate': '\\uE758',\n 'SIPMove': '\\uE759',\n 'EraseTool': '\\uE75C',\n 'GripperTool': '\\uE75E',\n 'Dialpad': '\\uE75F',\n 'PageLeft': '\\uE760',\n 'PageRight': '\\uE761',\n 'MultiSelect': '\\uE762',\n 'KeyboardClassic': '\\uE765',\n 'Play': '\\uE768',\n 'Pause': '\\uE769',\n 'InkingTool': '\\uE76D',\n 'Emoji2': '\\uE76E',\n 'GripperBarHorizontal': '\\uE76F',\n 'System': '\\uE770',\n 'Personalize': '\\uE771',\n 'SearchAndApps': '\\uE773',\n 'Globe': '\\uE774',\n 'EaseOfAccess': '\\uE776',\n 'ContactInfo': '\\uE779',\n 'Unpin': '\\uE77A',\n 'Contact': '\\uE77B',\n 'Memo': '\\uE77C',\n 'IncomingCall': '\\uE77E'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-0.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "index": 866, - "index2": 860, - "size": 4261, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-1", - "loc": "3:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-1", - "loc": "27:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-1\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-1-4d521695.woff') format('woff')\"\n },\n icons: {\n 'Paste': '\\uE77F',\n 'WindowsLogo': '\\uE782',\n 'Error': '\\uE783',\n 'GripperBarVertical': '\\uE784',\n 'Unlock': '\\uE785',\n 'Slideshow': '\\uE786',\n 'Trim': '\\uE78A',\n 'AutoEnhanceOn': '\\uE78D',\n 'AutoEnhanceOff': '\\uE78E',\n 'Color': '\\uE790',\n 'SaveAs': '\\uE792',\n 'Light': '\\uE793',\n 'Filters': '\\uE795',\n 'AspectRatio': '\\uE799',\n 'Contrast': '\\uE7A1',\n 'Redo': '\\uE7A6',\n 'Crop': '\\uE7A8',\n 'PhotoCollection': '\\uE7AA',\n 'Album': '\\uE7AB',\n 'Rotate': '\\uE7AD',\n 'PanoIndicator': '\\uE7B0',\n 'Translate': '\\uE7B2',\n 'RedEye': '\\uE7B3',\n 'ViewOriginal': '\\uE7B4',\n 'ThumbnailView': '\\uE7B6',\n 'Package': '\\uE7B8',\n 'Telemarketer': '\\uE7B9',\n 'Warning': '\\uE7BA',\n 'Financial': '\\uE7BB',\n 'Education': '\\uE7BE',\n 'ShoppingCart': '\\uE7BF',\n 'Train': '\\uE7C0',\n 'Move': '\\uE7C2',\n 'TouchPointer': '\\uE7C9',\n 'Merge': '\\uE7D5',\n 'TurnRight': '\\uE7DB',\n 'Ferry': '\\uE7E3',\n 'Highlight': '\\uE7E6',\n 'PowerButton': '\\uE7E8',\n 'Tab': '\\uE7E9',\n 'Admin': '\\uE7EF',\n 'TVMonitor': '\\uE7F4',\n 'Speakers': '\\uE7F5',\n 'Game': '\\uE7FC',\n 'HorizontalTabKey': '\\uE7FD',\n 'UnstackSelected': '\\uE7FE',\n 'StackIndicator': '\\uE7FF',\n 'Nav2DMapView': '\\uE800',\n 'StreetsideSplitMinimize': '\\uE802',\n 'Car': '\\uE804',\n 'Bus': '\\uE806',\n 'EatDrink': '\\uE807',\n 'SeeDo': '\\uE808',\n 'LocationCircle': '\\uE80E',\n 'Home': '\\uE80F',\n 'SwitcherStartEnd': '\\uE810',\n 'ParkingLocation': '\\uE811',\n 'IncidentTriangle': '\\uE814',\n 'Touch': '\\uE815',\n 'MapDirections': '\\uE816',\n 'CaretHollow': '\\uE817',\n 'CaretSolid': '\\uE818',\n 'History': '\\uE81C',\n 'Location': '\\uE81D',\n 'MapLayers': '\\uE81E',\n 'SearchNearby': '\\uE820',\n 'Work': '\\uE821',\n 'Recent': '\\uE823',\n 'Hotel': '\\uE824',\n 'Bank': '\\uE825',\n 'LocationDot': '\\uE827',\n 'Dictionary': '\\uE82D',\n 'ChromeBack': '\\uE830',\n 'FolderOpen': '\\uE838',\n 'PinnedFill': '\\uE842',\n 'RevToggleKey': '\\uE845',\n 'USB': '\\uE88E',\n 'Previous': '\\uE892',\n 'Next': '\\uE893',\n 'Sync': '\\uE895',\n 'Help': '\\uE897',\n 'Emoji': '\\uE899',\n 'MailForward': '\\uE89C',\n 'ClosePane': '\\uE89F',\n 'OpenPane': '\\uE8A0',\n 'PreviewLink': '\\uE8A1',\n 'ZoomIn': '\\uE8A3',\n 'Bookmarks': '\\uE8A4',\n 'Document': '\\uE8A5',\n 'ProtectedDocument': '\\uE8A6',\n 'OpenInNewWindow': '\\uE8A7',\n 'MailFill': '\\uE8A8',\n 'ViewAll': '\\uE8A9',\n 'Switch': '\\uE8AB',\n 'Rename': '\\uE8AC',\n 'Go': '\\uE8AD',\n 'Remote': '\\uE8AF',\n 'SelectAll': '\\uE8B3',\n 'Orientation': '\\uE8B4',\n 'Import': '\\uE8B5'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-1.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "index": 867, - "index2": 861, - "size": 4374, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-2", - "loc": "4:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-2", - "loc": "28:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-2\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-2-63c99abf.woff') format('woff')\"\n },\n icons: {\n 'Picture': '\\uE8B9',\n 'ChromeClose': '\\uE8BB',\n 'ShowResults': '\\uE8BC',\n 'Message': '\\uE8BD',\n 'CalendarDay': '\\uE8BF',\n 'CalendarWeek': '\\uE8C0',\n 'MailReplyAll': '\\uE8C2',\n 'Read': '\\uE8C3',\n 'Cut': '\\uE8C6',\n 'PaymentCard': '\\uE8C7',\n 'Copy': '\\uE8C8',\n 'Important': '\\uE8C9',\n 'MailReply': '\\uE8CA',\n 'GotoToday': '\\uE8D1',\n 'Font': '\\uE8D2',\n 'FontColor': '\\uE8D3',\n 'FolderFill': '\\uE8D5',\n 'Permissions': '\\uE8D7',\n 'DisableUpdates': '\\uE8D8',\n 'Unfavorite': '\\uE8D9',\n 'Italic': '\\uE8DB',\n 'Underline': '\\uE8DC',\n 'Bold': '\\uE8DD',\n 'MoveToFolder': '\\uE8DE',\n 'Dislike': '\\uE8E0',\n 'Like': '\\uE8E1',\n 'AlignCenter': '\\uE8E3',\n 'OpenFile': '\\uE8E5',\n 'ClearSelection': '\\uE8E6',\n 'FontDecrease': '\\uE8E7',\n 'FontIncrease': '\\uE8E8',\n 'FontSize': '\\uE8E9',\n 'CellPhone': '\\uE8EA',\n 'RepeatOne': '\\uE8ED',\n 'RepeatAll': '\\uE8EE',\n 'Calculator': '\\uE8EF',\n 'Library': '\\uE8F1',\n 'PostUpdate': '\\uE8F3',\n 'NewFolder': '\\uE8F4',\n 'CalendarReply': '\\uE8F5',\n 'UnsyncFolder': '\\uE8F6',\n 'SyncFolder': '\\uE8F7',\n 'BlockContact': '\\uE8F8',\n 'Accept': '\\uE8FB',\n 'BulletedList': '\\uE8FD',\n 'Preview': '\\uE8FF',\n 'News': '\\uE900',\n 'Chat': '\\uE901',\n 'Group': '\\uE902',\n 'World': '\\uE909',\n 'Comment': '\\uE90A',\n 'DockLeft': '\\uE90C',\n 'DockRight': '\\uE90D',\n 'Repair': '\\uE90F',\n 'Accounts': '\\uE910',\n 'Street': '\\uE913',\n 'RadioBullet': '\\uE915',\n 'Stopwatch': '\\uE916',\n 'Clock': '\\uE917',\n 'WorldClock': '\\uE918',\n 'AlarmClock': '\\uE919',\n 'Photo': '\\uE91B',\n 'ActionCenter': '\\uE91C',\n 'Hospital': '\\uE91D',\n 'Timer': '\\uE91E',\n 'FullCircleMask': '\\uE91F',\n 'LocationFill': '\\uE920',\n 'ChromeMinimize': '\\uE921',\n 'ChromeRestore': '\\uE923',\n 'Annotation': '\\uE924',\n 'Fingerprint': '\\uE928',\n 'Handwriting': '\\uE929',\n 'ChromeFullScreen': '\\uE92D',\n 'Completed': '\\uE930',\n 'Label': '\\uE932',\n 'FlickDown': '\\uE935',\n 'FlickUp': '\\uE936',\n 'FlickLeft': '\\uE937',\n 'FlickRight': '\\uE938',\n 'MiniExpand': '\\uE93A',\n 'MiniContract': '\\uE93B',\n 'Streaming': '\\uE93E',\n 'MusicInCollection': '\\uE940',\n 'OneDriveLogo': '\\uE941',\n 'CompassNW': '\\uE942',\n 'Code': '\\uE943',\n 'LightningBolt': '\\uE945',\n 'CalculatorMultiply': '\\uE947',\n 'CalculatorAddition': '\\uE948',\n 'CalculatorSubtract': '\\uE949',\n 'CalculatorPercentage': '\\uE94C',\n 'CalculatorEqualTo': '\\uE94E',\n 'PrintfaxPrinterFile': '\\uE956',\n 'StorageOptical': '\\uE958',\n 'Communications': '\\uE95A',\n 'Headset': '\\uE95B',\n 'Health': '\\uE95E',\n 'Webcam2': '\\uE960',\n 'FrontCamera': '\\uE96B',\n 'ChevronUpSmall': '\\uE96D'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-2.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "index": 868, - "index2": 862, - "size": 4504, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-3", - "loc": "5:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-3", - "loc": "29:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-3\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-3-089e217a.woff') format('woff')\"\n },\n icons: {\n 'ChevronDownSmall': '\\uE96E',\n 'ChevronLeftSmall': '\\uE96F',\n 'ChevronRightSmall': '\\uE970',\n 'ChevronUpMed': '\\uE971',\n 'ChevronDownMed': '\\uE972',\n 'ChevronLeftMed': '\\uE973',\n 'ChevronRightMed': '\\uE974',\n 'Devices2': '\\uE975',\n 'PC1': '\\uE977',\n 'PresenceChickletVideo': '\\uE979',\n 'Reply': '\\uE97A',\n 'HalfAlpha': '\\uE97E',\n 'ConstructionCone': '\\uE98F',\n 'DoubleChevronLeftMed': '\\uE991',\n 'Volume0': '\\uE992',\n 'Volume1': '\\uE993',\n 'Volume2': '\\uE994',\n 'Volume3': '\\uE995',\n 'Chart': '\\uE999',\n 'Robot': '\\uE99A',\n 'Manufacturing': '\\uE99C',\n 'LockSolid': '\\uE9A2',\n 'FitPage': '\\uE9A6',\n 'FitWidth': '\\uE9A7',\n 'BidiLtr': '\\uE9AA',\n 'BidiRtl': '\\uE9AB',\n 'RightDoubleQuote': '\\uE9B1',\n 'Sunny': '\\uE9BD',\n 'CloudWeather': '\\uE9BE',\n 'Cloudy': '\\uE9BF',\n 'PartlyCloudyDay': '\\uE9C0',\n 'PartlyCloudyNight': '\\uE9C1',\n 'ClearNight': '\\uE9C2',\n 'RainShowersDay': '\\uE9C3',\n 'Rain': '\\uE9C4',\n 'Thunderstorms': '\\uE9C6',\n 'RainSnow': '\\uE9C7',\n 'Snow': '\\uE9C8',\n 'BlowingSnow': '\\uE9C9',\n 'Frigid': '\\uE9CA',\n 'Fog': '\\uE9CB',\n 'Squalls': '\\uE9CC',\n 'Duststorm': '\\uE9CD',\n 'Unknown': '\\uE9CE',\n 'Precipitation': '\\uE9CF',\n 'Ribbon': '\\uE9D1',\n 'AreaChart': '\\uE9D2',\n 'Assign': '\\uE9D3',\n 'FlowChart': '\\uE9D4',\n 'CheckList': '\\uE9D5',\n 'Diagnostic': '\\uE9D9',\n 'Generate': '\\uE9DA',\n 'LineChart': '\\uE9E6',\n 'Equalizer': '\\uE9E9',\n 'BarChartHorizontal': '\\uE9EB',\n 'BarChartVertical': '\\uE9EC',\n 'Freezing': '\\uE9EF',\n 'FunnelChart': '\\uE9F1',\n 'Processing': '\\uE9F5',\n 'Quantity': '\\uE9F8',\n 'ReportDocument': '\\uE9F9',\n 'StackColumnChart': '\\uE9FC',\n 'SnowShowerDay': '\\uE9FD',\n 'HailDay': '\\uEA00',\n 'WorkFlow': '\\uEA01',\n 'HourGlass': '\\uEA03',\n 'StoreLogoMed20': '\\uEA04',\n 'TimeSheet': '\\uEA05',\n 'TriangleSolid': '\\uEA08',\n 'UpgradeAnalysis': '\\uEA0B',\n 'VideoSolid': '\\uEA0C',\n 'RainShowersNight': '\\uEA0F',\n 'SnowShowerNight': '\\uEA11',\n 'Teamwork': '\\uEA12',\n 'HailNight': '\\uEA13',\n 'PeopleAdd': '\\uEA15',\n 'Glasses': '\\uEA16',\n 'DateTime2': '\\uEA17',\n 'Shield': '\\uEA18',\n 'Header1': '\\uEA19',\n 'PageAdd': '\\uEA1A',\n 'NumberedList': '\\uEA1C',\n 'PowerBILogo': '\\uEA1E',\n 'Info2': '\\uEA1F',\n 'MusicInCollectionFill': '\\uEA36',\n 'Asterisk': '\\uEA38',\n 'ErrorBadge': '\\uEA39',\n 'CircleFill': '\\uEA3B',\n 'Record2': '\\uEA3F',\n 'AllAppsMirrored': '\\uEA40',\n 'BookmarksMirrored': '\\uEA41',\n 'BulletedListMirrored': '\\uEA42',\n 'CaretHollowMirrored': '\\uEA45',\n 'CaretSolidMirrored': '\\uEA46',\n 'ChromeBackMirrored': '\\uEA47',\n 'ClearSelectionMirrored': '\\uEA48',\n 'ClosePaneMirrored': '\\uEA49',\n 'DockLeftMirrored': '\\uEA4C',\n 'DoubleChevronLeftMedMirrored': '\\uEA4D',\n 'GoMirrored': '\\uEA4F'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-3.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "index": 869, - "index2": 863, - "size": 4421, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-4", - "loc": "6:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-4", - "loc": "30:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-4\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-4-a656cc0a.woff') format('woff')\"\n },\n icons: {\n 'HelpMirrored': '\\uEA51',\n 'ImportMirrored': '\\uEA52',\n 'ImportAllMirrored': '\\uEA53',\n 'ListMirrored': '\\uEA55',\n 'MailForwardMirrored': '\\uEA56',\n 'MailReplyMirrored': '\\uEA57',\n 'MailReplyAllMirrored': '\\uEA58',\n 'MiniContractMirrored': '\\uEA59',\n 'MiniExpandMirrored': '\\uEA5A',\n 'OpenPaneMirrored': '\\uEA5B',\n 'ParkingLocationMirrored': '\\uEA5E',\n 'SendMirrored': '\\uEA63',\n 'ShowResultsMirrored': '\\uEA65',\n 'ThumbnailViewMirrored': '\\uEA67',\n 'Media': '\\uEA69',\n 'Devices3': '\\uEA6C',\n 'Focus': '\\uEA6F',\n 'VideoLightOff': '\\uEA74',\n 'Lightbulb': '\\uEA80',\n 'StatusTriangle': '\\uEA82',\n 'VolumeDisabled': '\\uEA85',\n 'Puzzle': '\\uEA86',\n 'EmojiNeutral': '\\uEA87',\n 'EmojiDisappointed': '\\uEA88',\n 'HomeSolid': '\\uEA8A',\n 'Ringer': '\\uEA8F',\n 'PDF': '\\uEA90',\n 'HeartBroken': '\\uEA92',\n 'StoreLogo16': '\\uEA96',\n 'MultiSelectMirrored': '\\uEA98',\n 'Broom': '\\uEA99',\n 'AddToShoppingList': '\\uEA9A',\n 'Cocktails': '\\uEA9D',\n 'Wines': '\\uEABF',\n 'Articles': '\\uEAC1',\n 'Cycling': '\\uEAC7',\n 'DietPlanNotebook': '\\uEAC8',\n 'Pill': '\\uEACB',\n 'ExerciseTracker': '\\uEACC',\n 'HandsFree': '\\uEAD0',\n 'Medical': '\\uEAD4',\n 'Running': '\\uEADA',\n 'Weights': '\\uEADB',\n 'Trackers': '\\uEADF',\n 'AddNotes': '\\uEAE3',\n 'AllCurrency': '\\uEAE4',\n 'BarChart4': '\\uEAE7',\n 'CirclePlus': '\\uEAEE',\n 'Coffee': '\\uEAEF',\n 'Cotton': '\\uEAF3',\n 'Market': '\\uEAFC',\n 'Money': '\\uEAFD',\n 'PieDouble': '\\uEB04',\n 'PieSingle': '\\uEB05',\n 'RemoveFilter': '\\uEB08',\n 'Savings': '\\uEB0B',\n 'Sell': '\\uEB0C',\n 'StockDown': '\\uEB0F',\n 'StockUp': '\\uEB11',\n 'Lamp': '\\uEB19',\n 'Source': '\\uEB1B',\n 'MSNVideos': '\\uEB1C',\n 'Cricket': '\\uEB1E',\n 'Golf': '\\uEB1F',\n 'Baseball': '\\uEB20',\n 'Soccer': '\\uEB21',\n 'MoreSports': '\\uEB22',\n 'AutoRacing': '\\uEB24',\n 'CollegeHoops': '\\uEB25',\n 'CollegeFootball': '\\uEB26',\n 'ProFootball': '\\uEB27',\n 'ProHockey': '\\uEB28',\n 'Rugby': '\\uEB2D',\n 'SubstitutionsIn': '\\uEB31',\n 'Tennis': '\\uEB33',\n 'Arrivals': '\\uEB34',\n 'Design': '\\uEB3C',\n 'Website': '\\uEB41',\n 'Drop': '\\uEB42',\n 'HistoricalWeather': '\\uEB43',\n 'SkiResorts': '\\uEB45',\n 'Snowflake': '\\uEB46',\n 'BusSolid': '\\uEB47',\n 'FerrySolid': '\\uEB48',\n 'AirplaneSolid': '\\uEB4C',\n 'TrainSolid': '\\uEB4D',\n 'Ticket': '\\uEB54',\n 'WifiWarning4': '\\uEB63',\n 'Devices4': '\\uEB66',\n 'AzureLogo': '\\uEB6A',\n 'BingLogo': '\\uEB6B',\n 'MSNLogo': '\\uEB6C',\n 'OutlookLogoInverse': '\\uEB6D',\n 'OfficeLogo': '\\uEB6E',\n 'SkypeLogo': '\\uEB6F',\n 'Door': '\\uEB75',\n 'EditMirrored': '\\uEB7E',\n 'GiftCard': '\\uEB8E',\n 'DoubleBookmark': '\\uEB8F',\n 'StatusErrorFull': '\\uEB90'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-4.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "index": 870, - "index2": 864, - "size": 4416, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-5", - "loc": "7:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-5", - "loc": "31:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-5\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-5-f95ba260.woff') format('woff')\"\n },\n icons: {\n 'Certificate': '\\uEB95',\n 'FastForward': '\\uEB9D',\n 'Rewind': '\\uEB9E',\n 'Photo2': '\\uEB9F',\n 'OpenSource': '\\uEBC2',\n 'Movers': '\\uEBCD',\n 'CloudDownload': '\\uEBD3',\n 'Family': '\\uEBDA',\n 'WindDirection': '\\uEBE6',\n 'Bug': '\\uEBE8',\n 'SiteScan': '\\uEBEC',\n 'BrowserScreenShot': '\\uEBED',\n 'F12DevTools': '\\uEBEE',\n 'CSS': '\\uEBEF',\n 'JS': '\\uEBF0',\n 'DeliveryTruck': '\\uEBF4',\n 'ReminderPerson': '\\uEBF7',\n 'ReminderGroup': '\\uEBF8',\n 'ReminderTime': '\\uEBF9',\n 'TabletMode': '\\uEBFC',\n 'Umbrella': '\\uEC04',\n 'NetworkTower': '\\uEC05',\n 'CityNext': '\\uEC06',\n 'CityNext2': '\\uEC07',\n 'Section': '\\uEC0C',\n 'OneNoteLogoInverse': '\\uEC0D',\n 'ToggleFilled': '\\uEC11',\n 'ToggleBorder': '\\uEC12',\n 'SliderThumb': '\\uEC13',\n 'ToggleThumb': '\\uEC14',\n 'Documentation': '\\uEC17',\n 'Badge': '\\uEC1B',\n 'Giftbox': '\\uEC1F',\n 'VisualStudioLogo': '\\uEC22',\n 'HomeGroup': '\\uEC26',\n 'ExcelLogoInverse': '\\uEC28',\n 'WordLogoInverse': '\\uEC29',\n 'PowerPointLogoInverse': '\\uEC2A',\n 'Cafe': '\\uEC32',\n 'SpeedHigh': '\\uEC4A',\n 'Commitments': '\\uEC4D',\n 'ThisPC': '\\uEC4E',\n 'MusicNote': '\\uEC4F',\n 'MicOff': '\\uEC54',\n 'PlaybackRate1x': '\\uEC57',\n 'EdgeLogo': '\\uEC60',\n 'CompletedSolid': '\\uEC61',\n 'AlbumRemove': '\\uEC62',\n 'MessageFill': '\\uEC70',\n 'TabletSelected': '\\uEC74',\n 'MobileSelected': '\\uEC75',\n 'LaptopSelected': '\\uEC76',\n 'TVMonitorSelected': '\\uEC77',\n 'DeveloperTools': '\\uEC7A',\n 'Shapes': '\\uEC7C',\n 'InsertTextBox': '\\uEC7D',\n 'LowerBrightness': '\\uEC8A',\n 'WebComponents': '\\uEC8B',\n 'OfflineStorage': '\\uEC8C',\n 'DOM': '\\uEC8D',\n 'CloudUpload': '\\uEC8E',\n 'ScrollUpDown': '\\uEC8F',\n 'DateTime': '\\uEC92',\n 'Event': '\\uECA3',\n 'Cake': '\\uECA4',\n 'Org': '\\uECA6',\n 'PartyLeader': '\\uECA7',\n 'DRM': '\\uECA8',\n 'CloudAdd': '\\uECA9',\n 'AppIconDefault': '\\uECAA',\n 'Photo2Add': '\\uECAB',\n 'Photo2Remove': '\\uECAC',\n 'Calories': '\\uECAD',\n 'POI': '\\uECAF',\n 'AddTo': '\\uECC8',\n 'RadioBtnOff': '\\uECCA',\n 'RadioBtnOn': '\\uECCB',\n 'ExploreContent': '\\uECCD',\n 'Product': '\\uECDC',\n 'ProgressLoopInner': '\\uECDE',\n 'ProgressLoopOuter': '\\uECDF',\n 'Blocked2': '\\uECE4',\n 'FangBody': '\\uECEB',\n 'Toolbox': '\\uECED',\n 'PageHeader': '\\uECEE',\n 'ChatInviteFriend': '\\uECFE',\n 'Brush': '\\uECFF',\n 'Shirt': '\\uED00',\n 'Crown': '\\uED01',\n 'Diamond': '\\uED02',\n 'ScaleUp': '\\uED09',\n 'QRCode': '\\uED14',\n 'Feedback': '\\uED15',\n 'SharepointLogoInverse': '\\uED18',\n 'YammerLogo': '\\uED19',\n 'Hide': '\\uED1A',\n 'Uneditable': '\\uED1D',\n 'ReturnToSession': '\\uED24',\n 'OpenFolderHorizontal': '\\uED25',\n 'CalendarMirrored': '\\uED28'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-5.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "index": 871, - "index2": 865, - "size": 4668, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-6", - "loc": "8:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-6", - "loc": "32:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-6\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-6-ef6fd590.woff') format('woff')\"\n },\n icons: {\n 'SwayLogoInverse': '\\uED29',\n 'OutOfOffice': '\\uED34',\n 'Trophy': '\\uED3F',\n 'ReopenPages': '\\uED50',\n 'EmojiTabSymbols': '\\uED58',\n 'AADLogo': '\\uED68',\n 'AccessLogo': '\\uED69',\n 'AdminALogoInverse32': '\\uED6A',\n 'AdminCLogoInverse32': '\\uED6B',\n 'AdminDLogoInverse32': '\\uED6C',\n 'AdminELogoInverse32': '\\uED6D',\n 'AdminLLogoInverse32': '\\uED6E',\n 'AdminMLogoInverse32': '\\uED6F',\n 'AdminOLogoInverse32': '\\uED70',\n 'AdminPLogoInverse32': '\\uED71',\n 'AdminSLogoInverse32': '\\uED72',\n 'AdminYLogoInverse32': '\\uED73',\n 'DelveLogoInverse': '\\uED76',\n 'ExchangeLogoInverse': '\\uED78',\n 'LyncLogo': '\\uED79',\n 'OfficeVideoLogoInverse': '\\uED7A',\n 'SocialListeningLogo': '\\uED7C',\n 'VisioLogoInverse': '\\uED7D',\n 'Balloons': '\\uED7E',\n 'Cat': '\\uED7F',\n 'MailAlert': '\\uED80',\n 'MailCheck': '\\uED81',\n 'MailLowImportance': '\\uED82',\n 'MailPause': '\\uED83',\n 'MailRepeat': '\\uED84',\n 'SecurityGroup': '\\uED85',\n 'Table': '\\uED86',\n 'VoicemailForward': '\\uED87',\n 'VoicemailReply': '\\uED88',\n 'Waffle': '\\uED89',\n 'RemoveEvent': '\\uED8A',\n 'EventInfo': '\\uED8B',\n 'ForwardEvent': '\\uED8C',\n 'WipePhone': '\\uED8D',\n 'AddOnlineMeeting': '\\uED8E',\n 'JoinOnlineMeeting': '\\uED8F',\n 'RemoveLink': '\\uED90',\n 'PeopleBlock': '\\uED91',\n 'PeopleRepeat': '\\uED92',\n 'PeopleAlert': '\\uED93',\n 'PeoplePause': '\\uED94',\n 'TransferCall': '\\uED95',\n 'AddPhone': '\\uED96',\n 'UnknownCall': '\\uED97',\n 'NoteReply': '\\uED98',\n 'NoteForward': '\\uED99',\n 'NotePinned': '\\uED9A',\n 'RemoveOccurrence': '\\uED9B',\n 'Timeline': '\\uED9C',\n 'EditNote': '\\uED9D',\n 'CircleHalfFull': '\\uED9E',\n 'Room': '\\uED9F',\n 'Unsubscribe': '\\uEDA0',\n 'Subscribe': '\\uEDA1',\n 'HardDrive': '\\uEDA2',\n 'RecurringTask': '\\uEDB2',\n 'TaskManager': '\\uEDB7',\n 'TaskManagerMirrored': '\\uEDB8',\n 'Combine': '\\uEDBB',\n 'Split': '\\uEDBC',\n 'DoubleChevronUp': '\\uEDBD',\n 'DoubleChevronLeft': '\\uEDBE',\n 'DoubleChevronRight': '\\uEDBF',\n 'TextBox': '\\uEDC2',\n 'TextField': '\\uEDC3',\n 'NumberField': '\\uEDC4',\n 'Dropdown': '\\uEDC5',\n 'PenWorkspace': '\\uEDC6',\n 'BookingsLogo': '\\uEDC7',\n 'ClassNotebookLogoInverse': '\\uEDC8',\n 'DelveAnalyticsLogo': '\\uEDCA',\n 'DocsLogoInverse': '\\uEDCB',\n 'Dynamics365Logo': '\\uEDCC',\n 'DynamicSMBLogo': '\\uEDCD',\n 'OfficeAssistantLogo': '\\uEDCE',\n 'OfficeStoreLogo': '\\uEDCF',\n 'OneNoteEduLogoInverse': '\\uEDD0',\n 'PlannerLogo': '\\uEDD1',\n 'PowerApps': '\\uEDD2',\n 'Suitcase': '\\uEDD3',\n 'ProjectLogoInverse': '\\uEDD4',\n 'CaretLeft8': '\\uEDD5',\n 'CaretRight8': '\\uEDD6',\n 'CaretUp8': '\\uEDD7',\n 'CaretDown8': '\\uEDD8',\n 'CaretLeftSolid8': '\\uEDD9',\n 'CaretRightSolid8': '\\uEDDA',\n 'CaretUpSolid8': '\\uEDDB',\n 'CaretDownSolid8': '\\uEDDC',\n 'ClearFormatting': '\\uEDDD',\n 'Superscript': '\\uEDDE',\n 'Subscript': '\\uEDDF',\n 'Strikethrough': '\\uEDE0',\n 'Export': '\\uEDE1',\n 'ExportMirrored': '\\uEDE2'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-6.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "index": 872, - "index2": 866, - "size": 4826, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-7", - "loc": "9:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-7", - "loc": "33:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-7\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-7-2b97bb99.woff') format('woff')\"\n },\n icons: {\n 'SingleBookmark': '\\uEDFF',\n 'SingleBookmarkSolid': '\\uEE00',\n 'DoubleChevronDown': '\\uEE04',\n 'FollowUser': '\\uEE05',\n 'ReplyAll': '\\uEE0A',\n 'WorkforceManagement': '\\uEE0F',\n 'RecruitmentManagement': '\\uEE12',\n 'Questionnaire': '\\uEE19',\n 'ManagerSelfService': '\\uEE23',\n 'ProductionFloorManagement': '\\uEE29',\n 'ProductRelease': '\\uEE2E',\n 'ProductVariant': '\\uEE30',\n 'ReplyMirrored': '\\uEE35',\n 'ReplyAllMirrored': '\\uEE36',\n 'Medal': '\\uEE38',\n 'AddGroup': '\\uEE3D',\n 'QuestionnaireMirrored': '\\uEE4B',\n 'CloudImportExport': '\\uEE55',\n 'TemporaryUser': '\\uEE58',\n 'CaretSolid16': '\\uEE62',\n 'GroupedDescending': '\\uEE66',\n 'GroupedAscending': '\\uEE67',\n 'AwayStatus': '\\uEE6A',\n 'MyMoviesTV': '\\uEE6C',\n 'GenericScan': '\\uEE6F',\n 'AustralianRules': '\\uEE70',\n 'WifiEthernet': '\\uEE77',\n 'TrackersMirrored': '\\uEE92',\n 'DateTimeMirrored': '\\uEE93',\n 'StopSolid': '\\uEE95',\n 'DoubleChevronUp12': '\\uEE96',\n 'DoubleChevronDown12': '\\uEE97',\n 'DoubleChevronLeft12': '\\uEE98',\n 'DoubleChevronRight12': '\\uEE99',\n 'CalendarAgenda': '\\uEE9A',\n 'ConnectVirtualMachine': '\\uEE9D',\n 'AddEvent': '\\uEEB5',\n 'AssetLibrary': '\\uEEB6',\n 'DataConnectionLibrary': '\\uEEB7',\n 'DocLibrary': '\\uEEB8',\n 'FormLibrary': '\\uEEB9',\n 'FormLibraryMirrored': '\\uEEBA',\n 'ReportLibrary': '\\uEEBB',\n 'ReportLibraryMirrored': '\\uEEBC',\n 'ContactCard': '\\uEEBD',\n 'CustomList': '\\uEEBE',\n 'CustomListMirrored': '\\uEEBF',\n 'IssueTracking': '\\uEEC0',\n 'IssueTrackingMirrored': '\\uEEC1',\n 'PictureLibrary': '\\uEEC2',\n 'OfficeAddinsLogo': '\\uEEC7',\n 'OfflineOneDriveParachute': '\\uEEC8',\n 'OfflineOneDriveParachuteDisabled': '\\uEEC9',\n 'TriangleSolidUp12': '\\uEECC',\n 'TriangleSolidDown12': '\\uEECD',\n 'TriangleSolidLeft12': '\\uEECE',\n 'TriangleSolidRight12': '\\uEECF',\n 'TriangleUp12': '\\uEED0',\n 'TriangleDown12': '\\uEED1',\n 'TriangleLeft12': '\\uEED2',\n 'TriangleRight12': '\\uEED3',\n 'ArrowUpRight8': '\\uEED4',\n 'ArrowDownRight8': '\\uEED5',\n 'DocumentSet': '\\uEED6',\n 'GoToDashboard': '\\uEEED',\n 'DelveAnalytics': '\\uEEEE',\n 'ArrowUpRightMirrored8': '\\uEEEF',\n 'ArrowDownRightMirrored8': '\\uEEF0',\n 'CompanyDirectory': '\\uEF0D',\n 'OpenEnrollment': '\\uEF1C',\n 'CompanyDirectoryMirrored': '\\uEF2B',\n 'OneDriveAdd': '\\uEF32',\n 'ProfileSearch': '\\uEF35',\n 'Header2': '\\uEF36',\n 'Header3': '\\uEF37',\n 'Header4': '\\uEF38',\n 'RingerSolid': '\\uEF3A',\n 'Eyedropper': '\\uEF3C',\n 'MarketDown': '\\uEF42',\n 'CalendarWorkWeek': '\\uEF51',\n 'SidePanel': '\\uEF52',\n 'GlobeFavorite': '\\uEF53',\n 'CaretTopLeftSolid8': '\\uEF54',\n 'CaretTopRightSolid8': '\\uEF55',\n 'ViewAll2': '\\uEF56',\n 'DocumentReply': '\\uEF57',\n 'PlayerSettings': '\\uEF58',\n 'ReceiptForward': '\\uEF59',\n 'ReceiptReply': '\\uEF5A',\n 'ReceiptCheck': '\\uEF5B',\n 'Fax': '\\uEF5C',\n 'RecurringEvent': '\\uEF5D',\n 'ReplyAlt': '\\uEF5E',\n 'ReplyAllAlt': '\\uEF5F',\n 'EditStyle': '\\uEF60',\n 'EditMail': '\\uEF61',\n 'Lifesaver': '\\uEF62',\n 'LifesaverLock': '\\uEF63',\n 'InboxCheck': '\\uEF64',\n 'FolderSearch': '\\uEF65'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-7.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "index": 873, - "index2": 867, - "size": 4741, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-8", - "loc": "10:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-8", - "loc": "34:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-8\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-8-6fdf1528.woff') format('woff')\"\n },\n icons: {\n 'CollapseMenu': '\\uEF66',\n 'ExpandMenu': '\\uEF67',\n 'Boards': '\\uEF68',\n 'SunAdd': '\\uEF69',\n 'SunQuestionMark': '\\uEF6A',\n 'LandscapeOrientation': '\\uEF6B',\n 'DocumentSearch': '\\uEF6C',\n 'PublicCalendar': '\\uEF6D',\n 'PublicContactCard': '\\uEF6E',\n 'PublicEmail': '\\uEF6F',\n 'PublicFolder': '\\uEF70',\n 'WordDocument': '\\uEF71',\n 'PowerPointDocument': '\\uEF72',\n 'ExcelDocument': '\\uEF73',\n 'GroupedList': '\\uEF74',\n 'ClassroomLogo': '\\uEF75',\n 'Sections': '\\uEF76',\n 'EditPhoto': '\\uEF77',\n 'Starburst': '\\uEF78',\n 'ShareiOS': '\\uEF79',\n 'AirTickets': '\\uEF7A',\n 'PencilReply': '\\uEF7B',\n 'Tiles2': '\\uEF7C',\n 'SkypeCircleCheck': '\\uEF7D',\n 'SkypeCircleClock': '\\uEF7E',\n 'SkypeCircleMinus': '\\uEF7F',\n 'SkypeMessage': '\\uEF83',\n 'ClosedCaption': '\\uEF84',\n 'ATPLogo': '\\uEF85',\n 'OfficeFormsLogoInverse': '\\uEF86',\n 'RecycleBin': '\\uEF87',\n 'EmptyRecycleBin': '\\uEF88',\n 'Hide2': '\\uEF89',\n 'Breadcrumb': '\\uEF8C',\n 'BirthdayCake': '\\uEF8D',\n 'TimeEntry': '\\uEF95',\n 'CRMProcesses': '\\uEFB1',\n 'PageEdit': '\\uEFB6',\n 'PageArrowRight': '\\uEFB8',\n 'PageRemove': '\\uEFBA',\n 'Database': '\\uEFC7',\n 'DataManagementSettings': '\\uEFC8',\n 'CRMServices': '\\uEFD2',\n 'EditContact': '\\uEFD3',\n 'ConnectContacts': '\\uEFD4',\n 'AppIconDefaultAdd': '\\uEFDA',\n 'AppIconDefaultList': '\\uEFDE',\n 'ActivateOrders': '\\uEFE0',\n 'DeactivateOrders': '\\uEFE1',\n 'ProductCatalog': '\\uEFE8',\n 'ScatterChart': '\\uEFEB',\n 'AccountActivity': '\\uEFF4',\n 'DocumentManagement': '\\uEFFC',\n 'CRMReport': '\\uEFFE',\n 'KnowledgeArticle': '\\uF000',\n 'Relationship': '\\uF003',\n 'HomeVerify': '\\uF00E',\n 'ZipFolder': '\\uF012',\n 'SurveyQuestions': '\\uF01B',\n 'TextDocument': '\\uF029',\n 'TextDocumentShared': '\\uF02B',\n 'PageCheckedOut': '\\uF02C',\n 'PageShared': '\\uF02D',\n 'SaveAndClose': '\\uF038',\n 'Script': '\\uF03A',\n 'Archive': '\\uF03F',\n 'ActivityFeed': '\\uF056',\n 'Compare': '\\uF057',\n 'EventDate': '\\uF059',\n 'ArrowUpRight': '\\uF069',\n 'CaretRight': '\\uF06B',\n 'SetAction': '\\uF071',\n 'ChatBot': '\\uF08B',\n 'CaretSolidLeft': '\\uF08D',\n 'CaretSolidDown': '\\uF08E',\n 'CaretSolidRight': '\\uF08F',\n 'CaretSolidUp': '\\uF090',\n 'PowerAppsLogo': '\\uF091',\n 'PowerApps2Logo': '\\uF092',\n 'SearchIssue': '\\uF09A',\n 'SearchIssueMirrored': '\\uF09B',\n 'FabricAssetLibrary': '\\uF09C',\n 'FabricDataConnectionLibrary': '\\uF09D',\n 'FabricDocLibrary': '\\uF09E',\n 'FabricFormLibrary': '\\uF09F',\n 'FabricFormLibraryMirrored': '\\uF0A0',\n 'FabricReportLibrary': '\\uF0A1',\n 'FabricReportLibraryMirrored': '\\uF0A2',\n 'FabricPublicFolder': '\\uF0A3',\n 'FabricFolderSearch': '\\uF0A4',\n 'FabricMovetoFolder': '\\uF0A5',\n 'FabricUnsyncFolder': '\\uF0A6',\n 'FabricSyncFolder': '\\uF0A7',\n 'FabricOpenFolderHorizontal': '\\uF0A8',\n 'FabricFolder': '\\uF0A9',\n 'FabricFolderFill': '\\uF0AA',\n 'FabricNewFolder': '\\uF0AB',\n 'FabricPictureLibrary': '\\uF0AC',\n 'PhotoVideoMedia': '\\uF0B1',\n 'AddFavorite': '\\uF0C8'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-8.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "index": 874, - "index2": 868, - "size": 4765, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-9", - "loc": "11:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-9", - "loc": "35:8-10" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-9\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-9-c6162b42.woff') format('woff')\"\n },\n icons: {\n 'AddFavoriteFill': '\\uF0C9',\n 'BufferTimeBefore': '\\uF0CF',\n 'BufferTimeAfter': '\\uF0D0',\n 'BufferTimeBoth': '\\uF0D1',\n 'PublishContent': '\\uF0D4',\n 'ClipboardList': '\\uF0E3',\n 'ClipboardListMirrored': '\\uF0E4',\n 'CannedChat': '\\uF0F2',\n 'SkypeForBusinessLogo': '\\uF0FC',\n 'TabCenter': '\\uF100',\n 'PageCheckedin': '\\uF104',\n 'PageList': '\\uF106',\n 'ReadOutLoud': '\\uF112',\n 'CaretBottomLeftSolid8': '\\uF121',\n 'CaretBottomRightSolid8': '\\uF122',\n 'FolderHorizontal': '\\uF12B',\n 'MicrosoftStaffhubLogo': '\\uF130',\n 'GiftboxOpen': '\\uF133',\n 'StatusCircleOuter': '\\uF136',\n 'StatusCircleInner': '\\uF137',\n 'StatusCircleRing': '\\uF138',\n 'StatusTriangleOuter': '\\uF139',\n 'StatusTriangleInner': '\\uF13A',\n 'StatusTriangleExclamation': '\\uF13B',\n 'StatusCircleExclamation': '\\uF13C',\n 'StatusCircleErrorX': '\\uF13D',\n 'StatusCircleInfo': '\\uF13F',\n 'StatusCircleBlock': '\\uF140',\n 'StatusCircleBlock2': '\\uF141',\n 'StatusCircleQuestionMark': '\\uF142',\n 'StatusCircleSync': '\\uF143',\n 'Toll': '\\uF160',\n 'ExploreContentSingle': '\\uF164',\n 'CollapseContent': '\\uF165',\n 'CollapseContentSingle': '\\uF166',\n 'InfoSolid': '\\uF167',\n 'GroupList': '\\uF168',\n 'ProgressRingDots': '\\uF16A',\n 'CaloriesAdd': '\\uF172',\n 'BranchFork': '\\uF173',\n 'MuteChat': '\\uF17A',\n 'AddHome': '\\uF17B',\n 'AddWork': '\\uF17C',\n 'MobileReport': '\\uF18A',\n 'ScaleVolume': '\\uF18C',\n 'HardDriveGroup': '\\uF18F',\n 'FastMode': '\\uF19A',\n 'ToggleLeft': '\\uF19E',\n 'ToggleRight': '\\uF19F',\n 'TriangleShape': '\\uF1A7',\n 'RectangleShape': '\\uF1A9',\n 'CubeShape': '\\uF1AA',\n 'Trophy2': '\\uF1AE',\n 'BucketColor': '\\uF1B6',\n 'BucketColorFill': '\\uF1B7',\n 'Taskboard': '\\uF1C2',\n 'SingleColumn': '\\uF1D3',\n 'DoubleColumn': '\\uF1D4',\n 'TripleColumn': '\\uF1D5',\n 'ColumnLeftTwoThirds': '\\uF1D6',\n 'ColumnRightTwoThirds': '\\uF1D7',\n 'AccessLogoFill': '\\uF1DB',\n 'AnalyticsLogo': '\\uF1DE',\n 'AnalyticsQuery': '\\uF1DF',\n 'NewAnalyticsQuery': '\\uF1E0',\n 'AnalyticsReport': '\\uF1E1',\n 'WordLogo': '\\uF1E3',\n 'WordLogoFill': '\\uF1E4',\n 'ExcelLogo': '\\uF1E5',\n 'ExcelLogoFill': '\\uF1E6',\n 'OneNoteLogo': '\\uF1E7',\n 'OneNoteLogoFill': '\\uF1E8',\n 'OutlookLogo': '\\uF1E9',\n 'OutlookLogoFill': '\\uF1EA',\n 'PowerPointLogo': '\\uF1EB',\n 'PowerPointLogoFill': '\\uF1EC',\n 'PublisherLogo': '\\uF1ED',\n 'PublisherLogoFill': '\\uF1EE',\n 'ScheduleEventAction': '\\uF1EF',\n 'FlameSolid': '\\uF1F3',\n 'ServerProcesses': '\\uF1FE',\n 'Server': '\\uF201',\n 'SaveAll': '\\uF203',\n 'LinkedInLogo': '\\uF20A',\n 'Decimals': '\\uF218',\n 'SidePanelMirrored': '\\uF221',\n 'ProtectRestrict': '\\uF22A',\n 'Blog': '\\uF22B',\n 'UnknownMirrored': '\\uF22E',\n 'PublicContactCardMirrored': '\\uF230',\n 'GridViewSmall': '\\uF232',\n 'GridViewMedium': '\\uF233',\n 'GridViewLarge': '\\uF234',\n 'Step': '\\uF241',\n 'StepInsert': '\\uF242',\n 'StepShared': '\\uF243',\n 'StepSharedAdd': '\\uF244',\n 'StepSharedInsert': '\\uF245',\n 'ViewDashboard': '\\uF246',\n 'ViewList': '\\uF247'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-9.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "index": 875, - "index2": 869, - "size": 4641, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-10", - "loc": "12:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-10", - "loc": "36:8-11" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-10\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-10-c4ded8e4.woff') format('woff')\"\n },\n icons: {\n 'ViewListGroup': '\\uF248',\n 'ViewListTree': '\\uF249',\n 'TriggerAuto': '\\uF24A',\n 'TriggerUser': '\\uF24B',\n 'PivotChart': '\\uF24C',\n 'StackedBarChart': '\\uF24D',\n 'StackedLineChart': '\\uF24E',\n 'BuildQueue': '\\uF24F',\n 'BuildQueueNew': '\\uF250',\n 'UserFollowed': '\\uF25C',\n 'ContactLink': '\\uF25F',\n 'Stack': '\\uF26F',\n 'Bullseye': '\\uF272',\n 'VennDiagram': '\\uF273',\n 'FiveTileGrid': '\\uF274',\n 'FocalPoint': '\\uF277',\n 'Insert': '\\uF278',\n 'RingerRemove': '\\uF279',\n 'TeamsLogoInverse': '\\uF27A',\n 'TeamsLogo': '\\uF27B',\n 'TeamsLogoFill': '\\uF27C',\n 'SkypeForBusinessLogoFill': '\\uF27D',\n 'SharepointLogo': '\\uF27E',\n 'SharepointLogoFill': '\\uF27F',\n 'DelveLogo': '\\uF280',\n 'DelveLogoFill': '\\uF281',\n 'OfficeVideoLogo': '\\uF282',\n 'OfficeVideoLogoFill': '\\uF283',\n 'ExchangeLogo': '\\uF284',\n 'ExchangeLogoFill': '\\uF285',\n 'Signin': '\\uF286',\n 'DocumentApproval': '\\uF28B',\n 'CloneToDesktop': '\\uF28C',\n 'InstallToDrive': '\\uF28D',\n 'Blur': '\\uF28E',\n 'Build': '\\uF28F',\n 'ProcessMetaTask': '\\uF290',\n 'BranchFork2': '\\uF291',\n 'BranchLocked': '\\uF292',\n 'BranchCommit': '\\uF293',\n 'BranchCompare': '\\uF294',\n 'BranchMerge': '\\uF295',\n 'BranchPullRequest': '\\uF296',\n 'BranchSearch': '\\uF297',\n 'BranchShelveset': '\\uF298',\n 'RawSource': '\\uF299',\n 'MergeDuplicate': '\\uF29A',\n 'RowsGroup': '\\uF29B',\n 'RowsChild': '\\uF29C',\n 'Deploy': '\\uF29D',\n 'Redeploy': '\\uF29E',\n 'ServerEnviroment': '\\uF29F',\n 'VisioDiagram': '\\uF2A0',\n 'HighlightMappedShapes': '\\uF2A1',\n 'TextCallout': '\\uF2A2',\n 'IconSetsFlag': '\\uF2A4',\n 'VisioLogo': '\\uF2A7',\n 'VisioLogoFill': '\\uF2A8',\n 'VisioDocument': '\\uF2A9',\n 'TimelineProgress': '\\uF2AA',\n 'TimelineDelivery': '\\uF2AB',\n 'Backlog': '\\uF2AC',\n 'TeamFavorite': '\\uF2AD',\n 'TaskGroup': '\\uF2AE',\n 'TaskGroupMirrored': '\\uF2AF',\n 'ScopeTemplate': '\\uF2B0',\n 'AssessmentGroupTemplate': '\\uF2B1',\n 'NewTeamProject': '\\uF2B2',\n 'CommentAdd': '\\uF2B3',\n 'CommentNext': '\\uF2B4',\n 'CommentPrevious': '\\uF2B5',\n 'ShopServer': '\\uF2B6',\n 'LocaleLanguage': '\\uF2B7',\n 'QueryList': '\\uF2B8',\n 'UserSync': '\\uF2B9',\n 'UserPause': '\\uF2BA',\n 'StreamingOff': '\\uF2BB',\n 'ArrowTallUpLeft': '\\uF2BD',\n 'ArrowTallUpRight': '\\uF2BE',\n 'ArrowTallDownLeft': '\\uF2BF',\n 'ArrowTallDownRight': '\\uF2C0',\n 'FieldEmpty': '\\uF2C1',\n 'FieldFilled': '\\uF2C2',\n 'FieldChanged': '\\uF2C3',\n 'FieldNotChanged': '\\uF2C4',\n 'RingerOff': '\\uF2C5',\n 'PlayResume': '\\uF2C6',\n 'BulletedList2': '\\uF2C7',\n 'BulletedList2Mirrored': '\\uF2C8',\n 'ImageCrosshair': '\\uF2C9',\n 'GitGraph': '\\uF2CA',\n 'Repo': '\\uF2CB',\n 'RepoSolid': '\\uF2CC',\n 'FolderQuery': '\\uF2CD',\n 'FolderList': '\\uF2CE',\n 'FolderListMirrored': '\\uF2CF',\n 'LocationOutline': '\\uF2D0',\n 'POISolid': '\\uF2D1',\n 'CalculatorNotEqualTo': '\\uF2D2',\n 'BoxSubtractSolid': '\\uF2D3'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-10.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "index": 876, - "index2": 870, - "size": 4642, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-11", - "loc": "13:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-11", - "loc": "37:8-11" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-11\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-11-2a8393d6.woff') format('woff')\"\n },\n icons: {\n 'BoxAdditionSolid': '\\uF2D4',\n 'BoxMultiplySolid': '\\uF2D5',\n 'BoxPlaySolid': '\\uF2D6',\n 'BoxCheckmarkSolid': '\\uF2D7',\n 'CirclePauseSolid': '\\uF2D8',\n 'CirclePause': '\\uF2D9',\n 'MSNVideosSolid': '\\uF2DA',\n 'CircleStopSolid': '\\uF2DB',\n 'CircleStop': '\\uF2DC',\n 'NavigateBack': '\\uF2DD',\n 'NavigateBackMirrored': '\\uF2DE',\n 'NavigateForward': '\\uF2DF',\n 'NavigateForwardMirrored': '\\uF2E0',\n 'UnknownSolid': '\\uF2E1',\n 'UnknownMirroredSolid': '\\uF2E2',\n 'CircleAddition': '\\uF2E3',\n 'CircleAdditionSolid': '\\uF2E4',\n 'FilePDB': '\\uF2E5',\n 'FileTemplate': '\\uF2E6',\n 'FileSQL': '\\uF2E7',\n 'FileJAVA': '\\uF2E8',\n 'FileASPX': '\\uF2E9',\n 'FileCSS': '\\uF2EA',\n 'FileSass': '\\uF2EB',\n 'FileLess': '\\uF2EC',\n 'FileHTML': '\\uF2ED',\n 'JavaScriptLanguage': '\\uF2EE',\n 'CSharpLanguage': '\\uF2EF',\n 'CSharp': '\\uF2F0',\n 'VisualBasicLanguage': '\\uF2F1',\n 'VB': '\\uF2F2',\n 'CPlusPlusLanguage': '\\uF2F3',\n 'CPlusPlus': '\\uF2F4',\n 'FSharpLanguage': '\\uF2F5',\n 'FSharp': '\\uF2F6',\n 'TypeScriptLanguage': '\\uF2F7',\n 'PythonLanguage': '\\uF2F8',\n 'PY': '\\uF2F9',\n 'CoffeeScript': '\\uF2FA',\n 'MarkDownLanguage': '\\uF2FB',\n 'FullWidth': '\\uF2FE',\n 'FullWidthEdit': '\\uF2FF',\n 'Plug': '\\uF300',\n 'PlugSolid': '\\uF301',\n 'PlugConnected': '\\uF302',\n 'PlugDisconnected': '\\uF303',\n 'UnlockSolid': '\\uF304',\n 'Variable': '\\uF305',\n 'Parameter': '\\uF306',\n 'CommentUrgent': '\\uF307',\n 'Storyboard': '\\uF308',\n 'DiffInline': '\\uF309',\n 'DiffSideBySide': '\\uF30A',\n 'ImageDiff': '\\uF30B',\n 'ImagePixel': '\\uF30C',\n 'FileBug': '\\uF30D',\n 'FileCode': '\\uF30E',\n 'FileComment': '\\uF30F',\n 'BusinessHoursSign': '\\uF310',\n 'FileImage': '\\uF311',\n 'FileSymlink': '\\uF312',\n 'AutoFillTemplate': '\\uF313',\n 'WorkItem': '\\uF314',\n 'WorkItemBug': '\\uF315',\n 'LogRemove': '\\uF316',\n 'ColumnOptions': '\\uF317',\n 'Packages': '\\uF318',\n 'BuildIssue': '\\uF319',\n 'AssessmentGroup': '\\uF31A',\n 'VariableGroup': '\\uF31B',\n 'FullHistory': '\\uF31C',\n 'Wheelchair': '\\uF31F',\n 'SingleColumnEdit': '\\uF321',\n 'DoubleColumnEdit': '\\uF322',\n 'TripleColumnEdit': '\\uF323',\n 'ColumnLeftTwoThirdsEdit': '\\uF324',\n 'ColumnRightTwoThirdsEdit': '\\uF325',\n 'StreamLogo': '\\uF329',\n 'PassiveAuthentication': '\\uF32A',\n 'AlertSolid': '\\uF331',\n 'MegaphoneSolid': '\\uF332',\n 'TaskSolid': '\\uF333',\n 'ConfigurationSolid': '\\uF334',\n 'BugSolid': '\\uF335',\n 'CrownSolid': '\\uF336',\n 'Trophy2Solid': '\\uF337',\n 'QuickNoteSolid': '\\uF338',\n 'ConstructionConeSolid': '\\uF339',\n 'PageListSolid': '\\uF33A',\n 'PageListMirroredSolid': '\\uF33B',\n 'StarburstSolid': '\\uF33C',\n 'ReadingModeSolid': '\\uF33D',\n 'SadSolid': '\\uF33E',\n 'HealthSolid': '\\uF33F',\n 'ShieldSolid': '\\uF340',\n 'GiftBoxSolid': '\\uF341',\n 'ShoppingCartSolid': '\\uF342',\n 'MailSolid': '\\uF343',\n 'ChatSolid': '\\uF344',\n 'RibbonSolid': '\\uF345'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-11.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "index": 877, - "index2": 871, - "size": 4868, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-12", - "loc": "14:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-12", - "loc": "38:8-11" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-12\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-12-7e945a1e.woff') format('woff')\"\n },\n icons: {\n 'FinancialSolid': '\\uF346',\n 'FinancialMirroredSolid': '\\uF347',\n 'HeadsetSolid': '\\uF348',\n 'PermissionsSolid': '\\uF349',\n 'ParkingSolid': '\\uF34A',\n 'ParkingMirroredSolid': '\\uF34B',\n 'DiamondSolid': '\\uF34C',\n 'AsteriskSolid': '\\uF34D',\n 'OfflineStorageSolid': '\\uF34E',\n 'BankSolid': '\\uF34F',\n 'DecisionSolid': '\\uF350',\n 'Parachute': '\\uF351',\n 'ParachuteSolid': '\\uF352',\n 'FiltersSolid': '\\uF353',\n 'ColorSolid': '\\uF354',\n 'ReviewSolid': '\\uF355',\n 'ReviewRequestSolid': '\\uF356',\n 'ReviewRequestMirroredSolid': '\\uF357',\n 'ReviewResponseSolid': '\\uF358',\n 'FeedbackRequestSolid': '\\uF359',\n 'FeedbackRequestMirroredSolid': '\\uF35A',\n 'FeedbackResponseSolid': '\\uF35B',\n 'WorkItemBar': '\\uF35C',\n 'WorkItemBarSolid': '\\uF35D',\n 'Separator': '\\uF35E',\n 'NavigateExternalInline': '\\uF35F',\n 'PlanView': '\\uF360',\n 'TimelineMatrixView': '\\uF361',\n 'EngineeringGroup': '\\uF362',\n 'ProjectCollection': '\\uF363',\n 'CaretBottomRightCenter8': '\\uF364',\n 'CaretBottomLeftCenter8': '\\uF365',\n 'CaretTopRightCenter8': '\\uF366',\n 'CaretTopLeftCenter8': '\\uF367',\n 'DonutChart': '\\uF368',\n 'ChevronUnfold10': '\\uF369',\n 'ChevronFold10': '\\uF36A',\n 'DoubleChevronDown8': '\\uF36B',\n 'DoubleChevronUp8': '\\uF36C',\n 'DoubleChevronLeft8': '\\uF36D',\n 'DoubleChevronRight8': '\\uF36E',\n 'ChevronDownEnd6': '\\uF36F',\n 'ChevronUpEnd6': '\\uF370',\n 'ChevronLeftEnd6': '\\uF371',\n 'ChevronRightEnd6': '\\uF372',\n 'ContextMenu': '\\uF37C',\n 'AzureAPIManagement': '\\uF37F',\n 'AzureServiceEndpoint': '\\uF380',\n 'VSTSLogo': '\\uF381',\n 'VSTSAltLogo1': '\\uF382',\n 'VSTSAltLogo2': '\\uF383',\n 'FileTypeSolution': '\\uF387',\n 'WordLogoInverse16': '\\uF390',\n 'WordLogo16': '\\uF391',\n 'WordLogoFill16': '\\uF392',\n 'PowerPointLogoInverse16': '\\uF393',\n 'PowerPointLogo16': '\\uF394',\n 'PowerPointLogoFill16': '\\uF395',\n 'ExcelLogoInverse16': '\\uF396',\n 'ExcelLogo16': '\\uF397',\n 'ExcelLogoFill16': '\\uF398',\n 'OneNoteLogoInverse16': '\\uF399',\n 'OneNoteLogo16': '\\uF39A',\n 'OneNoteLogoFill16': '\\uF39B',\n 'OutlookLogoInverse16': '\\uF39C',\n 'OutlookLogo16': '\\uF39D',\n 'OutlookLogoFill16': '\\uF39E',\n 'PublisherLogoInverse16': '\\uF39F',\n 'PublisherLogo16': '\\uF3A0',\n 'PublisherLogoFill16': '\\uF3A1',\n 'VisioLogoInverse16': '\\uF3A2',\n 'VisioLogo16': '\\uF3A3',\n 'VisioLogoFill16': '\\uF3A4',\n 'TestBeaker': '\\uF3A5',\n 'TestBeakerSolid': '\\uF3A6',\n 'TestExploreSolid': '\\uF3A7',\n 'TestAutoSolid': '\\uF3A8',\n 'TestUserSolid': '\\uF3A9',\n 'TestImpactSolid': '\\uF3AA',\n 'TestPlan': '\\uF3AB',\n 'TestStep': '\\uF3AC',\n 'TestParameter': '\\uF3AD',\n 'TestSuite': '\\uF3AE',\n 'TestCase': '\\uF3AF',\n 'Sprint': '\\uF3B0',\n 'SignOut': '\\uF3B1',\n 'TriggerApproval': '\\uF3B2',\n 'Rocket': '\\uF3B3',\n 'AzureKeyVault': '\\uF3B4',\n 'Onboarding': '\\uF3BA',\n 'Transition': '\\uF3BC',\n 'LikeSolid': '\\uF3BF',\n 'DislikeSolid': '\\uF3C0',\n 'CRMCustomerInsightsApp': '\\uF3C8',\n 'EditCreate': '\\uF3C9',\n 'PlayReverseResume': '\\uF3E4',\n 'PlayReverse': '\\uF3E5',\n 'SearchData': '\\uF3F1',\n 'UnSetColor': '\\uF3F9',\n 'DeclineCall': '\\uF405'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-12.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "index": 878, - "index2": 872, - "size": 4869, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-13", - "loc": "15:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-13", - "loc": "39:8-11" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-13\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-13-c3989a02.woff') format('woff')\"\n },\n icons: {\n 'RectangularClipping': '\\uF407',\n 'TeamsLogo16': '\\uF40A',\n 'TeamsLogoFill16': '\\uF40B',\n 'Spacer': '\\uF40D',\n 'SkypeLogo16': '\\uF40E',\n 'SkypeForBusinessLogo16': '\\uF40F',\n 'SkypeForBusinessLogoFill16': '\\uF410',\n 'FilterSolid': '\\uF412',\n 'MailUndelivered': '\\uF415',\n 'MailTentative': '\\uF416',\n 'MailTentativeMirrored': '\\uF417',\n 'MailReminder': '\\uF418',\n 'ReceiptUndelivered': '\\uF419',\n 'ReceiptTentative': '\\uF41A',\n 'ReceiptTentativeMirrored': '\\uF41B',\n 'Inbox': '\\uF41C',\n 'IRMReply': '\\uF41D',\n 'IRMReplyMirrored': '\\uF41E',\n 'IRMForward': '\\uF41F',\n 'IRMForwardMirrored': '\\uF420',\n 'VoicemailIRM': '\\uF421',\n 'EventAccepted': '\\uF422',\n 'EventTentative': '\\uF423',\n 'EventTentativeMirrored': '\\uF424',\n 'EventDeclined': '\\uF425',\n 'IDBadge': '\\uF427',\n 'BackgroundColor': '\\uF42B',\n 'OfficeFormsLogoInverse16': '\\uF433',\n 'OfficeFormsLogo': '\\uF434',\n 'OfficeFormsLogoFill': '\\uF435',\n 'OfficeFormsLogo16': '\\uF436',\n 'OfficeFormsLogoFill16': '\\uF437',\n 'OfficeFormsLogoInverse24': '\\uF43A',\n 'OfficeFormsLogo24': '\\uF43B',\n 'OfficeFormsLogoFill24': '\\uF43C',\n 'PageLock': '\\uF43F',\n 'NotExecuted': '\\uF440',\n 'NotImpactedSolid': '\\uF441',\n 'FieldReadOnly': '\\uF442',\n 'FieldRequired': '\\uF443',\n 'BacklogBoard': '\\uF444',\n 'ExternalBuild': '\\uF445',\n 'ExternalTFVC': '\\uF446',\n 'ExternalXAML': '\\uF447',\n 'IssueSolid': '\\uF448',\n 'DefectSolid': '\\uF449',\n 'LadybugSolid': '\\uF44A',\n 'NugetLogo': '\\uF44C',\n 'TFVCLogo': '\\uF44D',\n 'ProjectLogo32': '\\uF47E',\n 'ProjectLogoFill32': '\\uF47F',\n 'ProjectLogo16': '\\uF480',\n 'ProjectLogoFill16': '\\uF481',\n 'SwayLogo32': '\\uF482',\n 'SwayLogoFill32': '\\uF483',\n 'SwayLogo16': '\\uF484',\n 'SwayLogoFill16': '\\uF485',\n 'ClassNotebookLogo32': '\\uF486',\n 'ClassNotebookLogoFill32': '\\uF487',\n 'ClassNotebookLogo16': '\\uF488',\n 'ClassNotebookLogoFill16': '\\uF489',\n 'ClassNotebookLogoInverse32': '\\uF48A',\n 'ClassNotebookLogoInverse16': '\\uF48B',\n 'StaffNotebookLogo32': '\\uF48C',\n 'StaffNotebookLogoFill32': '\\uF48D',\n 'StaffNotebookLogo16': '\\uF48E',\n 'StaffNotebookLogoFill16': '\\uF48F',\n 'StaffNotebookLogoInverted32': '\\uF490',\n 'StaffNotebookLogoInverted16': '\\uF491',\n 'KaizalaLogo': '\\uF492',\n 'TaskLogo': '\\uF493',\n 'ProtectionCenterLogo32': '\\uF494',\n 'GallatinLogo': '\\uF496',\n 'Globe2': '\\uF49A',\n 'Guitar': '\\uF49B',\n 'Breakfast': '\\uF49C',\n 'Brunch': '\\uF49D',\n 'BeerMug': '\\uF49E',\n 'Vacation': '\\uF49F',\n 'Teeth': '\\uF4A0',\n 'Taxi': '\\uF4A1',\n 'Chopsticks': '\\uF4A2',\n 'SyncOccurence': '\\uF4A3',\n 'UnsyncOccurence': '\\uF4A4',\n 'GIF': '\\uF4A9',\n 'PrimaryCalendar': '\\uF4AE',\n 'SearchCalendar': '\\uF4AF',\n 'VideoOff': '\\uF4B0',\n 'MicrosoftFlowLogo': '\\uF4B1',\n 'BusinessCenterLogo': '\\uF4B2',\n 'ToDoLogoBottom': '\\uF4B3',\n 'ToDoLogoTop': '\\uF4B4',\n 'EditSolid12': '\\uF4B5',\n 'EditSolidMirrored12': '\\uF4B6',\n 'UneditableSolid12': '\\uF4B7',\n 'UneditableSolidMirrored12': '\\uF4B8',\n 'UneditableMirrored': '\\uF4B9',\n 'AdminALogo32': '\\uF4BA',\n 'AdminALogoFill32': '\\uF4BB',\n 'ToDoLogoInverse': '\\uF4BC'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-13.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "index": 879, - "index2": 873, - "size": 4654, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-14", - "loc": "16:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-14", - "loc": "40:8-11" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-14\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-14-5cf58db8.woff') format('woff')\"\n },\n icons: {\n 'Snooze': '\\uF4BD',\n 'WaffleOffice365': '\\uF4E0',\n 'ImageSearch': '\\uF4E8',\n 'NewsSearch': '\\uF4E9',\n 'VideoSearch': '\\uF4EA',\n 'R': '\\uF4EB',\n 'FontColorA': '\\uF4EC',\n 'FontColorSwatch': '\\uF4ED',\n 'LightWeight': '\\uF4EE',\n 'NormalWeight': '\\uF4EF',\n 'SemiboldWeight': '\\uF4F0',\n 'GroupObject': '\\uF4F1',\n 'UngroupObject': '\\uF4F2',\n 'AlignHorizontalLeft': '\\uF4F3',\n 'AlignHorizontalCenter': '\\uF4F4',\n 'AlignHorizontalRight': '\\uF4F5',\n 'AlignVerticalTop': '\\uF4F6',\n 'AlignVerticalCenter': '\\uF4F7',\n 'AlignVerticalBottom': '\\uF4F8',\n 'HorizontalDistributeCenter': '\\uF4F9',\n 'VerticalDistributeCenter': '\\uF4FA',\n 'Ellipse': '\\uF4FB',\n 'Line': '\\uF4FC',\n 'Octagon': '\\uF4FD',\n 'Hexagon': '\\uF4FE',\n 'Pentagon': '\\uF4FF',\n 'RightTriangle': '\\uF500',\n 'HalfCircle': '\\uF501',\n 'QuarterCircle': '\\uF502',\n 'ThreeQuarterCircle': '\\uF503',\n '6PointStar': '\\uF504',\n '12PointStar': '\\uF505',\n 'ArrangeBringToFront': '\\uF506',\n 'ArrangeSendToBack': '\\uF507',\n 'ArrangeSendBackward': '\\uF508',\n 'ArrangeBringForward': '\\uF509',\n 'BorderDash': '\\uF50A',\n 'BorderDot': '\\uF50B',\n 'LineStyle': '\\uF50C',\n 'LineThickness': '\\uF50D',\n 'WindowEdit': '\\uF50E',\n 'HintText': '\\uF50F',\n 'MediaAdd': '\\uF510',\n 'AnchorLock': '\\uF511',\n 'AutoHeight': '\\uF512',\n 'ChartSeries': '\\uF513',\n 'ChartXAngle': '\\uF514',\n 'ChartYAngle': '\\uF515',\n 'Combobox': '\\uF516',\n 'LineSpacing': '\\uF517',\n 'Padding': '\\uF518',\n 'PaddingTop': '\\uF519',\n 'PaddingBottom': '\\uF51A',\n 'PaddingLeft': '\\uF51B',\n 'PaddingRight': '\\uF51C',\n 'NavigationFlipper': '\\uF51D',\n 'AlignJustify': '\\uF51E',\n 'TextOverflow': '\\uF51F',\n 'VisualsFolder': '\\uF520',\n 'VisualsStore': '\\uF521',\n 'PictureCenter': '\\uF522',\n 'PictureFill': '\\uF523',\n 'PicturePosition': '\\uF524',\n 'PictureStretch': '\\uF525',\n 'PictureTile': '\\uF526',\n 'Slider': '\\uF527',\n 'SliderHandleSize': '\\uF528',\n 'DefaultRatio': '\\uF529',\n 'NumberSequence': '\\uF52A',\n 'GUID': '\\uF52B',\n 'ReportAdd': '\\uF52C',\n 'DashboardAdd': '\\uF52D',\n 'MapPinSolid': '\\uF52E',\n 'WebPublish': '\\uF52F',\n 'PieSingleSolid': '\\uF530',\n 'BlockedSolid': '\\uF531',\n 'DrillDown': '\\uF532',\n 'DrillDownSolid': '\\uF533',\n 'DrillExpand': '\\uF534',\n 'DrillShow': '\\uF535',\n 'SpecialEvent': '\\uF536',\n 'OneDriveFolder16': '\\uF53B',\n 'FunctionalManagerDashboard': '\\uF542',\n 'BIDashboard': '\\uF543',\n 'CodeEdit': '\\uF544',\n 'RenewalCurrent': '\\uF545',\n 'RenewalFuture': '\\uF546',\n 'SplitObject': '\\uF547',\n 'BulkUpload': '\\uF548',\n 'DownloadDocument': '\\uF549',\n 'GreetingCard': '\\uF54B',\n 'Flower': '\\uF54E',\n 'WaitlistConfirm': '\\uF550',\n 'WaitlistConfirmMirrored': '\\uF551',\n 'LaptopSecure': '\\uF552',\n 'DragObject': '\\uF553',\n 'EntryView': '\\uF554',\n 'EntryDecline': '\\uF555',\n 'ContactCardSettings': '\\uF556',\n 'ContactCardSettingsMirrored': '\\uF557'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-14.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "index": 880, - "index2": 874, - "size": 4752, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-15", - "loc": "17:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-15", - "loc": "41:8-11" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-15\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-15-3807251b.woff') format('woff')\"\n },\n icons: {\n 'CalendarSettings': '\\uF558',\n 'CalendarSettingsMirrored': '\\uF559',\n 'HardDriveLock': '\\uF55A',\n 'HardDriveUnlock': '\\uF55B',\n 'AccountManagement': '\\uF55C',\n 'ReportWarning': '\\uF569',\n 'TransitionPop': '\\uF5B2',\n 'TransitionPush': '\\uF5B3',\n 'TransitionEffect': '\\uF5B4',\n 'LookupEntities': '\\uF5B5',\n 'ExploreData': '\\uF5B6',\n 'AddBookmark': '\\uF5B7',\n 'SearchBookmark': '\\uF5B8',\n 'DrillThrough': '\\uF5B9',\n 'MasterDatabase': '\\uF5BA',\n 'CertifiedDatabase': '\\uF5BB',\n 'MaximumValue': '\\uF5BC',\n 'MinimumValue': '\\uF5BD',\n 'VisualStudioIDELogo32': '\\uF5D0',\n 'PasteAsText': '\\uF5D5',\n 'PasteAsCode': '\\uF5D6',\n 'BrowserTab': '\\uF5D7',\n 'BrowserTabScreenshot': '\\uF5D8',\n 'DesktopScreenshot': '\\uF5D9',\n 'FileYML': '\\uF5DA',\n 'ClipboardSolid': '\\uF5DC',\n 'FabricUserFolder': '\\uF5E5',\n 'FabricNetworkFolder': '\\uF5E6',\n 'BullseyeTarget': '\\uF5F0',\n 'AnalyticsView': '\\uF5F1',\n 'Video360Generic': '\\uF609',\n 'Untag': '\\uF60B',\n 'Leave': '\\uF627',\n 'Trending12': '\\uF62D',\n 'Blocked12': '\\uF62E',\n 'Warning12': '\\uF62F',\n 'CheckedOutByOther12': '\\uF630',\n 'CheckedOutByYou12': '\\uF631',\n 'CircleShapeSolid': '\\uF63C',\n 'SquareShapeSolid': '\\uF63D',\n 'TriangleShapeSolid': '\\uF63E',\n 'DropShapeSolid': '\\uF63F',\n 'RectangleShapeSolid': '\\uF640',\n 'ZoomToFit': '\\uF649',\n 'InsertColumnsLeft': '\\uF64A',\n 'InsertColumnsRight': '\\uF64B',\n 'InsertRowsAbove': '\\uF64C',\n 'InsertRowsBelow': '\\uF64D',\n 'DeleteColumns': '\\uF64E',\n 'DeleteRows': '\\uF64F',\n 'DeleteRowsMirrored': '\\uF650',\n 'DeleteTable': '\\uF651',\n 'AccountBrowser': '\\uF652',\n 'VersionControlPush': '\\uF664',\n 'StackedColumnChart2': '\\uF666',\n 'TripleColumnWide': '\\uF66E',\n 'QuadColumn': '\\uF66F',\n 'WhiteBoardApp16': '\\uF673',\n 'WhiteBoardApp32': '\\uF674',\n 'PinnedSolid': '\\uF676',\n 'InsertSignatureLine': '\\uF677',\n 'ArrangeByFrom': '\\uF678',\n 'Phishing': '\\uF679',\n 'CreateMailRule': '\\uF67A',\n 'PublishCourse': '\\uF699',\n 'DictionaryRemove': '\\uF69A',\n 'UserRemove': '\\uF69B',\n 'UserEvent': '\\uF69C',\n 'Encryption': '\\uF69D',\n 'PasswordField': '\\uF6AA',\n 'OpenInNewTab': '\\uF6AB',\n 'Hide3': '\\uF6AC',\n 'VerifiedBrandSolid': '\\uF6AD',\n 'MarkAsProtected': '\\uF6AE',\n 'AuthenticatorApp': '\\uF6B1',\n 'WebTemplate': '\\uF6B2',\n 'DefenderTVM': '\\uF6B3',\n 'MedalSolid': '\\uF6B9',\n 'D365TalentLearn': '\\uF6BB',\n 'D365TalentInsight': '\\uF6BC',\n 'D365TalentHRCore': '\\uF6BD',\n 'BacklogList': '\\uF6BF',\n 'ButtonControl': '\\uF6C0',\n 'TableGroup': '\\uF6D9',\n 'MountainClimbing': '\\uF6DB',\n 'TagUnknown': '\\uF6DF',\n 'TagUnknownMirror': '\\uF6E0',\n 'TagUnknown12': '\\uF6E1',\n 'TagUnknown12Mirror': '\\uF6E2',\n 'Link12': '\\uF6E3',\n 'Presentation': '\\uF6E4',\n 'Presentation12': '\\uF6E5',\n 'Lock12': '\\uF6E6',\n 'BuildDefinition': '\\uF6E9',\n 'ReleaseDefinition': '\\uF6EA',\n 'SaveTemplate': '\\uF6EC',\n 'UserGauge': '\\uF6ED',\n 'BlockedSiteSolid12': '\\uF70A',\n 'TagSolid': '\\uF70E',\n 'OfficeChat': '\\uF70F'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-15.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "index": 881, - "index2": 875, - "size": 4986, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-16", - "loc": "18:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-16", - "loc": "42:8-11" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-16\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-16-9cf93f3b.woff') format('woff')\"\n },\n icons: {\n 'OfficeChatSolid': '\\uF710',\n 'MailSchedule': '\\uF72E',\n 'WarningSolid': '\\uF736',\n 'Blocked2Solid': '\\uF737',\n 'SkypeCircleArrow': '\\uF747',\n 'SkypeArrow': '\\uF748',\n 'SyncStatus': '\\uF751',\n 'SyncStatusSolid': '\\uF752',\n 'ProjectDocument': '\\uF759',\n 'ToDoLogoOutline': '\\uF75B',\n 'VisioOnlineLogoFill32': '\\uF75F',\n 'VisioOnlineLogo32': '\\uF760',\n 'VisioOnlineLogoCloud32': '\\uF761',\n 'VisioDiagramSync': '\\uF762',\n 'Event12': '\\uF763',\n 'EventDateMissed12': '\\uF764',\n 'UserOptional': '\\uF767',\n 'ResponsesMenu': '\\uF768',\n 'DoubleDownArrow': '\\uF769',\n 'DistributeDown': '\\uF76A',\n 'BookmarkReport': '\\uF76B',\n 'FilterSettings': '\\uF76C',\n 'GripperDotsVertical': '\\uF772',\n 'MailAttached': '\\uF774',\n 'AddIn': '\\uF775',\n 'LinkedDatabase': '\\uF779',\n 'TableLink': '\\uF77A',\n 'PromotedDatabase': '\\uF77D',\n 'BarChartVerticalFilter': '\\uF77E',\n 'BarChartVerticalFilterSolid': '\\uF77F',\n 'MicOff2': '\\uF781',\n 'MicrosoftTranslatorLogo': '\\uF782',\n 'ShowTimeAs': '\\uF787',\n 'FileRequest': '\\uF789',\n 'WorkItemAlert': '\\uF78F',\n 'PowerBILogo16': '\\uF790',\n 'PowerBILogoBackplate16': '\\uF791',\n 'BulletedListText': '\\uF792',\n 'BulletedListBullet': '\\uF793',\n 'BulletedListTextMirrored': '\\uF794',\n 'BulletedListBulletMirrored': '\\uF795',\n 'NumberedListText': '\\uF796',\n 'NumberedListNumber': '\\uF797',\n 'NumberedListTextMirrored': '\\uF798',\n 'NumberedListNumberMirrored': '\\uF799',\n 'RemoveLinkChain': '\\uF79A',\n 'RemoveLinkX': '\\uF79B',\n 'FabricTextHighlight': '\\uF79C',\n 'ClearFormattingA': '\\uF79D',\n 'ClearFormattingEraser': '\\uF79E',\n 'Photo2Fill': '\\uF79F',\n 'IncreaseIndentText': '\\uF7A0',\n 'IncreaseIndentArrow': '\\uF7A1',\n 'DecreaseIndentText': '\\uF7A2',\n 'DecreaseIndentArrow': '\\uF7A3',\n 'IncreaseIndentTextMirrored': '\\uF7A4',\n 'IncreaseIndentArrowMirrored': '\\uF7A5',\n 'DecreaseIndentTextMirrored': '\\uF7A6',\n 'DecreaseIndentArrowMirrored': '\\uF7A7',\n 'CheckListText': '\\uF7A8',\n 'CheckListCheck': '\\uF7A9',\n 'CheckListTextMirrored': '\\uF7AA',\n 'CheckListCheckMirrored': '\\uF7AB',\n 'NumberSymbol': '\\uF7AC',\n 'Coupon': '\\uF7BC',\n 'VerifiedBrand': '\\uF7BD',\n 'ReleaseGate': '\\uF7BE',\n 'ReleaseGateCheck': '\\uF7BF',\n 'ReleaseGateError': '\\uF7C0',\n 'M365InvoicingLogo': '\\uF7C1',\n 'RemoveFromShoppingList': '\\uF7D5',\n 'ShieldAlert': '\\uF7D7',\n 'FabricTextHighlightComposite': '\\uF7DA',\n 'Dataflows': '\\uF7DD',\n 'GenericScanFilled': '\\uF7DE',\n 'DiagnosticDataBarTooltip': '\\uF7DF',\n 'SaveToMobile': '\\uF7E0',\n 'Orientation2': '\\uF7E1',\n 'ScreenCast': '\\uF7E2',\n 'ShowGrid': '\\uF7E3',\n 'SnapToGrid': '\\uF7E4',\n 'ContactList': '\\uF7E5',\n 'NewMail': '\\uF7EA',\n 'EyeShadow': '\\uF7EB',\n 'FabricFolderConfirm': '\\uF7FF',\n 'InformationBarriers': '\\uF803',\n 'CommentActive': '\\uF804',\n 'ColumnVerticalSectionEdit': '\\uF806',\n 'WavingHand': '\\uF807',\n 'ShakeDevice': '\\uF80A',\n 'SmartGlassRemote': '\\uF80B',\n 'Rotate90Clockwise': '\\uF80D',\n 'Rotate90CounterClockwise': '\\uF80E',\n 'CampaignTemplate': '\\uF811',\n 'ChartTemplate': '\\uF812',\n 'PageListFilter': '\\uF813',\n 'SecondaryNav': '\\uF814',\n 'ColumnVerticalSection': '\\uF81E',\n 'SkypeCircleSlash': '\\uF825',\n 'SkypeSlash': '\\uF826'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-16.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "index": 882, - "index2": 876, - "size": 2561, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-17", - "loc": "19:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-17", - "loc": "43:8-11" - } - ], - "usedExports": [ - "initializeIcons" - ], - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-17\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-17-0c4ed701.woff') format('woff')\"\n },\n icons: {\n 'CustomizeToolbar': '\\uF828',\n 'DuplicateRow': '\\uF82A',\n 'RemoveFromTrash': '\\uF82B',\n 'MailOptions': '\\uF82C',\n 'Childof': '\\uF82D',\n 'Footer': '\\uF82E',\n 'Header': '\\uF82F',\n 'BarChartVerticalFill': '\\uF830',\n 'StackedColumnChart2Fill': '\\uF831',\n 'PlainText': '\\uF834',\n 'AccessibiltyChecker': '\\uF835',\n 'DatabaseSync': '\\uF842',\n 'ReservationOrders': '\\uF845',\n 'TabOneColumn': '\\uF849',\n 'TabTwoColumn': '\\uF84A',\n 'TabThreeColumn': '\\uF84B',\n 'BulletedTreeList': '\\uF84C',\n 'MicrosoftTranslatorLogoGreen': '\\uF852',\n 'MicrosoftTranslatorLogoBlue': '\\uF853',\n 'InternalInvestigation': '\\uF854',\n 'AddReaction': '\\uF85D',\n 'ContactHeart': '\\uF862',\n 'VisuallyImpaired': '\\uF866',\n 'EventToDoLogo': '\\uF869',\n 'Variable2': '\\uF86D',\n 'ModelingView': '\\uF871',\n 'DisconnectVirtualMachine': '\\uF873',\n 'ReportLock': '\\uF875',\n 'Uneditable2': '\\uF876',\n 'Uneditable2Mirrored': '\\uF877',\n 'BarChartVerticalEdit': '\\uF89D',\n 'GlobalNavButtonActive': '\\uF89F',\n 'PollResults': '\\uF8A0',\n 'Rerun': '\\uF8A1',\n 'QandA': '\\uF8A2',\n 'QandAMirror': '\\uF8A3',\n 'BookAnswers': '\\uF8A4',\n 'AlertSettings': '\\uF8B6',\n 'TrimStart': '\\uF8BB',\n 'TrimEnd': '\\uF8BC',\n 'TableComputed': '\\uF8F5',\n 'DecreaseIndentLegacy': '\\uE290',\n 'IncreaseIndentLegacy': '\\uE291',\n 'SizeLegacy': '\\uE2B2'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-17.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/iconAliases.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/iconAliases.js", - "index": 883, - "index2": 877, - "size": 543, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./iconAliases", - "loc": "20:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./iconAliases", - "loc": "45:4-23" - } - ], - "usedExports": [ - "registerIconAliases" - ], - "providedExports": [ - "registerIconAliases", - "default" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { registerIconAlias } from '@uifabric/styling';\nexport var registerIconAliases = function () {\n registerIconAlias('trash', 'delete');\n registerIconAlias('onedrive', 'onedrivelogo');\n registerIconAlias('alertsolid12', 'eventdatemissed12');\n registerIconAlias('sixpointstar', '6pointstar');\n registerIconAlias('twelvepointstar', '12pointstar');\n registerIconAlias('toggleon', 'toggleleft');\n registerIconAlias('toggleoff', 'toggleright');\n};\nexport default registerIconAliases;\n//# sourceMappingURL=iconAliases.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/version.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/version.js", - "index": 884, - "index2": 878, - "size": 265, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "47:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 5, - "source": "// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('@uifabric/icons', '7.5.16');\n//# sourceMappingURL=version.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "rZQq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "index": 890, - "index2": 888, - "size": 2007, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerId": "LatS", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldNumber", - "loc": "2:0-38" - }, - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldNumber", - "loc": "2:0-38" - } - ], - "usedExports": [ - "PropertyFieldNumber" - ], - "providedExports": [ - "PropertyFieldNumber" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { PropertyPaneFieldType } from '@microsoft/sp-property-pane';\nimport PropertyFieldNumberHost from './PropertyFieldNumberHost';\nvar PropertyFieldNumberBuilder = /** @class */ (function () {\n function PropertyFieldNumberBuilder(_targetProperty, _properties) {\n this.type = PropertyPaneFieldType.Custom;\n this.targetProperty = _targetProperty;\n this.properties = _properties;\n this.properties.onRender = this._render.bind(this);\n this.properties.onDispose = this._dispose.bind(this);\n }\n PropertyFieldNumberBuilder.prototype._render = function (elem, context, changeCallback) {\n var props = this.properties;\n var element = React.createElement(PropertyFieldNumberHost, __assign(__assign({}, props), { onChanged: this._onChanged.bind(this) }));\n ReactDOM.render(element, elem);\n if (changeCallback) {\n this._onChangeCallback = changeCallback;\n }\n };\n PropertyFieldNumberBuilder.prototype._dispose = function (elem) {\n ReactDOM.unmountComponentAtNode(elem);\n };\n PropertyFieldNumberBuilder.prototype._onChanged = function (value) {\n if (this._onChangeCallback) {\n this._onChangeCallback(this.targetProperty, value);\n }\n };\n return PropertyFieldNumberBuilder;\n}());\nexport function PropertyFieldNumber(targetProperty, properties) {\n return new PropertyFieldNumberBuilder(targetProperty, __assign(__assign({}, properties), { onRender: null, onDispose: null }));\n}\n//# sourceMappingURL=PropertyFieldNumber.js.map" - }, - { - "id": "rZia", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/createMergedRef.js", - "name": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "index": 209, - "index2": 195, - "size": 1081, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:27-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "39:27-42" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./createMergedRef", - "loc": "62:0-52" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./createMergedRef", - "loc": "62:0-52" - } - ], - "usedExports": [ - "createMergedRef" - ], - "providedExports": [ - "createMergedRef" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { arraysEqual } from './array';\n/**\n * Set up a ref resolver function given internal state managed for the ref.\n * @param local Set\n */\nvar createResolver = function (local) { return function (newValue) {\n for (var _i = 0, _a = local.refs; _i < _a.length; _i++) {\n var ref = _a[_i];\n if (typeof ref === 'function') {\n ref(newValue);\n }\n else if (ref) {\n // work around the immutability of the React.Ref type\n ref.current = newValue;\n }\n }\n}; };\n/**\n * Helper to merge refs from within class components.\n */\nexport var createMergedRef = function (value) {\n var local = {\n refs: [],\n };\n return function () {\n var newRefs = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n newRefs[_i] = arguments[_i];\n }\n if (!local.resolver || !arraysEqual(local.refs, newRefs)) {\n local.resolver = createResolver(local);\n }\n local.refs = newRefs;\n return local.resolver;\n };\n};\n//# sourceMappingURL=createMergedRef.js.map" - }, - { - "id": "rgVD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "index": 224, - "index2": 206, - "size": 974, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "53:29-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "140:44-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1033:50-71" - }, - { - "moduleId": "aoeH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/portalContainsElement.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-64" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./portalContainsElement", - "loc": "8:0-40" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./portalContainsElement", - "loc": "8:0-40" - } - ], - "usedExports": [ - "portalContainsElement" - ], - "providedExports": [ - "portalContainsElement" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { findElementRecursive } from './findElementRecursive';\nimport { DATA_PORTAL_ATTRIBUTE } from './setPortalAttribute';\n/**\n * Determine whether a target is within a portal from perspective of root or optional parent.\n * This function only works against portal components that use the setPortalAttribute function.\n * If both parent and child are within the same portal this function will return false.\n * @param target - Element to query portal containment status of.\n * @param parent - Optional parent perspective. Search for containing portal stops at parent\n * (or root if parent is undefined or invalid.)\n */\nexport function portalContainsElement(target, parent) {\n var elementMatch = findElementRecursive(target, function (testElement) { return parent === testElement || testElement.hasAttribute(DATA_PORTAL_ATTRIBUTE); });\n return elementMatch !== null && elementMatch.hasAttribute(DATA_PORTAL_ATTRIBUTE);\n}\n//# sourceMappingURL=portalContainsElement.js.map" - }, - { - "id": "ruv1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "name": "./node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "index": 23, - "index2": 16, - "size": 11360, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "issuerId": "SC5K", - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js" - }, - { - "id": "SC5K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "J5N+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "module": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "Mmr5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "SC5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "Snj6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "VSd+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "Xpmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "m08b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "sxkt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - }, - { - "moduleId": "yyay", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "type": "cjs require", - "userRequest": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "loc": "2:13-191" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "\"use strict\";\n// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.splitStyles = exports.detokenize = exports.clearStyles = exports.loadTheme = exports.flush = exports.configureRunMode = exports.configureLoadStyles = exports.loadStyles = void 0;\n// Store the theming state in __themeState__ global scope for reuse in the case of duplicate\n// load-themed-styles hosted on the page.\nvar _root = typeof window === 'undefined' ? global : window; // eslint-disable-line @typescript-eslint/no-explicit-any\n// Nonce string to inject into script tag if one provided. This is used in CSP (Content Security Policy).\nvar _styleNonce = _root && _root.CSPSettings && _root.CSPSettings.nonce;\nvar _themeState = initializeThemeState();\n/**\n * Matches theming tokens. For example, \"[theme: themeSlotName, default: #FFF]\" (including the quotes).\n */\nvar _themeTokenRegex = /[\\'\\\"]\\[theme:\\s*(\\w+)\\s*(?:\\,\\s*default:\\s*([\\\\\"\\']?[\\.\\,\\(\\)\\#\\-\\s\\w]*[\\.\\,\\(\\)\\#\\-\\w][\\\"\\']?))?\\s*\\][\\'\\\"]/g;\nvar now = function () {\n return typeof performance !== 'undefined' && !!performance.now ? performance.now() : Date.now();\n};\nfunction measure(func) {\n var start = now();\n func();\n var end = now();\n _themeState.perf.duration += end - start;\n}\n/**\n * initialize global state object\n */\nfunction initializeThemeState() {\n var state = _root.__themeState__ || {\n theme: undefined,\n lastStyleElement: undefined,\n registeredStyles: []\n };\n if (!state.runState) {\n state = __assign(__assign({}, state), { perf: {\n count: 0,\n duration: 0\n }, runState: {\n flushTimer: 0,\n mode: 0 /* sync */,\n buffer: []\n } });\n }\n if (!state.registeredThemableStyles) {\n state = __assign(__assign({}, state), { registeredThemableStyles: [] });\n }\n _root.__themeState__ = state;\n return state;\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load\n * event is fired.\n * @param {string | ThemableArray} styles Themable style text to register.\n * @param {boolean} loadAsync When true, always load styles in async mode, irrespective of current sync mode.\n */\nfunction loadStyles(styles, loadAsync) {\n if (loadAsync === void 0) { loadAsync = false; }\n measure(function () {\n var styleParts = Array.isArray(styles) ? styles : splitStyles(styles);\n var _a = _themeState.runState, mode = _a.mode, buffer = _a.buffer, flushTimer = _a.flushTimer;\n if (loadAsync || mode === 1 /* async */) {\n buffer.push(styleParts);\n if (!flushTimer) {\n _themeState.runState.flushTimer = asyncLoadStyles();\n }\n }\n else {\n applyThemableStyles(styleParts);\n }\n });\n}\nexports.loadStyles = loadStyles;\n/**\n * Allows for customizable loadStyles logic. e.g. for server side rendering application\n * @param {(processedStyles: string, rawStyles?: string | ThemableArray) => void}\n * a loadStyles callback that gets called when styles are loaded or reloaded\n */\nfunction configureLoadStyles(loadStylesFn) {\n _themeState.loadStyles = loadStylesFn;\n}\nexports.configureLoadStyles = configureLoadStyles;\n/**\n * Configure run mode of load-themable-styles\n * @param mode load-themable-styles run mode, async or sync\n */\nfunction configureRunMode(mode) {\n _themeState.runState.mode = mode;\n}\nexports.configureRunMode = configureRunMode;\n/**\n * external code can call flush to synchronously force processing of currently buffered styles\n */\nfunction flush() {\n measure(function () {\n var styleArrays = _themeState.runState.buffer.slice();\n _themeState.runState.buffer = [];\n var mergedStyleArray = [].concat.apply([], styleArrays);\n if (mergedStyleArray.length > 0) {\n applyThemableStyles(mergedStyleArray);\n }\n });\n}\nexports.flush = flush;\n/**\n * register async loadStyles\n */\nfunction asyncLoadStyles() {\n return setTimeout(function () {\n _themeState.runState.flushTimer = 0;\n flush();\n }, 0);\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load event\n * is fired.\n * @param {string} styleText Style to register.\n * @param {IStyleRecord} styleRecord Existing style record to re-apply.\n */\nfunction applyThemableStyles(stylesArray, styleRecord) {\n if (_themeState.loadStyles) {\n _themeState.loadStyles(resolveThemableArray(stylesArray).styleString, stylesArray);\n }\n else {\n registerStyles(stylesArray);\n }\n}\n/**\n * Registers a set theme tokens to find and replace. If styles were already registered, they will be\n * replaced.\n * @param {theme} theme JSON object of theme tokens to values.\n */\nfunction loadTheme(theme) {\n _themeState.theme = theme;\n // reload styles.\n reloadStyles();\n}\nexports.loadTheme = loadTheme;\n/**\n * Clear already registered style elements and style records in theme_State object\n * @param option - specify which group of registered styles should be cleared.\n * Default to be both themable and non-themable styles will be cleared\n */\nfunction clearStyles(option) {\n if (option === void 0) { option = 3 /* all */; }\n if (option === 3 /* all */ || option === 2 /* onlyNonThemable */) {\n clearStylesInternal(_themeState.registeredStyles);\n _themeState.registeredStyles = [];\n }\n if (option === 3 /* all */ || option === 1 /* onlyThemable */) {\n clearStylesInternal(_themeState.registeredThemableStyles);\n _themeState.registeredThemableStyles = [];\n }\n}\nexports.clearStyles = clearStyles;\nfunction clearStylesInternal(records) {\n records.forEach(function (styleRecord) {\n var styleElement = styleRecord && styleRecord.styleElement;\n if (styleElement && styleElement.parentElement) {\n styleElement.parentElement.removeChild(styleElement);\n }\n });\n}\n/**\n * Reloads styles.\n */\nfunction reloadStyles() {\n if (_themeState.theme) {\n var themableStyles = [];\n for (var _i = 0, _a = _themeState.registeredThemableStyles; _i < _a.length; _i++) {\n var styleRecord = _a[_i];\n themableStyles.push(styleRecord.themableStyle);\n }\n if (themableStyles.length > 0) {\n clearStyles(1 /* onlyThemable */);\n applyThemableStyles([].concat.apply([], themableStyles));\n }\n }\n}\n/**\n * Find theme tokens and replaces them with provided theme values.\n * @param {string} styles Tokenized styles to fix.\n */\nfunction detokenize(styles) {\n if (styles) {\n styles = resolveThemableArray(splitStyles(styles)).styleString;\n }\n return styles;\n}\nexports.detokenize = detokenize;\n/**\n * Resolves ThemingInstruction objects in an array and joins the result into a string.\n * @param {ThemableArray} splitStyleArray ThemableArray to resolve and join.\n */\nfunction resolveThemableArray(splitStyleArray) {\n var theme = _themeState.theme;\n var themable = false;\n // Resolve the array of theming instructions to an array of strings.\n // Then join the array to produce the final CSS string.\n var resolvedArray = (splitStyleArray || []).map(function (currentValue) {\n var themeSlot = currentValue.theme;\n if (themeSlot) {\n themable = true;\n // A theming annotation. Resolve it.\n var themedValue = theme ? theme[themeSlot] : undefined;\n var defaultValue = currentValue.defaultValue || 'inherit';\n // Warn to console if we hit an unthemed value even when themes are provided, but only if \"DEBUG\" is true.\n // Allow the themedValue to be undefined to explicitly request the default value.\n if (theme &&\n !themedValue &&\n console &&\n !(themeSlot in theme) &&\n typeof DEBUG !== 'undefined' &&\n DEBUG) {\n console.warn(\"Theming value not provided for \\\"\" + themeSlot + \"\\\". Falling back to \\\"\" + defaultValue + \"\\\".\");\n }\n return themedValue || defaultValue;\n }\n else {\n // A non-themable string. Preserve it.\n return currentValue.rawString;\n }\n });\n return {\n styleString: resolvedArray.join(''),\n themable: themable\n };\n}\n/**\n * Split tokenized CSS into an array of strings and theme specification objects\n * @param {string} styles Tokenized styles to split.\n */\nfunction splitStyles(styles) {\n var result = [];\n if (styles) {\n var pos = 0; // Current position in styles.\n var tokenMatch = void 0;\n while ((tokenMatch = _themeTokenRegex.exec(styles))) {\n var matchIndex = tokenMatch.index;\n if (matchIndex > pos) {\n result.push({\n rawString: styles.substring(pos, matchIndex)\n });\n }\n result.push({\n theme: tokenMatch[1],\n defaultValue: tokenMatch[2] // May be undefined\n });\n // index of the first character after the current match\n pos = _themeTokenRegex.lastIndex;\n }\n // Push the rest of the string after the last match.\n result.push({\n rawString: styles.substring(pos)\n });\n }\n return result;\n}\nexports.splitStyles = splitStyles;\n/**\n * Registers a set of style text. If it is registered too early, we will register it when the\n * window.load event is fired.\n * @param {ThemableArray} styleArray Array of IThemingInstruction objects to register.\n * @param {IStyleRecord} styleRecord May specify a style Element to update.\n */\nfunction registerStyles(styleArray) {\n if (typeof document === 'undefined') {\n return;\n }\n var head = document.getElementsByTagName('head')[0];\n var styleElement = document.createElement('style');\n var _a = resolveThemableArray(styleArray), styleString = _a.styleString, themable = _a.themable;\n styleElement.setAttribute('data-load-themed-styles', 'true');\n if (_styleNonce) {\n styleElement.setAttribute('nonce', _styleNonce);\n }\n styleElement.appendChild(document.createTextNode(styleString));\n _themeState.perf.count++;\n head.appendChild(styleElement);\n var ev = document.createEvent('HTMLEvents');\n ev.initEvent('styleinsert', true /* bubbleEvent */, false /* cancelable */);\n ev.args = {\n newStyle: styleElement\n };\n document.dispatchEvent(ev);\n var record = {\n styleElement: styleElement,\n themableStyle: styleArray\n };\n if (themable) {\n _themeState.registeredThemableStyles.push(record);\n }\n else {\n _themeState.registeredStyles.push(record);\n }\n}\n//# sourceMappingURL=index.js.map" - }, - { - "id": "sByA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "index": 274, - "index2": 269, - "size": 11448, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "911:97-110" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "8:0-46" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "8:0-46" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "5:0-62" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "36:43-56" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Button", - "loc": "230:36-49" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "3:0-63" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "16:35-48" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Button", - "loc": "71:32-45" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "4:0-63" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "14:35-48" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "79:64-77" - } - ], - "usedExports": [ - "DefaultButton" - ], - "providedExports": [ - "DefaultButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/BaseComponent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/customizable.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "index": 274, - "index2": 269, - "size": 1128, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "911:97-110" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "8:0-46" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "8:0-46" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "5:0-62" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./DefaultButton/DefaultButton", - "loc": "36:43-56" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Button", - "loc": "230:36-49" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "3:0-63" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "16:35-48" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Button", - "loc": "71:32-45" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "4:0-63" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "userRequest": "../DefaultButton/DefaultButton", - "loc": "14:35-48" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "79:64-77" - } - ], - "usedExports": [ - "DefaultButton" - ], - "providedExports": [ - "DefaultButton" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './DefaultButton.styles';\n/**\n * {@docCategory Button}\n */\nvar DefaultButton = /** @class */ (function (_super) {\n __extends(DefaultButton, _super);\n function DefaultButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n DefaultButton.prototype.render = function () {\n var _a = this.props, _b = _a.primary, primary = _b === void 0 ? false : _b, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: primary ? 'ms-Button--primary' : 'ms-Button--default', styles: getStyles(theme, styles, primary), onRenderDescription: nullRender })));\n };\n DefaultButton = __decorate([\n customizable('DefaultButton', ['theme', 'styles'], true)\n ], DefaultButton);\n return DefaultButton;\n}(React.Component));\nexport { DefaultButton };\n//# sourceMappingURL=DefaultButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "index": 275, - "index2": 268, - "size": 1051, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultButton.styles", - "loc": "5:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "userRequest": "./DefaultButton.styles", - "loc": "16:156-165" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { concatStyleSets, FontWeights } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nimport { primaryStyles, standardStyles } from '../ButtonThemes';\nvar DEFAULT_BUTTON_HEIGHT = '32px';\nvar DEFAULT_BUTTON_MIN_WIDTH = '80px';\nexport var getStyles = memoizeFunction(function (theme, customStyles, primary) {\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var defaultButtonStyles = {\n root: {\n minWidth: DEFAULT_BUTTON_MIN_WIDTH,\n height: DEFAULT_BUTTON_HEIGHT,\n },\n label: {\n fontWeight: FontWeights.semibold,\n },\n };\n return concatStyleSets(baseButtonStyles, defaultButtonStyles, primary ? primaryStyles(theme) : standardStyles(theme), splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=DefaultButton.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "index": 276, - "index2": 267, - "size": 9219, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "issuerId": "16Wd", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": "Cv5W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js" - }, - { - "id": "16Wd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../ButtonThemes", - "loc": "5:0-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../ButtonThemes", - "loc": "20:76-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../ButtonThemes", - "loc": "20:99-113" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../ButtonThemes", - "loc": "6:0-64" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../ButtonThemes", - "loc": "102:77-90" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../ButtonThemes", - "loc": "102:100-114" - } - ], - "usedExports": [ - "primaryStyles", - "standardStyles" - ], - "providedExports": [ - "standardStyles", - "primaryStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, getHighContrastNoAdjustStyle } from '../../Styling';\nimport { IsFocusVisibleClassName } from '../../Utilities';\nvar splitButtonDividerBaseStyles = function () {\n return {\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8,\n };\n};\nexport function standardStyles(theme) {\n var _a, _b, _c, _d, _e;\n var s = theme.semanticColors, p = theme.palette;\n var buttonBackground = s.buttonBackground;\n var buttonBackgroundPressed = s.buttonBackgroundPressed;\n var buttonBackgroundHovered = s.buttonBackgroundHovered;\n var buttonBackgroundDisabled = s.buttonBackgroundDisabled;\n var buttonText = s.buttonText;\n var buttonTextHovered = s.buttonTextHovered;\n var buttonTextDisabled = s.buttonTextDisabled;\n var buttonTextChecked = s.buttonTextChecked;\n var buttonTextCheckedHovered = s.buttonTextCheckedHovered;\n return {\n root: {\n backgroundColor: buttonBackground,\n color: buttonText,\n },\n rootHovered: {\n backgroundColor: buttonBackgroundHovered,\n color: buttonTextHovered,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _a),\n },\n rootPressed: {\n backgroundColor: buttonBackgroundPressed,\n color: buttonTextChecked,\n },\n rootExpanded: {\n backgroundColor: buttonBackgroundPressed,\n color: buttonTextChecked,\n },\n rootChecked: {\n backgroundColor: buttonBackgroundPressed,\n color: buttonTextChecked,\n },\n rootCheckedHovered: {\n backgroundColor: buttonBackgroundPressed,\n color: buttonTextCheckedHovered,\n },\n rootDisabled: {\n color: buttonTextDisabled,\n backgroundColor: buttonBackgroundDisabled,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _b),\n },\n // Split button styles\n splitButtonContainer: {\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n border: 'none',\n },\n _c),\n },\n splitButtonMenuButton: {\n color: p.white,\n backgroundColor: 'transparent',\n selectors: {\n ':hover': {\n backgroundColor: p.neutralLight,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'Highlight',\n },\n _d),\n },\n },\n },\n splitButtonMenuButtonDisabled: {\n backgroundColor: s.buttonBackgroundDisabled,\n selectors: {\n ':hover': {\n backgroundColor: s.buttonBackgroundDisabled,\n },\n },\n },\n splitButtonDivider: __assign(__assign({}, splitButtonDividerBaseStyles()), { backgroundColor: p.neutralTertiaryAlt, selectors: (_e = {},\n _e[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n },\n _e) }),\n splitButtonDividerDisabled: {\n backgroundColor: theme.palette.neutralTertiaryAlt,\n },\n splitButtonMenuButtonChecked: {\n backgroundColor: p.neutralQuaternaryAlt,\n selectors: {\n ':hover': {\n backgroundColor: p.neutralQuaternaryAlt,\n },\n },\n },\n splitButtonMenuButtonExpanded: {\n backgroundColor: p.neutralQuaternaryAlt,\n selectors: {\n ':hover': {\n backgroundColor: p.neutralQuaternaryAlt,\n },\n },\n },\n splitButtonMenuIcon: {\n color: s.buttonText,\n },\n splitButtonMenuIconDisabled: {\n color: s.buttonTextDisabled,\n },\n };\n}\nexport function primaryStyles(theme) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j;\n var p = theme.palette, s = theme.semanticColors;\n return {\n root: {\n backgroundColor: s.primaryButtonBackground,\n border: \"1px solid \" + s.primaryButtonBackground,\n color: s.primaryButtonText,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText', borderColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _a[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n selectors: {\n ':after': {\n border: \"none\",\n outlineColor: p.white,\n },\n },\n },\n _a),\n },\n rootHovered: {\n backgroundColor: s.primaryButtonBackgroundHovered,\n border: \"1px solid \" + s.primaryButtonBackgroundHovered,\n color: s.primaryButtonTextHovered,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'Highlight',\n borderColor: 'Highlight',\n },\n _b),\n },\n rootPressed: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n border: \"1px solid \" + s.primaryButtonBackgroundPressed,\n color: s.primaryButtonTextPressed,\n selectors: (_c = {},\n _c[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText', borderColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _c),\n },\n rootExpanded: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n color: s.primaryButtonTextPressed,\n },\n rootChecked: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n color: s.primaryButtonTextPressed,\n },\n rootCheckedHovered: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n color: s.primaryButtonTextPressed,\n },\n rootDisabled: {\n color: s.primaryButtonTextDisabled,\n backgroundColor: s.primaryButtonBackgroundDisabled,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _d),\n },\n // Split button styles\n splitButtonContainer: {\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n border: 'none',\n },\n _e),\n },\n splitButtonDivider: __assign(__assign({}, splitButtonDividerBaseStyles()), { backgroundColor: p.white, selectors: (_f = {},\n _f[HighContrastSelector] = {\n backgroundColor: 'Window',\n },\n _f) }),\n splitButtonMenuButton: {\n backgroundColor: s.primaryButtonBackground,\n color: s.primaryButtonText,\n selectors: (_g = {},\n _g[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n },\n _g[':hover'] = {\n backgroundColor: s.primaryButtonBackgroundHovered,\n selectors: (_h = {},\n _h[HighContrastSelector] = {\n color: 'Highlight',\n },\n _h),\n },\n _g),\n },\n splitButtonMenuButtonDisabled: {\n backgroundColor: s.primaryButtonBackgroundDisabled,\n selectors: {\n ':hover': {\n backgroundColor: s.primaryButtonBackgroundDisabled,\n },\n },\n },\n splitButtonMenuButtonChecked: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n selectors: {\n ':hover': {\n backgroundColor: s.primaryButtonBackgroundPressed,\n },\n },\n },\n splitButtonMenuButtonExpanded: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n selectors: {\n ':hover': {\n backgroundColor: s.primaryButtonBackgroundPressed,\n },\n },\n },\n splitButtonMenuIcon: {\n color: s.primaryButtonText,\n },\n splitButtonMenuIconDisabled: {\n color: p.neutralTertiary,\n selectors: (_j = {},\n _j[HighContrastSelector] = {\n color: 'GrayText',\n },\n _j),\n },\n };\n}\n//# sourceMappingURL=ButtonThemes.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "sEf8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnary.js", - "name": "./node_modules/lodash/_baseUnary.js", - "index": 510, - "index2": 499, - "size": 332, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "issuerId": "c6wG", - "issuerName": "./node_modules/lodash/isTypedArray.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - }, - { - "id": "c6wG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "name": "./node_modules/lodash/isTypedArray.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1+5i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSet.js", - "module": "./node_modules/lodash/isSet.js", - "moduleName": "./node_modules/lodash/isSet.js", - "type": "cjs require", - "userRequest": "./_baseUnary", - "loc": "2:16-39" - }, - { - "moduleId": "c6wG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isTypedArray.js", - "module": "./node_modules/lodash/isTypedArray.js", - "moduleName": "./node_modules/lodash/isTypedArray.js", - "type": "cjs require", - "userRequest": "./_baseUnary", - "loc": "2:16-39" - }, - { - "moduleId": "zEVN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "module": "./node_modules/lodash/isMap.js", - "moduleName": "./node_modules/lodash/isMap.js", - "type": "cjs require", - "userRequest": "./_baseUnary", - "loc": "2:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * The base implementation of `_.unary` without support for storing metadata.\n *\n * @private\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n */\nfunction baseUnary(func) {\n return function(value) {\n return func(value);\n };\n}\n\nmodule.exports = baseUnary;\n" - }, - { - "id": "sK+M", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js", - "index": 420, - "index2": 407, - "size": 11168, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/styles/theme.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "6:0-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "68:4-19" - } - ], - "usedExports": [ - "loadTheme" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 10, - "source": "\"use strict\";\n/**\n * An IThemingInstruction can specify a rawString to be preserved or a theme slot and a default value\n * to use if that slot is not specified by the theme.\n */\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\n// Store the theming state in __themeState__ global scope for reuse in the case of duplicate\n// load-themed-styles hosted on the page.\nvar _root = (typeof window === 'undefined') ? global : window; // eslint-disable-line @typescript-eslint/no-explicit-any\n// Nonce string to inject into script tag if one provided. This is used in CSP (Content Security Policy).\nvar _styleNonce = _root && _root.CSPSettings && _root.CSPSettings.nonce;\nvar _themeState = initializeThemeState();\n/**\n * Matches theming tokens. For example, \"[theme: themeSlotName, default: #FFF]\" (including the quotes).\n */\nvar _themeTokenRegex = /[\\'\\\"]\\[theme:\\s*(\\w+)\\s*(?:\\,\\s*default:\\s*([\\\\\"\\']?[\\.\\,\\(\\)\\#\\-\\s\\w]*[\\.\\,\\(\\)\\#\\-\\w][\\\"\\']?))?\\s*\\][\\'\\\"]/g;\nvar now = function () { return (typeof performance !== 'undefined' && !!performance.now) ? performance.now() : Date.now(); };\nfunction measure(func) {\n var start = now();\n func();\n var end = now();\n _themeState.perf.duration += end - start;\n}\n/**\n * initialize global state object\n */\nfunction initializeThemeState() {\n var state = _root.__themeState__ || {\n theme: undefined,\n lastStyleElement: undefined,\n registeredStyles: []\n };\n if (!state.runState) {\n state = __assign({}, (state), { perf: {\n count: 0,\n duration: 0\n }, runState: {\n flushTimer: 0,\n mode: 0 /* sync */,\n buffer: []\n } });\n }\n if (!state.registeredThemableStyles) {\n state = __assign({}, (state), { registeredThemableStyles: [] });\n }\n _root.__themeState__ = state;\n return state;\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load\n * event is fired.\n * @param {string | ThemableArray} styles Themable style text to register.\n * @param {boolean} loadAsync When true, always load styles in async mode, irrespective of current sync mode.\n */\nfunction loadStyles(styles, loadAsync) {\n if (loadAsync === void 0) { loadAsync = false; }\n measure(function () {\n var styleParts = Array.isArray(styles) ? styles : splitStyles(styles);\n var _a = _themeState.runState, mode = _a.mode, buffer = _a.buffer, flushTimer = _a.flushTimer;\n if (loadAsync || mode === 1 /* async */) {\n buffer.push(styleParts);\n if (!flushTimer) {\n _themeState.runState.flushTimer = asyncLoadStyles();\n }\n }\n else {\n applyThemableStyles(styleParts);\n }\n });\n}\nexports.loadStyles = loadStyles;\n/**\n * Allows for customizable loadStyles logic. e.g. for server side rendering application\n * @param {(processedStyles: string, rawStyles?: string | ThemableArray) => void}\n * a loadStyles callback that gets called when styles are loaded or reloaded\n */\nfunction configureLoadStyles(loadStylesFn) {\n _themeState.loadStyles = loadStylesFn;\n}\nexports.configureLoadStyles = configureLoadStyles;\n/**\n * Configure run mode of load-themable-styles\n * @param mode load-themable-styles run mode, async or sync\n */\nfunction configureRunMode(mode) {\n _themeState.runState.mode = mode;\n}\nexports.configureRunMode = configureRunMode;\n/**\n * external code can call flush to synchronously force processing of currently buffered styles\n */\nfunction flush() {\n measure(function () {\n var styleArrays = _themeState.runState.buffer.slice();\n _themeState.runState.buffer = [];\n var mergedStyleArray = [].concat.apply([], styleArrays);\n if (mergedStyleArray.length > 0) {\n applyThemableStyles(mergedStyleArray);\n }\n });\n}\nexports.flush = flush;\n/**\n * register async loadStyles\n */\nfunction asyncLoadStyles() {\n return setTimeout(function () {\n _themeState.runState.flushTimer = 0;\n flush();\n }, 0);\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load event\n * is fired.\n * @param {string} styleText Style to register.\n * @param {IStyleRecord} styleRecord Existing style record to re-apply.\n */\nfunction applyThemableStyles(stylesArray, styleRecord) {\n if (_themeState.loadStyles) {\n _themeState.loadStyles(resolveThemableArray(stylesArray).styleString, stylesArray);\n }\n else {\n registerStyles(stylesArray);\n }\n}\n/**\n * Registers a set theme tokens to find and replace. If styles were already registered, they will be\n * replaced.\n * @param {theme} theme JSON object of theme tokens to values.\n */\nfunction loadTheme(theme) {\n _themeState.theme = theme;\n // reload styles.\n reloadStyles();\n}\nexports.loadTheme = loadTheme;\n/**\n * Clear already registered style elements and style records in theme_State object\n * @param option - specify which group of registered styles should be cleared.\n * Default to be both themable and non-themable styles will be cleared\n */\nfunction clearStyles(option) {\n if (option === void 0) { option = 3 /* all */; }\n if (option === 3 /* all */ || option === 2 /* onlyNonThemable */) {\n clearStylesInternal(_themeState.registeredStyles);\n _themeState.registeredStyles = [];\n }\n if (option === 3 /* all */ || option === 1 /* onlyThemable */) {\n clearStylesInternal(_themeState.registeredThemableStyles);\n _themeState.registeredThemableStyles = [];\n }\n}\nexports.clearStyles = clearStyles;\nfunction clearStylesInternal(records) {\n records.forEach(function (styleRecord) {\n var styleElement = styleRecord && styleRecord.styleElement;\n if (styleElement && styleElement.parentElement) {\n styleElement.parentElement.removeChild(styleElement);\n }\n });\n}\n/**\n * Reloads styles.\n */\nfunction reloadStyles() {\n if (_themeState.theme) {\n var themableStyles = [];\n for (var _i = 0, _a = _themeState.registeredThemableStyles; _i < _a.length; _i++) {\n var styleRecord = _a[_i];\n themableStyles.push(styleRecord.themableStyle);\n }\n if (themableStyles.length > 0) {\n clearStyles(1 /* onlyThemable */);\n applyThemableStyles([].concat.apply([], themableStyles));\n }\n }\n}\n/**\n * Find theme tokens and replaces them with provided theme values.\n * @param {string} styles Tokenized styles to fix.\n */\nfunction detokenize(styles) {\n if (styles) {\n styles = resolveThemableArray(splitStyles(styles)).styleString;\n }\n return styles;\n}\nexports.detokenize = detokenize;\n/**\n * Resolves ThemingInstruction objects in an array and joins the result into a string.\n * @param {ThemableArray} splitStyleArray ThemableArray to resolve and join.\n */\nfunction resolveThemableArray(splitStyleArray) {\n var theme = _themeState.theme;\n var themable = false;\n // Resolve the array of theming instructions to an array of strings.\n // Then join the array to produce the final CSS string.\n var resolvedArray = (splitStyleArray || []).map(function (currentValue) {\n var themeSlot = currentValue.theme;\n if (themeSlot) {\n themable = true;\n // A theming annotation. Resolve it.\n var themedValue = theme ? theme[themeSlot] : undefined;\n var defaultValue = currentValue.defaultValue || 'inherit';\n // Warn to console if we hit an unthemed value even when themes are provided, but only if \"DEBUG\" is true.\n // Allow the themedValue to be undefined to explicitly request the default value.\n if (theme && !themedValue && console && !(themeSlot in theme) && typeof DEBUG !== 'undefined' && DEBUG) {\n console.warn(\"Theming value not provided for \\\"\" + themeSlot + \"\\\". Falling back to \\\"\" + defaultValue + \"\\\".\");\n }\n return themedValue || defaultValue;\n }\n else {\n // A non-themable string. Preserve it.\n return currentValue.rawString;\n }\n });\n return {\n styleString: resolvedArray.join(''),\n themable: themable\n };\n}\n/**\n * Split tokenized CSS into an array of strings and theme specification objects\n * @param {string} styles Tokenized styles to split.\n */\nfunction splitStyles(styles) {\n var result = [];\n if (styles) {\n var pos = 0; // Current position in styles.\n var tokenMatch = void 0; // eslint-disable-line no-restricted-syntax\n while ((tokenMatch = _themeTokenRegex.exec(styles))) {\n var matchIndex = tokenMatch.index;\n if (matchIndex > pos) {\n result.push({\n rawString: styles.substring(pos, matchIndex)\n });\n }\n result.push({\n theme: tokenMatch[1],\n defaultValue: tokenMatch[2] // May be undefined\n });\n // index of the first character after the current match\n pos = _themeTokenRegex.lastIndex;\n }\n // Push the rest of the string after the last match.\n result.push({\n rawString: styles.substring(pos)\n });\n }\n return result;\n}\nexports.splitStyles = splitStyles;\n/**\n * Registers a set of style text. If it is registered too early, we will register it when the\n * window.load event is fired.\n * @param {ThemableArray} styleArray Array of IThemingInstruction objects to register.\n * @param {IStyleRecord} styleRecord May specify a style Element to update.\n */\nfunction registerStyles(styleArray) {\n if (typeof document === 'undefined') {\n return;\n }\n var head = document.getElementsByTagName('head')[0];\n var styleElement = document.createElement('style');\n var _a = resolveThemableArray(styleArray), styleString = _a.styleString, themable = _a.themable;\n styleElement.setAttribute('data-load-themed-styles', 'true');\n styleElement.type = 'text/css';\n if (_styleNonce) {\n styleElement.setAttribute('nonce', _styleNonce);\n }\n styleElement.appendChild(document.createTextNode(styleString));\n _themeState.perf.count++;\n head.appendChild(styleElement);\n var ev = document.createEvent('HTMLEvents');\n ev.initEvent('styleinsert', true /* bubbleEvent */, false /* cancelable */);\n ev.args = {\n newStyle: styleElement\n };\n document.dispatchEvent(ev);\n var record = {\n styleElement: styleElement,\n themableStyle: styleArray\n };\n if (themable) {\n _themeState.registeredThemableStyles.push(record);\n }\n else {\n _themeState.registeredStyles.push(record);\n }\n}\n//# sourceMappingURL=index.js.map" - }, - { - "id": "sa5x", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "index": 692, - "index2": 685, - "size": 1325, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "issuerId": "yyay", - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.scss.js" - }, - { - "id": "yyay", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "yyay", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "module": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "moduleName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./WebPartTitle.module.css", - "loc": "1:14-142" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "exports = module.exports = require(\"../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".webPartHeader_c186cb54{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.webPartTitle_c186cb54{font-size:14px;font-weight:600;margin-bottom:11px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;overflow-x:hidden;text-overflow:ellipsis}@media (min-width:320px){.webPartTitle_c186cb54{font-size:16px}}@media (min-width:480px){.webPartTitle_c186cb54{font-size:20px}}.webPartTitle_c186cb54 textarea{background-color:transparent;border:none;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:block;font-family:inherit;font-size:inherit;font-weight:inherit;height:40px;line-height:inherit;margin:0;outline:0;overflow:hidden;resize:none;text-align:inherit;white-space:pre;width:100%}.webPartTitle_c186cb54 textarea::-webkit-input-placeholder,.webPartTitle textarea::-webkit-input-placeholder{color:inherit!important;font-weight:600}.webPartTitle_c186cb54 textarea::-webkit-input-placeholder,.webPartTitle_c186cb54 textarea::placeholder{color:inherit!important;font-weight:600}.webPartTitle_c186cb54 span a:link{text-decoration:none}.webPartTitle_c186cb54 .moreLink_c186cb54{margin-bottom:11px}\", \"\"]);\n" - }, - { - "id": "shjB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isLength.js", - "name": "./node_modules/lodash/isLength.js", - "index": 509, - "index2": 497, - "size": 802, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArrayLike.js", - "issuerId": "MMmD", - "issuerName": "./node_modules/lodash/isArrayLike.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "MMmD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArrayLike.js", - "name": "./node_modules/lodash/isArrayLike.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MMmD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArrayLike.js", - "module": "./node_modules/lodash/isArrayLike.js", - "moduleName": "./node_modules/lodash/isArrayLike.js", - "type": "cjs require", - "userRequest": "./isLength", - "loc": "2:15-36" - }, - { - "moduleId": "dD9F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsTypedArray.js", - "module": "./node_modules/lodash/_baseIsTypedArray.js", - "moduleName": "./node_modules/lodash/_baseIsTypedArray.js", - "type": "cjs require", - "userRequest": "./isLength", - "loc": "2:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/**\n * Checks if `value` is a valid array-like length.\n *\n * **Note:** This method is loosely based on\n * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n * @example\n *\n * _.isLength(3);\n * // => true\n *\n * _.isLength(Number.MIN_VALUE);\n * // => false\n *\n * _.isLength(Infinity);\n * // => false\n *\n * _.isLength('3');\n * // => false\n */\nfunction isLength(value) {\n return typeof value == 'number' &&\n value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n}\n\nmodule.exports = isLength;\n" - }, - { - "id": "sxkt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "index": 20, - "index2": 17, - "size": 586, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "issuerId": "o9eJ", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "o9eJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "o9eJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "type": "cjs require", - "userRequest": "./PropertyFieldCollectionDataHost.module.css", - "loc": "2:0-55" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldCollectionDataHost.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "index": 6, - "index2": 282, - "size": 104, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "15:0-133" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "605:131-158" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "616:26-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "623:26-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "632:26-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "643:26-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "649:26-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "659:126-153" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "669:26-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "676:26-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "685:26-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "714:32-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "725:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "735:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "746:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "752:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "757:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "784:32-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "795:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "801:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "806:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "811:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "819:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "827:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "835:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "846:32-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "856:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "863:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "872:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "883:50-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldCollectionData", - "loc": "894:50-75" - } - ], - "usedExports": [ - "CustomCollectionFieldType", - "PropertyFieldCollectionData" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 1, - "source": "export * from './propertyFields/collectionData';\n//# sourceMappingURL=PropertyFieldCollectionData.js.map" - }, - { - "id": "tMB7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheGet.js", - "name": "./node_modules/lodash/_listCacheGet.js", - "index": 452, - "index2": 443, - "size": 420, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "issuerId": "Xi7e", - "issuerName": "./node_modules/lodash/_ListCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Xi7e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "module": "./node_modules/lodash/_ListCache.js", - "moduleName": "./node_modules/lodash/_ListCache.js", - "type": "cjs require", - "userRequest": "./_listCacheGet", - "loc": "3:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var assocIndexOf = require('./_assocIndexOf');\n\n/**\n * Gets the list cache value for `key`.\n *\n * @private\n * @name get\n * @memberOf ListCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction listCacheGet(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n return index < 0 ? undefined : data[index][1];\n}\n\nmodule.exports = listCacheGet;\n" - }, - { - "id": "tO3a", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/IPropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/IPropertyPaneWebPartInformationHost.js", - "index": 917, - "index2": 914, - "size": 63, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerId": "QxFg", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyPaneWebPartInformationHost", - "loc": "3:0-54" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyPaneWebPartInformationHost", - "loc": "3:0-54" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyPaneWebPartInformationHost.js.map" - }, - { - "id": "tadb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_DataView.js", - "name": "./node_modules/lodash/_DataView.js", - "index": 535, - "index2": 527, - "size": 210, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "issuerId": "QqLw", - "issuerName": "./node_modules/lodash/_getTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_DataView", - "loc": "1:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar DataView = getNative(root, 'DataView');\n\nmodule.exports = DataView;\n" - }, - { - "id": "tqYG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "name": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "index": 62, - "index2": 87, - "size": 62745, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "2:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "5:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:27-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:48-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:27-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:48-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:70-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:29-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:26-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "10:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:132-160" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "11:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "12:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:31-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:12-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:29-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "13:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "14:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:30-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "15:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "17:11-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "17:24-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:28-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "19:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "20:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "20:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "21:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "21:60-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "22:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "22:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "23:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "24:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:7-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "26:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:37-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:102-130" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "27:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:37-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "30:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "30:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "30:79-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "31:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "31:318-346" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "32:17-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "32:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "33:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "33:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "33:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "35:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:11-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "39:20-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "39:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "39:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "40:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:15-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:28-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:49-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "43:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "44:50-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "45:63-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "46:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "46:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "47:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "48:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "49:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "49:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "49:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "52:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "54:31-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "55:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "55:30-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "55:51-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "56:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "56:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:87-115" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:89-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "58:18-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "58:37-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "59:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:367-395" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "62:31-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "63:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "63:61-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "64:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "65:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "65:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "66:31-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "66:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "67:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "68:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "68:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "68:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "70:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "70:59-77" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "71:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "71:31-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "71:50-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "72:49-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "75:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "76:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "77:31-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "81:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "82:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "82:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "85:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "85:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "85:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "89:61-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "90:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "95:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "97:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "100:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "101:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "103:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "103:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "104:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "104:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "104:60-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "105:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "107:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "107:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "108:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "108:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "108:101-129" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "110:36-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "112:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "116:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "117:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "117:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "118:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "119:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "119:47-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:69-97" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "121:19-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "122:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "122:89-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "123:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "123:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "126:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "126:98-126" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "127:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "127:39-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "128:27-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "130:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "130:104-132" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "134:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "134:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "135:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "136:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "138:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "138:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "138:131-159" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "139:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "139:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "139:41-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "140:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "140:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "143:37-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "144:38-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "145:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "146:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "146:114-142" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "147:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:93-111" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "149:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "150:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "150:65-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "152:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "153:25-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "154:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "154:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "155:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "156:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "156:60-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "160:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "166:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "166:131-159" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "168:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "168:94-122" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "169:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "170:12-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "170:50-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "171:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "171:49-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "172:12-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "173:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "175:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "176:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "178:42-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "178:64-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "179:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "179:85-113" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "180:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "183:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "183:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "185:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "185:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "186:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "186:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "190:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "191:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "191:55-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "192:43-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "192:54-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:34-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:56-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "194:55-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "195:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "195:42-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "200:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "200:50-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "200:114-142" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "201:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "201:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "206:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "206:83-111" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "209:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "209:36-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "212:12-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "215:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "216:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "218:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "220:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "224:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "224:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "228:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "236:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "236:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "238:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "239:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "239:83-111" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "242:25-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "245:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "245:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "252:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:97-125" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "257:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "261:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "261:136-164" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "262:12-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "266:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "266:101-129" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "267:46-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "268:49-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "275:41-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "275:83-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "284:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "284:79-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "297:16-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "297:34-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "305:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "313:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "315:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "315:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "323:63-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "324:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "324:79-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "333:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "349:12-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "378:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "402:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "418:22-30" - }, - { - "moduleId": "+Vxm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:13-20" - }, - { - "moduleId": "/nNC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "/nNC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "15:23-43" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "39:24-35" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "69:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "69:104-132" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "75:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "84:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "84:104-132" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "90:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "90:104-132" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "96:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "102:11-26" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "33:69-87" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "25:21-40" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "50:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "58:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "66:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "74:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "114:23-36" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "131:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "150:22-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "174:38-56" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "174:80-98" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "179:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "222:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "228:39-57" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "228:81-99" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "233:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "245:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "251:39-57" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "251:81-99" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "268:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "276:23-43" - }, - { - "moduleId": "2+xV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "3:24-38" - }, - { - "moduleId": "23UO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "24:19-39" - }, - { - "moduleId": "2R+p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "2R+p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "4ZPV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:11-20" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:11-20" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:21-40" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "45:12-18" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "77:23-43" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "91:23-43" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "91:90-118" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "102:27-47" - }, - { - "moduleId": "6/y+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "6/y+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "6avo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "6avo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:28-45" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:49-68" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:27-44" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:45-65" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:67-87" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:21-40" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:29-40" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:38-49" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "50:19-39" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "114:23-43" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "114:81-109" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "134:12-25" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "150:12-25" - }, - { - "moduleId": "8P/B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "11:21-40" - }, - { - "moduleId": "8gXh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "8gXh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "28:21-40" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:16-35" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "72:12-25" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "88:23-43" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "107:28-39" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "131:12-25" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "165:24-32" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "224:12-31" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "23:12-25" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "37:31-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "37:171-199" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "43:31-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "56:27-47" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "65:27-47" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "78:27-47" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "78:112-140" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "87:27-47" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "87:112-140" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "117:15-35" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "124:19-39" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "129:19-39" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "142:31-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "151:31-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "157:19-39" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "175:19-39" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "175:127-155" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "178:45-58" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "180:11-26" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "3:0-53" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "17:15-31" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "4:0-45" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "440:20-28" - }, - { - "moduleId": "EpPS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "EpPS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:21-40" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "41:28-39" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "65:34-47" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "75:47-66" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "75:94-113" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:47-66" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:94-113" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "129:47-66" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "129:94-113" - }, - { - "moduleId": "GJbv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "GJbv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "GOZa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "GOZa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "77:4-17" - }, - { - "moduleId": "HOcH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "HOcH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:12-25" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "69:31-51" - }, - { - "moduleId": "Hol9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "Hol9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "64:4-17" - }, - { - "moduleId": "IA21", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:21-40" - }, - { - "moduleId": "IWJw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "IWJw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "IcvM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": "IcvM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "85:28-39" - }, - { - "moduleId": "IsiW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "IsiW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "L4du", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "27:19-39" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "50:19-39" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "64:12-25" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "81:23-43" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "90:27-47" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "90:115-143" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "141:27-47" - }, - { - "moduleId": "MLrP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "MLrP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:28-39" - }, - { - "moduleId": "MrJ8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "4:11-26" - }, - { - "moduleId": "MrJ8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "6:12-25" - }, - { - "moduleId": "NzI3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "NzI3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:21-40" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:12-25" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "82:31-51" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:11-20" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:37-55" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "83:21-40" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "84:31-44" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "161:32-43" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "170:28-39" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:28-39" - }, - { - "moduleId": "PGgM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:26-44" - }, - { - "moduleId": "PKiz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Styling.js", - "module": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-34" - }, - { - "moduleId": "PKiz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Styling.js", - "module": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "type": "harmony export imported specifier", - "userRequest": "@uifabric/styling", - "loc": "2:0-34" - }, - { - "moduleId": "PmKf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "1:0-66" - }, - { - "moduleId": "PmKf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "7:16-24" - }, - { - "moduleId": "PmKf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "12:21-40" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "4:0-55" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "79:21-39" - }, - { - "moduleId": "Rbzx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "Rbzx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "121:71-90" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "127:52-63" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:14-25" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:23-34" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:26-37" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:25-36" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:26-37" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:25-36" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:22-33" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:21-32" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:19-30" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "14:21-40" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "70:23-43" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "73:100-128" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "90:27-47" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "90:113-141" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "109:23-43" - }, - { - "moduleId": "WApJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "15:21-40" - }, - { - "moduleId": "WZyV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:21-40" - }, - { - "moduleId": "WZyV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "20:23-43" - }, - { - "moduleId": "YKsi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "YZs1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:21-40" - }, - { - "moduleId": "YZs1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:84-93" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "5:11-25" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "12:23-43" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "17:12-22" - }, - { - "moduleId": "aWy8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "aWy8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "c3nE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "c3nE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "d0hX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:23-43" - }, - { - "moduleId": "d0hX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "38:23-43" - }, - { - "moduleId": "d0hX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "55:23-43" - }, - { - "moduleId": "dqzZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:24-32" - }, - { - "moduleId": "eAyO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:14-25" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:22-33" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:14-25" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:15-26" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:27-38" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:15-26" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "31:18-29" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "1:0-54" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "3:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "4:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "5:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "6:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "7:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "8:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "9:4-21" - }, - { - "moduleId": "i5hM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "i5hM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:12-25" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "59:12-25" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "74:19-39" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "82:19-39" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "108:26-44" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:11-20" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:11-20" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "88:11-20" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "135:26-54" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "136:35-63" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "225:23-43" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "209:88-106" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "21:15-35" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:11-31" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:128-156" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "39:11-31" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "39:96-124" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "74:23-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "111:12-25" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "134:11-26" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:15-35" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:132-160" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "163:19-39" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "163:135-163" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "205:11-26" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "226:15-35" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "249:115-143" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "254:28-46" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "284:31-51" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "314:24-44" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "318:19-39" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "318:116-144" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "329:23-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "343:23-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "361:12-32" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "381:50-70" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "398:26-44" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "402:28-39" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "413:23-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "413:79-107" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "422:11-26" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:19-30" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:15-26" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:14-25" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:15-26" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "15:22-33" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:17-28" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:33-44" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:26-37" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "19:16-27" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "20:17-28" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "21:26-37" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:20-31" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "27:14-25" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:27-38" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "3:0-52" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "63:11-26" - }, - { - "moduleId": "nlTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": "nlTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:23-43" - }, - { - "moduleId": "nlTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "47:23-43" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "51:15-35" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "51:132-160" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "101:64-82" - }, - { - "moduleId": "pOkv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:21-40" - }, - { - "moduleId": "pOkv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:47-67" - }, - { - "moduleId": "pXdU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:23-43" - }, - { - "moduleId": "pXdU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "62:15-29" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "21:12-25" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "35:23-43" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "45:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "112:27-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "112:83-111" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "115:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "115:102-130" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "122:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "129:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "148:27-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "169:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "169:118-146" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "205:15-35" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "210:11-26" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:11-20" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:11-20" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:36-44" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "25:26-54" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "110:27-47" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "166:11-26" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "1:0-54" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "3:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "4:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "5:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "6:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "7:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "8:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "9:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "64:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "77:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "15:21-40" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "20:12-25" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "52:23-43" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "59:23-43" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "84:23-43" - }, - { - "moduleId": "rDXp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": "rJqc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "1:0-57" - }, - { - "moduleId": "rJqc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "49:27-47" - }, - { - "moduleId": "rJqc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "69:27-47" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "20:15-35" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:21-40" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:12-25" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "158:42-60" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "160:12-25" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:11-25" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "46:35-55" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "91:21-40" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "172:19-39" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "172:103-131" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "178:19-39" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "215:19-39" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "337:31-51" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "337:87-115" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "369:23-43" - }, - { - "moduleId": "tvzp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "10:21-40" - }, - { - "moduleId": "tvzp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "15:23-43" - }, - { - "moduleId": "tvzp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "22:23-43" - }, - { - "moduleId": "u/50", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": "ux+X", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "ux+X", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:15-35" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "66:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "76:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "85:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "102:11-26" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:22-35" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "156:24-37" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "192:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "201:34-52" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "229:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "244:11-26" - }, - { - "moduleId": "wSFz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "wadA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "wadA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "69:37-48" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "69:49-67" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:46-64" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:88-106" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:159-177" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:201-219" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "48:36-47" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "106:21-40" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "111:12-21" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:28-39" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "153:35-55" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "163:23-43" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "171:28-39" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:23-43" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:70-81" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:143-171" - }, - { - "moduleId": "xqSZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "xqSZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "z+0a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "46:38-56" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:23-43" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "100:26-44" - } - ], - "usedExports": [ - "AnimationClassNames", - "AnimationStyles", - "AnimationVariables", - "FontWeights", - "HighContrastSelector", - "HighContrastSelectorWhite", - "IconFontSizes", - "ScreenWidthMaxMedium", - "ScreenWidthMaxSmall", - "ScreenWidthMinLarge", - "ScreenWidthMinMedium", - "ScreenWidthMinUhfMobile", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ZIndexes", - "concatStyleSets", - "concatStyleSetsWithProps", - "createTheme", - "focusClear", - "getFocusStyle", - "getGlobalClassNames", - "getHighContrastNoAdjustStyle", - "getIcon", - "getInputFocusStyle", - "getPlaceholderStyles", - "getScreenSelector", - "getTheme", - "hiddenContentStyle", - "keyframes", - "mergeStyleSets", - "mergeStyles", - "noWrap", - "normalize", - "registerIconAlias", - "registerIcons" - ], - "providedExports": [ - "AnimationClassNames", - "FontClassNames", - "ColorClassNames", - "AnimationStyles", - "AnimationVariables", - "DefaultPalette", - "DefaultEffects", - "DefaultFontStyles", - "registerDefaultFontFaces", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles", - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "getInputFocusStyle", - "hiddenContentStyle", - "PulsingBeaconAnimationStyles", - "getGlobalClassNames", - "getThemedContext", - "ThemeSettingName", - "getTheme", - "loadTheme", - "createTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "EdgeChromiumHighContrastSelector", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "getHighContrastNoAdjustStyle", - "getEdgeChromiumNoHighContrastAdjustSelector", - "normalize", - "noWrap", - "getFadedOverflowStyle", - "getPlaceholderStyles", - "ZIndexes", - "buildClassMap", - "getIcon", - "registerIcons", - "registerIconAlias", - "unregisterIcons", - "setIconOptions", - "getIconClassName", - "InjectionMode", - "Stylesheet", - "concatStyleSets", - "concatStyleSetsWithProps", - "fontFace", - "keyframes", - "mergeStyleSets", - "mergeStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@microsoft/load-themed-styles/lib-es6/index.js (<- Module uses injected variables (global))", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/StyleOptionsState.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/Stylesheet.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/mergeStyles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/styleToClassName.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/set-version/lib/index.js because of ./node_modules/office-ui-fabric-react/lib/version.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/GlobalSettings.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/Customizations.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/sessionStorage.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warn.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js", - "index": 62, - "index2": 87, - "size": 352, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "issuerId": "GOZa", - "issuerName": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "2:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "5:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:27-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:48-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:27-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:48-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:70-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:29-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:26-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "10:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:132-160" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "11:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:28-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "12:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:31-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:12-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:29-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "13:30-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "14:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:30-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "15:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "17:11-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "17:24-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:28-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "19:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "20:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "20:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "21:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "21:60-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "22:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "22:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "23:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "24:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:7-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "26:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:37-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:102-130" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "27:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:37-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "30:14-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "30:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "30:79-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "31:23-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "31:318-346" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "32:17-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "32:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "33:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "33:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "33:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "35:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:11-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "39:20-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "39:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "39:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "40:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:15-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:28-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:49-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "43:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "44:50-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "45:63-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "46:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "46:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "47:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "48:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "49:27-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "49:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "49:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "52:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "54:31-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "55:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "55:30-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "55:51-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "56:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "56:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:87-115" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "57:89-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "58:18-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "58:37-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "59:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:11-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:367-395" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "62:31-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "63:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "63:61-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "64:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "65:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "65:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "66:31-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "66:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "67:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "68:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "68:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "68:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "70:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "70:59-77" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "71:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "71:31-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "71:50-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "72:49-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "75:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "76:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "77:31-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "81:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "82:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "82:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "85:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "85:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "85:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "89:61-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "90:15-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "95:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "97:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "100:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "101:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "103:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "103:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "104:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "104:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "104:60-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "105:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "107:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "107:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "108:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "108:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "108:101-129" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "110:36-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "112:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "116:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "117:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "117:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "118:21-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "119:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "119:47-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "120:69-97" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "121:19-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "122:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "122:89-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "123:26-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "123:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "126:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "126:98-126" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "127:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "127:39-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "128:27-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "130:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "130:104-132" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "134:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "134:39-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "135:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "136:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "138:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "138:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "138:131-159" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "139:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "139:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "139:41-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "140:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "140:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "143:37-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "144:38-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "145:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "146:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "146:114-142" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "147:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:93-111" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "149:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "150:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "150:65-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "152:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "153:25-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "154:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "154:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "155:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "156:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "156:60-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "160:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "166:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "166:131-159" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "168:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "168:94-122" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "169:12-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "170:12-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "170:50-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "171:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "171:49-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "172:12-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "173:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "175:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "176:8-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "178:42-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "178:64-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "179:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "179:85-113" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "180:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "183:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "183:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "185:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "185:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "186:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "186:35-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "190:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "191:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "191:55-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "192:43-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "192:54-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:34-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:56-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "194:55-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "195:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "195:42-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "200:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "200:50-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "200:114-142" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "201:11-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "201:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "206:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "206:83-111" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "209:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "209:36-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "212:12-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "215:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "216:12-25" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "218:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "220:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "224:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "224:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "228:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "236:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "236:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "238:12-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "239:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "239:83-111" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "242:25-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "245:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "245:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "252:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:97-125" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "257:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "261:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "261:136-164" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "262:12-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "266:19-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "266:101-129" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "267:46-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "268:49-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "275:41-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "275:83-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "284:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "284:79-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "297:16-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "297:34-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "305:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "313:28-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "315:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "315:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "323:63-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "324:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "324:79-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "333:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "349:12-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "378:31-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "402:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "418:22-30" - }, - { - "moduleId": "+Vxm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:13-20" - }, - { - "moduleId": "/nNC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "/nNC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "15:23-43" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "39:24-35" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "69:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "69:104-132" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "75:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "84:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "84:104-132" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "90:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "90:104-132" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "96:19-39" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "102:11-26" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "33:69-87" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "25:21-40" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "50:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "58:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "66:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "74:15-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "114:23-36" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "131:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "150:22-35" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "174:38-56" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "174:80-98" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "179:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "222:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "228:39-57" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "228:81-99" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "233:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "245:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "251:39-57" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "251:81-99" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "268:23-43" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "276:23-43" - }, - { - "moduleId": "2+xV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "3:24-38" - }, - { - "moduleId": "23UO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "24:19-39" - }, - { - "moduleId": "2R+p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "2R+p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "4ZPV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:11-20" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:11-20" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:21-40" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "45:12-18" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "77:23-43" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "91:23-43" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "91:90-118" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "102:27-47" - }, - { - "moduleId": "6/y+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "6/y+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "6avo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "6avo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:28-45" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:49-68" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:27-44" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:45-65" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:67-87" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:21-40" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:29-40" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:38-49" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "50:19-39" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "114:23-43" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "114:81-109" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "134:12-25" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "150:12-25" - }, - { - "moduleId": "8P/B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "11:21-40" - }, - { - "moduleId": "8gXh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "8gXh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "28:21-40" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "43:16-35" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "72:12-25" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "88:23-43" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "107:28-39" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "131:12-25" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "165:24-32" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "224:12-31" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "23:12-25" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "37:31-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "37:171-199" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "43:31-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "56:27-47" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "65:27-47" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "78:27-47" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "78:112-140" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "87:27-47" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "87:112-140" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "117:15-35" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "124:19-39" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "129:19-39" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "142:31-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "151:31-51" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "157:19-39" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "175:19-39" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "175:127-155" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "178:45-58" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "180:11-26" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "3:0-53" - }, - { - "moduleId": "AzAN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "module": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "17:15-31" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "4:0-45" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "440:20-28" - }, - { - "moduleId": "EpPS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "EpPS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:21-40" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "41:28-39" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "65:34-47" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "75:47-66" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "75:94-113" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:47-66" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:94-113" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "129:47-66" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "129:94-113" - }, - { - "moduleId": "GJbv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "GJbv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "GOZa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "GOZa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "77:4-17" - }, - { - "moduleId": "HOcH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "HOcH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:12-25" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "69:31-51" - }, - { - "moduleId": "Hol9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "Hol9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "64:4-17" - }, - { - "moduleId": "IA21", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:21-40" - }, - { - "moduleId": "IWJw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "IWJw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "IcvM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": "IcvM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "85:28-39" - }, - { - "moduleId": "IsiW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "IsiW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "L4du", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "27:19-39" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "50:19-39" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "64:12-25" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "81:23-43" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "90:27-47" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "90:115-143" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "141:27-47" - }, - { - "moduleId": "MLrP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "MLrP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:28-39" - }, - { - "moduleId": "MrJ8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "4:11-26" - }, - { - "moduleId": "MrJ8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "6:12-25" - }, - { - "moduleId": "NzI3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "NzI3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:21-40" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:12-25" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "82:31-51" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:11-20" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:37-55" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "83:21-40" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "84:31-44" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "161:32-43" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "170:28-39" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "256:28-39" - }, - { - "moduleId": "PGgM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:26-44" - }, - { - "moduleId": "PKiz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Styling.js", - "module": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-34" - }, - { - "moduleId": "PKiz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Styling.js", - "module": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "type": "harmony export imported specifier", - "userRequest": "@uifabric/styling", - "loc": "2:0-34" - }, - { - "moduleId": "PmKf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "1:0-66" - }, - { - "moduleId": "PmKf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "7:16-24" - }, - { - "moduleId": "PmKf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "12:21-40" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "4:0-55" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "79:21-39" - }, - { - "moduleId": "Rbzx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "Rbzx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "121:71-90" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "127:52-63" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:14-25" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:23-34" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:26-37" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:25-36" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:26-37" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:25-36" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:22-33" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:21-32" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:19-30" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "14:21-40" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "70:23-43" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "73:100-128" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "90:27-47" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "90:113-141" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "109:23-43" - }, - { - "moduleId": "WApJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "15:21-40" - }, - { - "moduleId": "WZyV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:21-40" - }, - { - "moduleId": "WZyV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "20:23-43" - }, - { - "moduleId": "YKsi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "YZs1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:21-40" - }, - { - "moduleId": "YZs1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:84-93" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "5:11-25" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "12:23-43" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "17:12-22" - }, - { - "moduleId": "aWy8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "aWy8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-3.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "c3nE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "c3nE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-6.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "d0hX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:23-43" - }, - { - "moduleId": "d0hX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "38:23-43" - }, - { - "moduleId": "d0hX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "55:23-43" - }, - { - "moduleId": "dqzZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:24-32" - }, - { - "moduleId": "eAyO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:14-25" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:22-33" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:14-25" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:15-26" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "12:27-38" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:15-26" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "31:18-29" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "1:0-54" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "3:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "4:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "5:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "6:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "7:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "8:4-21" - }, - { - "moduleId": "g9H0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/iconAliases.js", - "module": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "moduleName": "./node_modules/@uifabric/icons/lib/iconAliases.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "9:4-21" - }, - { - "moduleId": "i5hM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "i5hM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-11.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:12-25" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "59:12-25" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "74:19-39" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "82:19-39" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "108:26-44" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:11-20" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "37:11-20" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "88:11-20" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "135:26-54" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "136:35-63" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "225:23-43" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "209:88-106" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "21:15-35" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:11-31" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:128-156" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "39:11-31" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "39:96-124" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "74:23-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "111:12-25" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "134:11-26" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:15-35" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:132-160" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "163:19-39" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "163:135-163" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "205:11-26" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "226:15-35" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "249:115-143" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "254:28-46" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "284:31-51" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "314:24-44" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "318:19-39" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "318:116-144" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "329:23-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "343:23-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "361:12-32" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "381:50-70" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "398:26-44" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "402:28-39" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "413:23-43" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "413:79-107" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "422:11-26" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "5:19-30" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "6:15-26" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:14-25" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "14:15-26" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "15:22-33" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:17-28" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:33-44" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:26-37" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "19:16-27" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "20:17-28" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "21:26-37" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "26:20-31" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "27:14-25" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "34:27-38" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "3:0-52" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "63:11-26" - }, - { - "moduleId": "nlTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": "nlTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "36:23-43" - }, - { - "moduleId": "nlTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "47:23-43" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "18:21-40" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "51:15-35" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "51:132-160" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "101:64-82" - }, - { - "moduleId": "pOkv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:21-40" - }, - { - "moduleId": "pOkv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "18:47-67" - }, - { - "moduleId": "pXdU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "13:23-43" - }, - { - "moduleId": "pXdU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "62:15-29" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "21:12-25" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "35:23-43" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "45:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "112:27-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "112:83-111" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "115:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "115:102-130" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "122:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "129:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "148:27-47" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "169:19-39" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "169:118-146" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "205:15-35" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "210:11-26" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "11:11-20" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "17:11-20" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "24:36-44" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "25:26-54" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "110:27-47" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "166:11-26" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "1:0-54" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "3:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "4:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "5:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "6:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "7:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "8:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "9:4-21" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "64:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "77:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "15:21-40" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "20:12-25" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "52:23-43" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "59:23-43" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "84:23-43" - }, - { - "moduleId": "rDXp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "7:21-40" - }, - { - "moduleId": "rJqc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "1:0-57" - }, - { - "moduleId": "rJqc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "49:27-47" - }, - { - "moduleId": "rJqc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.styles.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "69:27-47" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "20:15-35" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "29:21-40" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "98:12-25" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "158:42-60" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "160:12-25" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "10:11-25" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "46:35-55" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "91:21-40" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "172:19-39" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "172:103-131" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "178:19-39" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "215:19-39" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "337:31-51" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "337:87-115" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "369:23-43" - }, - { - "moduleId": "tvzp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "10:21-40" - }, - { - "moduleId": "tvzp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "15:23-43" - }, - { - "moduleId": "tvzp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Styling", - "loc": "22:23-43" - }, - { - "moduleId": "u/50", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "9:21-40" - }, - { - "moduleId": "ux+X", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "ux+X", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-9.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "23:15-35" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "66:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "76:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "85:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "102:11-26" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:22-35" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "156:24-37" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "192:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "201:34-52" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "229:19-39" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "244:11-26" - }, - { - "moduleId": "wSFz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "wadA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "wadA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-2.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "69:37-48" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Styling", - "loc": "69:49-67" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:46-64" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:88-106" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:159-177" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "42:201-219" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "48:36-47" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "106:21-40" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "111:12-21" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "148:28-39" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "153:35-55" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "163:23-43" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "171:28-39" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:23-43" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:70-81" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "193:143-171" - }, - { - "moduleId": "xqSZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/styling", - "loc": "2:0-50" - }, - { - "moduleId": "xqSZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "module": "./node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "moduleName": "./node_modules/@uifabric/icons/lib/fabric-icons-7.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/styling", - "loc": "120:4-17" - }, - { - "moduleId": "z+0a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "8:21-40" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "16:21-40" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "46:38-56" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "60:23-43" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Styling", - "loc": "100:26-44" - } - ], - "usedExports": [ - "AnimationClassNames", - "AnimationStyles", - "AnimationVariables", - "FontWeights", - "HighContrastSelector", - "HighContrastSelectorWhite", - "IconFontSizes", - "ScreenWidthMaxMedium", - "ScreenWidthMaxSmall", - "ScreenWidthMinLarge", - "ScreenWidthMinMedium", - "ScreenWidthMinUhfMobile", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ZIndexes", - "concatStyleSets", - "concatStyleSetsWithProps", - "createTheme", - "focusClear", - "getFocusStyle", - "getGlobalClassNames", - "getHighContrastNoAdjustStyle", - "getIcon", - "getInputFocusStyle", - "getPlaceholderStyles", - "getScreenSelector", - "getTheme", - "hiddenContentStyle", - "keyframes", - "mergeStyleSets", - "mergeStyles", - "noWrap", - "normalize", - "registerIconAlias", - "registerIcons" - ], - "providedExports": [ - "AnimationClassNames", - "FontClassNames", - "ColorClassNames", - "AnimationStyles", - "AnimationVariables", - "DefaultPalette", - "DefaultEffects", - "DefaultFontStyles", - "registerDefaultFontFaces", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles", - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "getInputFocusStyle", - "hiddenContentStyle", - "PulsingBeaconAnimationStyles", - "getGlobalClassNames", - "getThemedContext", - "ThemeSettingName", - "getTheme", - "loadTheme", - "createTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "EdgeChromiumHighContrastSelector", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "getHighContrastNoAdjustStyle", - "getEdgeChromiumNoHighContrastAdjustSelector", - "normalize", - "noWrap", - "getFadedOverflowStyle", - "getPlaceholderStyles", - "ZIndexes", - "buildClassMap", - "getIcon", - "registerIcons", - "registerIconAlias", - "unregisterIcons", - "setIconOptions", - "getIconClassName", - "InjectionMode", - "Stylesheet", - "concatStyleSets", - "concatStyleSetsWithProps", - "fontFace", - "keyframes", - "mergeStyleSets", - "mergeStyles" - ], - "optimizationBailout": [], - "depth": 4, - "source": "export * from './classNames/index';\nexport * from './styles/index';\nexport * from './utilities/index';\nexport * from './MergeStyles';\nimport './version';\n// Ensure theme is initialized when this package is referenced.\nimport { initializeThemeInCustomizations } from './styles/theme';\ninitializeThemeInCustomizations();\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/index.js", - "name": "./node_modules/@uifabric/styling/lib/classNames/index.js", - "index": 63, - "index2": 53, - "size": 198, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./classNames/index", - "loc": "1:0-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./classNames/index", - "loc": "1:0-35" - } - ], - "usedExports": [ - "AnimationClassNames" - ], - "providedExports": [ - "AnimationClassNames", - "FontClassNames", - "ColorClassNames" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export { AnimationClassNames } from './AnimationClassNames';\nexport { FontClassNames } from './FontClassNames';\nexport { ColorClassNames } from './ColorClassNames';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/language.js", - "name": "./node_modules/@uifabric/utilities/lib/language.js", - "index": 86, - "index2": 68, - "size": 1767, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "8:48-59" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./language", - "loc": "38:0-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./language", - "loc": "38:0-27" - } - ], - "usedExports": [ - "getLanguage" - ], - "providedExports": [ - "getLanguage", - "setLanguage" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getDocument } from './dom/getDocument';\nimport * as localStorage from './localStorage';\nimport * as sessionStorage from './sessionStorage';\n// Default to undefined so that we initialize on first read.\nvar _language;\nvar STORAGE_KEY = 'language';\n/**\n * Gets the language set for the page.\n * @param persistenceType - Where to persist the value. Default is `localStorage` if available.\n * (In version 8, the default will be `sessionStorage`.)\n */\nexport function getLanguage(persistenceType) {\n if (persistenceType === void 0) { persistenceType = 'localStorage'; }\n if (_language === undefined) {\n var doc = getDocument();\n var savedLanguage = persistenceType === 'localStorage'\n ? localStorage.getItem(STORAGE_KEY)\n : persistenceType === 'sessionStorage'\n ? sessionStorage.getItem(STORAGE_KEY)\n : undefined;\n if (savedLanguage) {\n _language = savedLanguage;\n }\n if (_language === undefined && doc) {\n _language = doc.documentElement.getAttribute('lang');\n }\n if (_language === undefined) {\n _language = 'en';\n }\n }\n return _language;\n}\nexport function setLanguage(language, persistenceParam) {\n var doc = getDocument();\n if (doc) {\n doc.documentElement.setAttribute('lang', language);\n }\n var persistenceType = persistenceParam === true ? 'none' : !persistenceParam ? 'localStorage' : persistenceParam;\n if (persistenceType === 'localStorage') {\n localStorage.setItem(STORAGE_KEY, language);\n }\n else if (persistenceType === 'sessionStorage') {\n sessionStorage.setItem(STORAGE_KEY, language);\n }\n _language = language;\n}\n//# sourceMappingURL=language.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/merge.js", - "name": "./node_modules/@uifabric/utilities/lib/merge.js", - "index": 92, - "index2": 73, - "size": 1820, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/mergeThemes.js", - "module": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "moduleName": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "9:22-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/mergeThemes.js", - "module": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "moduleName": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "18:43-48" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./merge", - "loc": "41:0-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./merge", - "loc": "41:0-24" - } - ], - "usedExports": [ - "merge" - ], - "providedExports": [ - "merge" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Simple deep merge function. Takes all arguments and returns a deep copy of the objects merged\n * together in the order provided. If an object creates a circular reference, it will assign the\n * original reference.\n */\nexport function merge(target) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\n var arg = args_1[_a];\n _merge(target || {}, arg);\n }\n return target;\n}\n/**\n * The _merge helper iterates through all props on source and assigns them to target.\n * When the value is an object, we will create a deep clone of the object. However if\n * there is a circular reference, the value will not be deep cloned and will persist\n * the reference.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction _merge(target, source, circularReferences) {\n if (circularReferences === void 0) { circularReferences = []; }\n circularReferences.push(source);\n for (var name_1 in source) {\n if (source.hasOwnProperty(name_1)) {\n if (name_1 !== '__proto__' && name_1 !== 'constructor' && name_1 !== 'prototype') {\n var value = source[name_1];\n if (typeof value === 'object' && value !== null && !Array.isArray(value)) {\n var isCircularReference = circularReferences.indexOf(value) > -1;\n target[name_1] = (isCircularReference\n ? value\n : _merge(target[name_1] || {}, value, circularReferences));\n }\n else {\n target[name_1] = value;\n }\n }\n }\n }\n circularReferences.pop();\n return target;\n}\n//# sourceMappingURL=merge.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "index": 78, - "index2": 76, - "size": 4036, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./styles/theme", - "loc": "7:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./styles/theme", - "loc": "8:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./theme", - "loc": "11:0-138" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "11:0-138" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "11:0-138" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "11:0-138" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "11:0-138" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./theme", - "loc": "11:0-138" - }, - { - "moduleId": "itTX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../styles/index", - "loc": "29:52-60" - } - ], - "usedExports": [ - "initializeThemeInCustomizations", - "getTheme" - ], - "providedExports": [ - "createTheme", - "ThemeSettingName", - "initializeThemeInCustomizations", - "getTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "loadTheme" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { Customizations, getWindow } from '@uifabric/utilities';\nimport { loadTheme as legacyLoadTheme } from '@microsoft/load-themed-styles';\nimport { createTheme } from '@fluentui/theme/lib/createTheme';\nexport { createTheme } from '@fluentui/theme/lib/createTheme';\nvar _theme = createTheme({});\nvar _onThemeChangeCallbacks = [];\nexport var ThemeSettingName = 'theme';\nexport function initializeThemeInCustomizations() {\n var _a;\n var _b, _c, _d, _e;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var win = getWindow();\n if ((_c = (_b = win) === null || _b === void 0 ? void 0 : _b.FabricConfig) === null || _c === void 0 ? void 0 : _c.legacyTheme) {\n // does everything the `else` clause does and more, such as invoke legacy theming\n loadTheme(win.FabricConfig.legacyTheme);\n }\n else if (!Customizations.getSettings([ThemeSettingName]).theme) {\n if ((_e = (_d = win) === null || _d === void 0 ? void 0 : _d.FabricConfig) === null || _e === void 0 ? void 0 : _e.theme) {\n _theme = createTheme(win.FabricConfig.theme);\n }\n // Set the default theme.\n Customizations.applySettings((_a = {}, _a[ThemeSettingName] = _theme, _a));\n }\n}\ninitializeThemeInCustomizations();\n/**\n * Gets the theme object\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\nexport function getTheme(depComments) {\n if (depComments === void 0) { depComments = false; }\n if (depComments === true) {\n _theme = createTheme({}, depComments);\n }\n return _theme;\n}\n/**\n * Registers a callback that gets called whenever the theme changes.\n * This should only be used when the component cannot automatically get theme changes through its state.\n * This will not register duplicate callbacks.\n */\nexport function registerOnThemeChangeCallback(callback) {\n if (_onThemeChangeCallbacks.indexOf(callback) === -1) {\n _onThemeChangeCallbacks.push(callback);\n }\n}\n/**\n * See registerOnThemeChangeCallback().\n * Removes previously registered callbacks.\n */\nexport function removeOnThemeChangeCallback(callback) {\n var i = _onThemeChangeCallbacks.indexOf(callback);\n if (i === -1) {\n return;\n }\n _onThemeChangeCallbacks.splice(i, 1);\n}\n/**\n * Applies the theme, while filling in missing slots.\n * @param theme - Partial theme object.\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\nexport function loadTheme(theme, depComments) {\n var _a;\n if (depComments === void 0) { depComments = false; }\n _theme = createTheme(theme, depComments);\n // Invoke the legacy method of theming the page as well.\n legacyLoadTheme(__assign(__assign(__assign(__assign({}, _theme.palette), _theme.semanticColors), _theme.effects), _loadFonts(_theme)));\n Customizations.applySettings((_a = {}, _a[ThemeSettingName] = _theme, _a));\n _onThemeChangeCallbacks.forEach(function (callback) {\n try {\n callback(_theme);\n }\n catch (e) {\n // don't let a bad callback break everything else\n }\n });\n return _theme;\n}\n/**\n * Loads font variables into a JSON object.\n * @param theme - The theme object\n */\nfunction _loadFonts(theme) {\n var lines = {};\n for (var _i = 0, _a = Object.keys(theme.fonts); _i < _a.length; _i++) {\n var fontName = _a[_i];\n var font = theme.fonts[fontName];\n for (var _b = 0, _c = Object.keys(font); _b < _c.length; _b++) {\n var propName = _c[_b];\n var name_1 = fontName + propName.charAt(0).toUpperCase() + propName.slice(1);\n var value = font[propName];\n if (propName === 'fontSize' && typeof value === 'number') {\n // if it's a number, convert it to px by default like our theming system does\n value = value + 'px';\n }\n lines[name_1] = value;\n }\n }\n return lines;\n}\n//# sourceMappingURL=theme.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js", - "index": 69, - "index2": 79, - "size": 945, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./styles/index", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./styles/index", - "loc": "2:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../styles/index", - "loc": "2:0-50" - }, - { - "moduleId": "itTX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../styles/index", - "loc": "3:0-43" - } - ], - "usedExports": [ - "getGlobalClassNames", - "HighContrastSelector", - "getHighContrastNoAdjustStyle", - "hiddenContentStyle", - "normalize", - "getInputFocusStyle", - "AnimationVariables", - "getPlaceholderStyles", - "getFocusStyle", - "FontWeights", - "getScreenSelector", - "ScreenWidthMaxMedium", - "IconFontSizes", - "getTheme", - "ZIndexes", - "createTheme", - "focusClear", - "HighContrastSelectorWhite", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinUhfMobile", - "ScreenWidthMinXXLarge", - "AnimationStyles", - "ScreenWidthMaxSmall", - "noWrap" - ], - "providedExports": [ - "AnimationStyles", - "AnimationVariables", - "DefaultPalette", - "DefaultEffects", - "DefaultFontStyles", - "registerDefaultFontFaces", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles", - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "getInputFocusStyle", - "hiddenContentStyle", - "PulsingBeaconAnimationStyles", - "getGlobalClassNames", - "getThemedContext", - "ThemeSettingName", - "getTheme", - "loadTheme", - "createTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "EdgeChromiumHighContrastSelector", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "getHighContrastNoAdjustStyle", - "getEdgeChromiumNoHighContrastAdjustSelector", - "normalize", - "noWrap", - "getFadedOverflowStyle", - "getPlaceholderStyles", - "ZIndexes" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export { AnimationStyles, AnimationVariables } from './AnimationStyles';\nexport { DefaultPalette } from './DefaultPalette';\nexport { DefaultEffects } from './DefaultEffects';\nexport { DefaultFontStyles, registerDefaultFontFaces } from './DefaultFontStyles';\nexport { FontSizes, FontWeights, IconFontSizes, createFontStyles } from './fonts';\nexport * from './getFocusStyle';\nexport { hiddenContentStyle } from './hiddenContentStyle';\nexport { PulsingBeaconAnimationStyles } from './PulsingBeaconAnimationStyles';\nexport { getGlobalClassNames } from './getGlobalClassNames';\nexport * from './scheme';\nexport { ThemeSettingName, getTheme, loadTheme, createTheme, registerOnThemeChangeCallback, removeOnThemeChangeCallback, } from './theme';\nexport * from './CommonStyles';\nexport * from './GeneralStyles';\nexport * from './getFadedOverflowStyle';\nexport * from './getPlaceholderStyles';\nexport * from './zIndexes';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "name": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "index": 95, - "index2": 82, - "size": 240, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../utilities/index", - "loc": "1:0-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/index", - "loc": "3:0-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./utilities/index", - "loc": "3:0-34" - } - ], - "usedExports": [ - "getIcon", - "registerIconAlias", - "registerIcons" - ], - "providedExports": [ - "buildClassMap", - "getIcon", - "registerIcons", - "registerIconAlias", - "unregisterIcons", - "setIconOptions", - "getIconClassName" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export { buildClassMap } from './buildClassMap';\nexport { getIcon, registerIcons, registerIconAlias, unregisterIcons, setIconOptions, } from './icons';\nexport { getIconClassName } from './getIconClassName';\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "name": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "index": 98, - "index2": 83, - "size": 201, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "type": "harmony side effect evaluation", - "userRequest": "../MergeStyles", - "loc": "1:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./MergeStyles", - "loc": "4:0-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./MergeStyles", - "loc": "4:0-30" - } - ], - "usedExports": [ - "mergeStyleSets", - "keyframes", - "concatStyleSets", - "mergeStyles", - "concatStyleSetsWithProps" - ], - "providedExports": [ - "InjectionMode", - "Stylesheet", - "concatStyleSets", - "concatStyleSetsWithProps", - "fontFace", - "keyframes", - "mergeStyleSets", - "mergeStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export { InjectionMode, Stylesheet, concatStyleSets, concatStyleSetsWithProps, fontFace, keyframes, mergeStyleSets, mergeStyles, } from '@uifabric/merge-styles';\n//# sourceMappingURL=MergeStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/version.js", - "name": "./node_modules/@uifabric/styling/lib/version.js", - "index": 99, - "index2": 86, - "size": 267, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "module": "./node_modules/@uifabric/styling/lib/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "5:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 5, - "source": "// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('@uifabric/styling', '7.19.1');\n//# sourceMappingURL=version.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "name": "./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js", - "index": 65, - "index2": 49, - "size": 1009, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "name": "./node_modules/@uifabric/styling/lib/utilities/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./buildClassMap", - "loc": "1:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./buildClassMap", - "loc": "1:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../utilities/index", - "loc": "6:33-46" - }, - { - "moduleId": "aMN6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../utilities/buildClassMap", - "loc": "1:0-59" - }, - { - "moduleId": "aMN6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "type": "harmony import specifier", - "userRequest": "../utilities/buildClassMap", - "loc": "6:28-41" - } - ], - "usedExports": [ - "buildClassMap" - ], - "providedExports": [ - "buildClassMap" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { mergeStyles } from '../MergeStyles';\n/**\n * Builds a class names object from a given map.\n *\n * @param styles - Map of unprocessed styles.\n * @returns Map of property name to class name.\n */\nexport function buildClassMap(styles) {\n var classes = {};\n var _loop_1 = function (styleName) {\n if (styles.hasOwnProperty(styleName)) {\n var className_1;\n Object.defineProperty(classes, styleName, {\n get: function () {\n if (className_1 === undefined) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n className_1 = mergeStyles(styles[styleName]).toString();\n }\n return className_1;\n },\n enumerable: true,\n configurable: true,\n });\n }\n };\n for (var styleName in styles) {\n _loop_1(styleName);\n }\n return classes;\n}\n//# sourceMappingURL=buildClassMap.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "name": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "index": 64, - "index2": 52, - "size": 261, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/classNames/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/index.js", - "name": "./node_modules/@uifabric/styling/lib/classNames/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/index.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./AnimationClassNames", - "loc": "1:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/index.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/index.js", - "type": "harmony export imported specifier", - "userRequest": "./AnimationClassNames", - "loc": "1:0-60" - } - ], - "usedExports": [ - "AnimationClassNames" - ], - "providedExports": [ - "AnimationClassNames" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { buildClassMap } from '../utilities/index';\nimport { AnimationStyles } from '../styles/index';\n/**\n * {@docCategory AnimationClassNames}\n */\nexport var AnimationClassNames = buildClassMap(AnimationStyles);\n//# sourceMappingURL=AnimationClassNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/CommonStyles.js", - "name": "./node_modules/@uifabric/styling/lib/styles/CommonStyles.js", - "index": 74, - "index2": 57, - "size": 1936, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony side effect evaluation", - "userRequest": "./CommonStyles", - "loc": "1:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CommonStyles", - "loc": "12:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CommonStyles", - "loc": "12:0-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "userRequest": "./CommonStyles", - "loc": "48:23-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "userRequest": "./CommonStyles", - "loc": "124:23-43" - } - ], - "usedExports": [ - "HighContrastSelector", - "getHighContrastNoAdjustStyle", - "getScreenSelector", - "ScreenWidthMaxMedium", - "HighContrastSelectorWhite", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinUhfMobile", - "ScreenWidthMinXXLarge", - "ScreenWidthMaxSmall" - ], - "providedExports": [ - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "EdgeChromiumHighContrastSelector", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "getHighContrastNoAdjustStyle", - "getEdgeChromiumNoHighContrastAdjustSelector" - ], - "optimizationBailout": [], - "depth": 6, - "source": "export var HighContrastSelector = '@media screen and (-ms-high-contrast: active), (forced-colors: active)';\nexport var HighContrastSelectorWhite = '@media screen and (-ms-high-contrast: black-on-white), (forced-colors: black-on-white)';\nexport var HighContrastSelectorBlack = '@media screen and (-ms-high-contrast: white-on-black), (forced-colors: white-on-black)';\nexport var EdgeChromiumHighContrastSelector = '@media screen and (forced-colors: active)';\nexport var ScreenWidthMinSmall = 320;\nexport var ScreenWidthMinMedium = 480;\nexport var ScreenWidthMinLarge = 640;\nexport var ScreenWidthMinXLarge = 1024;\nexport var ScreenWidthMinXXLarge = 1366;\nexport var ScreenWidthMinXXXLarge = 1920;\nexport var ScreenWidthMaxSmall = ScreenWidthMinMedium - 1;\nexport var ScreenWidthMaxMedium = ScreenWidthMinLarge - 1;\nexport var ScreenWidthMaxLarge = ScreenWidthMinXLarge - 1;\nexport var ScreenWidthMaxXLarge = ScreenWidthMinXXLarge - 1;\nexport var ScreenWidthMaxXXLarge = ScreenWidthMinXXXLarge - 1;\nexport var ScreenWidthMinUhfMobile = 768;\nexport function getScreenSelector(min, max) {\n var minSelector = typeof min === 'number' ? \" and (min-width: \" + min + \"px)\" : '';\n var maxSelector = typeof max === 'number' ? \" and (max-width: \" + max + \"px)\" : '';\n return \"@media only screen\" + minSelector + maxSelector;\n}\n/**\n * The style which turns off high contrast adjustment in browsers.\n */\nexport function getHighContrastNoAdjustStyle() {\n return {\n forcedColorAdjust: 'none',\n MsHighContrastAdjust: 'none',\n };\n}\n/**\n * The style which turns off high contrast adjustment in (only) Edge Chromium browser.\n * @deprecated Use `getHighContrastNoAdjustStyle`\n */\nexport function getEdgeChromiumNoHighContrastAdjustSelector() {\n var _a;\n return _a = {},\n _a[EdgeChromiumHighContrastSelector] = {\n forcedColorAdjust: 'none',\n },\n _a;\n}\n//# sourceMappingURL=CommonStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/zIndexes.js", - "name": "./node_modules/@uifabric/styling/lib/styles/zIndexes.js", - "index": 73, - "index2": 56, - "size": 344, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony side effect evaluation", - "userRequest": "./zIndexes", - "loc": "3:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./zIndexes", - "loc": "16:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./zIndexes", - "loc": "16:0-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "userRequest": "./zIndexes", - "loc": "46:24-32" - } - ], - "usedExports": [ - "ZIndexes" - ], - "providedExports": [ - "ZIndexes" - ], - "optimizationBailout": [], - "depth": 6, - "source": "export var ZIndexes;\n(function (ZIndexes) {\n ZIndexes.Nav = 1;\n /**\n * @deprecated ScrollablePane\n */\n ZIndexes.ScrollablePane = 1;\n ZIndexes.FocusStyle = 1;\n ZIndexes.Coachmark = 1000;\n ZIndexes.Layer = 1000000;\n ZIndexes.KeytipLayer = 1000001;\n})(ZIndexes || (ZIndexes = {}));\n//# sourceMappingURL=zIndexes.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "name": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "index": 71, - "index2": 58, - "size": 5568, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getFocusStyle", - "loc": "6:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getFocusStyle", - "loc": "6:0-32" - } - ], - "usedExports": [ - "getInputFocusStyle", - "getFocusStyle", - "focusClear" - ], - "providedExports": [ - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "getInputFocusStyle" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { HighContrastSelector } from './CommonStyles';\nimport { IsFocusVisibleClassName } from '@uifabric/utilities';\nimport { ZIndexes } from './zIndexes';\nexport function getFocusStyle(theme, insetOrOptions, position, highContrastStyle, borderColor, outlineColor, isFocusedOnly) {\n if (typeof insetOrOptions === 'number' || !insetOrOptions) {\n return _getFocusStyleInternal(theme, {\n inset: insetOrOptions,\n position: position,\n highContrastStyle: highContrastStyle,\n borderColor: borderColor,\n outlineColor: outlineColor,\n isFocusedOnly: isFocusedOnly,\n });\n }\n else {\n return _getFocusStyleInternal(theme, insetOrOptions);\n }\n}\nfunction _getFocusStyleInternal(theme, options) {\n var _a, _b;\n if (options === void 0) { options = {}; }\n var _c = options.inset, inset = _c === void 0 ? 0 : _c, _d = options.width, width = _d === void 0 ? 1 : _d, _e = options.position, position = _e === void 0 ? 'relative' : _e, highContrastStyle = options.highContrastStyle, _f = options.borderColor, borderColor = _f === void 0 ? theme.palette.white : _f, _g = options.outlineColor, outlineColor = _g === void 0 ? theme.palette.neutralSecondary : _g, _h = options.isFocusedOnly, isFocusedOnly = _h === void 0 ? true : _h;\n return {\n // Clear browser-specific focus styles and use 'transparent' as placeholder for focus style.\n outline: 'transparent',\n // Requirement because pseudo-element is absolutely positioned.\n position: position,\n selectors: (_a = {\n // Clear the focus border in Firefox.\n // Reference: http://stackoverflow.com/a/199319/1436671\n '::-moz-focus-inner': {\n border: '0',\n }\n },\n // When the element that uses this mixin is in a :focus state, add a pseudo-element to\n // create a border.\n _a[\".\" + IsFocusVisibleClassName + \" &\" + (isFocusedOnly ? ':focus' : '') + \":after\"] = {\n content: '\"\"',\n position: 'absolute',\n left: inset + 1,\n top: inset + 1,\n bottom: inset + 1,\n right: inset + 1,\n border: width + \"px solid \" + borderColor,\n outline: width + \"px solid \" + outlineColor,\n zIndex: ZIndexes.FocusStyle,\n selectors: (_b = {},\n _b[HighContrastSelector] = highContrastStyle,\n _b),\n },\n _a),\n };\n}\n/**\n * Generates style to clear browser specific focus styles.\n */\nexport function focusClear() {\n return {\n selectors: {\n '&::-moz-focus-inner': {\n // Clear the focus border in Firefox. Reference: http://stackoverflow.com/a/199319/1436671\n border: 0,\n },\n '&': {\n // Clear browser specific focus styles and use transparent as placeholder for focus style\n outline: 'transparent',\n },\n },\n };\n}\n/**\n * Generates a style which can be used to set a border on focus.\n *\n * @param theme - The theme object to use.\n * @param inset - The number of pixels to inset the border (default 0)\n * @param width - The border width in pixels (default 1)\n * @param color - Color of the outline (default `theme.palette.neutralSecondary`)\n * @returns The style object.\n */\nexport function getFocusOutlineStyle(theme, inset, width, color) {\n var _a;\n if (inset === void 0) { inset = 0; }\n if (width === void 0) { width = 1; }\n return {\n selectors: (_a = {},\n _a[\":global(\" + IsFocusVisibleClassName + \") &:focus\"] = {\n outline: width + \" solid \" + (color || theme.palette.neutralSecondary),\n outlineOffset: -inset + \"px\",\n },\n _a),\n };\n}\n/**\n * Generates text input border styles on focus.\n *\n * @param borderColor - Color of the border.\n * @param borderRadius - Radius of the border.\n * @param borderType - Type of the border.\n * @param borderPosition - Position of the border relative to the input element (default to -1\n * as it's the most common border width of the input element)\n * @returns The style object.\n */\nexport var getInputFocusStyle = function (borderColor, borderRadius, borderType, borderPosition) {\n var _a, _b, _c;\n if (borderType === void 0) { borderType = 'border'; }\n if (borderPosition === void 0) { borderPosition = -1; }\n var isBorderBottom = borderType === 'borderBottom';\n return {\n borderColor: borderColor,\n selectors: {\n ':after': (_a = {\n pointerEvents: 'none',\n content: \"''\",\n position: 'absolute',\n left: isBorderBottom ? 0 : borderPosition,\n top: borderPosition,\n bottom: borderPosition,\n right: isBorderBottom ? 0 : borderPosition\n },\n _a[borderType] = \"2px solid \" + borderColor,\n _a.borderRadius = borderRadius,\n _a.width = borderType === 'borderBottom' ? '100%' : undefined,\n _a.selectors = (_b = {},\n _b[HighContrastSelector] = (_c = {},\n _c[borderType === 'border' ? 'borderColor' : 'borderBottomColor'] = 'Highlight',\n _c),\n _b),\n _a),\n },\n };\n};\n//# sourceMappingURL=getFocusStyle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/hiddenContentStyle.js", - "name": "./node_modules/@uifabric/styling/lib/styles/hiddenContentStyle.js", - "index": 75, - "index2": 59, - "size": 209, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hiddenContentStyle", - "loc": "7:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hiddenContentStyle", - "loc": "7:0-58" - } - ], - "usedExports": [ - "hiddenContentStyle" - ], - "providedExports": [ - "hiddenContentStyle" - ], - "optimizationBailout": [], - "depth": 6, - "source": "export var hiddenContentStyle = {\n position: 'absolute',\n width: 1,\n height: 1,\n margin: -1,\n padding: 0,\n border: 0,\n overflow: 'hidden',\n};\n//# sourceMappingURL=hiddenContentStyle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "name": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "index": 76, - "index2": 61, - "size": 1509, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getGlobalClassNames", - "loc": "9:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getGlobalClassNames", - "loc": "9:0-60" - } - ], - "usedExports": [ - "getGlobalClassNames" - ], - "providedExports": [ - "getGlobalClassNames" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { Stylesheet } from '@uifabric/merge-styles';\nimport { memoizeFunction } from '@uifabric/utilities';\n/**\n * Internal memoized function which simply takes in the class map and the\n * disable boolean. These immutable values can be memoized.\n */\nvar _getGlobalClassNames = memoizeFunction(function (classNames, disableGlobalClassNames) {\n var styleSheet = Stylesheet.getInstance();\n if (disableGlobalClassNames) {\n // disable global classnames\n return Object.keys(classNames).reduce(function (acc, className) {\n acc[className] = styleSheet.getClassName(classNames[className]);\n return acc;\n }, {});\n }\n // use global classnames\n return classNames;\n});\n/**\n * Checks for the `disableGlobalClassNames` property on the `theme` to determine if it should return `classNames`\n * Note that calls to this function are memoized.\n *\n * @param classNames - The collection of global class names that apply when the flag is false. Make sure to pass in\n * the same instance on each call to benefit from memoization.\n * @param theme - The theme to check the flag on\n * @param disableGlobalClassNames - Optional. Explicitly opt in/out of disabling global classnames. Defaults to false.\n */\nexport function getGlobalClassNames(classNames, theme, disableGlobalClassNames) {\n return _getGlobalClassNames(classNames, disableGlobalClassNames !== undefined ? disableGlobalClassNames : theme.disableGlobalClassNames);\n}\n//# sourceMappingURL=getGlobalClassNames.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/localStorage.js", - "name": "./node_modules/@uifabric/utilities/lib/localStorage.js", - "index": 87, - "index2": 67, - "size": 836, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/language.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/utilities/lib/language.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/language.js", - "name": "./node_modules/@uifabric/utilities/lib/language.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony side effect evaluation", - "userRequest": "./localStorage", - "loc": "2:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony import specifier", - "userRequest": "./localStorage", - "loc": "17:14-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/language.js", - "module": "./node_modules/@uifabric/utilities/lib/language.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/language.js", - "type": "harmony import specifier", - "userRequest": "./localStorage", - "loc": "40:8-28" - } - ], - "usedExports": [ - "getItem", - "setItem" - ], - "providedExports": [ - "getItem", - "setItem" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getWindow } from './dom/getWindow';\n/**\n * Fetches an item from local storage without throwing an exception\n * @param key The key of the item to fetch from local storage\n */\nexport function getItem(key) {\n var result = null;\n try {\n var win = getWindow();\n result = win ? win.localStorage.getItem(key) : null;\n }\n catch (e) {\n /* Eat the exception */\n }\n return result;\n}\n/**\n * Inserts an item into local storage without throwing an exception\n * @param key The key of the item to add to local storage\n * @param data The data to put into local storage\n */\nexport function setItem(key, data) {\n try {\n var win = getWindow();\n win && win.localStorage.setItem(key, data);\n }\n catch (e) {\n /* Eat the exception */\n }\n}\n//# sourceMappingURL=localStorage.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js", - "index": 80, - "index2": 75, - "size": 1136, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/theme/lib/createTheme", - "loc": "4:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/theme/lib/createTheme", - "loc": "5:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/theme/lib/createTheme", - "loc": "5:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "@fluentui/theme/lib/createTheme", - "loc": "6:13-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./theme", - "loc": "11:0-138" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "@fluentui/theme/lib/createTheme", - "loc": "20:21-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "@fluentui/theme/lib/createTheme", - "loc": "34:17-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "userRequest": "@fluentui/theme/lib/createTheme", - "loc": "67:13-24" - } - ], - "usedExports": [ - "createTheme" - ], - "providedExports": [ - "createTheme" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { DefaultPalette } from './colors/index';\nimport { DefaultEffects } from './effects/index';\nimport { DefaultFontStyles } from './fonts/index';\nimport { mergeThemes } from './mergeThemes';\nimport { DefaultSpacing } from './spacing/index';\nimport { makeSemanticColors } from './utilities/makeSemanticColors';\n/**\n * Creates a custom theme definition.\n * @param theme - Partial theme object.\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\n */\nexport function createTheme(theme, depComments) {\n if (theme === void 0) { theme = {}; }\n if (depComments === void 0) { depComments = false; }\n var isInverted = !!theme.isInverted;\n var baseTheme = {\n palette: DefaultPalette,\n effects: DefaultEffects,\n fonts: DefaultFontStyles,\n spacing: DefaultSpacing,\n isInverted: isInverted,\n disableGlobalClassNames: false,\n semanticColors: makeSemanticColors(DefaultPalette, DefaultEffects, undefined, isInverted, depComments),\n rtl: undefined,\n };\n return mergeThemes(baseTheme, theme);\n}\n//# sourceMappingURL=createTheme.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/GeneralStyles.js", - "name": "./node_modules/@uifabric/styling/lib/styles/GeneralStyles.js", - "index": 93, - "index2": 77, - "size": 321, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GeneralStyles", - "loc": "13:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GeneralStyles", - "loc": "13:0-32" - } - ], - "usedExports": [ - "normalize", - "noWrap" - ], - "providedExports": [ - "normalize", - "noWrap" - ], - "optimizationBailout": [], - "depth": 6, - "source": "// This file mimics styles and mixins from _General.Mixins.scss\nexport var normalize = {\n boxShadow: 'none',\n margin: 0,\n padding: 0,\n boxSizing: 'border-box',\n};\nexport var noWrap = {\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n};\n//# sourceMappingURL=GeneralStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getPlaceholderStyles.js", - "name": "./node_modules/@uifabric/styling/lib/styles/getPlaceholderStyles.js", - "index": 94, - "index2": 78, - "size": 523, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getPlaceholderStyles", - "loc": "15:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getPlaceholderStyles", - "loc": "15:0-39" - } - ], - "usedExports": [ - "getPlaceholderStyles" - ], - "providedExports": [ - "getPlaceholderStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/**\n * Generates placeholder style for each of the browsers supported by office-ui-fabric-react.\n * @param styles - The style to use.\n * @returns The placeholder style object for each browser depending on the placeholder directive it uses.\n */\nexport function getPlaceholderStyles(styles) {\n return {\n selectors: {\n '::placeholder': styles,\n ':-ms-input-placeholder': styles,\n '::-ms-input-placeholder': styles,\n },\n };\n}\n//# sourceMappingURL=getPlaceholderStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "name": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "index": 96, - "index2": 81, - "size": 6185, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "name": "./node_modules/@uifabric/styling/lib/utilities/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./icons", - "loc": "2:0-102" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-102" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-102" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-102" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-102" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "type": "harmony export imported specifier", - "userRequest": "./icons", - "loc": "2:0-102" - }, - { - "moduleId": "HhHV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./icons", - "loc": "2:0-34" - }, - { - "moduleId": "HhHV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "type": "harmony import specifier", - "userRequest": "./icons", - "loc": "14:15-22" - } - ], - "usedExports": [ - "getIcon", - "registerIconAlias", - "registerIcons" - ], - "providedExports": [ - "registerIcons", - "unregisterIcons", - "registerIconAlias", - "getIcon", - "setIconOptions" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { GlobalSettings, warn } from '@uifabric/utilities';\nimport { fontFace, mergeStyles, Stylesheet } from '@uifabric/merge-styles';\nvar ICON_SETTING_NAME = 'icons';\nvar _iconSettings = GlobalSettings.getValue(ICON_SETTING_NAME, {\n __options: {\n disableWarnings: false,\n warnOnMissingIcons: true,\n },\n __remapped: {},\n});\n// Reset icon registration on stylesheet resets.\nvar stylesheet = Stylesheet.getInstance();\nif (stylesheet && stylesheet.onReset) {\n stylesheet.onReset(function () {\n for (var name_1 in _iconSettings) {\n if (_iconSettings.hasOwnProperty(name_1) && !!_iconSettings[name_1].subset) {\n _iconSettings[name_1].subset.className = undefined;\n }\n }\n });\n}\n/**\n * Normalizes an icon name for consistent mapping.\n * Current implementation is to convert the icon name to lower case.\n *\n * @param name - Icon name to normalize.\n * @returns {string} Normalized icon name to use for indexing and mapping.\n */\nvar normalizeIconName = function (name) { return name.toLowerCase(); };\n/**\n * Registers a given subset of icons.\n *\n * @param iconSubset - the icon subset definition.\n */\nexport function registerIcons(iconSubset, options) {\n var subset = __assign(__assign({}, iconSubset), { isRegistered: false, className: undefined });\n var icons = iconSubset.icons;\n // Grab options, optionally mix user provided ones on top.\n options = options ? __assign(__assign({}, _iconSettings.__options), options) : _iconSettings.__options;\n for (var iconName in icons) {\n if (icons.hasOwnProperty(iconName)) {\n var code = icons[iconName];\n var normalizedIconName = normalizeIconName(iconName);\n if (_iconSettings[normalizedIconName]) {\n _warnDuplicateIcon(iconName);\n }\n else {\n _iconSettings[normalizedIconName] = {\n code: code,\n subset: subset,\n };\n }\n }\n }\n}\n/**\n * Unregisters icons by name.\n *\n * @param iconNames - List of icons to unregister.\n */\nexport function unregisterIcons(iconNames) {\n var options = _iconSettings.__options;\n var _loop_1 = function (iconName) {\n var normalizedIconName = normalizeIconName(iconName);\n if (_iconSettings[normalizedIconName]) {\n delete _iconSettings[normalizedIconName];\n }\n else {\n // Warn that we are trying to delete an icon that doesn't exist\n if (!options.disableWarnings) {\n warn(\"The icon \\\"\" + iconName + \"\\\" tried to unregister but was not registered.\");\n }\n }\n // Delete any aliases for this iconName\n if (_iconSettings.__remapped[normalizedIconName]) {\n delete _iconSettings.__remapped[normalizedIconName];\n }\n // Delete any items that were an alias for this iconName\n Object.keys(_iconSettings.__remapped).forEach(function (key) {\n if (_iconSettings.__remapped[key] === normalizedIconName) {\n delete _iconSettings.__remapped[key];\n }\n });\n };\n for (var _i = 0, iconNames_1 = iconNames; _i < iconNames_1.length; _i++) {\n var iconName = iconNames_1[_i];\n _loop_1(iconName);\n }\n}\n/**\n * Remaps one icon name to another.\n */\nexport function registerIconAlias(iconName, mappedToName) {\n _iconSettings.__remapped[normalizeIconName(iconName)] = normalizeIconName(mappedToName);\n}\n/**\n * Gets an icon definition. If an icon is requested but the subset has yet to be registered,\n * it will get registered immediately.\n *\n * @public\n * @param name - Name of icon.\n */\nexport function getIcon(name) {\n var icon = undefined;\n var options = _iconSettings.__options;\n name = name ? normalizeIconName(name) : '';\n name = _iconSettings.__remapped[name] || name;\n if (name) {\n icon = _iconSettings[name];\n if (icon) {\n var subset = icon.subset;\n if (subset && subset.fontFace) {\n if (!subset.isRegistered) {\n fontFace(subset.fontFace);\n subset.isRegistered = true;\n }\n if (!subset.className) {\n subset.className = mergeStyles(subset.style, {\n fontFamily: subset.fontFace.fontFamily,\n fontWeight: subset.fontFace.fontWeight || 'normal',\n fontStyle: subset.fontFace.fontStyle || 'normal',\n });\n }\n }\n }\n else {\n // eslint-disable-next-line deprecation/deprecation\n if (!options.disableWarnings && options.warnOnMissingIcons) {\n warn(\"The icon \\\"\" + name + \"\\\" was used but not registered. See https://github.com/microsoft/fluentui/wiki/Using-icons for more information.\");\n }\n }\n }\n return icon;\n}\n/**\n * Sets the icon options.\n *\n * @public\n */\nexport function setIconOptions(options) {\n _iconSettings.__options = __assign(__assign({}, _iconSettings.__options), options);\n}\nvar _missingIcons = [];\nvar _missingIconsTimer = undefined;\nfunction _warnDuplicateIcon(iconName) {\n var options = _iconSettings.__options;\n var warningDelay = 2000;\n var maxIconsInMessage = 10;\n if (!options.disableWarnings) {\n _missingIcons.push(iconName);\n if (_missingIconsTimer === undefined) {\n _missingIconsTimer = setTimeout(function () {\n warn(\"Some icons were re-registered. Applications should only call registerIcons for any given \" +\n \"icon once. Redefining what an icon is may have unintended consequences. Duplicates \" +\n \"include: \\n\" +\n _missingIcons.slice(0, maxIconsInMessage).join(', ') +\n (_missingIcons.length > maxIconsInMessage ? \" (+ \" + (_missingIcons.length - maxIconsInMessage) + \" more)\" : ''));\n _missingIconsTimer = undefined;\n _missingIcons = [];\n }, warningDelay);\n }\n }\n}\n//# sourceMappingURL=icons.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/keyframes.js", - "name": "./node_modules/@uifabric/merge-styles/lib/keyframes.js", - "index": 68, - "index2": 50, - "size": 800, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "9:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "13:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "41:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "45:19-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "49:20-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "53:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "57:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "61:17-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "129:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "135:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "141:11-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "module": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "147:11-20" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./keyframes", - "loc": "6:0-40" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./keyframes", - "loc": "6:0-40" - }, - { - "moduleId": "yCKU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "40:11-20" - }, - { - "moduleId": "yCKU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "61:11-20" - } - ], - "usedExports": [ - "keyframes" - ], - "providedExports": [ - "keyframes" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { getStyleOptions } from './StyleOptionsState';\nimport { Stylesheet } from './Stylesheet';\nimport { serializeRuleEntries } from './styleToClassName';\n/**\n * Registers keyframe definitions.\n *\n * @public\n */\nexport function keyframes(timeline) {\n var stylesheet = Stylesheet.getInstance();\n var name = stylesheet.getClassName();\n var rulesArray = [];\n for (var prop in timeline) {\n if (timeline.hasOwnProperty(prop)) {\n rulesArray.push(prop, '{', serializeRuleEntries(getStyleOptions(), timeline[prop]), '}');\n }\n }\n var rules = rulesArray.join('');\n stylesheet.insertRule(\"@keyframes \" + name + \"{\" + rules + \"}\", true);\n stylesheet.cacheClassName(name, rules, [], ['keyframes', rules]);\n return name;\n}\n//# sourceMappingURL=keyframes.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "name": "./node_modules/@fluentui/theme/lib/motion/AnimationStyles.js", - "index": 67, - "index2": 51, - "size": 7555, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "issuerId": "cPD0", - "issuerName": "./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - }, - { - "id": "cPD0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "name": "./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./AnimationStyles", - "loc": "1:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./AnimationStyles", - "loc": "1:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../styles/index", - "loc": "6:47-62" - }, - { - "moduleId": "cPD0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/theme/lib/motion/AnimationStyles", - "loc": "1:0-59" - }, - { - "moduleId": "cPD0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/theme/lib/motion/AnimationStyles", - "loc": "1:0-59" - } - ], - "usedExports": [ - "AnimationStyles", - "AnimationVariables" - ], - "providedExports": [ - "AnimationVariables", - "AnimationStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { keyframes } from '@uifabric/merge-styles';\n/* Register the keyframes */\nvar EASING_FUNCTION_1 = 'cubic-bezier(.1,.9,.2,1)';\nvar EASING_FUNCTION_2 = 'cubic-bezier(.1,.25,.75,.9)';\nvar DURATION_1 = '0.167s';\nvar DURATION_2 = '0.267s';\nvar DURATION_3 = '0.367s';\nvar DURATION_4 = '0.467s';\nvar FADE_IN = keyframes({\n from: { opacity: 0 },\n to: { opacity: 1 },\n});\nvar FADE_OUT = keyframes({\n from: { opacity: 1 },\n to: { opacity: 0, visibility: 'hidden' },\n});\nvar SLIDE_RIGHT_IN10 = _createSlideInX(-10);\nvar SLIDE_RIGHT_IN20 = _createSlideInX(-20);\nvar SLIDE_RIGHT_IN40 = _createSlideInX(-40);\nvar SLIDE_RIGHT_IN400 = _createSlideInX(-400);\nvar SLIDE_LEFT_IN10 = _createSlideInX(10);\nvar SLIDE_LEFT_IN20 = _createSlideInX(20);\nvar SLIDE_LEFT_IN40 = _createSlideInX(40);\nvar SLIDE_LEFT_IN400 = _createSlideInX(400);\nvar SLIDE_UP_IN10 = _createSlideInY(10);\nvar SLIDE_UP_IN20 = _createSlideInY(20);\nvar SLIDE_DOWN_IN10 = _createSlideInY(-10);\nvar SLIDE_DOWN_IN20 = _createSlideInY(-20);\nvar SLIDE_RIGHT_OUT10 = _createSlideOutX(10);\nvar SLIDE_RIGHT_OUT20 = _createSlideOutX(20);\nvar SLIDE_RIGHT_OUT40 = _createSlideOutX(40);\nvar SLIDE_RIGHT_OUT400 = _createSlideOutX(400);\nvar SLIDE_LEFT_OUT10 = _createSlideOutX(-10);\nvar SLIDE_LEFT_OUT20 = _createSlideOutX(-20);\nvar SLIDE_LEFT_OUT40 = _createSlideOutX(-40);\nvar SLIDE_LEFT_OUT400 = _createSlideOutX(-400);\nvar SLIDE_UP_OUT10 = _createSlideOutY(-10);\nvar SLIDE_UP_OUT20 = _createSlideOutY(-20);\nvar SLIDE_DOWN_OUT10 = _createSlideOutY(10);\nvar SLIDE_DOWN_OUT20 = _createSlideOutY(20);\nvar SCALE_UP100 = keyframes({\n from: { transform: 'scale3d(.98,.98,1)' },\n to: { transform: 'scale3d(1,1,1)' },\n});\nvar SCALE_DOWN98 = keyframes({\n from: { transform: 'scale3d(1,1,1)' },\n to: { transform: 'scale3d(.98,.98,1)' },\n});\nvar SCALE_DOWN100 = keyframes({\n from: { transform: 'scale3d(1.03,1.03,1)' },\n to: { transform: 'scale3d(1,1,1)' },\n});\nvar SCALE_UP103 = keyframes({\n from: { transform: 'scale3d(1,1,1)' },\n to: { transform: 'scale3d(1.03,1.03,1)' },\n});\nvar ROTATE90 = keyframes({\n from: { transform: 'rotateZ(0deg)' },\n to: { transform: 'rotateZ(90deg)' },\n});\nvar ROTATE_N90 = keyframes({\n from: { transform: 'rotateZ(0deg)' },\n to: { transform: 'rotateZ(-90deg)' },\n});\n/**\n * Exporting raw duraction values and easing functions to be used in custom animations\n */\nexport var AnimationVariables = {\n easeFunction1: EASING_FUNCTION_1,\n easeFunction2: EASING_FUNCTION_2,\n durationValue1: DURATION_1,\n durationValue2: DURATION_2,\n durationValue3: DURATION_3,\n durationValue4: DURATION_4,\n};\n/**\n * All Fabric standard animations, exposed as json objects referencing predefined\n * keyframes. These objects can be mixed in with other class definitions.\n */\nexport var AnimationStyles = {\n slideRightIn10: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN10, DURATION_3, EASING_FUNCTION_1),\n slideRightIn20: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN20, DURATION_3, EASING_FUNCTION_1),\n slideRightIn40: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN40, DURATION_3, EASING_FUNCTION_1),\n slideRightIn400: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN400, DURATION_3, EASING_FUNCTION_1),\n slideLeftIn10: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN10, DURATION_3, EASING_FUNCTION_1),\n slideLeftIn20: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN20, DURATION_3, EASING_FUNCTION_1),\n slideLeftIn40: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN40, DURATION_3, EASING_FUNCTION_1),\n slideLeftIn400: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN400, DURATION_3, EASING_FUNCTION_1),\n slideUpIn10: _createAnimation(FADE_IN + \",\" + SLIDE_UP_IN10, DURATION_3, EASING_FUNCTION_1),\n slideUpIn20: _createAnimation(FADE_IN + \",\" + SLIDE_UP_IN20, DURATION_3, EASING_FUNCTION_1),\n slideDownIn10: _createAnimation(FADE_IN + \",\" + SLIDE_DOWN_IN10, DURATION_3, EASING_FUNCTION_1),\n slideDownIn20: _createAnimation(FADE_IN + \",\" + SLIDE_DOWN_IN20, DURATION_3, EASING_FUNCTION_1),\n slideRightOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT10, DURATION_3, EASING_FUNCTION_1),\n slideRightOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT20, DURATION_3, EASING_FUNCTION_1),\n slideRightOut40: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT40, DURATION_3, EASING_FUNCTION_1),\n slideRightOut400: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT400, DURATION_3, EASING_FUNCTION_1),\n slideLeftOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT10, DURATION_3, EASING_FUNCTION_1),\n slideLeftOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT20, DURATION_3, EASING_FUNCTION_1),\n slideLeftOut40: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT40, DURATION_3, EASING_FUNCTION_1),\n slideLeftOut400: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT400, DURATION_3, EASING_FUNCTION_1),\n slideUpOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_UP_OUT10, DURATION_3, EASING_FUNCTION_1),\n slideUpOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_UP_OUT20, DURATION_3, EASING_FUNCTION_1),\n slideDownOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_DOWN_OUT10, DURATION_3, EASING_FUNCTION_1),\n slideDownOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_DOWN_OUT20, DURATION_3, EASING_FUNCTION_1),\n scaleUpIn100: _createAnimation(FADE_IN + \",\" + SCALE_UP100, DURATION_3, EASING_FUNCTION_1),\n scaleDownIn100: _createAnimation(FADE_IN + \",\" + SCALE_DOWN100, DURATION_3, EASING_FUNCTION_1),\n scaleUpOut103: _createAnimation(FADE_OUT + \",\" + SCALE_UP103, DURATION_1, EASING_FUNCTION_2),\n scaleDownOut98: _createAnimation(FADE_OUT + \",\" + SCALE_DOWN98, DURATION_1, EASING_FUNCTION_2),\n fadeIn100: _createAnimation(FADE_IN, DURATION_1, EASING_FUNCTION_2),\n fadeIn200: _createAnimation(FADE_IN, DURATION_2, EASING_FUNCTION_2),\n fadeIn400: _createAnimation(FADE_IN, DURATION_3, EASING_FUNCTION_2),\n fadeIn500: _createAnimation(FADE_IN, DURATION_4, EASING_FUNCTION_2),\n fadeOut100: _createAnimation(FADE_OUT, DURATION_1, EASING_FUNCTION_2),\n fadeOut200: _createAnimation(FADE_OUT, DURATION_2, EASING_FUNCTION_2),\n fadeOut400: _createAnimation(FADE_OUT, DURATION_3, EASING_FUNCTION_2),\n fadeOut500: _createAnimation(FADE_OUT, DURATION_4, EASING_FUNCTION_2),\n rotate90deg: _createAnimation(ROTATE90, '0.1s', EASING_FUNCTION_2),\n rotateN90deg: _createAnimation(ROTATE_N90, '0.1s', EASING_FUNCTION_2),\n};\nfunction _createAnimation(animationName, animationDuration, animationTimingFunction) {\n return {\n animationName: animationName,\n animationDuration: animationDuration,\n animationTimingFunction: animationTimingFunction,\n animationFillMode: 'both',\n };\n}\nfunction _createSlideInX(fromX) {\n return keyframes({\n from: { transform: \"translate3d(\" + fromX + \"px,0,0)\", pointerEvents: 'none' },\n to: { transform: \"translate3d(0,0,0)\", pointerEvents: 'auto' },\n });\n}\nfunction _createSlideInY(fromY) {\n return keyframes({\n from: { transform: \"translate3d(0,\" + fromY + \"px,0)\", pointerEvents: 'none' },\n to: { transform: \"translate3d(0,0,0)\", pointerEvents: 'auto' },\n });\n}\nfunction _createSlideOutX(toX) {\n return keyframes({\n from: { transform: \"translate3d(0,0,0)\" },\n to: { transform: \"translate3d(\" + toX + \"px,0,0)\" },\n });\n}\nfunction _createSlideOutY(toY) {\n return keyframes({\n from: { transform: \"translate3d(0,0,0)\" },\n to: { transform: \"translate3d(0,\" + toY + \"px,0)\" },\n });\n}\n//# sourceMappingURL=AnimationStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/colors/DefaultPalette.js", - "name": "./node_modules/@fluentui/theme/lib/colors/DefaultPalette.js", - "index": 81, - "index2": 63, - "size": 1618, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "issuerId": "9Rke", - "issuerName": "./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - }, - { - "id": "9Rke", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "name": "./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./DefaultPalette", - "loc": "2:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./colors/index", - "loc": "17:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./colors/index", - "loc": "23:43-57" - }, - { - "moduleId": "9Rke", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "module": "./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/theme/lib/colors/DefaultPalette", - "loc": "1:0-58" - }, - { - "moduleId": "9Rke", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "module": "./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/theme/lib/colors/DefaultPalette", - "loc": "1:0-58" - }, - { - "moduleId": "itTX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../styles/DefaultPalette", - "loc": "5:22-36" - }, - { - "moduleId": "itTX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../styles/DefaultPalette", - "loc": "6:8-22" - }, - { - "moduleId": "p6FT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/colors/index.js", - "module": "./node_modules/@fluentui/theme/lib/colors/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/colors/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultPalette", - "loc": "2:0-50" - }, - { - "moduleId": "p6FT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/colors/index.js", - "module": "./node_modules/@fluentui/theme/lib/colors/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/colors/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultPalette", - "loc": "2:0-50" - } - ], - "usedExports": [ - "DefaultPalette" - ], - "providedExports": [ - "DefaultPalette" - ], - "optimizationBailout": [], - "depth": 7, - "source": "// When adding or removing a color, make sure you keep this consistent with IColorClassNames\n// by adding the color variants.\nexport var DefaultPalette = {\n themeDarker: '#004578',\n themeDark: '#005a9e',\n themeDarkAlt: '#106ebe',\n themePrimary: '#0078d4',\n themeSecondary: '#2b88d8',\n themeTertiary: '#71afe5',\n themeLight: '#c7e0f4',\n themeLighter: '#deecf9',\n themeLighterAlt: '#eff6fc',\n black: '#000000',\n blackTranslucent40: 'rgba(0,0,0,.4)',\n neutralDark: '#201f1e',\n neutralPrimary: '#323130',\n neutralPrimaryAlt: '#3b3a39',\n neutralSecondary: '#605e5c',\n neutralSecondaryAlt: '#8a8886',\n neutralTertiary: '#a19f9d',\n neutralTertiaryAlt: '#c8c6c4',\n neutralQuaternary: '#d2d0ce',\n neutralQuaternaryAlt: '#e1dfdd',\n neutralLight: '#edebe9',\n neutralLighter: '#f3f2f1',\n neutralLighterAlt: '#faf9f8',\n accent: '#0078d4',\n white: '#ffffff',\n whiteTranslucent40: 'rgba(255,255,255,.4)',\n yellowDark: '#d29200',\n yellow: '#ffb900',\n yellowLight: '#fff100',\n orange: '#d83b01',\n orangeLight: '#ea4300',\n orangeLighter: '#ff8c00',\n redDark: '#a4262c',\n red: '#e81123',\n magentaDark: '#5c005c',\n magenta: '#b4009e',\n magentaLight: '#e3008c',\n purpleDark: '#32145a',\n purple: '#5c2d91',\n purpleLight: '#b4a0ff',\n blueDark: '#002050',\n blueMid: '#00188f',\n blue: '#0078d4',\n blueLight: '#00bcf2',\n tealDark: '#004b50',\n teal: '#008272',\n tealLight: '#00b294',\n greenDark: '#004b1c',\n green: '#107c10',\n greenLight: '#bad80a',\n};\n//# sourceMappingURL=DefaultPalette.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "name": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "index": 82, - "index2": 65, - "size": 325, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "issuerId": "X8m0", - "issuerName": "./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - }, - { - "id": "X8m0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "name": "./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./DefaultEffects", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./effects/index", - "loc": "18:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./effects/index", - "loc": "23:59-73" - }, - { - "moduleId": "SjmI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/index.js", - "module": "./node_modules/@fluentui/theme/lib/effects/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultEffects", - "loc": "1:0-50" - }, - { - "moduleId": "SjmI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/index.js", - "module": "./node_modules/@fluentui/theme/lib/effects/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultEffects", - "loc": "1:0-50" - }, - { - "moduleId": "X8m0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "module": "./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/theme/lib/effects/DefaultEffects", - "loc": "1:0-59" - }, - { - "moduleId": "X8m0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "module": "./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/theme/lib/effects/DefaultEffects", - "loc": "1:0-59" - } - ], - "usedExports": [ - "DefaultEffects" - ], - "providedExports": [ - "DefaultEffects" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { Depths } from './FluentDepths';\nexport var DefaultEffects = {\n elevation4: Depths.depth4,\n elevation8: Depths.depth8,\n elevation16: Depths.depth16,\n elevation64: Depths.depth64,\n roundedCorner2: '2px',\n roundedCorner4: '4px',\n roundedCorner6: '6px',\n};\n//# sourceMappingURL=DefaultEffects.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/fontFace.js", - "name": "./node_modules/@uifabric/merge-styles/lib/fontFace.js", - "index": 88, - "index2": 69, - "size": 389, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "12:4-12" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "115:20-28" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fontFace", - "loc": "5:0-38" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./fontFace", - "loc": "5:0-38" - } - ], - "usedExports": [ - "fontFace" - ], - "providedExports": [ - "fontFace" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { getStyleOptions } from './StyleOptionsState';\nimport { Stylesheet } from './Stylesheet';\nimport { serializeRuleEntries } from './styleToClassName';\n/**\n * Registers a font face.\n * @public\n */\nexport function fontFace(font) {\n Stylesheet.getInstance().insertRule(\"@font-face{\" + serializeRuleEntries(getStyleOptions(), font) + \"}\", true);\n}\n//# sourceMappingURL=fontFace.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "name": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "index": 84, - "index2": 70, - "size": 4078, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "issuerId": "XZNu", - "issuerName": "./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - }, - { - "id": "XZNu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "name": "./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./DefaultFontStyles", - "loc": "4:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./DefaultFontStyles", - "loc": "4:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./fonts/index", - "loc": "19:15-32" - }, - { - "moduleId": "XZNu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/theme/lib/fonts/DefaultFontStyles", - "loc": "1:0-60" - }, - { - "moduleId": "XZNu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/theme/lib/fonts/DefaultFontStyles", - "loc": "1:0-60" - }, - { - "moduleId": "aMN6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../styles/DefaultFontStyles", - "loc": "6:42-59" - }, - { - "moduleId": "qcM2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultFontStyles", - "loc": "3:0-82" - }, - { - "moduleId": "qcM2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultFontStyles", - "loc": "3:0-82" - }, - { - "moduleId": "qcM2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultFontStyles", - "loc": "3:0-82" - } - ], - "usedExports": [ - "DefaultFontStyles" - ], - "providedExports": [ - "DefaultFontStyles", - "registerDefaultFontFaces" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { fontFace } from '@uifabric/merge-styles';\nimport { FontWeights, LocalizedFontFamilies, LocalizedFontNames } from './FluentFonts';\nimport { createFontStyles } from './createFontStyles';\nimport { getLanguage, getWindow } from '@uifabric/utilities';\n// Default urls.\nvar DefaultBaseUrl = 'https://static2.sharepointonline.com/files/fabric/assets';\n// Standard font styling.\nexport var DefaultFontStyles = createFontStyles(getLanguage('sessionStorage'));\nfunction _registerFontFace(fontFamily, url, fontWeight, localFontName) {\n fontFamily = \"'\" + fontFamily + \"'\";\n var localFontSrc = localFontName !== undefined ? \"local('\" + localFontName + \"'),\" : '';\n fontFace({\n fontFamily: fontFamily,\n src: localFontSrc + (\"url('\" + url + \".woff2') format('woff2'),\") + (\"url('\" + url + \".woff') format('woff')\"),\n fontWeight: fontWeight,\n fontStyle: 'normal',\n fontDisplay: 'swap',\n });\n}\nfunction _registerFontFaceSet(baseUrl, fontFamily, cdnFolder, cdnFontName, localFontName) {\n if (cdnFontName === void 0) { cdnFontName = 'segoeui'; }\n var urlBase = baseUrl + \"/\" + cdnFolder + \"/\" + cdnFontName;\n _registerFontFace(fontFamily, urlBase + '-light', FontWeights.light, localFontName && localFontName + ' Light');\n _registerFontFace(fontFamily, urlBase + '-semilight', FontWeights.semilight, localFontName && localFontName + ' SemiLight');\n _registerFontFace(fontFamily, urlBase + '-regular', FontWeights.regular, localFontName);\n _registerFontFace(fontFamily, urlBase + '-semibold', FontWeights.semibold, localFontName && localFontName + ' SemiBold');\n _registerFontFace(fontFamily, urlBase + '-bold', FontWeights.bold, localFontName && localFontName + ' Bold');\n}\nexport function registerDefaultFontFaces(baseUrl) {\n if (baseUrl) {\n var fontUrl = baseUrl + \"/fonts\";\n // Produce @font-face definitions for all supported web fonts.\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Thai, 'leelawadeeui-thai', 'leelawadeeui');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Arabic, 'segoeui-arabic');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Cyrillic, 'segoeui-cyrillic');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.EastEuropean, 'segoeui-easteuropean');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Greek, 'segoeui-greek');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Hebrew, 'segoeui-hebrew');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Vietnamese, 'segoeui-vietnamese');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.WestEuropean, 'segoeui-westeuropean', 'segoeui', 'Segoe UI');\n _registerFontFaceSet(fontUrl, LocalizedFontFamilies.Selawik, 'selawik', 'selawik');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Armenian, 'segoeui-armenian');\n _registerFontFaceSet(fontUrl, LocalizedFontNames.Georgian, 'segoeui-georgian');\n // Leelawadee UI (Thai) does not have a 'light' weight, so we override\n // the font-face generated above to use the 'semilight' weight instead.\n _registerFontFace('Leelawadee UI Web', fontUrl + \"/leelawadeeui-thai/leelawadeeui-semilight\", FontWeights.light);\n // Leelawadee UI (Thai) does not have a 'semibold' weight, so we override\n // the font-face generated above to use the 'bold' weight instead.\n _registerFontFace('Leelawadee UI Web', fontUrl + \"/leelawadeeui-thai/leelawadeeui-bold\", FontWeights.semibold);\n }\n}\n/**\n * Reads the fontBaseUrl from window.FabricConfig.fontBaseUrl or falls back to a default.\n */\nfunction _getFontBaseUrl() {\n var _a, _b, _c;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var fabricConfig = (_a = getWindow()) === null || _a === void 0 ? void 0 : _a.FabricConfig;\n return _c = (_b = fabricConfig) === null || _b === void 0 ? void 0 : _b.fontBaseUrl, (_c !== null && _c !== void 0 ? _c : DefaultBaseUrl);\n}\n/**\n * Register the font faces.\n */\nregisterDefaultFontFaces(_getFontBaseUrl());\n//# sourceMappingURL=DefaultFontStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/utilities/makeSemanticColors.js", - "name": "./node_modules/@fluentui/theme/lib/utilities/makeSemanticColors.js", - "index": 90, - "index2": 72, - "size": 8351, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "issuerId": null, - "issuerName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/mergeThemes.js", - "module": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "moduleName": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/makeSemanticColors", - "loc": "2:0-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/makeSemanticColors", - "loc": "6:0-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/mergeThemes.js", - "module": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "moduleName": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "type": "harmony import specifier", - "userRequest": "./utilities/makeSemanticColors", - "loc": "10:24-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony import specifier", - "userRequest": "./utilities/makeSemanticColors", - "loc": "23:24-42" - } - ], - "usedExports": [ - "makeSemanticColors", - "getSemanticColors" - ], - "providedExports": [ - "makeSemanticColors", - "getSemanticColors" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign } from \"tslib\";\n/** Generates all the semantic slot colors based on the theme so far\n * We'll use these as fallbacks for semantic slots that the passed in theme did not define.\n * The caller must still mix in the customized semantic slots at the end.\n */\nexport function makeSemanticColors(p, e, s, isInverted, depComments) {\n if (depComments === void 0) { depComments = false; }\n var semanticColors = __assign({ primaryButtonBorder: 'transparent', errorText: !isInverted ? '#a4262c' : '#F1707B', messageText: !isInverted ? '#323130' : '#F3F2F1', messageLink: !isInverted ? '#005A9E' : '#6CB8F6', messageLinkHovered: !isInverted ? '#004578' : '#82C7FF', infoIcon: !isInverted ? '#605e5c' : '#C8C6C4', errorIcon: !isInverted ? '#A80000' : '#F1707B', blockingIcon: !isInverted ? '#FDE7E9' : '#442726', warningIcon: !isInverted ? '#797775' : '#C8C6C4', severeWarningIcon: !isInverted ? '#D83B01' : '#FCE100', successIcon: !isInverted ? '#107C10' : '#92C353', infoBackground: !isInverted ? '#f3f2f1' : '#323130', errorBackground: !isInverted ? '#FDE7E9' : '#442726', blockingBackground: !isInverted ? '#FDE7E9' : '#442726', warningBackground: !isInverted ? '#FFF4CE' : '#433519', severeWarningBackground: !isInverted ? '#FED9CC' : '#4F2A0F', successBackground: !isInverted ? '#DFF6DD' : '#393D1B', \n // deprecated\n warningHighlight: !isInverted ? '#ffb900' : '#fff100', successText: !isInverted ? '#107C10' : '#92c353' }, s);\n var fullSemanticColors = getSemanticColors(p, e, semanticColors, isInverted);\n return _fixDeprecatedSlots(fullSemanticColors, depComments);\n}\n/**\n * Map partial platte and effects to partial semantic colors.\n */\nexport function getSemanticColors(p, e, s, isInverted, depComments) {\n if (depComments === void 0) { depComments = false; }\n var _a, _b, _c;\n var result = {};\n // map palette\n var _d = p || {}, white = _d.white, black = _d.black, themePrimary = _d.themePrimary, themeDark = _d.themeDark, themeDarker = _d.themeDarker, themeDarkAlt = _d.themeDarkAlt, themeLighter = _d.themeLighter, neutralLight = _d.neutralLight, neutralLighter = _d.neutralLighter, neutralDark = _d.neutralDark, neutralQuaternary = _d.neutralQuaternary, neutralQuaternaryAlt = _d.neutralQuaternaryAlt, neutralPrimary = _d.neutralPrimary, neutralSecondary = _d.neutralSecondary, neutralSecondaryAlt = _d.neutralSecondaryAlt, neutralTertiary = _d.neutralTertiary, neutralTertiaryAlt = _d.neutralTertiaryAlt, neutralLighterAlt = _d.neutralLighterAlt, accent = _d.accent;\n if (white) {\n result.bodyBackground = white;\n result.bodyFrameBackground = white;\n result.accentButtonText = white;\n result.buttonBackground = white;\n result.primaryButtonText = white;\n result.primaryButtonTextHovered = white;\n result.primaryButtonTextPressed = white;\n result.inputBackground = white;\n result.inputForegroundChecked = white;\n result.listBackground = white;\n result.menuBackground = white;\n result.cardStandoutBackground = white;\n }\n if (black) {\n result.bodyTextChecked = black;\n result.buttonTextCheckedHovered = black;\n }\n if (themePrimary) {\n result.link = themePrimary;\n result.primaryButtonBackground = themePrimary;\n result.inputBackgroundChecked = themePrimary;\n result.inputIcon = themePrimary;\n result.inputFocusBorderAlt = themePrimary;\n result.menuIcon = themePrimary;\n result.menuHeader = themePrimary;\n result.accentButtonBackground = themePrimary;\n }\n if (themeDark) {\n result.primaryButtonBackgroundPressed = themeDark;\n result.inputBackgroundCheckedHovered = themeDark;\n result.inputIconHovered = themeDark;\n }\n if (themeDarker) {\n result.linkHovered = themeDarker;\n }\n if (themeDarkAlt) {\n result.primaryButtonBackgroundHovered = themeDarkAlt;\n }\n if (themeLighter) {\n result.inputPlaceholderBackgroundChecked = themeLighter;\n }\n if (neutralLight) {\n result.bodyBackgroundChecked = neutralLight;\n result.bodyFrameDivider = neutralLight;\n result.bodyDivider = neutralLight;\n result.variantBorder = neutralLight;\n result.buttonBackgroundCheckedHovered = neutralLight;\n result.buttonBackgroundPressed = neutralLight;\n result.listItemBackgroundChecked = neutralLight;\n result.listHeaderBackgroundPressed = neutralLight;\n result.menuItemBackgroundPressed = neutralLight;\n // eslint-disable-next-line deprecation/deprecation\n result.menuItemBackgroundChecked = neutralLight;\n }\n if (neutralLighter) {\n result.bodyBackgroundHovered = neutralLighter;\n result.buttonBackgroundHovered = neutralLighter;\n result.buttonBackgroundDisabled = neutralLighter;\n result.buttonBorderDisabled = neutralLighter;\n result.primaryButtonBackgroundDisabled = neutralLighter;\n result.disabledBackground = neutralLighter;\n result.listItemBackgroundHovered = neutralLighter;\n result.listHeaderBackgroundHovered = neutralLighter;\n result.menuItemBackgroundHovered = neutralLighter;\n }\n if (neutralQuaternary) {\n result.primaryButtonTextDisabled = neutralQuaternary;\n result.disabledSubtext = neutralQuaternary;\n }\n if (neutralQuaternaryAlt) {\n result.listItemBackgroundCheckedHovered = neutralQuaternaryAlt;\n }\n if (neutralTertiary) {\n result.disabledBodyText = neutralTertiary;\n result.variantBorderHovered = ((_a = s) === null || _a === void 0 ? void 0 : _a.variantBorderHovered) || neutralTertiary;\n result.buttonTextDisabled = neutralTertiary;\n result.inputIconDisabled = neutralTertiary;\n result.disabledText = neutralTertiary;\n }\n if (neutralPrimary) {\n result.bodyText = neutralPrimary;\n result.actionLink = neutralPrimary;\n result.buttonText = neutralPrimary;\n result.inputBorderHovered = neutralPrimary;\n result.inputText = neutralPrimary;\n result.listText = neutralPrimary;\n result.menuItemText = neutralPrimary;\n }\n if (neutralLighterAlt) {\n result.bodyStandoutBackground = neutralLighterAlt;\n result.defaultStateBackground = neutralLighterAlt;\n }\n if (neutralDark) {\n result.actionLinkHovered = neutralDark;\n result.buttonTextHovered = neutralDark;\n result.buttonTextChecked = neutralDark;\n result.buttonTextPressed = neutralDark;\n result.inputTextHovered = neutralDark;\n result.menuItemTextHovered = neutralDark;\n }\n if (neutralSecondary) {\n result.bodySubtext = neutralSecondary;\n result.focusBorder = neutralSecondary;\n result.inputBorder = neutralSecondary;\n result.smallInputBorder = neutralSecondary;\n result.inputPlaceholderText = neutralSecondary;\n }\n if (neutralSecondaryAlt) {\n result.buttonBorder = neutralSecondaryAlt;\n }\n if (neutralTertiaryAlt) {\n result.disabledBodySubtext = neutralTertiaryAlt;\n result.disabledBorder = neutralTertiaryAlt;\n result.buttonBackgroundChecked = neutralTertiaryAlt;\n result.menuDivider = neutralTertiaryAlt;\n }\n if (accent) {\n result.accentButtonBackground = accent;\n }\n // map effects\n if ((_b = e) === null || _b === void 0 ? void 0 : _b.elevation4) {\n result.cardShadow = e.elevation4;\n }\n if (!isInverted && ((_c = e) === null || _c === void 0 ? void 0 : _c.elevation8)) {\n result.cardShadowHovered = e.elevation8;\n }\n else if (result.variantBorderHovered) {\n result.cardShadowHovered = '0 0 1px ' + result.variantBorderHovered;\n }\n result = __assign(__assign({}, result), s);\n return result;\n}\nfunction _fixDeprecatedSlots(s, depComments) {\n // Add @deprecated tag as comment if enabled\n var dep = '';\n if (depComments === true) {\n dep = ' /* @deprecated */';\n }\n /* eslint-disable deprecation/deprecation */\n s.listTextColor = s.listText + dep;\n s.menuItemBackgroundChecked += dep;\n s.warningHighlight += dep;\n s.warningText = s.messageText + dep;\n s.successText += dep;\n /* eslint-enable deprecation/deprecation */\n return s;\n}\n//# sourceMappingURL=makeSemanticColors.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/mergeThemes.js", - "name": "./node_modules/@fluentui/theme/lib/mergeThemes.js", - "index": 91, - "index2": 74, - "size": 1465, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "issuerId": null, - "issuerName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeThemes", - "loc": "4:0-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony import specifier", - "userRequest": "./mergeThemes", - "loc": "26:11-22" - } - ], - "usedExports": [ - "mergeThemes" - ], - "providedExports": [ - "mergeThemes" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { merge } from '@uifabric/utilities';\nimport { getSemanticColors } from './utilities/makeSemanticColors';\n/**\n * Merge a partial/full theme into a full theme and returns a merged full theme.\n */\nexport function mergeThemes(theme, partialTheme) {\n if (partialTheme === void 0) { partialTheme = {}; }\n var _a, _b, _c, _d;\n var mergedTheme = merge({}, theme, partialTheme, {\n semanticColors: getSemanticColors(partialTheme.palette, partialTheme.effects, partialTheme.semanticColors, partialTheme.isInverted === undefined ? theme.isInverted : partialTheme.isInverted),\n });\n if (((_a = partialTheme.palette) === null || _a === void 0 ? void 0 : _a.themePrimary) && !((_b = partialTheme.palette) === null || _b === void 0 ? void 0 : _b.accent)) {\n mergedTheme.palette.accent = partialTheme.palette.themePrimary;\n }\n if (partialTheme.defaultFontStyle) {\n for (var _i = 0, _e = Object.keys(mergedTheme.fonts); _i < _e.length; _i++) {\n var fontStyle = _e[_i];\n mergedTheme.fonts[fontStyle] = merge(mergedTheme.fonts[fontStyle], partialTheme.defaultFontStyle, (_d = (_c = partialTheme) === null || _c === void 0 ? void 0 : _c.fonts) === null || _d === void 0 ? void 0 : _d[fontStyle]);\n }\n }\n if (partialTheme.stylesheets) {\n mergedTheme.stylesheets = (theme.stylesheets || []).concat(partialTheme.stylesheets);\n }\n return mergedTheme;\n}\n//# sourceMappingURL=mergeThemes.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/FluentFonts.js", - "name": "./node_modules/@fluentui/theme/lib/fonts/FluentFonts.js", - "index": 70, - "index2": 54, - "size": 3686, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "issuerId": "qcM2", - "issuerName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - }, - { - "id": "qcM2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "name": "./node_modules/@fluentui/theme/lib/fonts/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./FluentFonts", - "loc": "1:0-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./FluentFonts", - "loc": "2:0-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./fonts", - "loc": "5:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./fonts", - "loc": "5:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./fonts", - "loc": "5:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "6:42-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "9:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "10:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "11:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "12:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "13:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "14:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "15:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "16:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "17:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "18:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "19:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "20:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "21:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "22:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "23:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "23:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "24:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "24:58-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "25:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "25:56-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "26:15-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "26:57-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "27:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "27:53-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "28:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "29:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "30:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "31:15-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "32:15-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "33:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "33:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "34:8-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "34:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "35:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "36:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "37:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "38:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "39:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "40:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "41:38-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "42:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "43:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "46:102-113" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "49:97-108" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "65:26-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "65:42-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "66:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "66:46-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "67:27-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "67:44-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "68:31-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "68:52-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "69:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "69:46-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "70:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "70:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "71:27-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "71:44-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "72:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "72:46-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "73:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "73:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "74:29-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "74:48-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "75:33-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "75:56-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "76:32-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "76:54-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "77:26-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./FluentFonts", - "loc": "77:42-53" - }, - { - "moduleId": "1/U1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/fonts.js", - "module": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/theme/lib/fonts/index", - "loc": "1:0-150" - }, - { - "moduleId": "1/U1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/fonts.js", - "module": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/theme/lib/fonts/index", - "loc": "1:0-150" - }, - { - "moduleId": "1/U1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/fonts.js", - "module": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/theme/lib/fonts/index", - "loc": "1:0-150" - }, - { - "moduleId": "1/U1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/fonts.js", - "module": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/theme/lib/fonts/index", - "loc": "1:0-150" - }, - { - "moduleId": "1/U1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/fonts.js", - "module": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/theme/lib/fonts/index", - "loc": "1:0-150" - }, - { - "moduleId": "qcM2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FluentFonts", - "loc": "1:0-30" - }, - { - "moduleId": "qcM2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FluentFonts", - "loc": "1:0-30" - } - ], - "usedExports": [ - "FontWeights", - "LocalizedFontNames", - "LocalizedFontFamilies", - "FontSizes", - "IconFontSizes" - ], - "providedExports": [ - "LocalizedFontNames", - "LocalizedFontFamilies", - "FontSizes", - "FontWeights", - "IconFontSizes" - ], - "optimizationBailout": [], - "depth": 8, - "source": "// Font face names to be registered.\nexport var LocalizedFontNames;\n(function (LocalizedFontNames) {\n LocalizedFontNames.Arabic = 'Segoe UI Web (Arabic)';\n LocalizedFontNames.Cyrillic = 'Segoe UI Web (Cyrillic)';\n LocalizedFontNames.EastEuropean = 'Segoe UI Web (East European)';\n LocalizedFontNames.Greek = 'Segoe UI Web (Greek)';\n LocalizedFontNames.Hebrew = 'Segoe UI Web (Hebrew)';\n LocalizedFontNames.Thai = 'Leelawadee UI Web';\n LocalizedFontNames.Vietnamese = 'Segoe UI Web (Vietnamese)';\n LocalizedFontNames.WestEuropean = 'Segoe UI Web (West European)';\n LocalizedFontNames.Selawik = 'Selawik Web';\n LocalizedFontNames.Armenian = 'Segoe UI Web (Armenian)';\n LocalizedFontNames.Georgian = 'Segoe UI Web (Georgian)';\n})(LocalizedFontNames || (LocalizedFontNames = {}));\n// Font families with fallbacks, for the general regions.\nexport var LocalizedFontFamilies;\n(function (LocalizedFontFamilies) {\n LocalizedFontFamilies.Arabic = \"'\" + LocalizedFontNames.Arabic + \"'\";\n LocalizedFontFamilies.ChineseSimplified = \"'Microsoft Yahei UI', Verdana, Simsun\";\n LocalizedFontFamilies.ChineseTraditional = \"'Microsoft Jhenghei UI', Pmingliu\";\n LocalizedFontFamilies.Cyrillic = \"'\" + LocalizedFontNames.Cyrillic + \"'\";\n LocalizedFontFamilies.EastEuropean = \"'\" + LocalizedFontNames.EastEuropean + \"'\";\n LocalizedFontFamilies.Greek = \"'\" + LocalizedFontNames.Greek + \"'\";\n LocalizedFontFamilies.Hebrew = \"'\" + LocalizedFontNames.Hebrew + \"'\";\n LocalizedFontFamilies.Hindi = \"'Nirmala UI'\";\n LocalizedFontFamilies.Japanese = \"'Yu Gothic UI', 'Meiryo UI', Meiryo, 'MS Pgothic', Osaka\";\n LocalizedFontFamilies.Korean = \"'Malgun Gothic', Gulim\";\n LocalizedFontFamilies.Selawik = \"'\" + LocalizedFontNames.Selawik + \"'\";\n LocalizedFontFamilies.Thai = \"'Leelawadee UI Web', 'Kmer UI'\";\n LocalizedFontFamilies.Vietnamese = \"'\" + LocalizedFontNames.Vietnamese + \"'\";\n LocalizedFontFamilies.WestEuropean = \"'\" + LocalizedFontNames.WestEuropean + \"'\";\n LocalizedFontFamilies.Armenian = \"'\" + LocalizedFontNames.Armenian + \"'\";\n LocalizedFontFamilies.Georgian = \"'\" + LocalizedFontNames.Georgian + \"'\";\n})(LocalizedFontFamilies || (LocalizedFontFamilies = {}));\n// Standard font sizes.\nexport var FontSizes;\n(function (FontSizes) {\n FontSizes.size10 = '10px';\n FontSizes.size12 = '12px';\n FontSizes.size14 = '14px';\n FontSizes.size16 = '16px';\n FontSizes.size18 = '18px';\n FontSizes.size20 = '20px';\n FontSizes.size24 = '24px';\n FontSizes.size28 = '28px';\n FontSizes.size32 = '32px';\n FontSizes.size42 = '42px';\n FontSizes.size68 = '68px';\n FontSizes.mini = '10px';\n FontSizes.xSmall = '10px';\n FontSizes.small = '12px';\n FontSizes.smallPlus = '12px';\n FontSizes.medium = '14px';\n FontSizes.mediumPlus = '16px';\n FontSizes.icon = '16px';\n FontSizes.large = '18px';\n FontSizes.xLarge = '20px';\n FontSizes.xLargePlus = '24px';\n FontSizes.xxLarge = '28px';\n FontSizes.xxLargePlus = '32px';\n FontSizes.superLarge = '42px';\n FontSizes.mega = '68px';\n})(FontSizes || (FontSizes = {}));\n// Standard font weights.\nexport var FontWeights;\n(function (FontWeights) {\n FontWeights.light = 100;\n FontWeights.semilight = 300;\n FontWeights.regular = 400;\n FontWeights.semibold = 600;\n FontWeights.bold = 700;\n})(FontWeights || (FontWeights = {}));\n// Standard Icon Sizes.\nexport var IconFontSizes;\n(function (IconFontSizes) {\n IconFontSizes.xSmall = '10px';\n IconFontSizes.small = '12px';\n IconFontSizes.medium = '16px';\n IconFontSizes.large = '20px';\n})(IconFontSizes || (IconFontSizes = {}));\n//# sourceMappingURL=FluentFonts.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/FluentDepths.js", - "name": "./node_modules/@fluentui/theme/lib/effects/FluentDepths.js", - "index": 83, - "index2": 64, - "size": 548, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/index.js", - "issuerId": "SjmI", - "issuerName": "./node_modules/@fluentui/theme/lib/effects/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - }, - { - "id": "SjmI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/index.js", - "name": "./node_modules/@fluentui/theme/lib/effects/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "type": "harmony side effect evaluation", - "userRequest": "./FluentDepths", - "loc": "1:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "type": "harmony import specifier", - "userRequest": "./FluentDepths", - "loc": "3:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "type": "harmony import specifier", - "userRequest": "./FluentDepths", - "loc": "4:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "type": "harmony import specifier", - "userRequest": "./FluentDepths", - "loc": "5:17-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "module": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/DefaultEffects.js", - "type": "harmony import specifier", - "userRequest": "./FluentDepths", - "loc": "6:17-23" - }, - { - "moduleId": "SjmI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/index.js", - "module": "./node_modules/@fluentui/theme/lib/effects/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FluentDepths", - "loc": "2:0-40" - }, - { - "moduleId": "SjmI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/index.js", - "module": "./node_modules/@fluentui/theme/lib/effects/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/effects/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FluentDepths", - "loc": "2:0-40" - } - ], - "usedExports": [ - "Depths" - ], - "providedExports": [ - "Depths" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export var Depths;\n(function (Depths) {\n Depths.depth0 = '0 0 0 0 transparent';\n Depths.depth4 = '0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108)';\n Depths.depth8 = '0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108)';\n Depths.depth16 = '0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108)';\n Depths.depth64 = '0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18)';\n})(Depths || (Depths = {}));\n//# sourceMappingURL=FluentDepths.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "name": "./node_modules/@fluentui/theme/lib/fonts/createFontStyles.js", - "index": 85, - "index2": 66, - "size": 4025, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "issuerId": "qcM2", - "issuerName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - }, - { - "id": "qcM2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "name": "./node_modules/@fluentui/theme/lib/fonts/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./createFontStyles", - "loc": "3:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "module": "./node_modules/@uifabric/styling/lib/styles/index.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./fonts", - "loc": "5:0-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "userRequest": "./createFontStyles", - "loc": "8:31-47" - }, - { - "moduleId": "1/U1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/fonts.js", - "module": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/theme/lib/fonts/index", - "loc": "1:0-150" - }, - { - "moduleId": "qcM2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./createFontStyles", - "loc": "2:0-54" - }, - { - "moduleId": "qcM2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/index.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/index.js", - "type": "harmony export imported specifier", - "userRequest": "./createFontStyles", - "loc": "2:0-54" - } - ], - "usedExports": [ - "createFontStyles" - ], - "providedExports": [ - "createFontStyles" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { FontSizes, FontWeights, LocalizedFontFamilies, LocalizedFontNames } from './FluentFonts';\n// Fallback fonts, if specified system or web fonts are unavailable.\nvar FontFamilyFallbacks = \"'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif\";\n// By default, we favor system fonts for the default.\n// All localized fonts use a web font and never use the system font.\nvar defaultFontFamily = \"'Segoe UI', '\" + LocalizedFontNames.WestEuropean + \"'\";\n// Mapping of language prefix to to font family.\nvar LanguageToFontMap = {\n ar: LocalizedFontFamilies.Arabic,\n bg: LocalizedFontFamilies.Cyrillic,\n cs: LocalizedFontFamilies.EastEuropean,\n el: LocalizedFontFamilies.Greek,\n et: LocalizedFontFamilies.EastEuropean,\n he: LocalizedFontFamilies.Hebrew,\n hi: LocalizedFontFamilies.Hindi,\n hr: LocalizedFontFamilies.EastEuropean,\n hu: LocalizedFontFamilies.EastEuropean,\n ja: LocalizedFontFamilies.Japanese,\n kk: LocalizedFontFamilies.EastEuropean,\n ko: LocalizedFontFamilies.Korean,\n lt: LocalizedFontFamilies.EastEuropean,\n lv: LocalizedFontFamilies.EastEuropean,\n pl: LocalizedFontFamilies.EastEuropean,\n ru: LocalizedFontFamilies.Cyrillic,\n sk: LocalizedFontFamilies.EastEuropean,\n 'sr-latn': LocalizedFontFamilies.EastEuropean,\n th: LocalizedFontFamilies.Thai,\n tr: LocalizedFontFamilies.EastEuropean,\n uk: LocalizedFontFamilies.Cyrillic,\n vi: LocalizedFontFamilies.Vietnamese,\n 'zh-hans': LocalizedFontFamilies.ChineseSimplified,\n 'zh-hant': LocalizedFontFamilies.ChineseTraditional,\n hy: LocalizedFontFamilies.Armenian,\n ka: LocalizedFontFamilies.Georgian,\n};\nfunction _fontFamilyWithFallbacks(fontFamily) {\n return fontFamily + \", \" + FontFamilyFallbacks;\n}\n/**\n * If there is a localized font for this language, return that.\n * Returns undefined if there is no localized font for that language.\n */\nfunction _getLocalizedFontFamily(language) {\n for (var lang in LanguageToFontMap) {\n if (LanguageToFontMap.hasOwnProperty(lang) && language && lang.indexOf(language) === 0) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return LanguageToFontMap[lang];\n }\n }\n return defaultFontFamily;\n}\nfunction _createFont(size, weight, fontFamily) {\n return {\n fontFamily: fontFamily,\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontSize: size,\n fontWeight: weight,\n };\n}\nexport function createFontStyles(localeCode) {\n var localizedFont = _getLocalizedFontFamily(localeCode);\n var fontFamilyWithFallback = _fontFamilyWithFallbacks(localizedFont);\n var fontStyles = {\n tiny: _createFont(FontSizes.mini, FontWeights.regular, fontFamilyWithFallback),\n xSmall: _createFont(FontSizes.xSmall, FontWeights.regular, fontFamilyWithFallback),\n small: _createFont(FontSizes.small, FontWeights.regular, fontFamilyWithFallback),\n smallPlus: _createFont(FontSizes.smallPlus, FontWeights.regular, fontFamilyWithFallback),\n medium: _createFont(FontSizes.medium, FontWeights.regular, fontFamilyWithFallback),\n mediumPlus: _createFont(FontSizes.mediumPlus, FontWeights.regular, fontFamilyWithFallback),\n large: _createFont(FontSizes.large, FontWeights.regular, fontFamilyWithFallback),\n xLarge: _createFont(FontSizes.xLarge, FontWeights.semibold, fontFamilyWithFallback),\n xLargePlus: _createFont(FontSizes.xLargePlus, FontWeights.semibold, fontFamilyWithFallback),\n xxLarge: _createFont(FontSizes.xxLarge, FontWeights.semibold, fontFamilyWithFallback),\n xxLargePlus: _createFont(FontSizes.xxLargePlus, FontWeights.semibold, fontFamilyWithFallback),\n superLarge: _createFont(FontSizes.superLarge, FontWeights.semibold, fontFamilyWithFallback),\n mega: _createFont(FontSizes.mega, FontWeights.semibold, fontFamilyWithFallback),\n };\n return fontStyles;\n}\n//# sourceMappingURL=createFontStyles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/spacing/DefaultSpacing.js", - "name": "./node_modules/@fluentui/theme/lib/spacing/DefaultSpacing.js", - "index": 89, - "index2": 71, - "size": 152, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/spacing/index.js", - "issuerId": "NpKg", - "issuerName": "./node_modules/@fluentui/theme/lib/spacing/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - }, - { - "id": "NpKg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/spacing/index.js", - "name": "./node_modules/@fluentui/theme/lib/spacing/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "module": "./node_modules/@fluentui/theme/lib/createTheme.js", - "moduleName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./spacing/index", - "loc": "20:17-31" - }, - { - "moduleId": "NpKg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/spacing/index.js", - "module": "./node_modules/@fluentui/theme/lib/spacing/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/spacing/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultSpacing", - "loc": "1:0-50" - }, - { - "moduleId": "NpKg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/spacing/index.js", - "module": "./node_modules/@fluentui/theme/lib/spacing/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/spacing/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DefaultSpacing", - "loc": "1:0-50" - } - ], - "usedExports": [ - "DefaultSpacing" - ], - "providedExports": [ - "DefaultSpacing" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export var DefaultSpacing = {\n s2: '4px',\n s1: '8px',\n m: '16px',\n l1: '20px',\n l2: '32px',\n};\n//# sourceMappingURL=DefaultSpacing.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "u8Dt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashGet.js", - "name": "./node_modules/lodash/_hashGet.js", - "index": 481, - "index2": 469, - "size": 772, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "issuerId": "4kuk", - "issuerName": "./node_modules/lodash/_Hash.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4kuk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "module": "./node_modules/lodash/_Hash.js", - "moduleName": "./node_modules/lodash/_Hash.js", - "type": "cjs require", - "userRequest": "./_hashGet", - "loc": "3:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "var nativeCreate = require('./_nativeCreate');\n\n/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Gets the hash value for `key`.\n *\n * @private\n * @name get\n * @memberOf Hash\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction hashGet(key) {\n var data = this.__data__;\n if (nativeCreate) {\n var result = data[key];\n return result === HASH_UNDEFINED ? undefined : result;\n }\n return hasOwnProperty.call(data, key) ? data[key] : undefined;\n}\n\nmodule.exports = hashGet;\n" - }, - { - "id": "uGHJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "name": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "index": 51, - "index2": 37, - "size": 1692, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerId": "YDzY", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./extractStyleParts", - "loc": "2:0-56" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./extractStyleParts", - "loc": "45:21-38" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./extractStyleParts", - "loc": "1:0-56" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony import specifier", - "userRequest": "./extractStyleParts", - "loc": "24:13-30" - } - ], - "usedExports": [ - "extractStyleParts" - ], - "providedExports": [ - "extractStyleParts" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { Stylesheet } from './Stylesheet';\n/**\n * Separates the classes and style objects. Any classes that are pre-registered\n * args are auto expanded into objects.\n */\nexport function extractStyleParts() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var classes = [];\n var objects = [];\n var stylesheet = Stylesheet.getInstance();\n function _processArgs(argsList) {\n for (var _i = 0, argsList_1 = argsList; _i < argsList_1.length; _i++) {\n var arg = argsList_1[_i];\n if (arg) {\n if (typeof arg === 'string') {\n if (arg.indexOf(' ') >= 0) {\n _processArgs(arg.split(' '));\n }\n else {\n var translatedArgs = stylesheet.argsFromClassName(arg);\n if (translatedArgs) {\n _processArgs(translatedArgs);\n }\n else {\n // Avoid adding the same class twice.\n if (classes.indexOf(arg) === -1) {\n classes.push(arg);\n }\n }\n }\n }\n else if (Array.isArray(arg)) {\n _processArgs(arg);\n }\n else if (typeof arg === 'object') {\n objects.push(arg);\n }\n }\n }\n }\n _processArgs(args);\n return {\n classes: classes,\n objects: objects,\n };\n}\n//# sourceMappingURL=extractStyleParts.js.map" - }, - { - "id": "uNUV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "index": 195, - "index2": 256, - "size": 69298, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Dropdown", - "loc": "8:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Dropdown", - "loc": "92:31-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Dropdown", - "loc": "551:36-44" - }, - { - "moduleId": "cmLf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dropdown", - "loc": "1:0-27" - }, - { - "moduleId": "cmLf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Dropdown", - "loc": "1:0-27" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Dropdown", - "loc": "41:36-44" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Dropdown", - "loc": "44:32-40" - } - ], - "usedExports": [ - "Dropdown" - ], - "providedExports": [ - "Dropdown" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/BaseComponent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/aria.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/array.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/customizable.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/extendComponent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/focus.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/mobileDetector.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/osDetector.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Label/Label.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 3, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "index": 196, - "index2": 254, - "size": 44677, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dropdown.base", - "loc": "2:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "type": "harmony import specifier", - "userRequest": "./Dropdown.base", - "loc": "4:29-41" - }, - { - "moduleId": "cmLf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dropdown.base", - "loc": "2:0-32" - }, - { - "moduleId": "cmLf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Dropdown.base", - "loc": "2:0-32" - } - ], - "usedExports": [ - "DropdownBase" - ], - "providedExports": [ - "DropdownBase" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __assign, __decorate, __extends, __spreadArrays } from \"tslib\";\nimport * as React from 'react';\nimport { KeyCodes, classNamesFunction, divProperties, findIndex, getDocument, getFirstFocusable, getId, getLastFocusable, getNativeProps, initializeComponentRef, isIOS, isMac, mergeAriaAttributeValues, safeRequestAnimationFrame, warn, warnDeprecations, warnMutuallyExclusive, } from '../../Utilities';\nimport { Callout } from '../../Callout';\nimport { Checkbox } from '../../Checkbox';\nimport { CommandButton } from '../../Button';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { DropdownMenuItemType, } from './Dropdown.types';\nimport { DropdownSizePosCache } from './utilities/DropdownSizePosCache';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nimport { Icon } from '../../Icon';\nimport { Label } from '../../Label';\nimport { KeytipData } from '../../KeytipData';\nimport { Panel } from '../../Panel';\nimport { ResponsiveMode, withResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nimport { SelectableOptionMenuItemType, getAllSelectedOptions, } from '../../utilities/selectableOption/index';\nvar COMPONENT_NAME = 'Dropdown';\nvar getClassNames = classNamesFunction();\nvar DropdownBase = /** @class */ (function (_super) {\n __extends(DropdownBase, _super);\n function DropdownBase(props) {\n var _this = _super.call(this, props) || this;\n _this._host = React.createRef();\n _this._focusZone = React.createRef();\n _this._dropDown = React.createRef();\n _this._scrollIdleDelay = 250 /* ms */;\n _this._sizePosCache = new DropdownSizePosCache();\n _this._requestAnimationFrame = safeRequestAnimationFrame(_this);\n _this._onChange = function (event, options, index, checked, multiSelect) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, onChange = _a.onChange, onChanged = _a.onChanged;\n if (onChange || onChanged) {\n // for single-select, option passed in will always be selected.\n // for multi-select, flip the checked value\n var changedOpt = multiSelect ? __assign(__assign({}, options[index]), { selected: !checked }) : options[index];\n onChange && onChange(__assign(__assign({}, event), { target: _this._dropDown.current }), changedOpt, index);\n onChanged && onChanged(changedOpt, index);\n }\n };\n /** Get either props.placeholder (new name) or props.placeHolder (old name) */\n _this._getPlaceholder = function () {\n // eslint-disable-next-line deprecation/deprecation\n return _this.props.placeholder || _this.props.placeHolder;\n };\n /** Get text in dropdown input as a string */\n _this._getTitle = function (items, _unused) {\n var _a = _this.props.multiSelectDelimiter, multiSelectDelimiter = _a === void 0 ? ', ' : _a;\n return items.map(function (i) { return i.text; }).join(multiSelectDelimiter);\n };\n /** Render text in dropdown input */\n _this._onRenderTitle = function (items) {\n return React.createElement(React.Fragment, null, _this._getTitle(items));\n };\n /** Render placeholder text in dropdown input */\n _this._onRenderPlaceholder = function (props) {\n if (!_this._getPlaceholder()) {\n return null;\n }\n return React.createElement(React.Fragment, null, _this._getPlaceholder());\n };\n /** Render Callout or Panel container and pass in list */\n _this._onRenderContainer = function (props) {\n var calloutProps = props.calloutProps, panelProps = props.panelProps;\n var _a = _this.props, responsiveMode = _a.responsiveMode, dropdownWidth = _a.dropdownWidth;\n var isSmall = responsiveMode <= ResponsiveMode.medium;\n var panelStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.panel\n : undefined;\n var calloutWidth = undefined;\n var calloutMinWidth = undefined;\n if (dropdownWidth === 'auto') {\n calloutMinWidth = _this._dropDown.current ? _this._dropDown.current.clientWidth : 0;\n }\n else {\n calloutWidth = dropdownWidth || (_this._dropDown.current ? _this._dropDown.current.clientWidth : 0);\n }\n return isSmall ? (React.createElement(Panel, __assign({ isOpen: true, isLightDismiss: true, onDismiss: _this._onDismiss, hasCloseButton: false, styles: panelStyles }, panelProps), _this._renderFocusableList(props))) : (React.createElement(Callout, __assign({ isBeakVisible: false, gapSpace: 0, doNotLayer: false, directionalHintFixed: false, directionalHint: DirectionalHint.bottomLeftEdge, calloutWidth: calloutWidth, calloutMinWidth: calloutMinWidth }, calloutProps, { className: _this._classNames.callout, target: _this._dropDown.current, onDismiss: _this._onDismiss, onScroll: _this._onScroll, onPositioned: _this._onPositioned }), _this._renderFocusableList(props)));\n };\n /** Render Caret Down Icon */\n _this._onRenderCaretDown = function (props) {\n return React.createElement(Icon, { className: _this._classNames.caretDown, iconName: \"ChevronDown\", \"aria-hidden\": true });\n };\n /** Render List of items */\n _this._onRenderList = function (props) {\n var _a = props.onRenderItem, onRenderItem = _a === void 0 ? _this._onRenderItem : _a;\n var queue = { items: [] };\n var renderedList = [];\n var emptyQueue = function () {\n var newGroup = queue.id\n ? [\n React.createElement(\"div\", { role: \"group\", key: queue.id, \"aria-labelledby\": queue.id }, queue.items),\n ]\n : queue.items;\n renderedList = __spreadArrays(renderedList, newGroup);\n // Flush items and id\n queue = { items: [] };\n };\n var placeRenderedOptionIntoQueue = function (item, index) {\n /*\n Case Header\n empty queue if it's not already empty\n ensure unique ID for header and set queue ID\n push header into queue\n Case Divider\n push divider into queue if not first item\n empty queue if not already empty\n Default\n push item into queue\n */\n switch (item.itemType) {\n case SelectableOptionMenuItemType.Header:\n queue.items.length > 0 && emptyQueue();\n var id = _this._id + item.key;\n queue.items.push(onRenderItem(__assign(__assign({ id: id }, item), { index: index }), _this._onRenderItem));\n queue.id = id;\n break;\n case SelectableOptionMenuItemType.Divider:\n index > 0 && queue.items.push(onRenderItem(__assign(__assign({}, item), { index: index }), _this._onRenderItem));\n queue.items.length > 0 && emptyQueue();\n break;\n default:\n queue.items.push(onRenderItem(__assign(__assign({}, item), { index: index }), _this._onRenderItem));\n }\n };\n // Place options into the queue. Queue will be emptied anytime a Header or Divider is encountered\n props.options.forEach(function (item, index) {\n placeRenderedOptionIntoQueue(item, index);\n });\n // Push remaining items into all renderedList\n queue.items.length > 0 && emptyQueue();\n return React.createElement(React.Fragment, null, renderedList);\n };\n _this._onRenderItem = function (item) {\n switch (item.itemType) {\n case SelectableOptionMenuItemType.Divider:\n return _this._renderSeparator(item);\n case SelectableOptionMenuItemType.Header:\n return _this._renderHeader(item);\n default:\n return _this._renderOption(item);\n }\n };\n _this._renderOption = function (item) {\n var _a = _this.props.onRenderOption, onRenderOption = _a === void 0 ? _this._onRenderOption : _a;\n var _b = _this.state.selectedIndices, selectedIndices = _b === void 0 ? [] : _b;\n var isItemSelected = item.index !== undefined && selectedIndices ? selectedIndices.indexOf(item.index) > -1 : false;\n // select the right className based on the combination of selected/disabled\n var itemClassName = item.hidden // predicate: item hidden\n ? _this._classNames.dropdownItemHidden\n : isItemSelected && item.disabled === true // predicate: both selected and disabled\n ? _this._classNames.dropdownItemSelectedAndDisabled\n : isItemSelected // predicate: selected only\n ? _this._classNames.dropdownItemSelected\n : item.disabled === true // predicate: disabled only\n ? _this._classNames.dropdownItemDisabled\n : _this._classNames.dropdownItem;\n var _c = item.title, title = _c === void 0 ? item.text : _c;\n var multiSelectItemStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.multiSelectItem\n : undefined;\n return !_this.props.multiSelect ? (React.createElement(CommandButton, { id: _this._listId + item.index, key: item.key, \"data-index\": item.index, \"data-is-focusable\": !item.disabled, disabled: item.disabled, className: itemClassName, onClick: _this._onItemClick(item), \n // eslint-disable-next-line react/jsx-no-bind\n onMouseEnter: _this._onItemMouseEnter.bind(_this, item), \n // eslint-disable-next-line react/jsx-no-bind\n onMouseLeave: _this._onMouseItemLeave.bind(_this, item), \n // eslint-disable-next-line react/jsx-no-bind\n onMouseMove: _this._onItemMouseMove.bind(_this, item), role: \"option\", \"aria-selected\": isItemSelected ? 'true' : 'false', ariaLabel: item.ariaLabel, title: title, \"aria-posinset\": _this._sizePosCache.positionInSet(item.index), \"aria-setsize\": _this._sizePosCache.optionSetSize }, onRenderOption(item, _this._onRenderOption))) : (React.createElement(Checkbox, { id: _this._listId + item.index, key: item.key, \"data-index\": item.index, \"data-is-focusable\": !item.disabled, disabled: item.disabled, onChange: _this._onItemClick(item), inputProps: {\n 'aria-selected': isItemSelected,\n onMouseEnter: _this._onItemMouseEnter.bind(_this, item),\n onMouseLeave: _this._onMouseItemLeave.bind(_this, item),\n onMouseMove: _this._onItemMouseMove.bind(_this, item),\n role: 'option',\n }, label: item.text, title: title, \n // eslint-disable-next-line react/jsx-no-bind\n onRenderLabel: _this._onRenderItemLabel.bind(_this, item), className: itemClassName, checked: isItemSelected, styles: multiSelectItemStyles, ariaPositionInSet: _this._sizePosCache.positionInSet(item.index), ariaSetSize: _this._sizePosCache.optionSetSize }));\n };\n /** Render content of item (i.e. text/icon inside of button) */\n _this._onRenderOption = function (item) {\n return React.createElement(\"span\", { className: _this._classNames.dropdownOptionText }, item.text);\n };\n /** Render custom label for drop down item */\n _this._onRenderItemLabel = function (item) {\n var _a = _this.props.onRenderOption, onRenderOption = _a === void 0 ? _this._onRenderOption : _a;\n return onRenderOption(item, _this._onRenderOption);\n };\n _this._onPositioned = function (positions) {\n if (_this._focusZone.current) {\n // Focusing an element can trigger a reflow. Making this wait until there is an animation\n // frame can improve perf significantly.\n _this._requestAnimationFrame(function () {\n var selectedIndices = _this.state.selectedIndices;\n if (_this._focusZone.current) {\n if (selectedIndices && selectedIndices[0] && !_this.props.options[selectedIndices[0]].disabled) {\n var element = getDocument().getElementById(_this._id + \"-list\" + selectedIndices[0]);\n if (element) {\n _this._focusZone.current.focusElement(element);\n }\n }\n else {\n _this._focusZone.current.focus();\n }\n }\n });\n }\n if (!_this.state.calloutRenderEdge || _this.state.calloutRenderEdge !== positions.targetEdge) {\n _this.setState({\n calloutRenderEdge: positions.targetEdge,\n });\n }\n };\n _this._onItemClick = function (item) {\n return function (event) {\n if (!item.disabled) {\n _this.setSelectedIndex(event, item.index);\n if (!_this.props.multiSelect) {\n // only close the callout when it's in single-select mode\n _this.setState({\n isOpen: false,\n });\n }\n }\n };\n };\n /**\n * Scroll handler for the callout to make sure the mouse events\n * for updating focus are not interacting during scroll\n */\n _this._onScroll = function () {\n if (!_this._isScrollIdle && _this._scrollIdleTimeoutId !== undefined) {\n clearTimeout(_this._scrollIdleTimeoutId);\n _this._scrollIdleTimeoutId = undefined;\n }\n else {\n _this._isScrollIdle = false;\n }\n _this._scrollIdleTimeoutId = setTimeout(function () {\n _this._isScrollIdle = true;\n }, _this._scrollIdleDelay);\n };\n _this._onMouseItemLeave = function (item, ev) {\n if (_this._shouldIgnoreMouseEvent()) {\n return;\n }\n /**\n * IE11 focus() method forces parents to scroll to top of element.\n * Edge and IE expose a setActive() function for focusable divs that\n * sets the page focus but does not scroll the parent element.\n */\n if (_this._host.current) {\n if (_this._host.current.setActive) {\n try {\n _this._host.current.setActive();\n }\n catch (e) {\n /* no-op */\n }\n }\n else {\n _this._host.current.focus();\n }\n }\n };\n _this._onDismiss = function () {\n _this.setState({ isOpen: false });\n };\n _this._onDropdownBlur = function (ev) {\n // If Dropdown disabled do not proceed with this logic.\n var disabled = _this._isDisabled();\n if (disabled) {\n return;\n }\n // hasFocus tracks whether the root element has focus so always update the state.\n _this.setState({ hasFocus: false });\n if (_this.state.isOpen) {\n // Do not onBlur when the callout is opened\n return;\n }\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n };\n _this._onDropdownKeyDown = function (ev) {\n // If Dropdown disabled do not process any keyboard events.\n var disabled = _this._isDisabled();\n if (disabled) {\n return;\n }\n // Take note if we are processing an alt (option) or meta (command) keydown.\n // See comment in _shouldHandleKeyUp for reasoning.\n _this._lastKeyDownWasAltOrMeta = _this._isAltOrMeta(ev);\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n if (ev.defaultPrevented) {\n return;\n }\n }\n var newIndex;\n var selectedIndex = _this.state.selectedIndices.length ? _this.state.selectedIndices[0] : -1;\n var containsExpandCollapseModifier = ev.altKey || ev.metaKey;\n var isOpen = _this.state.isOpen;\n switch (ev.which) {\n case KeyCodes.enter:\n _this.setState({\n isOpen: !isOpen,\n });\n break;\n case KeyCodes.escape:\n if (!isOpen) {\n return;\n }\n _this.setState({\n isOpen: false,\n });\n break;\n case KeyCodes.up:\n if (containsExpandCollapseModifier) {\n if (isOpen) {\n _this.setState({ isOpen: false });\n break;\n }\n return;\n }\n if (_this.props.multiSelect) {\n _this.setState({ isOpen: true });\n }\n else if (!_this._isDisabled()) {\n newIndex = _this._moveIndex(ev, -1, selectedIndex - 1, selectedIndex);\n }\n break;\n case KeyCodes.down:\n if (containsExpandCollapseModifier) {\n ev.stopPropagation();\n ev.preventDefault();\n }\n if ((containsExpandCollapseModifier && !isOpen) || _this.props.multiSelect) {\n _this.setState({ isOpen: true });\n }\n else if (!_this._isDisabled()) {\n newIndex = _this._moveIndex(ev, 1, selectedIndex + 1, selectedIndex);\n }\n break;\n case KeyCodes.home:\n if (!_this.props.multiSelect) {\n newIndex = _this._moveIndex(ev, 1, 0, selectedIndex);\n }\n break;\n case KeyCodes.end:\n if (!_this.props.multiSelect) {\n newIndex = _this._moveIndex(ev, -1, _this.props.options.length - 1, selectedIndex);\n }\n break;\n case KeyCodes.space:\n // event handled in _onDropdownKeyUp\n break;\n default:\n return;\n }\n if (newIndex !== selectedIndex) {\n ev.stopPropagation();\n ev.preventDefault();\n }\n };\n _this._onDropdownKeyUp = function (ev) {\n // If Dropdown disabled do not process any keyboard events.\n var disabled = _this._isDisabled();\n if (disabled) {\n return;\n }\n var shouldHandleKey = _this._shouldHandleKeyUp(ev);\n var isOpen = _this.state.isOpen;\n if (_this.props.onKeyUp) {\n _this.props.onKeyUp(ev);\n if (ev.defaultPrevented) {\n return;\n }\n }\n switch (ev.which) {\n case KeyCodes.space:\n _this.setState({\n isOpen: !isOpen,\n });\n break;\n default:\n if (shouldHandleKey && isOpen) {\n _this.setState({ isOpen: false });\n }\n return;\n }\n ev.stopPropagation();\n ev.preventDefault();\n };\n _this._onZoneKeyDown = function (ev) {\n var elementToFocus;\n // Take note if we are processing an alt (option) or meta (command) keydown.\n // See comment in _shouldHandleKeyUp for reasoning.\n _this._lastKeyDownWasAltOrMeta = _this._isAltOrMeta(ev);\n var containsExpandCollapseModifier = ev.altKey || ev.metaKey;\n switch (ev.which) {\n case KeyCodes.up:\n if (containsExpandCollapseModifier) {\n _this.setState({ isOpen: false });\n }\n else {\n if (_this._host.current) {\n elementToFocus = getLastFocusable(_this._host.current, _this._host.current.lastChild, true);\n }\n }\n break;\n // All directional keystrokes should be canceled when the zone is rendered.\n // This avoids the body scroll from reacting and thus dismissing the dropdown.\n case KeyCodes.home:\n case KeyCodes.end:\n case KeyCodes.pageUp:\n case KeyCodes.pageDown:\n break;\n case KeyCodes.down:\n if (!containsExpandCollapseModifier && _this._host.current) {\n elementToFocus = getFirstFocusable(_this._host.current, _this._host.current.firstChild, true);\n }\n break;\n case KeyCodes.escape:\n _this.setState({ isOpen: false });\n break;\n case KeyCodes.tab:\n _this.setState({ isOpen: false });\n return;\n default:\n return;\n }\n if (elementToFocus) {\n elementToFocus.focus();\n }\n ev.stopPropagation();\n ev.preventDefault();\n };\n _this._onZoneKeyUp = function (ev) {\n var shouldHandleKey = _this._shouldHandleKeyUp(ev);\n if (shouldHandleKey && _this.state.isOpen) {\n _this.setState({ isOpen: false });\n ev.preventDefault();\n }\n };\n _this._onDropdownClick = function (ev) {\n if (_this.props.onClick) {\n _this.props.onClick(ev);\n if (ev.defaultPrevented) {\n return;\n }\n }\n var isOpen = _this.state.isOpen;\n var disabled = _this._isDisabled();\n if (!disabled && !_this._shouldOpenOnFocus()) {\n _this.setState({\n isOpen: !isOpen,\n });\n }\n _this._isFocusedByClick = false; // reset\n };\n _this._onDropdownMouseDown = function () {\n _this._isFocusedByClick = true;\n };\n _this._onFocus = function (ev) {\n var disabled = _this._isDisabled();\n if (!disabled) {\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n var state = { hasFocus: true };\n if (_this._shouldOpenOnFocus()) {\n state.isOpen = true;\n }\n _this.setState(state);\n }\n };\n /**\n * Because the isDisabled prop is deprecated, we have had to repeat this logic all over the place.\n * This helper method avoids all the repetition.\n */\n _this._isDisabled = function () {\n var disabled = _this.props.disabled;\n // eslint-disable-next-line deprecation/deprecation\n var isDisabled = _this.props.isDisabled;\n // Remove this deprecation workaround at 1.0.0\n if (disabled === undefined) {\n disabled = isDisabled;\n }\n return disabled;\n };\n _this._onRenderLabel = function (props) {\n var label = props.label, required = props.required, disabled = props.disabled;\n var labelStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.label\n : undefined;\n return label ? (React.createElement(Label, { className: _this._classNames.label, id: _this._labelId, required: required, styles: labelStyles, disabled: disabled }, label)) : null;\n };\n initializeComponentRef(_this);\n var multiSelect = props.multiSelect, selectedKey = props.selectedKey, selectedKeys = props.selectedKeys, defaultSelectedKey = props.defaultSelectedKey, defaultSelectedKeys = props.defaultSelectedKeys, options = props.options;\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations(COMPONENT_NAME, props, {\n isDisabled: 'disabled',\n onChanged: 'onChange',\n placeHolder: 'placeholder',\n onRenderPlaceHolder: 'onRenderPlaceholder',\n });\n warnMutuallyExclusive(COMPONENT_NAME, props, {\n defaultSelectedKey: 'selectedKey',\n defaultSelectedKeys: 'selectedKeys',\n selectedKeys: 'selectedKey',\n });\n if (multiSelect) {\n var warnMultiSelect = function (prop) {\n return warn(\"Dropdown property '\" + prop + \"' cannot be used when 'multiSelect' is true. Use '\" + prop + \"s' instead.\");\n };\n if (selectedKey !== undefined) {\n warnMultiSelect('selectedKey');\n }\n if (defaultSelectedKey !== undefined) {\n warnMultiSelect('defaultSelectedKey');\n }\n }\n else {\n var warnNotMultiSelect = function (prop) {\n return warn(\"Dropdown property '\" + prop + \"s' cannot be used when 'multiSelect' is false/unset. Use '\" + prop + \"' instead.\");\n };\n if (selectedKeys !== undefined) {\n warnNotMultiSelect('selectedKey');\n }\n if (defaultSelectedKeys !== undefined) {\n warnNotMultiSelect('defaultSelectedKey');\n }\n }\n }\n _this._id = props.id || getId('Dropdown');\n _this._labelId = _this._id + '-label';\n _this._listId = _this._id + '-list';\n _this._optionId = _this._id + '-option';\n _this._isScrollIdle = true;\n var selectedIndices;\n if (multiSelect) {\n selectedIndices = _this._getSelectedIndexes(options, defaultSelectedKeys !== undefined ? defaultSelectedKeys : selectedKeys);\n }\n else {\n selectedIndices = _this._getSelectedIndexes(options, (defaultSelectedKey !== undefined ? defaultSelectedKey : selectedKey));\n }\n _this._sizePosCache.updateOptions(options);\n _this.state = {\n isOpen: false,\n selectedIndices: selectedIndices,\n hasFocus: false,\n calloutRenderEdge: undefined,\n };\n return _this;\n }\n Object.defineProperty(DropdownBase.prototype, \"selectedOptions\", {\n /**\n * All selected options\n */\n get: function () {\n var options = this.props.options;\n var selectedIndices = this.state.selectedIndices;\n return getAllSelectedOptions(options, selectedIndices);\n },\n enumerable: true,\n configurable: true\n });\n DropdownBase.prototype.componentWillUnmount = function () {\n clearTimeout(this._scrollIdleTimeoutId);\n };\n DropdownBase.prototype.UNSAFE_componentWillReceiveProps = function (newProps) {\n // In controlled component usage where selectedKey is provided, update the selectedIndex\n // state if the key or options change.\n var selectedKeyProp;\n // this does a shallow compare (assumes options are pure), for the purposes of determining whether\n // defaultSelectedKey/defaultSelectedKeys are respected.\n var didOptionsChange = newProps.options !== this.props.options;\n if (newProps.multiSelect) {\n if (didOptionsChange && newProps.defaultSelectedKeys !== undefined) {\n selectedKeyProp = 'defaultSelectedKeys';\n }\n else {\n selectedKeyProp = 'selectedKeys';\n }\n }\n else {\n if (didOptionsChange && newProps.defaultSelectedKey !== undefined) {\n selectedKeyProp = 'defaultSelectedKey';\n }\n else {\n selectedKeyProp = 'selectedKey';\n }\n }\n if (newProps[selectedKeyProp] !== undefined &&\n (newProps[selectedKeyProp] !== this.props[selectedKeyProp] || didOptionsChange)) {\n this.setState({\n selectedIndices: this._getSelectedIndexes(newProps.options, newProps[selectedKeyProp]),\n });\n }\n };\n DropdownBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n if (prevState.isOpen === true && this.state.isOpen === false) {\n this._gotMouseMove = false;\n if (this.props.onDismiss) {\n this.props.onDismiss();\n }\n }\n };\n DropdownBase.prototype.render = function () {\n var _this = this;\n var _a, _b;\n var id = this._id;\n var props = this.props;\n var className = props.className, label = props.label, options = props.options, ariaLabel = props.ariaLabel, required = props.required, errorMessage = props.errorMessage, keytipProps = props.keytipProps, propStyles = props.styles, theme = props.theme, panelProps = props.panelProps, calloutProps = props.calloutProps, _c = props.onRenderTitle, onRenderTitle = _c === void 0 ? this._getTitle : _c, _d = props.onRenderContainer, onRenderContainer = _d === void 0 ? this._onRenderContainer : _d, _e = props.onRenderCaretDown, onRenderCaretDown = _e === void 0 ? this._onRenderCaretDown : _e, _f = props.onRenderLabel, onRenderLabel = _f === void 0 ? this._onRenderLabel : _f;\n var _g = this.state, isOpen = _g.isOpen, selectedIndices = _g.selectedIndices, calloutRenderEdge = _g.calloutRenderEdge;\n // eslint-disable-next-line deprecation/deprecation\n var onRenderPlaceholder = props.onRenderPlaceholder || props.onRenderPlaceHolder || this._getPlaceholder;\n // If our cached options are out of date update our cache\n if (options !== this._sizePosCache.cachedOptions) {\n this._sizePosCache.updateOptions(options);\n }\n var selectedOptions = getAllSelectedOptions(options, selectedIndices);\n var divProps = getNativeProps(props, divProperties);\n var disabled = this._isDisabled();\n var errorMessageId = id + '-errorMessage';\n var ariaActiveDescendant = disabled\n ? undefined\n : isOpen && selectedIndices.length === 1 && selectedIndices[0] >= 0\n ? this._listId + selectedIndices[0]\n : undefined;\n this._classNames = getClassNames(propStyles, {\n theme: theme,\n className: className,\n hasError: !!(errorMessage && errorMessage.length > 0),\n hasLabel: !!label,\n isOpen: isOpen,\n required: required,\n disabled: disabled,\n isRenderingPlaceholder: !selectedOptions.length,\n panelClassName: (_a = panelProps) === null || _a === void 0 ? void 0 : _a.className,\n calloutClassName: (_b = calloutProps) === null || _b === void 0 ? void 0 : _b.className,\n calloutRenderEdge: calloutRenderEdge,\n });\n var hasErrorMessage = !!errorMessage && errorMessage.length > 0;\n return (React.createElement(\"div\", { className: this._classNames.root },\n onRenderLabel(this.props, this._onRenderLabel),\n React.createElement(KeytipData, { keytipProps: keytipProps, disabled: disabled }, function (keytipAttributes) { return (React.createElement(\"div\", __assign({}, keytipAttributes, { \"data-is-focusable\": !disabled, ref: _this._dropDown, id: id, tabIndex: disabled ? -1 : 0, role: \"combobox\", \"aria-haspopup\": \"listbox\", \"aria-expanded\": isOpen ? 'true' : 'false', \"aria-label\": ariaLabel, \"aria-labelledby\": label && !ariaLabel ? mergeAriaAttributeValues(_this._labelId, _this._optionId) : undefined, \"aria-describedby\": mergeAriaAttributeValues(keytipAttributes['aria-describedby'], hasErrorMessage ? _this._id + '-errorMessage' : undefined), \"aria-activedescendant\": ariaActiveDescendant, \"aria-required\": required, \"aria-disabled\": disabled, \"aria-controls\": isOpen ? _this._listId : undefined }, divProps, { className: _this._classNames.dropdown, onBlur: _this._onDropdownBlur, onKeyDown: _this._onDropdownKeyDown, onKeyUp: _this._onDropdownKeyUp, onClick: _this._onDropdownClick, onMouseDown: _this._onDropdownMouseDown, onFocus: _this._onFocus }),\n React.createElement(\"span\", { id: _this._optionId, className: _this._classNames.title, \"aria-live\": \"polite\", \"aria-atomic\": true }, // If option is selected render title, otherwise render the placeholder text\n selectedOptions.length\n ? onRenderTitle(selectedOptions, _this._onRenderTitle)\n : onRenderPlaceholder(props, _this._onRenderPlaceholder)),\n React.createElement(\"span\", { className: _this._classNames.caretDownWrapper }, onRenderCaretDown(props, _this._onRenderCaretDown)))); }),\n isOpen && onRenderContainer(__assign(__assign({}, props), { onDismiss: this._onDismiss }), this._onRenderContainer),\n hasErrorMessage && (React.createElement(\"div\", { role: \"alert\", id: errorMessageId, className: this._classNames.errorMessage }, errorMessage))));\n };\n DropdownBase.prototype.focus = function (shouldOpenOnFocus) {\n if (this._dropDown.current) {\n this._dropDown.current.focus();\n if (shouldOpenOnFocus) {\n this.setState({\n isOpen: true,\n });\n }\n }\n };\n DropdownBase.prototype.setSelectedIndex = function (event, index) {\n var _this = this;\n var _a = this.props, options = _a.options, selectedKey = _a.selectedKey, selectedKeys = _a.selectedKeys, multiSelect = _a.multiSelect, notifyOnReselect = _a.notifyOnReselect;\n var _b = this.state.selectedIndices, selectedIndices = _b === void 0 ? [] : _b;\n var checked = selectedIndices ? selectedIndices.indexOf(index) > -1 : false;\n var newIndexes = [];\n index = Math.max(0, Math.min(options.length - 1, index));\n // If this is a controlled component then no state change should take place.\n if (selectedKey !== undefined || selectedKeys !== undefined) {\n this._onChange(event, options, index, checked, multiSelect);\n return;\n }\n if (!multiSelect && !notifyOnReselect && index === selectedIndices[0]) {\n return;\n }\n else if (multiSelect) {\n newIndexes = selectedIndices ? this._copyArray(selectedIndices) : [];\n if (checked) {\n var position = newIndexes.indexOf(index);\n if (position > -1) {\n // unchecked the current one\n newIndexes.splice(position, 1);\n }\n }\n else {\n // add the new selected index into the existing one\n newIndexes.push(index);\n }\n }\n else {\n // Set the selected option if this is an uncontrolled component\n newIndexes = [index];\n }\n event.persist();\n // Call onChange after state is updated\n this.setState({\n selectedIndices: newIndexes,\n }, function () {\n _this._onChange(event, options, index, checked, multiSelect);\n });\n };\n DropdownBase.prototype._copyArray = function (array) {\n var newArray = [];\n for (var _i = 0, array_1 = array; _i < array_1.length; _i++) {\n var element = array_1[_i];\n newArray.push(element);\n }\n return newArray;\n };\n /**\n * Finds the next valid Dropdown option and sets the selected index to it.\n * @param stepValue - Value of how many items the function should traverse. Should be -1 or 1.\n * @param index - Index of where the search should start\n * @param selectedIndex - The selectedIndex Dropdown's state\n * @returns The next valid dropdown option's index\n */\n DropdownBase.prototype._moveIndex = function (event, stepValue, index, selectedIndex) {\n var options = this.props.options;\n // Return selectedIndex if nothing has changed or options is empty\n if (selectedIndex === index || options.length === 0) {\n return selectedIndex;\n }\n // If the user is pressing the up or down key we want to make\n // sure that the dropdown cycles through the options without\n // causing the screen to scroll. In _onDropdownKeyDown\n // at the very end is a check to see if newIndex !== selectedIndex.\n // If the index is less than 0 and we set it back to 0, then\n // newIndex will equal selectedIndex and not stop the action\n // of the key press happening and vice versa for indexes greater\n // than or equal to the options length.\n if (index >= options.length) {\n index = 0;\n }\n else if (index < 0) {\n index = options.length - 1;\n }\n var stepCounter = 0;\n // If current index is a header or divider, or disabled, increment by step\n while (options[index].itemType === DropdownMenuItemType.Header ||\n options[index].itemType === DropdownMenuItemType.Divider ||\n options[index].disabled) {\n // If stepCounter exceeds length of options, then return selectedIndex (-1)\n if (stepCounter >= options.length) {\n return selectedIndex;\n }\n // If index + stepValue is out of bounds, wrap around\n if (index + stepValue < 0) {\n index = options.length;\n }\n else if (index + stepValue >= options.length) {\n index = -1;\n }\n index = index + stepValue;\n stepCounter++;\n }\n this.setSelectedIndex(event, index);\n return index;\n };\n /** Wrap item list in a FocusZone */\n DropdownBase.prototype._renderFocusableList = function (props) {\n var _a = props.onRenderList, onRenderList = _a === void 0 ? this._onRenderList : _a, label = props.label, ariaLabel = props.ariaLabel, multiSelect = props.multiSelect;\n return (React.createElement(\"div\", { className: this._classNames.dropdownItemsWrapper, onKeyDown: this._onZoneKeyDown, onKeyUp: this._onZoneKeyUp, ref: this._host, tabIndex: 0 },\n React.createElement(FocusZone, { ref: this._focusZone, direction: FocusZoneDirection.vertical, id: this._listId, className: this._classNames.dropdownItems, role: \"listbox\", \"aria-label\": ariaLabel, \"aria-labelledby\": label && !ariaLabel ? this._labelId : undefined, \"aria-multiselectable\": multiSelect }, onRenderList(props, this._onRenderList))));\n };\n DropdownBase.prototype._renderSeparator = function (item) {\n var index = item.index, key = item.key;\n if (index > 0) {\n return React.createElement(\"div\", { role: \"separator\", key: key, className: this._classNames.dropdownDivider });\n }\n return null;\n };\n DropdownBase.prototype._renderHeader = function (item) {\n var _a = this.props.onRenderOption, onRenderOption = _a === void 0 ? this._onRenderOption : _a;\n var key = item.key, id = item.id;\n return (React.createElement(\"div\", { id: id, key: key, className: this._classNames.dropdownItemHeader }, onRenderOption(item, this._onRenderOption)));\n };\n DropdownBase.prototype._onItemMouseEnter = function (item, ev) {\n if (this._shouldIgnoreMouseEvent()) {\n return;\n }\n var targetElement = ev.currentTarget;\n targetElement.focus();\n };\n DropdownBase.prototype._onItemMouseMove = function (item, ev) {\n var targetElement = ev.currentTarget;\n this._gotMouseMove = true;\n if (!this._isScrollIdle || document.activeElement === targetElement) {\n return;\n }\n targetElement.focus();\n };\n DropdownBase.prototype._shouldIgnoreMouseEvent = function () {\n return !this._isScrollIdle || !this._gotMouseMove;\n };\n /** Get all selected indexes for multi-select mode */\n DropdownBase.prototype._getSelectedIndexes = function (options, selectedKey) {\n if (selectedKey === undefined) {\n if (this.props.multiSelect) {\n return this._getAllSelectedIndices(options);\n }\n var selectedIndex = this._getSelectedIndex(options, null);\n return selectedIndex !== -1 ? [selectedIndex] : [];\n }\n else if (!Array.isArray(selectedKey)) {\n var selectedIndex = this._getSelectedIndex(options, selectedKey);\n return selectedIndex !== -1 ? [selectedIndex] : [];\n }\n var selectedIndices = [];\n for (var _i = 0, selectedKey_1 = selectedKey; _i < selectedKey_1.length; _i++) {\n var key = selectedKey_1[_i];\n var selectedIndex = this._getSelectedIndex(options, key);\n selectedIndex !== -1 && selectedIndices.push(selectedIndex);\n }\n return selectedIndices;\n };\n DropdownBase.prototype._getAllSelectedIndices = function (options) {\n return options\n .map(function (option, index) { return (option.selected ? index : -1); })\n .filter(function (index) { return index !== -1; });\n };\n DropdownBase.prototype._getSelectedIndex = function (options, selectedKey) {\n return findIndex(options, function (option) {\n // eslint-disable-next-line eqeqeq\n if (selectedKey != null) {\n return option.key === selectedKey;\n }\n else {\n // eslint-disable-next-line deprecation/deprecation\n return !!option.selected || !!option.isSelected;\n }\n });\n };\n /**\n * Returns true if the key for the event is alt (Mac option) or meta (Mac command).\n */\n DropdownBase.prototype._isAltOrMeta = function (ev) {\n return ev.which === KeyCodes.alt || ev.key === 'Meta';\n };\n /**\n * We close the menu on key up only if ALL of the following are true:\n * - Most recent key down was alt or meta (command)\n * - The alt/meta key down was NOT followed by some other key (such as down/up arrow to\n * expand/collapse the menu)\n * - We're not on a Mac (or iOS)\n *\n * This is because on Windows, pressing alt moves focus to the application menu bar or similar,\n * closing any open context menus. There is not a similar behavior on Macs.\n */\n DropdownBase.prototype._shouldHandleKeyUp = function (ev) {\n var keyPressIsAltOrMetaAlone = this._lastKeyDownWasAltOrMeta && this._isAltOrMeta(ev);\n this._lastKeyDownWasAltOrMeta = false;\n return !!keyPressIsAltOrMetaAlone && !(isMac() || isIOS());\n };\n /**\n * Returns true if dropdown should set to open on focus.\n * Otherwise, isOpen state should be toggled on click\n */\n DropdownBase.prototype._shouldOpenOnFocus = function () {\n var hasFocus = this.state.hasFocus;\n var openOnKeyboardFocus = this.props.openOnKeyboardFocus;\n return !this._isFocusedByClick && openOnKeyboardFocus === true && !hasFocus;\n };\n DropdownBase.defaultProps = {\n options: [],\n };\n DropdownBase = __decorate([\n withResponsiveMode\n ], DropdownBase);\n return DropdownBase;\n}(React.Component));\nexport { DropdownBase };\n//# sourceMappingURL=Dropdown.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "index": 195, - "index2": 256, - "size": 267, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "issuerId": "cmLf", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Dropdown", - "loc": "8:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Dropdown", - "loc": "92:31-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Dropdown", - "loc": "551:36-44" - }, - { - "moduleId": "cmLf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dropdown", - "loc": "1:0-27" - }, - { - "moduleId": "cmLf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Dropdown", - "loc": "1:0-27" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Dropdown", - "loc": "41:36-44" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Dropdown", - "loc": "44:32-40" - } - ], - "usedExports": [ - "Dropdown" - ], - "providedExports": [ - "Dropdown" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { styled } from '../../Utilities';\nimport { DropdownBase } from './Dropdown.base';\nimport { getStyles } from './Dropdown.styles';\nexport var Dropdown = styled(DropdownBase, getStyles, undefined, {\n scope: 'Dropdown',\n});\n//# sourceMappingURL=Dropdown.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selectableOption/SelectableOption.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/SelectableOption.types.js", - "index": 198, - "index2": 186, - "size": 476, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "issuerId": "FaLo", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "nqDX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ComboBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/ComboBox.js" - }, - { - "id": "FaLo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/utilities/DropdownSizePosCache.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/utilities/DropdownSizePosCache.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/utilities/DropdownSizePosCache.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Dropdown.types", - "loc": "24:40-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/utilities/DropdownSizePosCache.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/utilities/DropdownSizePosCache.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/utilities/DropdownSizePosCache.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Dropdown.types", - "loc": "24:96-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "111:25-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "117:25-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "135:21-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "137:21-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./Dropdown.types", - "loc": "742:43-63" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./Dropdown.types", - "loc": "743:40-60" - }, - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/selectableOption/SelectableOption.types", - "loc": "2:0-127" - }, - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/selectableOption/SelectableOption.types", - "loc": "2:0-127" - }, - { - "moduleId": "FaLo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/selectableOption/SelectableOption.types", - "loc": "1:0-103" - }, - { - "moduleId": "FaLo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/selectableOption/SelectableOption.types", - "loc": "1:0-103" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "347:21-49" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "349:21-49" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "893:43-71" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "894:40-68" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "917:43-71" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "918:40-68" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "941:43-71" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "942:40-68" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "985:47-75" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "986:44-72" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "1029:32-60" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "1030:32-60" - }, - { - "moduleId": "t2Eu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SelectableOption.types", - "loc": "2:0-41" - }, - { - "moduleId": "t2Eu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SelectableOption.types", - "loc": "2:0-41" - } - ], - "usedExports": [ - "SelectableOptionMenuItemType" - ], - "providedExports": [ - "SelectableOptionMenuItemType" - ], - "optimizationBailout": [], - "depth": 4, - "source": "export var SelectableOptionMenuItemType;\n(function (SelectableOptionMenuItemType) {\n SelectableOptionMenuItemType[SelectableOptionMenuItemType[\"Normal\"] = 0] = \"Normal\";\n SelectableOptionMenuItemType[SelectableOptionMenuItemType[\"Divider\"] = 1] = \"Divider\";\n SelectableOptionMenuItemType[SelectableOptionMenuItemType[\"Header\"] = 2] = \"Header\";\n})(SelectableOptionMenuItemType || (SelectableOptionMenuItemType = {}));\n//# sourceMappingURL=SelectableOption.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/utilities/DropdownSizePosCache.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/utilities/DropdownSizePosCache.js", - "index": 197, - "index2": 187, - "size": 3036, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/DropdownSizePosCache", - "loc": "9:0-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "userRequest": "./utilities/DropdownSizePosCache", - "loc": "27:34-54" - } - ], - "usedExports": [ - "DropdownSizePosCache" - ], - "providedExports": [ - "DropdownSizePosCache" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __spreadArrays } from \"tslib\";\nimport { DropdownMenuItemType } from '../Dropdown.types';\n/**\n * A utility class to cache size and position in cache.\n *\n * Dropdown options has non-selectable display types. It is therefore not cheap to determine\n * the total number of actual selectable options as well as the position an option is in the\n * list of options - O(n) cost for each lookup.\n *\n * Given that we potentially have to make this determination on every single render pass, this\n * cache should provide a little bit of relief.\n */\nvar DropdownSizePosCache = /** @class */ (function () {\n function DropdownSizePosCache() {\n this._size = 0;\n }\n /**\n * Invalidates the cache and recalculate the size of selectable options.\n */\n DropdownSizePosCache.prototype.updateOptions = function (options) {\n var displayOnlyOptionsCache = [];\n var size = 0;\n for (var i = 0; i < options.length; i++) {\n if (options[i].itemType === DropdownMenuItemType.Divider || options[i].itemType === DropdownMenuItemType.Header) {\n displayOnlyOptionsCache.push(i);\n }\n else if (!options[i].hidden) {\n size++;\n }\n }\n this._size = size;\n this._displayOnlyOptionsCache = displayOnlyOptionsCache;\n this._cachedOptions = __spreadArrays(options);\n };\n Object.defineProperty(DropdownSizePosCache.prototype, \"optionSetSize\", {\n /**\n * The size of all the selectable options.\n */\n get: function () {\n return this._size;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(DropdownSizePosCache.prototype, \"cachedOptions\", {\n /**\n * The chached options array.\n */\n get: function () {\n return this._cachedOptions;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Returns the position of this option element relative to the full set of selectable option elements.\n * Note: the first selectable element is position 1 in the set.\n * @param index The raw index of the option element.\n */\n DropdownSizePosCache.prototype.positionInSet = function (index) {\n if (index === undefined) {\n return undefined;\n }\n // we could possibly memoize this too but this should be good enough, most of the time (the expectation is that\n // when you have a lot of options, the selectable options will heavily dominate over the non-selectable options.\n var offset = 0;\n while (index > this._displayOnlyOptionsCache[offset]) {\n offset++;\n }\n if (this._displayOnlyOptionsCache[offset] === index) {\n throw new Error(\"Unexpected: Option at index \" + index + \" is not a selectable element.\");\n }\n return index - offset + 1;\n };\n return DropdownSizePosCache;\n}());\nexport { DropdownSizePosCache };\n//# sourceMappingURL=DropdownSizePosCache.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "index": 265, - "index2": 255, - "size": 15900, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dropdown.styles", - "loc": "3:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "type": "harmony import specifier", - "userRequest": "./Dropdown.styles", - "loc": "4:43-52" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var _a, _b, _c;\nimport { __assign, __spreadArrays } from \"tslib\";\nimport { IsFocusVisibleClassName } from '../../Utilities';\nimport { RectangleEdge } from '../../utilities/positioning';\nimport { FontWeights, HighContrastSelector, getGlobalClassNames, normalize, HighContrastSelectorWhite, getScreenSelector, ScreenWidthMinMedium, getHighContrastNoAdjustStyle, } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Dropdown-container',\n label: 'ms-Dropdown-label',\n dropdown: 'ms-Dropdown',\n title: 'ms-Dropdown-title',\n caretDownWrapper: 'ms-Dropdown-caretDownWrapper',\n caretDown: 'ms-Dropdown-caretDown',\n callout: 'ms-Dropdown-callout',\n panel: 'ms-Dropdown-panel',\n dropdownItems: 'ms-Dropdown-items',\n dropdownItem: 'ms-Dropdown-item',\n dropdownDivider: 'ms-Dropdown-divider',\n dropdownOptionText: 'ms-Dropdown-optionText',\n dropdownItemHeader: 'ms-Dropdown-header',\n titleIsPlaceHolder: 'ms-Dropdown-titleIsPlaceHolder',\n titleHasError: 'ms-Dropdown-title--hasError',\n};\nvar DROPDOWN_HEIGHT = 32;\nvar DROPDOWN_ITEM_HEIGHT = 36;\nvar highContrastAdjustMixin = (_a = {},\n _a[HighContrastSelector + \", \" + HighContrastSelectorWhite.replace('@media ', '')] = __assign({}, getHighContrastNoAdjustStyle()),\n _a);\nvar highContrastItemAndTitleStateMixin = {\n selectors: __assign((_b = {}, _b[HighContrastSelector] = {\n backgroundColor: 'Highlight',\n borderColor: 'Highlight',\n color: 'HighlightText',\n }, _b), highContrastAdjustMixin),\n};\nvar highContrastBorderState = {\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _c),\n};\nvar MinimumScreenSelector = getScreenSelector(0, ScreenWidthMinMedium);\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;\n var theme = props.theme, hasError = props.hasError, hasLabel = props.hasLabel, className = props.className, isOpen = props.isOpen, disabled = props.disabled, required = props.required, isRenderingPlaceholder = props.isRenderingPlaceholder, panelClassName = props.panelClassName, calloutClassName = props.calloutClassName, calloutRenderEdge = props.calloutRenderEdge;\n if (!theme) {\n throw new Error('theme is undefined or null in base Dropdown getStyles function.');\n }\n var globalClassnames = getGlobalClassNames(GlobalClassNames, theme);\n var palette = theme.palette, semanticColors = theme.semanticColors, effects = theme.effects, fonts = theme.fonts;\n var rootHoverFocusActiveSelectorNeutralDarkMixin = {\n color: semanticColors.menuItemTextHovered,\n };\n var rootHoverFocusActiveSelectorNeutralPrimaryMixin = {\n color: semanticColors.menuItemText,\n };\n var borderColorError = {\n borderColor: semanticColors.errorText,\n };\n var dropdownItemStyle = [\n globalClassnames.dropdownItem,\n {\n backgroundColor: 'transparent',\n boxSizing: 'border-box',\n cursor: 'pointer',\n display: 'flex',\n alignItems: 'center',\n padding: '0 8px',\n width: '100%',\n minHeight: DROPDOWN_ITEM_HEIGHT,\n lineHeight: 20,\n height: 0,\n position: 'relative',\n border: '1px solid transparent',\n borderRadius: 0,\n wordWrap: 'break-word',\n overflowWrap: 'break-word',\n textAlign: 'left',\n '.ms-Button-flexContainer': {\n width: '100%',\n },\n },\n ];\n var selectedItemBackgroundColor = semanticColors.menuItemBackgroundPressed;\n var itemSelectors = function (isSelected) {\n var _a;\n if (isSelected === void 0) { isSelected = false; }\n return {\n selectors: (_a = {\n '&:hover:focus': [\n {\n color: semanticColors.menuItemTextHovered,\n backgroundColor: !isSelected ? semanticColors.menuItemBackgroundHovered : selectedItemBackgroundColor,\n },\n highContrastItemAndTitleStateMixin,\n ],\n '&:focus': [\n {\n backgroundColor: !isSelected ? 'transparent' : selectedItemBackgroundColor,\n },\n highContrastItemAndTitleStateMixin,\n ],\n '&:active': [\n {\n color: semanticColors.menuItemTextHovered,\n backgroundColor: !isSelected ? semanticColors.menuBackground : semanticColors.menuItemBackgroundHovered,\n },\n highContrastItemAndTitleStateMixin,\n ]\n },\n _a[\".\" + IsFocusVisibleClassName + \" &:focus:after\"] = {\n left: 0,\n top: 0,\n bottom: 0,\n right: 0,\n },\n _a[HighContrastSelector] = {\n border: 'none',\n },\n _a),\n };\n };\n var dropdownItemSelected = __spreadArrays(dropdownItemStyle, [\n {\n backgroundColor: selectedItemBackgroundColor,\n color: semanticColors.menuItemTextHovered,\n },\n itemSelectors(true),\n highContrastItemAndTitleStateMixin,\n ]);\n var dropdownItemDisabled = __spreadArrays(dropdownItemStyle, [\n {\n color: semanticColors.disabledText,\n cursor: 'default',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'GrayText',\n border: 'none',\n },\n _a),\n },\n ]);\n var titleOpenBorderRadius = calloutRenderEdge === RectangleEdge.bottom\n ? effects.roundedCorner2 + \" \" + effects.roundedCorner2 + \" 0 0\"\n : \"0 0 \" + effects.roundedCorner2 + \" \" + effects.roundedCorner2;\n var calloutOpenBorderRadius = calloutRenderEdge === RectangleEdge.bottom\n ? \"0 0 \" + effects.roundedCorner2 + \" \" + effects.roundedCorner2\n : effects.roundedCorner2 + \" \" + effects.roundedCorner2 + \" 0 0\";\n return {\n root: [globalClassnames.root, className],\n label: globalClassnames.label,\n dropdown: [\n globalClassnames.dropdown,\n normalize,\n fonts.medium,\n {\n color: semanticColors.menuItemText,\n borderColor: semanticColors.focusBorder,\n position: 'relative',\n outline: 0,\n userSelect: 'none',\n selectors: (_b = {},\n _b['&:hover .' + globalClassnames.title] = [\n !disabled && rootHoverFocusActiveSelectorNeutralDarkMixin,\n { borderColor: isOpen ? palette.neutralSecondary : palette.neutralPrimary },\n highContrastBorderState,\n ],\n _b['&:focus .' + globalClassnames.title] = [\n !disabled && rootHoverFocusActiveSelectorNeutralDarkMixin,\n { selectors: (_c = {}, _c[HighContrastSelector] = { color: 'Highlight' }, _c) },\n ],\n _b['&:focus:after'] = [\n {\n pointerEvents: 'none',\n content: \"''\",\n position: 'absolute',\n boxSizing: 'border-box',\n top: '0px',\n left: '0px',\n width: '100%',\n height: '100%',\n // see https://github.com/microsoft/fluentui/pull/9182 for semantic color disc\n border: !disabled ? \"2px solid \" + palette.themePrimary : 'none',\n borderRadius: '2px',\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'Highlight',\n },\n _d),\n },\n ],\n _b['&:active .' + globalClassnames.title] = [\n !disabled && rootHoverFocusActiveSelectorNeutralDarkMixin,\n { borderColor: palette.themePrimary },\n highContrastBorderState,\n ],\n _b['&:hover .' + globalClassnames.caretDown] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _b['&:focus .' + globalClassnames.caretDown] = [\n !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n { selectors: (_e = {}, _e[HighContrastSelector] = { color: 'Highlight' }, _e) },\n ],\n _b['&:active .' + globalClassnames.caretDown] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _b['&:hover .' + globalClassnames.titleIsPlaceHolder] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _b['&:focus .' + globalClassnames.titleIsPlaceHolder] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _b['&:active .' + globalClassnames.titleIsPlaceHolder] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _b['&:hover .' + globalClassnames.titleHasError] = borderColorError,\n _b['&:active .' + globalClassnames.titleHasError] = borderColorError,\n _b),\n },\n isOpen && 'is-open',\n disabled && 'is-disabled',\n required && 'is-required',\n required &&\n !hasLabel && {\n selectors: (_f = {\n ':before': {\n content: \"'*'\",\n color: semanticColors.errorText,\n position: 'absolute',\n top: -5,\n right: -10,\n }\n },\n _f[HighContrastSelector] = {\n selectors: {\n ':after': {\n right: -14,\n },\n },\n },\n _f),\n },\n ],\n title: [\n globalClassnames.title,\n normalize,\n {\n backgroundColor: semanticColors.inputBackground,\n borderWidth: 1,\n borderStyle: 'solid',\n borderColor: semanticColors.inputBorder,\n borderRadius: isOpen ? titleOpenBorderRadius : effects.roundedCorner2,\n cursor: 'pointer',\n display: 'block',\n height: DROPDOWN_HEIGHT,\n lineHeight: DROPDOWN_HEIGHT - 2,\n padding: \"0 28px 0 8px\",\n position: 'relative',\n overflow: 'hidden',\n whiteSpace: 'nowrap',\n textOverflow: 'ellipsis',\n },\n isRenderingPlaceholder && [globalClassnames.titleIsPlaceHolder, { color: semanticColors.inputPlaceholderText }],\n hasError && [globalClassnames.titleHasError, borderColorError],\n disabled && {\n backgroundColor: semanticColors.disabledBackground,\n border: 'none',\n color: semanticColors.disabledText,\n cursor: 'default',\n selectors: (_g = {},\n _g[HighContrastSelector] = __assign({ border: '1px solid GrayText', color: 'GrayText', backgroundColor: 'Window' }, getHighContrastNoAdjustStyle()),\n _g),\n },\n ],\n caretDownWrapper: [\n globalClassnames.caretDownWrapper,\n {\n position: 'absolute',\n top: 1,\n right: 8,\n height: DROPDOWN_HEIGHT,\n lineHeight: DROPDOWN_HEIGHT - 2,\n },\n !disabled && {\n cursor: 'pointer',\n },\n ],\n caretDown: [\n globalClassnames.caretDown,\n { color: palette.neutralSecondary, fontSize: fonts.small.fontSize, pointerEvents: 'none' },\n disabled && {\n color: semanticColors.disabledText,\n selectors: (_h = {},\n _h[HighContrastSelector] = __assign({ color: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _h),\n },\n ],\n errorMessage: __assign(__assign({ color: semanticColors.errorText }, theme.fonts.small), { paddingTop: 5 }),\n callout: [\n globalClassnames.callout,\n {\n boxShadow: effects.elevation8,\n borderRadius: calloutOpenBorderRadius,\n selectors: (_j = {},\n _j['.ms-Callout-main'] = { borderRadius: calloutOpenBorderRadius },\n _j),\n },\n calloutClassName,\n ],\n dropdownItemsWrapper: { selectors: { '&:focus': { outline: 0 } } },\n dropdownItems: [globalClassnames.dropdownItems, { display: 'block' }],\n dropdownItem: __spreadArrays(dropdownItemStyle, [itemSelectors()]),\n dropdownItemSelected: dropdownItemSelected,\n dropdownItemDisabled: dropdownItemDisabled,\n dropdownItemSelectedAndDisabled: [dropdownItemSelected, dropdownItemDisabled, { backgroundColor: 'transparent' }],\n dropdownItemHidden: __spreadArrays(dropdownItemStyle, [{ display: 'none' }]),\n dropdownDivider: [globalClassnames.dropdownDivider, { height: 1, backgroundColor: semanticColors.bodyDivider }],\n dropdownOptionText: [\n globalClassnames.dropdownOptionText,\n {\n overflow: 'hidden',\n whiteSpace: 'nowrap',\n textOverflow: 'ellipsis',\n minWidth: 0,\n maxWidth: '100%',\n wordWrap: 'break-word',\n overflowWrap: 'break-word',\n margin: '1px',\n },\n ],\n dropdownItemHeader: [\n globalClassnames.dropdownItemHeader,\n __assign(__assign({}, fonts.medium), { fontWeight: FontWeights.semibold, color: semanticColors.menuHeader, background: 'none', backgroundColor: 'transparent', border: 'none', height: DROPDOWN_ITEM_HEIGHT, lineHeight: DROPDOWN_ITEM_HEIGHT, cursor: 'default', padding: '0 8px', userSelect: 'none', textAlign: 'left', selectors: (_k = {},\n _k[HighContrastSelector] = __assign({ color: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _k) }),\n ],\n subComponentStyles: {\n label: { root: { display: 'inline-block' } },\n multiSelectItem: {\n root: {\n padding: 0,\n },\n label: {\n alignSelf: 'stretch',\n padding: '0 8px',\n width: '100%',\n },\n },\n panel: {\n root: [panelClassName],\n main: {\n selectors: (_l = {},\n // In case of extra small screen sizes\n _l[MinimumScreenSelector] = {\n // panelWidth xs\n width: 272,\n },\n _l),\n },\n contentInner: { padding: '0 0 20px' },\n },\n },\n };\n};\n//# sourceMappingURL=Dropdown.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", - "name": "./node_modules/@uifabric/utilities/lib/safeRequestAnimationFrame.js", - "index": 199, - "index2": 188, - "size": 1029, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "28:39-64" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./safeRequestAnimationFrame", - "loc": "51:0-44" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./safeRequestAnimationFrame", - "loc": "51:0-44" - } - ], - "usedExports": [ - "safeRequestAnimationFrame" - ], - "providedExports": [ - "safeRequestAnimationFrame" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { extendComponent } from './extendComponent';\n/**\n * Generates a function to be attached to a React component, which can be called\n * as a replacement to RAF. In-flight async calls will be auto canceled if the component\n * is unmounting before the async code is executed, preventing bugs where code\n * accesses things within the component after being unmounted.\n */\nexport var safeRequestAnimationFrame = function (component) {\n var activeTimeouts;\n return function (cb) {\n if (!activeTimeouts) {\n activeTimeouts = new Set();\n extendComponent(component, {\n componentWillUnmount: function () {\n activeTimeouts.forEach(function (id) { return cancelAnimationFrame(id); });\n },\n });\n }\n var timeoutId = requestAnimationFrame(function () {\n activeTimeouts.delete(timeoutId);\n cb();\n });\n activeTimeouts.add(timeoutId);\n };\n};\n//# sourceMappingURL=safeRequestAnimationFrame.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "index": 259, - "index2": 248, - "size": 1038, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../ActionButton/ActionButton", - "loc": "1:0-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "type": "harmony import specifier", - "userRequest": "../ActionButton/ActionButton", - "loc": "5:27-39" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "123:79-91" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "123:95-107" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ActionButton/ActionButton", - "loc": "4:0-44" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ActionButton/ActionButton", - "loc": "4:0-44" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./ActionButton/ActionButton", - "loc": "6:0-59" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./ActionButton/ActionButton", - "loc": "28:43-55" - } - ], - "usedExports": [ - "ActionButton" - ], - "providedExports": [ - "ActionButton" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './ActionButton.styles';\n/**\n * {@docCategory Button}\n */\nvar ActionButton = /** @class */ (function (_super) {\n __extends(ActionButton, _super);\n function ActionButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n ActionButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: \"ms-Button--action ms-Button--command\", styles: getStyles(theme, styles), onRenderDescription: nullRender })));\n };\n ActionButton = __decorate([\n customizable('ActionButton', ['theme', 'styles'], true)\n ], ActionButton);\n return ActionButton;\n}(React.Component));\nexport { ActionButton };\n//# sourceMappingURL=ActionButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "index": 258, - "index2": 249, - "size": 176, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "161:67-80" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "46:32-45" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CommandButton/CommandButton", - "loc": "6:0-46" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CommandButton/CommandButton", - "loc": "6:0-46" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "221:87-100" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "228:82-95" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "47:36-49" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "373:71-84" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "48:40-53" - } - ], - "usedExports": [ - "CommandButton" - ], - "providedExports": [ - "CommandButton" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { ActionButton } from '../ActionButton/ActionButton';\n/**\n * {@docCategory Button}\n */\nexport var CommandButton = ActionButton;\n//# sourceMappingURL=CommandButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selectableOption/SelectableOption.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/SelectableOption.js", - "index": 264, - "index2": 253, - "size": 427, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "issuerId": "t2Eu", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js" - }, - { - "id": "t2Eu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "561:19-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "620:30-51" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/selectableOption/index", - "loc": "719:19-40" - }, - { - "moduleId": "t2Eu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SelectableOption", - "loc": "1:0-35" - }, - { - "moduleId": "t2Eu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SelectableOption", - "loc": "1:0-35" - } - ], - "usedExports": [ - "getAllSelectedOptions" - ], - "providedExports": [ - "getAllSelectedOptions" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export function getAllSelectedOptions(options, selectedIndices) {\n var selectedOptions = [];\n for (var _i = 0, selectedIndices_1 = selectedIndices; _i < selectedIndices_1.length; _i++) {\n var index = selectedIndices_1[_i];\n var option = options[index];\n if (option) {\n selectedOptions.push(option);\n }\n }\n return selectedOptions;\n}\n//# sourceMappingURL=SelectableOption.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "index": 260, - "index2": 247, - "size": 2107, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./ActionButton.styles", - "loc": "5:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "userRequest": "./ActionButton.styles", - "loc": "16:141-150" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../Button/ActionButton/ActionButton.styles", - "loc": "7:0-96" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "../Button/ActionButton/ActionButton.styles", - "loc": "9:17-38" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { concatStyleSets, HighContrastSelector } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nvar DEFAULT_BUTTON_HEIGHT = '40px';\nvar DEFAULT_PADDING = '0 4px';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var _a;\n var baseButtonStyles = getBaseButtonStyles(theme);\n var actionButtonStyles = {\n root: {\n padding: DEFAULT_PADDING,\n height: DEFAULT_BUTTON_HEIGHT,\n color: theme.palette.neutralPrimary,\n backgroundColor: 'transparent',\n border: '1px solid transparent',\n },\n rootHovered: {\n color: theme.palette.themePrimary,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _a),\n },\n iconHovered: {\n color: theme.palette.themePrimary,\n },\n rootPressed: {\n color: theme.palette.black,\n },\n rootExpanded: {\n color: theme.palette.themePrimary,\n },\n iconPressed: {\n color: theme.palette.themeDarker,\n },\n rootDisabled: {\n color: theme.palette.neutralTertiary,\n backgroundColor: 'transparent',\n borderColor: 'transparent',\n },\n rootChecked: {\n color: theme.palette.black,\n },\n iconChecked: {\n color: theme.palette.themeDarker,\n },\n flexContainer: {\n justifyContent: 'flex-start',\n },\n icon: {\n color: theme.palette.themeDarkAlt,\n },\n iconDisabled: {\n color: 'inherit',\n },\n menuIcon: {\n color: theme.palette.neutralSecondary,\n },\n textContainer: {\n flexGrow: 0,\n },\n };\n return concatStyleSets(baseButtonStyles, actionButtonStyles, customStyles);\n});\n//# sourceMappingURL=ActionButton.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "uqg9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "index": 273, - "index2": 270, - "size": 874, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "912:32-45" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PrimaryButton/PrimaryButton", - "loc": "10:0-46" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PrimaryButton/PrimaryButton", - "loc": "10:0-46" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./PrimaryButton/PrimaryButton", - "loc": "9:0-62" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./PrimaryButton/PrimaryButton", - "loc": "34:43-56" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Button", - "loc": "228:99-112" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Button", - "loc": "229:102-115" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "80:62-75" - } - ], - "usedExports": [ - "PrimaryButton" - ], - "providedExports": [ - "PrimaryButton" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { DefaultButton } from '../DefaultButton/DefaultButton';\n/**\n * {@docCategory Button}\n */\nvar PrimaryButton = /** @class */ (function (_super) {\n __extends(PrimaryButton, _super);\n function PrimaryButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n PrimaryButton.prototype.render = function () {\n return React.createElement(DefaultButton, __assign({}, this.props, { primary: true, onRenderDescription: nullRender }));\n };\n PrimaryButton = __decorate([\n customizable('PrimaryButton', ['theme', 'styles'], true)\n ], PrimaryButton);\n return PrimaryButton;\n}(React.Component));\nexport { PrimaryButton };\n//# sourceMappingURL=PrimaryButton.js.map" - }, - { - "id": "vk17", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js", - "index": 109, - "index2": 95, - "size": 3580, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "43:88-96" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "57:45-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "58:44-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Image", - "loc": "709:38-46" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image.types", - "loc": "5:0-54" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image.types", - "loc": "22:26-40" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Image.types", - "loc": "4:0-74" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "14:28-43" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "25:31-45" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "34:27-41" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "38:23-37" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "45:27-41" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "48:42-56" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "74:36-50" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "75:31-45" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "76:40-55" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "77:35-43" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "78:42-50" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "79:40-48" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "80:36-44" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "81:34-42" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "82:33-41" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "83:35-49" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "93:26-40" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "105:31-45" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "113:26-34" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "114:25-33" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "115:25-33" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "116:25-33" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "125:29-37" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "126:29-37" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "136:35-50" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Image.types", - "loc": "139:35-50" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.types", - "loc": "3:0-30" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Image.types", - "loc": "3:0-30" - } - ], - "usedExports": [ - "ImageCoverStyle", - "ImageFit", - "ImageLoadState" - ], - "providedExports": [ - "ImageFit", - "ImageCoverStyle", - "ImageLoadState" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/**\n * The possible methods that can be used to fit the image.\n * {@docCategory Image}\n */\nexport var ImageFit;\n(function (ImageFit) {\n /**\n * The image is not scaled. The image is centered and cropped within the content box.\n */\n ImageFit[ImageFit[\"center\"] = 0] = \"center\";\n /**\n * The image is scaled to maintain its aspect ratio while being fully contained within the frame. The image will\n * be centered horizontally and vertically within the frame. The space in the top and bottom or in the sides of\n * the frame will be empty depending on the difference in aspect ratio between the image and the frame.\n */\n ImageFit[ImageFit[\"contain\"] = 1] = \"contain\";\n /**\n * The image is scaled to maintain its aspect ratio while filling the frame. Portions of the image will be cropped\n * from the top and bottom, or the sides, depending on the difference in aspect ratio between the image and the frame.\n */\n ImageFit[ImageFit[\"cover\"] = 2] = \"cover\";\n /**\n * Neither the image nor the frame are scaled. If their sizes do not match, the image will either be cropped or the\n * frame will have empty space.\n */\n ImageFit[ImageFit[\"none\"] = 3] = \"none\";\n /**\n * The image will be centered horizontally and vertically within the frame and maintains its aspect ratio. It will\n * behave as ImageFit.center if the image's natural height or width is less than the Image frame's height or width,\n * but if both natural height and width are larger than the frame it will behave as ImageFit.cover.\n */\n ImageFit[ImageFit[\"centerCover\"] = 4] = \"centerCover\";\n /**\n * The image will be centered horizontally and vertically within the frame and maintains its aspect ratio. It will\n * behave as ImageFit.center if the image's natural height and width is less than the Image frame's height and width,\n * but if either natural height or width are larger than the frame it will behave as ImageFit.contain.\n */\n ImageFit[ImageFit[\"centerContain\"] = 5] = \"centerContain\";\n})(ImageFit || (ImageFit = {}));\n/**\n * The cover style to be used on the image\n * {@docCategory Image}\n */\nexport var ImageCoverStyle;\n(function (ImageCoverStyle) {\n /**\n * The image will be shown at 100% height of container and the width will be scaled accordingly\n */\n ImageCoverStyle[ImageCoverStyle[\"landscape\"] = 0] = \"landscape\";\n /**\n * The image will be shown at 100% width of container and the height will be scaled accordingly\n */\n ImageCoverStyle[ImageCoverStyle[\"portrait\"] = 1] = \"portrait\";\n})(ImageCoverStyle || (ImageCoverStyle = {}));\n/**\n * {@docCategory Image}\n */\nexport var ImageLoadState;\n(function (ImageLoadState) {\n /**\n * The image has not yet been loaded, and there is no error yet.\n */\n ImageLoadState[ImageLoadState[\"notLoaded\"] = 0] = \"notLoaded\";\n /**\n * The image has been loaded successfully.\n */\n ImageLoadState[ImageLoadState[\"loaded\"] = 1] = \"loaded\";\n /**\n * An error has been encountered while loading the image.\n */\n ImageLoadState[ImageLoadState[\"error\"] = 2] = \"error\";\n /**\n * Deprecated at v1.3.6, to replace the src in case of errors, use `onLoadingStateChange` instead\n * and rerender the Image with a difference src.\n * @deprecated Use `onLoadingStateChange` instead\n * and rerender the Image with a difference src.\n */\n ImageLoadState[ImageLoadState[\"errorLoaded\"] = 3] = \"errorLoaded\";\n})(ImageLoadState || (ImageLoadState = {}));\n//# sourceMappingURL=Image.types.js.map" - }, - { - "id": "vlQI", - "identifier": "external \"@microsoft/sp-http\"", - "name": "external \"@microsoft/sp-http\"", - "index": 851, - "index2": 845, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/services/SPSiteSearchService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-http", - "loc": "37:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-http", - "loc": "77:79-91" - } - ], - "usedExports": [ - "SPHttpClient" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5 - }, - { - "id": "w/wX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsSet.js", - "name": "./node_modules/lodash/_baseIsSet.js", - "index": 552, - "index2": 544, - "size": 478, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSet.js", - "issuerId": "1+5i", - "issuerName": "./node_modules/lodash/isSet.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "1+5i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSet.js", - "name": "./node_modules/lodash/isSet.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1+5i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSet.js", - "module": "./node_modules/lodash/isSet.js", - "moduleName": "./node_modules/lodash/isSet.js", - "type": "cjs require", - "userRequest": "./_baseIsSet", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getTag = require('./_getTag'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar setTag = '[object Set]';\n\n/**\n * The base implementation of `_.isSet` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a set, else `false`.\n */\nfunction baseIsSet(value) {\n return isObjectLike(value) && getTag(value) == setTag;\n}\n\nmodule.exports = baseIsSet;\n" - }, - { - "id": "wJg7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isIndex.js", - "name": "./node_modules/lodash/_isIndex.js", - "index": 506, - "index2": 496, - "size": 759, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "issuerId": "b80T", - "issuerName": "./node_modules/lodash/_arrayLikeKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./_isIndex", - "loc": "5:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/** Used to detect unsigned integer values. */\nvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n/**\n * Checks if `value` is a valid array-like index.\n *\n * @private\n * @param {*} value The value to check.\n * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n */\nfunction isIndex(value, length) {\n var type = typeof value;\n length = length == null ? MAX_SAFE_INTEGER : length;\n\n return !!length &&\n (type == 'number' ||\n (type != 'symbol' && reIsUint.test(value))) &&\n (value > -1 && value % 1 == 0 && value < length);\n}\n\nmodule.exports = isIndex;\n" - }, - { - "id": "wN8o", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "index": 909, - "index2": 905, - "size": 2300, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerId": "p38f", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldMultiSelectHost", - "loc": "4:0-47" - }, - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldMultiSelectHost", - "loc": "4:0-47" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldMultiSelectHost", - "loc": "15:0-74" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldMultiSelectHost", - "loc": "28:42-70" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as strings from 'PropertyControlStrings';\nimport * as React from 'react';\nimport { Dropdown } from 'office-ui-fabric-react/lib/components/Dropdown';\nimport * as telemetry from '../../common/telemetry';\nvar PropertyFieldMultiSelectHost = /** @class */ (function (_super) {\n __extends(PropertyFieldMultiSelectHost, _super);\n function PropertyFieldMultiSelectHost(props) {\n var _this = _super.call(this, props) || this;\n telemetry.track('PropertyFieldMultiSelect', {\n disabled: props.disabled\n });\n return _this;\n }\n PropertyFieldMultiSelectHost.prototype.render = function () {\n if (!this.props.options || (this.props.options && this.props.options.length === 0)) {\n return (React.createElement(\"div\", null,\n React.createElement(Dropdown, { key: \"MultiSelectOptionsDisabled\", label: this.props.label, options: [], placeHolder: strings.propertyFieldMultiSelectNoOptions, disabled: true })));\n }\n return (React.createElement(\"div\", null,\n React.createElement(Dropdown, __assign({ key: \"MultiSelectOptions\" }, this.props, { multiSelect: true }))));\n };\n return PropertyFieldMultiSelectHost;\n}(React.Component));\nexport default PropertyFieldMultiSelectHost;\n//# sourceMappingURL=PropertyFieldMultiSelectHost.js.map" - }, - { - "id": "wclG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "name": "./node_modules/lodash/_setToString.js", - "index": 575, - "index2": 572, - "size": 392, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "issuerId": "xs/l", - "issuerName": "./node_modules/lodash/_flatRest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "xs/l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "module": "./node_modules/lodash/_flatRest.js", - "moduleName": "./node_modules/lodash/_flatRest.js", - "type": "cjs require", - "userRequest": "./_setToString", - "loc": "3:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseSetToString = require('./_baseSetToString'),\n shortOut = require('./_shortOut');\n\n/**\n * Sets the `toString` method of `func` to return `string`.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\nvar setToString = shortOut(baseSetToString);\n\nmodule.exports = setToString;\n" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js", - "index": 540, - "index2": 539, - "size": 2261, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_initCloneByTag", - "loc": "14:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var cloneArrayBuffer = require('./_cloneArrayBuffer'),\n cloneDataView = require('./_cloneDataView'),\n cloneRegExp = require('./_cloneRegExp'),\n cloneSymbol = require('./_cloneSymbol'),\n cloneTypedArray = require('./_cloneTypedArray');\n\n/** `Object#toString` result references. */\nvar boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n symbolTag = '[object Symbol]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n/**\n * Initializes an object clone based on its `toStringTag`.\n *\n * **Note:** This function only supports cloning values with tags of\n * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`.\n *\n * @private\n * @param {Object} object The object to clone.\n * @param {string} tag The `toStringTag` of the object to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the initialized clone.\n */\nfunction initCloneByTag(object, tag, isDeep) {\n var Ctor = object.constructor;\n switch (tag) {\n case arrayBufferTag:\n return cloneArrayBuffer(object);\n\n case boolTag:\n case dateTag:\n return new Ctor(+object);\n\n case dataViewTag:\n return cloneDataView(object, isDeep);\n\n case float32Tag: case float64Tag:\n case int8Tag: case int16Tag: case int32Tag:\n case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:\n return cloneTypedArray(object, isDeep);\n\n case mapTag:\n return new Ctor;\n\n case numberTag:\n case stringTag:\n return new Ctor(object);\n\n case regexpTag:\n return cloneRegExp(object);\n\n case setTag:\n return new Ctor;\n\n case symbolTag:\n return cloneSymbol(object);\n }\n}\n\nmodule.exports = initCloneByTag;\n" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "index": 908, - "index2": 906, - "size": 2824, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerId": "p38f", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldMultiSelect", - "loc": "2:0-43" - }, - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldMultiSelect", - "loc": "2:0-43" - } - ], - "usedExports": [ - "PropertyFieldMultiSelect" - ], - "providedExports": [ - "PropertyFieldMultiSelect" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { PropertyPaneFieldType } from '@microsoft/sp-webpart-base';\nimport PropertyFieldMultiSelectHost from './PropertyFieldMultiSelectHost';\nimport { cloneDeep } from '@microsoft/sp-lodash-subset';\nimport omit from 'lodash/omit';\nvar PropertyFieldMultiSelectBuilder = /** @class */ (function () {\n function PropertyFieldMultiSelectBuilder(_targetProperty, _properties) {\n this.type = PropertyPaneFieldType.Custom;\n this.targetProperty = _targetProperty;\n this.properties = _properties;\n this.properties.onRender = this._render.bind(this);\n this.properties.onDispose = this._dispose.bind(this);\n }\n PropertyFieldMultiSelectBuilder.prototype._render = function (elem, context, changeCallback) {\n var props = this.properties;\n var element = React.createElement(PropertyFieldMultiSelectHost, __assign(__assign({}, omit(props, ['options', 'ariaPositionInSet', 'ariaSetSize'])), { options: props.options || [], onChanged: this._onChanged.bind(this) }));\n ReactDOM.render(element, elem);\n if (changeCallback) {\n this._onChangeCallback = changeCallback;\n }\n };\n PropertyFieldMultiSelectBuilder.prototype._dispose = function (elem) {\n ReactDOM.unmountComponentAtNode(elem);\n };\n PropertyFieldMultiSelectBuilder.prototype._onChanged = function (item) {\n if (this._onChangeCallback) {\n // Get all the selected keys\n var updateSelectedKeys = this.properties.selectedKeys ? cloneDeep(this.properties.selectedKeys) : [];\n // Check if item got selected\n if (item.selected) {\n updateSelectedKeys.push(item.key);\n }\n else {\n // Remove the item from the selected keys list\n var itemIdx = updateSelectedKeys.indexOf(item.key);\n if (itemIdx > -1) {\n updateSelectedKeys.splice(itemIdx, 1);\n }\n }\n this._onChangeCallback(this.targetProperty, updateSelectedKeys);\n }\n };\n return PropertyFieldMultiSelectBuilder;\n}());\nexport function PropertyFieldMultiSelect(targetProperty, properties) {\n return new PropertyFieldMultiSelectBuilder(targetProperty, __assign(__assign({}, properties), { onRender: null, onDispose: null }));\n}\n//# sourceMappingURL=PropertyFieldMultiSelect.js.map" - }, - { - "id": "xL1/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/memoize.js", - "name": "./node_modules/@uifabric/utilities/lib/memoize.js", - "index": 77, - "index2": 60, - "size": 5974, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:27-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:38-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "5:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:21-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "6:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:32-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:34-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "7:27-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:53-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "8:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:20-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "13:50-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "13:50-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:31-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:37-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "15:50-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:24-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:26-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:50-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:33-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "39:23-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "56:31-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "191:15-30" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:28-43" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "48:25-40" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:23-38" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "86:21-36" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "12:28-43" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "22:31-46" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:23-38" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony side effect evaluation", - "userRequest": "../memoize", - "loc": "3:0-44" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "../memoize", - "loc": "6:24-38" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "../memoize", - "loc": "11:28-42" - }, - { - "moduleId": "LOaw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "module": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "type": "harmony import specifier", - "userRequest": "../memoize", - "loc": "25:26-40" - }, - { - "moduleId": "MrJ8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:23-38" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:20-35" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:27-42" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:27-42" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./memoize", - "loc": "40:0-26" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./memoize", - "loc": "40:0-26" - }, - { - "moduleId": "ddZB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "37:36-51" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:27-42" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:23-38" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:26-41" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:22-37" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "87:23-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../memoize", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../memoize", - "loc": "3:24-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../memoize", - "loc": "4:28-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../memoize", - "loc": "15:15-29" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:24-39" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "42:29-44" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "136:38-53" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "207:23-38" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:27-42" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:41-56" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:23-38" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:13-28" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:14-29" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "22:23-38" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:45-60" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "15:35-50" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:25-40" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "29:34-49" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "104:23-38" - } - ], - "usedExports": [ - "createMemoizer", - "memoizeFunction" - ], - "providedExports": [ - "setMemoizeWeakMap", - "resetMemoizations", - "memoize", - "memoizeFunction", - "createMemoizer" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { Stylesheet } from '@uifabric/merge-styles';\nvar _initializedStylesheetResets = false;\nvar _resetCounter = 0;\nvar _emptyObject = { empty: true };\nvar _dictionary = {};\nvar _weakMap = typeof WeakMap === 'undefined' ? null : WeakMap;\n/**\n * Test utility for providing a custom weakmap.\n *\n * @internal\n * */\nexport function setMemoizeWeakMap(weakMap) {\n _weakMap = weakMap;\n}\n/**\n * Reset memoizations.\n */\nexport function resetMemoizations() {\n _resetCounter++;\n}\n/**\n * Memoize decorator to be used on class methods. WARNING: the `this` reference\n * will be inaccessible within a memoized method, given that a cached method's `this`\n * would not be instance-specific.\n *\n * @public\n */\nexport function memoize(target, key, descriptor) {\n // We bind to \"null\" to prevent people from inadvertently pulling values from \"this\",\n // rather than passing them in as input values which can be memoized.\n var fn = memoizeFunction(descriptor.value && descriptor.value.bind(null));\n return {\n configurable: true,\n get: function () {\n return fn;\n },\n };\n}\n/**\n * Memoizes a function; when you pass in the same parameters multiple times, it returns a cached result.\n * Be careful when passing in objects, you need to pass in the same INSTANCE for caching to work. Otherwise\n * it will grow the cache unnecessarily. Also avoid using default values that evaluate functions; passing in\n * undefined for a value and relying on a default function will execute it the first time, but will not\n * re-evaluate subsequent times which may have been unexpected.\n *\n * By default, the cache will reset after 100 permutations, to avoid abuse cases where the function is\n * unintendedly called with unique objects. Without a reset, the cache could grow infinitely, so we safeguard\n * by resetting. To override this behavior, pass a value of 0 to the maxCacheSize parameter.\n *\n * @public\n * @param cb - The function to memoize.\n * @param maxCacheSize - Max results to cache. If the cache exceeds this value, it will reset on the next call.\n * @param ignoreNullOrUndefinedResult - Flag to decide whether to cache callback result if it is undefined/null.\n * If the flag is set to true, the callback result is recomputed every time till the callback result is\n * not undefined/null for the first time, and then the non-undefined/null version gets cached.\n * @returns A memoized version of the function.\n */\nexport function memoizeFunction(cb, maxCacheSize, ignoreNullOrUndefinedResult) {\n if (maxCacheSize === void 0) { maxCacheSize = 100; }\n if (ignoreNullOrUndefinedResult === void 0) { ignoreNullOrUndefinedResult = false; }\n // Avoid breaking scenarios which don't have weak map.\n if (!_weakMap) {\n return cb;\n }\n if (!_initializedStylesheetResets) {\n var stylesheet = Stylesheet.getInstance();\n if (stylesheet && stylesheet.onReset) {\n Stylesheet.getInstance().onReset(resetMemoizations);\n }\n _initializedStylesheetResets = true;\n }\n var rootNode;\n var cacheSize = 0;\n var localResetCounter = _resetCounter;\n return function memoizedFunction() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var currentNode = rootNode;\n if (rootNode === undefined ||\n localResetCounter !== _resetCounter ||\n (maxCacheSize > 0 && cacheSize > maxCacheSize)) {\n rootNode = _createNode();\n cacheSize = 0;\n localResetCounter = _resetCounter;\n }\n currentNode = rootNode;\n // Traverse the tree until we find the match.\n for (var i = 0; i < args.length; i++) {\n var arg = _normalizeArg(args[i]);\n if (!currentNode.map.has(arg)) {\n currentNode.map.set(arg, _createNode());\n }\n currentNode = currentNode.map.get(arg);\n }\n if (!currentNode.hasOwnProperty('value')) {\n currentNode.value = cb.apply(void 0, args);\n cacheSize++;\n }\n if (ignoreNullOrUndefinedResult && (currentNode.value === null || currentNode.value === undefined)) {\n currentNode.value = cb.apply(void 0, args);\n }\n return currentNode.value;\n };\n}\n/**\n * Creates a memoizer for a single-value function, backed by a WeakMap.\n * With a WeakMap, the memoized values are only kept as long as the source objects,\n * ensuring that there is no memory leak.\n *\n * This function assumes that the input values passed to the wrapped function will be\n * `function` or `object` types. To memoize functions which accept other inputs, use\n * `memoizeFunction`, which memoizes against arbitrary inputs using a lookup cache.\n *\n * @public\n */\nexport function createMemoizer(getValue) {\n if (!_weakMap) {\n // Without a `WeakMap` implementation, memoization is not possible.\n return getValue;\n }\n var cache = new _weakMap();\n function memoizedGetValue(input) {\n if (!input || (typeof input !== 'function' && typeof input !== 'object')) {\n // A WeakMap can only be used to test against reference values, i.e. 'function' and 'object'.\n // All other inputs cannot be memoized against in this manner.\n return getValue(input);\n }\n if (cache.has(input)) {\n return cache.get(input);\n }\n var value = getValue(input);\n cache.set(input, value);\n return value;\n }\n return memoizedGetValue;\n}\nfunction _normalizeArg(val) {\n if (!val) {\n return _emptyObject;\n }\n else if (typeof val === 'object' || typeof val === 'function') {\n return val;\n }\n else if (!_dictionary[val]) {\n _dictionary[val] = { val: val };\n }\n return _dictionary[val];\n}\nfunction _createNode() {\n return {\n map: _weakMap ? new _weakMap() : null,\n };\n}\n//# sourceMappingURL=memoize.js.map" - }, - { - "id": "xMHU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-xml-parser/dist/bundle.js", - "name": "./node_modules/react-xml-parser/dist/bundle.js", - "index": 348, - "index2": 345, - "size": 4101, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/services/ListService.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-xml-parser", - "loc": "16:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-xml-parser", - "loc": "293:32-41" - } - ], - "usedExports": [ - "default" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 2, - "source": "!function(e,n){if(\"object\"==typeof exports&&\"object\"==typeof module)module.exports=n();else if(\"function\"==typeof define&&define.amd)define([],n);else{var t=n();for(var r in t)(\"object\"==typeof exports?exports:e)[r]=t[r]}}(window,function(){return function(e){var n={};function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:r})},t.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&\"object\"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,\"default\",{enumerable:!0,value:e}),2&n&&\"string\"!=typeof e)for(var o in e)t.d(r,o,function(n){return e[n]}.bind(null,o));return r},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,\"a\",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p=\"\",t(t.s=0)}({\"./xmlParser.js\":function(e,n){function t(e,n){for(var t=0;t/g,\">\\n\").replace(/\\]\\]/g,\"]]\\n\"),r=[];return t.split(\"\\n\").map(function(e){if((e=e.trim())&&!(e.indexOf(\"?xml\")>-1))if(0==e.indexOf(\"<\")&&e.indexOf(\"CDATA\")<0){var t=n._parseTag(e);r.push(t),e.match(/\\/\\s*>$/)&&r.push(n._parseTag(\"\"))}else r[r.length-1].value+=\" \".concat(n._parseValue(e))}),this._convertTagsArrayToTree(r)[0]}},{key:\"_encodeCDATAValues\",value:function(e){for(var n=new RegExp(/1&&(e=e.replace(t[1],encodeURIComponent(t[1]))),t=n.exec(e);return e}},{key:\"_getElementsByTagName\",value:function(e){var n=[];return\"*\"!=e&&this.name.toLowerCase()!==e.toLowerCase()||n.push(this),this.children.map(function(t){n=n.concat(t.getElementsByTagName(e))}),n}},{key:\"_parseTag\",value:function(e,n){var t=e.match(/([^\\s]*)=('([^']*?)'|\"([^\"]*?)\")|([\\/?\\w\\-\\:]+)/g),r={name:t.shift().replace(/\\/\\s*$/,\"\"),attributes:{},children:[],value:\"\",getElementsByTagName:this._getElementsByTagName};return t.map(function(e){var n=e.split(\"=\");if(!(n.length<2)){var t=n[0],o=\"\";o=2===n.length?n[1]:(n=n.slice(1)).join(\"=\"),r.attributes[t]=\"string\"==typeof o?o.replace(/^\"/g,\"\").replace(/^'/g,\"\").replace(/\"$/g,\"\").replace(/'$/g,\"\").trim():o}}),r}},{key:\"_parseValue\",value:function(e){return e.indexOf(\"CDATA\")<0?e.trim():e.substring(e.lastIndexOf(\"[\")+1,e.indexOf(\"]\"))}},{key:\"_convertTagsArrayToTree\",value:function(e){var n=[];if(0==e.length)return n;var t=e.shift();return t.value.indexOf(\"-1||t.name.match(/\\/$/)?(t.name=t.name.replace(/\\/$/,\"\").trim(),t.value=t.value.substring(0,t.value.indexOf(\"0&&(e.children.map(function(e){t+=n._toString(e)}),t+=\"\"),t}},{key:\"_convertTagToText\",value:function(e){var n=\"<\"+e.name;for(var t in e.attributes)n+=\" \"+t+'=\"'+e.attributes[t]+'\"';return e.value.length>0?n+=\">\"+e.value+\"\":n+=\">\",0===e.children.length&&(n+=\"\"),n}},{key:\"parseFromString\",value:function(e){return this._parseFromString(e)}},{key:\"toString\",value:function(e){return this._toString(e)}}])&&t(n.prototype,r),o&&t(n,o),e}()},0:function(e,n,t){e.exports=t(\"./xmlParser.js\")}})});" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js", - "index": 569, - "index2": 573, - "size": 457, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_flatRest", - "loc": "7:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var flatten = require('./flatten'),\n overRest = require('./_overRest'),\n setToString = require('./_setToString');\n\n/**\n * A specialized version of `baseRest` which flattens the rest array.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @returns {Function} Returns the new function.\n */\nfunction flatRest(func) {\n return setToString(overRest(func, undefined, flatten), func + '');\n}\n\nmodule.exports = flatRest;\n" - }, - { - "id": "y1pI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assocIndexOf.js", - "name": "./node_modules/lodash/_assocIndexOf.js", - "index": 450, - "index2": 441, - "size": 487, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheSet.js", - "issuerId": "Z8oC", - "issuerName": "./node_modules/lodash/_listCacheSet.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js" - }, - { - "id": "Z8oC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheSet.js", - "name": "./node_modules/lodash/_listCacheSet.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+6XX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheHas.js", - "module": "./node_modules/lodash/_listCacheHas.js", - "moduleName": "./node_modules/lodash/_listCacheHas.js", - "type": "cjs require", - "userRequest": "./_assocIndexOf", - "loc": "1:19-45" - }, - { - "moduleId": "Z8oC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheSet.js", - "module": "./node_modules/lodash/_listCacheSet.js", - "moduleName": "./node_modules/lodash/_listCacheSet.js", - "type": "cjs require", - "userRequest": "./_assocIndexOf", - "loc": "1:19-45" - }, - { - "moduleId": "adU4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheDelete.js", - "module": "./node_modules/lodash/_listCacheDelete.js", - "moduleName": "./node_modules/lodash/_listCacheDelete.js", - "type": "cjs require", - "userRequest": "./_assocIndexOf", - "loc": "1:19-45" - }, - { - "moduleId": "tMB7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheGet.js", - "module": "./node_modules/lodash/_listCacheGet.js", - "moduleName": "./node_modules/lodash/_listCacheGet.js", - "type": "cjs require", - "userRequest": "./_assocIndexOf", - "loc": "1:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var eq = require('./eq');\n\n/**\n * Gets the index at which the `key` is found in `array` of key-value pairs.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} key The key to search for.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction assocIndexOf(array, key) {\n var length = array.length;\n while (length--) {\n if (eq(array[length][0], key)) {\n return length;\n }\n }\n return -1;\n}\n\nmodule.exports = assocIndexOf;\n" - }, - { - "id": "yGk4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Set.js", - "name": "./node_modules/lodash/_Set.js", - "index": 537, - "index2": 529, - "size": 195, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "issuerId": "QqLw", - "issuerName": "./node_modules/lodash/_getTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_Set", - "loc": "4:10-27" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar Set = getNative(root, 'Set');\n\nmodule.exports = Set;\n" - }, - { - "id": "yHx3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneArray.js", - "name": "./node_modules/lodash/_initCloneArray.js", - "index": 539, - "index2": 532, - "size": 692, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_initCloneArray", - "loc": "13:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Initializes an array clone.\n *\n * @private\n * @param {Array} array The array to clone.\n * @returns {Array} Returns the initialized clone.\n */\nfunction initCloneArray(array) {\n var length = array.length,\n result = new array.constructor(length);\n\n // Add properties assigned by `RegExp#exec`.\n if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {\n result.index = array.index;\n result.input = array.input;\n }\n return result;\n}\n\nmodule.exports = initCloneArray;\n" - }, - { - "id": "yLpj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/webpack/buildin/global.js", - "name": "(webpack)/buildin/global.js", - "index": 24, - "index2": 15, - "size": 472, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/safe-global.js", - "issuerId": "08ZC", - "issuerName": "./node_modules/@pnp/common/safe-global.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - }, - { - "id": "08ZC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/safe-global.js", - "name": "./node_modules/@pnp/common/safe-global.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "08ZC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/safe-global.js", - "module": "./node_modules/@pnp/common/safe-global.js", - "moduleName": "./node_modules/@pnp/common/safe-global.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-44" - }, - { - "moduleId": "5AgF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "module": "./node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "moduleName": "./node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-47" - }, - { - "moduleId": "Iceg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-53" - }, - { - "moduleId": "WFqU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_freeGlobal.js", - "module": "./node_modules/lodash/_freeGlobal.js", - "moduleName": "./node_modules/lodash/_freeGlobal.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-41" - }, - { - "moduleId": "ruv1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "module": "./node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "moduleName": "./node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-56" - }, - { - "moduleId": "sK+M", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/@microsoft/load-themed-styles/lib/index.js", - "type": "cjs require", - "userRequest": "global", - "loc": "1:0-56" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n" - }, - { - "id": "yP5f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneTypedArray.js", - "name": "./node_modules/lodash/_cloneTypedArray.js", - "index": 546, - "index2": 538, - "size": 527, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "issuerId": "wrZu", - "issuerName": "./node_modules/lodash/_initCloneByTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "wrZu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "module": "./node_modules/lodash/_initCloneByTag.js", - "moduleName": "./node_modules/lodash/_initCloneByTag.js", - "type": "cjs require", - "userRequest": "./_cloneTypedArray", - "loc": "5:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var cloneArrayBuffer = require('./_cloneArrayBuffer');\n\n/**\n * Creates a clone of `typedArray`.\n *\n * @private\n * @param {Object} typedArray The typed array to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the cloned typed array.\n */\nfunction cloneTypedArray(typedArray, isDeep) {\n var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\n return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\n}\n\nmodule.exports = cloneTypedArray;\n" - }, - { - "id": "yVpZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "index": 857, - "index2": 853, - "size": 20137, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../helpers/GeneralHelper", - "loc": "19:0-60" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "29:27-40" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "35:16-29" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "39:16-29" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "55:17-30" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "72:22-35" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "72:85-98" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "86:12-25" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "88:17-30" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "116:23-36" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../helpers/GeneralHelper", - "loc": "4:0-63" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../../../helpers/GeneralHelper", - "loc": "11:84-97" - } - ], - "usedExports": [ - "GeneralHelper", - "toRelativeUrl" - ], - "providedExports": [ - "IMG_SUPPORTED_EXTENSIONS", - "GeneralHelper", - "setPropertyValue", - "getPropertyValue", - "toRelativeUrl" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-lodash-subset\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"PropertyControlStrings\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "index": 857, - "index2": 853, - "size": 12356, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "issuerId": "IAIq", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - }, - { - "id": "IAIq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../helpers/GeneralHelper", - "loc": "19:0-60" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "29:27-40" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "35:16-29" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "39:16-29" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "55:17-30" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "72:22-35" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "72:85-98" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "86:12-25" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "88:17-30" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../helpers/GeneralHelper", - "loc": "116:23-36" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../helpers/GeneralHelper", - "loc": "4:0-63" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../../../helpers/GeneralHelper", - "loc": "11:84-97" - } - ], - "usedExports": [ - "GeneralHelper", - "toRelativeUrl" - ], - "providedExports": [ - "IMG_SUPPORTED_EXTENSIONS", - "GeneralHelper", - "setPropertyValue", - "getPropertyValue", - "toRelativeUrl" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import './String.extensions';\nimport * as _ from '@microsoft/sp-lodash-subset';\nimport * as strings from 'PropertyControlStrings';\nexport var IMG_SUPPORTED_EXTENSIONS = \".gif,.jpg,.jpeg,.bmp,.dib,.tif,.tiff,.ico,.png,.jxr,.svg\";\n/**\n * Helper with general methods to simplify some routines\n */\nvar GeneralHelper = /** @class */ (function () {\n function GeneralHelper() {\n }\n /**\n * Trims slash at the end of URL if needed\n * @param url URL\n */\n GeneralHelper.trimSlash = function (url) {\n if (url.lastIndexOf('/') === url.length - 1)\n return url.slice(0, -1);\n return url;\n };\n /**\n * Encodes text\n * @param text text to encode\n */\n GeneralHelper.encodeText = function (text) {\n var n = /[<>&'\"\\\\]/g;\n return text ? text.replace(n, this._getEncodedChar) : '';\n };\n /**\n * Copy of Microsoft's GetRelativeDateTimeString from SP.dateTimeUtil\n */\n GeneralHelper.getRelativeDateTimeString = function (format) {\n var formatParts = format.split('|');\n var result = null;\n var placeholdersString = null;\n if (formatParts[0] === '0')\n return format.substring(2);\n var isFuture = formatParts[1] === '1';\n var formatType = formatParts[2];\n var timeString = formatParts.length >= 4 ? formatParts[3] : null;\n var dayString = formatParts.length >= 5 ? formatParts[4] : null;\n switch (formatType) {\n case '1':\n result = isFuture ? strings.DateTime['L_RelativeDateTime_AFewSecondsFuture'] : strings.DateTime['L_RelativeDateTime_AFewSeconds'];\n break;\n case '2':\n result = isFuture ? strings.DateTime['L_RelativeDateTime_AboutAMinuteFuture'] : strings.DateTime['L_RelativeDateTime_AboutAMinute'];\n break;\n case '3':\n placeholdersString = this.getLocalizedCountValue(isFuture ? strings.DateTime['L_RelativeDateTime_XMinutesFuture'] : strings.DateTime['L_RelativeDateTime_XMinutes'], isFuture ? strings.DateTime['L_RelativeDateTime_XMinutesFutureIntervals'] : strings.DateTime['L_RelativeDateTime_XMinutesIntervals'], Number(timeString));\n break;\n case '4':\n result = isFuture ? strings.DateTime['L_RelativeDateTime_AboutAnHourFuture'] : strings.DateTime['L_RelativeDateTime_AboutAnHour'];\n break;\n case '5':\n if (timeString === null) {\n result = isFuture ? strings.DateTime['L_RelativeDateTime_Tomorrow'] : strings.DateTime['L_RelativeDateTime_Yesterday'];\n }\n else {\n placeholdersString = isFuture ? strings.DateTime['L_RelativeDateTime_TomorrowAndTime'] : strings.DateTime['L_RelativeDateTime_YesterdayAndTime'];\n }\n break;\n case '6':\n placeholdersString = this.getLocalizedCountValue(isFuture ? strings.DateTime['L_RelativeDateTime_XHoursFuture'] : strings.DateTime['L_RelativeDateTime_XHours'], isFuture ? strings.DateTime['L_RelativeDateTime_XHoursFutureIntervals'] : strings.DateTime['L_RelativeDateTime_XHoursIntervals'], Number(timeString));\n break;\n case '7':\n if (dayString === null) {\n result = timeString;\n }\n else {\n placeholdersString = strings.DateTime['L_RelativeDateTime_DayAndTime'];\n }\n break;\n case '8':\n placeholdersString = this.getLocalizedCountValue(isFuture ? strings.DateTime['L_RelativeDateTime_XDaysFuture'] : strings.DateTime['L_RelativeDateTime_XDays'], isFuture ? strings.DateTime['L_RelativeDateTime_XDaysFutureIntervals'] : strings.DateTime['L_RelativeDateTime_XDaysIntervals'], Number(timeString));\n break;\n case '9':\n result = strings.DateTime['L_RelativeDateTime_Today'];\n }\n if (placeholdersString !== null) {\n result = placeholdersString.replace(\"{0}\", timeString);\n if (dayString !== null) {\n result = result.replace(\"{1}\", dayString);\n }\n }\n return result;\n };\n /**\n * Copy of Microsoft's GetLocalizedCountValue from SP.dateTimeUtil.\n * I've tried to rename all the vars to have meaningful names... but some were too unclear\n */\n GeneralHelper.getLocalizedCountValue = function (format, first, second) {\n if (format === undefined || first === undefined || second === undefined)\n return null;\n var result = '';\n var a = -1;\n var firstOperandOptions = first.split('||');\n for (var firstOperandOptionsIdx = 0, firstOperandOptionsLen = firstOperandOptions.length; firstOperandOptionsIdx < firstOperandOptionsLen; firstOperandOptionsIdx++) {\n var firstOperandOption = firstOperandOptions[firstOperandOptionsIdx];\n if (firstOperandOption === null || firstOperandOption === '')\n continue;\n var optionParts = firstOperandOption.split(',');\n for (var optionPartsIdx = 0, optionPartsLen = optionParts.length; optionPartsIdx < optionPartsLen; optionPartsIdx++) {\n var optionPart = optionParts[optionPartsIdx];\n if (optionPart === null || optionPart === '')\n continue;\n if (isNaN(optionPart.parseNumberInvariant())) {\n var dashParts = optionPart.split('-');\n if (dashParts === null || dashParts.length !== 2)\n continue;\n var j = void 0, n = void 0;\n if (dashParts[0] === '')\n j = 0;\n else if (isNaN(dashParts[0].parseNumberInvariant()))\n continue;\n else\n j = parseInt(dashParts[0]);\n if (second >= j) {\n if (dashParts[1] === '') {\n a = firstOperandOptionsIdx;\n break;\n }\n else if (isNaN(dashParts[1].parseNumberInvariant()))\n continue;\n else\n n = parseInt(dashParts[1]);\n if (second <= n) {\n a = firstOperandOptionsIdx;\n break;\n }\n }\n }\n else {\n var p = parseInt(optionPart);\n if (second === p) {\n a = firstOperandOptionsIdx;\n break;\n }\n }\n }\n if (a !== -1)\n break;\n }\n if (a !== -1) {\n var e = format.split('||');\n if (e !== null && e[a] !== null && e[a] !== '')\n result = e[a];\n }\n return result;\n };\n /**\n * Extracts text from HTML strings without creating HTML elements\n * @param html HTML string\n */\n GeneralHelper.getTextFromHTML = function (html) {\n var result = html;\n var oldResult = result;\n var tagBody = '(?:[^\"\\'>]|\"[^\"]*\"|\\'[^\\']*\\')*';\n var tagOrComment = new RegExp('<(?:'\n // Comment body.\n + '!--(?:(?:-*[^->])*--+|-?)'\n // Special \"raw text\" elements whose content should be elided.\n + '|script\\\\b' + tagBody + '>[\\\\s\\\\S]*?[\\\\s\\\\S]*?', 'gi');\n do {\n oldResult = result;\n result = result.replace(tagOrComment, '');\n } while (result !== result);\n return result;\n };\n /**\n * Checks if value is defined (not null and not undefined)\n * @param value value\n */\n GeneralHelper.isDefined = function (value) {\n return typeof value !== 'undefined' && value !== null;\n };\n /**\n * Creates Document element based on Xml string\n * @param xmlString XML string to parse\n */\n GeneralHelper.parseXml = function (xmlString) {\n var parser = new DOMParser();\n var xml = parser.parseFromString(xmlString, 'text/xml');\n return xml;\n };\n /**\n * Returns absoulute domain URL.\n * @param url\n */\n GeneralHelper.getAbsoluteDomainUrl = function (url) {\n if (url !== undefined) {\n var myURL = new URL(url.toLowerCase());\n return myURL.protocol + \"//\" + myURL.host;\n }\n else {\n return undefined;\n }\n };\n /**\n * To support IE11 that has no support for File constructor\n * @param blob\n */\n GeneralHelper.getFileFromBlob = function (blob, fileName) {\n var result = null;\n // IE 11 foesn't support File API, create a workaround to return Blob with fileName assigned.\n try {\n result = new File([blob], fileName);\n }\n catch (ieErr) {\n result = blob;\n result.fileName = fileName;\n }\n return result;\n };\n GeneralHelper.formatBytes = function (bytes, decimals) {\n if (bytes === 0) {\n return strings.EmptyFileSize;\n }\n var k = 1024;\n var dm = decimals <= 0 ? 0 : decimals || 2;\n var i = Math.floor(Math.log(bytes) / Math.log(k));\n return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + strings.SizeUnit[i];\n };\n /**\n * Returns file name without extension.\n */\n GeneralHelper.getFileNameWithoutExtension = function (itemUrl) {\n var fileNameWithExtension = GeneralHelper.getFileNameFromUrl(itemUrl);\n var fileNameTokens = fileNameWithExtension.split(\".\");\n var fileName = fileNameTokens[0];\n return fileName;\n };\n /**\n * Returns file name with the extension\n */\n GeneralHelper.getFileNameFromUrl = function (itemUrl) {\n var urlTokens = itemUrl.split(\"?\");\n var url = urlTokens[0];\n var tokens = url.split(\"/\");\n var fileNameWithExtension = tokens[tokens.length - 1];\n return fileNameWithExtension;\n };\n GeneralHelper.isImage = function (fileName) {\n var acceptableExtensions = IMG_SUPPORTED_EXTENSIONS.split(\",\");\n var thisExtension = GeneralHelper.getFileExtension(fileName);\n return acceptableExtensions.indexOf(thisExtension) > -1;\n };\n /**\n * Returns extension of the file\n */\n GeneralHelper.getFileExtension = function (fileName) {\n // Split the URL on the dots\n var splitFileName = fileName.toLowerCase().split('.');\n // Take the last value\n var extensionValue = splitFileName.pop();\n // Check if there are query string params in place\n if (extensionValue.indexOf('?') !== -1) {\n // Split the string on the question mark and return the first part\n var querySplit = extensionValue.split('?');\n extensionValue = querySplit[0];\n }\n return \".\" + extensionValue;\n };\n GeneralHelper._getEncodedChar = function (c) {\n var o = {\n \"<\": \"<\",\n \">\": \">\",\n \"&\": \"&\",\n '\"': \""\",\n \"'\": \"'\",\n \"\\\\\": \"\\"\n };\n return o[c];\n };\n return GeneralHelper;\n}());\nexport { GeneralHelper };\nexport var setPropertyValue = function (properties, targetProperty, value) {\n if (!properties) {\n return;\n }\n if (targetProperty.indexOf('.') === -1) { // simple prop\n properties[targetProperty] = value;\n }\n else {\n _.set(properties, targetProperty, value);\n }\n};\nexport var getPropertyValue = function (properties, targetProperty) {\n if (!properties) {\n return undefined;\n }\n if (targetProperty.indexOf('.') === -1) {\n return properties[targetProperty];\n }\n return _.get(properties, targetProperty);\n};\nexport var toRelativeUrl = function (absoluteUrl) {\n if (!absoluteUrl) {\n return '';\n }\n return absoluteUrl.replace(/^(?:\\/\\/|[^/]+)*\\//, '/');\n};\n//# sourceMappingURL=GeneralHelper.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "index": 858, - "index2": 852, - "size": 3998, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - }, - { - "id": "IAIq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "type": "harmony side effect evaluation", - "userRequest": "./String.extensions", - "loc": "1:0-29" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [], - "depth": 5, - "source": "import { InvariantCulture } from './Constants';\n/**\n * Parses number in invariant culture\n */\nString.prototype.parseNumberInvariant = function () {\n return this._parseNumber((window.Sys && window.Sys.CultureInfo && window.Sys.CultureInfo.InvariantCulture) || InvariantCulture);\n};\n/**\n * Parses number in provided culture\n */\nString.prototype._parseNumber = function (culture) {\n var str = '' + this;\n str = str.trim();\n if (str.match(/^[+-]?infinity$/i)) {\n return parseFloat(str);\n }\n if (str.match(/^0x[a-f0-9]+$/i)) {\n return parseInt(str);\n }\n var numberFormat = culture.numberFormat;\n var patternParsed = str._parseNumberNegativePattern(numberFormat, numberFormat.NumberNegativePattern);\n var symbol = patternParsed[0];\n var digit = patternParsed[1];\n if (symbol === '' && numberFormat.NumberNegativePattern !== 1) {\n patternParsed = str._parseNumberNegativePattern(numberFormat, 1);\n symbol = patternParsed[0];\n digit = patternParsed[1];\n }\n if (symbol === '') {\n symbol = '+';\n }\n var exponent;\n var base;\n var scientificSymbolIndex = digit.indexOf('e');\n if (scientificSymbolIndex < 0) {\n scientificSymbolIndex = digit.indexOf('E');\n }\n if (scientificSymbolIndex < 0) {\n base = digit;\n exponent = null;\n }\n else {\n base = digit.substr(0, scientificSymbolIndex);\n exponent = digit.substr(scientificSymbolIndex + 1);\n }\n var intPart;\n var fractionalPart;\n var decimalSeparatorIdx = base.indexOf(numberFormat.NumberDecimalSeparator);\n if (decimalSeparatorIdx < 0) {\n intPart = base;\n fractionalPart = null;\n }\n else {\n intPart = base.substr(0, decimalSeparatorIdx);\n fractionalPart = base.substr(decimalSeparatorIdx + numberFormat.NumberDecimalSeparator.length);\n }\n intPart = intPart.split(numberFormat.NumberGroupSeparator).join('');\n var n = numberFormat.NumberGroupSeparator.replace(/\\u00A0/g, ' ');\n if (numberFormat.NumberGroupSeparator !== n) {\n intPart = intPart.split(n).join('');\n }\n var result = symbol + intPart;\n if (fractionalPart !== null) {\n result += '.' + fractionalPart;\n }\n if (exponent !== null) {\n var exponentParsed = exponent._parseNumberNegativePattern(numberFormat, 1);\n if (exponentParsed[0] === '') {\n exponentParsed[0] = '+';\n }\n result += 'e' + exponentParsed[0] + exponentParsed[1];\n }\n if (result.match(/^[+-]?\\d*\\.?\\d*(e[+-]?\\d+)?$/)) {\n return parseFloat(result);\n }\n return Number.NaN;\n};\n/**\n * Internal method, Microsoft's replica to parse FriendlyFormat of date or digit\n */\nString.prototype._parseNumberNegativePattern = function (numberFormat, pattern) {\n var negativeSign = numberFormat.NegativeSign;\n var positiveSign = numberFormat.PositiveSign;\n switch (pattern) {\n case 4:\n negativeSign = ' ' + negativeSign;\n positiveSign = ' ' + positiveSign;\n break;\n case 3:\n if (this.endsWith(negativeSign)) {\n return ['-', this.substr(0, this.length - negativeSign.length)];\n }\n else if (this.endsWith(positiveSign)) {\n return ['+', this.substr(0, this.length - positiveSign.length)];\n }\n break;\n case 2:\n negativeSign += ' ';\n positiveSign += ' ';\n break;\n case 1:\n if (this.startsWith(negativeSign)) {\n return ['-', this.substr(negativeSign.length)];\n }\n else if (this.startsWith(positiveSign)) {\n return ['+', this.substr(positiveSign.length)];\n }\n break;\n case 0:\n if (this.startsWith('(') && this.endsWith(')')) {\n return ['-', this.substr(1, this.length - 2)];\n }\n }\n return ['', this];\n};\n//# sourceMappingURL=String.extensions.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/Constants.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/Constants.js", - "index": 859, - "index2": 851, - "size": 3773, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - }, - { - "id": "IAIq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "type": "harmony side effect evaluation", - "userRequest": "./Constants", - "loc": "1:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/String.extensions.js", - "type": "harmony import specifier", - "userRequest": "./Constants", - "loc": "6:114-130" - } - ], - "usedExports": [ - "InvariantCulture" - ], - "providedExports": [ - "LoadedViewFieldsKey", - "FieldNamesMapping", - "InvariantCulture" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/**\n * Key that is used to store loaded fields in sessionStorage\n */\nexport var LoadedViewFieldsKey = 'LBLoadedViewFields';\n/**\n * Mapping between current field name and the name of the real field that contains the data\n */\nexport var FieldNamesMapping = {\n 'Title': {\n 'storedName': 'Title'\n },\n 'LinkTitle': {\n 'storedName': 'Title'\n },\n 'LinkTitleNoMenu': {\n 'storedName': 'Title'\n },\n 'LinkFilename': {\n 'storedName': 'FileLeafRef'\n },\n 'LinkFileNameNoMenu': {\n 'storedName': 'FileLeafRef'\n },\n 'FileLeafRef': {\n 'storedName': 'FileLeafRef'\n },\n 'URL': {\n 'storedName': 'URL'\n },\n 'URLwMenu': {\n 'storedName': 'URL'\n }\n};\n/**\n * Invariant Culture\n */\nexport var InvariantCulture = {\n name: '',\n numberFormat: {\n CurrencyDecimalDigits: 2,\n CurrencyDecimalSeparator: '.',\n IsReadOnly: true,\n CurrencyGroupSizes: [3],\n NumberGroupSizes: [3],\n PercentGroupSizes: [3],\n CurrencyGroupSeparator: ',',\n CurrencySymbol: '¤',\n NaNSymbol: 'NaN',\n CurrencyNegativePattern: 0,\n NumberNegativePattern: 1,\n PercentPositivePattern: 0,\n PercentNegativePattern: 0,\n NegativeInfinitySymbol: '-Infinity',\n NegativeSign: '-',\n NumberDecimalDigits: 2,\n NumberDecimalSeparator: '.',\n NumberGroupSeparator: ',',\n CurrencyPositivePattern: 0,\n PositiveInfinitySymbol: 'Infinity',\n PositiveSign: '+',\n PercentDecimalDigits: 2,\n PercentDecimalSeparator: '.',\n PercentGroupSeparator: ',',\n PercentSymbol: '%',\n PerMilleSymbol: '‰',\n NativeDigits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],\n DigitSubstitution: 1\n },\n dateTimeFormat: {\n AMDesignator: 'AM',\n Calendar: {\n MinSupportedDateTime: '@-62135568000000@',\n MaxSupportedDateTime: '@253402300799999@',\n AlgorithmType: 1,\n CalendarType: 1,\n Eras: [1],\n TwoDigitYearMax: 2029,\n IsReadOnly: true\n },\n DateSeparator: '/',\n FirstDayOfWeek: 0,\n CalendarWeekRule: 0,\n FullDateTimePattern: 'dddd, dd MMMM yyyy HH:mm:ss',\n LongDatePattern: 'dddd, dd MMMM yyyy',\n LongTimePattern: 'HH:mm:ss',\n MonthDayPattern: 'MMMM dd',\n PMDesignator: 'PM',\n RFC1123Pattern: 'ddd, dd MMM yyyy HH\\':\\'mm\\':\\'ss \\'GMT\\'',\n ShortDatePattern: 'MM/dd/yyyy',\n ShortTimePattern: 'HH:mm',\n SortableDateTimePattern: 'yyyy\\'-\\'MM\\'-\\'dd\\'T\\'HH\\':\\'mm\\':\\'ss',\n TimeSeparator: ':',\n UniversalSortableDateTimePattern: 'yyyy\\'-\\'MM\\'-\\'dd HH\\':\\'mm\\':\\'ss\\'Z\\'',\n YearMonthPattern: 'yyyy MMMM',\n AbbreviatedDayNames: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],\n ShortestDayNames: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],\n DayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],\n AbbreviatedMonthNames: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ''],\n MonthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ''],\n IsReadOnly: true,\n NativeCalendarName: 'Gregorian Calendar',\n AbbreviatedMonthGenitiveNames: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', ''],\n MonthGenitiveNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ''],\n eras: [1, 'A.D.', null, 0]\n }\n};\n//# sourceMappingURL=Constants.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "ybKx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "name": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "index": 159, - "index2": 145, - "size": 4131, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "117:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "321:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "333:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "477:32-42" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "252:32-42" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useFocusRects", - "loc": "35:0-32" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useFocusRects", - "loc": "35:0-32" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "204:32-42" - } - ], - "usedExports": [ - "FocusRects" - ], - "providedExports": [ - "useFocusRects", - "FocusRects" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/keyboard.js", - "name": "./node_modules/@uifabric/utilities/lib/keyboard.js", - "index": 160, - "index2": 144, - "size": 873, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", - "type": "harmony side effect evaluation", - "userRequest": "./keyboard", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./keyboard", - "loc": "82:8-28" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./keyboard", - "loc": "37:0-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./keyboard", - "loc": "37:0-27" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony side effect evaluation", - "userRequest": "./keyboard", - "loc": "2:0-50" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./keyboard", - "loc": "43:4-24" - } - ], - "usedExports": [ - "isDirectionalKeyCode" - ], - "providedExports": [ - "isDirectionalKeyCode", - "addDirectionalKeyCode" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var _a;\nimport { KeyCodes } from './KeyCodes';\nvar DirectionalKeyCodes = (_a = {},\n _a[KeyCodes.up] = 1,\n _a[KeyCodes.down] = 1,\n _a[KeyCodes.left] = 1,\n _a[KeyCodes.right] = 1,\n _a[KeyCodes.home] = 1,\n _a[KeyCodes.end] = 1,\n _a[KeyCodes.tab] = 1,\n _a[KeyCodes.pageUp] = 1,\n _a[KeyCodes.pageDown] = 1,\n _a);\n/**\n * Returns true if the keycode is a directional keyboard key.\n */\nexport function isDirectionalKeyCode(which) {\n return !!DirectionalKeyCodes[which];\n}\n/**\n * Adds a keycode to the list of keys that, when pressed, should cause the focus outlines to be visible.\n * This can be used to add global shortcut keys that directionally move from section to section within\n * an app or between focus trap zones.\n */\nexport function addDirectionalKeyCode(which) {\n DirectionalKeyCodes[which] = 1;\n}\n//# sourceMappingURL=keyboard.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js", - "name": "./node_modules/@uifabric/utilities/lib/useFocusRects.js", - "index": 159, - "index2": 145, - "size": 3238, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "117:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "321:28-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "333:32-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "477:32-42" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "252:32-42" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useFocusRects", - "loc": "35:0-32" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useFocusRects", - "loc": "35:0-32" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "204:32-42" - } - ], - "usedExports": [ - "FocusRects" - ], - "providedExports": [ - "useFocusRects", - "FocusRects" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as React from 'react';\nimport { getWindow } from './dom/getWindow';\nimport { isDirectionalKeyCode } from './keyboard';\nimport { setFocusVisibility } from './setFocusVisibility';\n/**\n * Counter for mounted component that uses focus rectangle.\n * We want to cleanup the listners before last component that uses focus rectangle unmounts.\n */\nvar mountCounters = new WeakMap();\nfunction setMountCounters(key, delta) {\n var newValue;\n var currValue = mountCounters.get(key);\n if (currValue) {\n newValue = currValue + delta;\n }\n else {\n newValue = 1;\n }\n mountCounters.set(key, newValue);\n return newValue;\n}\n/**\n * Initializes the logic which:\n *\n * 1. Subscribes keydown and mousedown events. (It will only do it once per window,\n * so it's safe to call this method multiple times.)\n * 2. When the user presses directional keyboard keys, adds the 'ms-Fabric--isFocusVisible' classname\n * to the document body, removes the 'ms-Fabric-isFocusHidden' classname.\n * 3. When the user clicks a mouse button, adds the 'ms-Fabric-isFocusHidden' classname to the\n * document body, removes the 'ms-Fabric--isFocusVisible' classname.\n *\n * This logic allows components on the page to conditionally render focus treatments based on\n * the existence of global classnames, which simplifies logic overall.\n *\n * @param rootRef - A Ref object. Focus rectangle can be applied on itself and all its children.\n */\nexport function useFocusRects(rootRef) {\n React.useEffect(function () {\n var _a, _b;\n var win = getWindow((_a = rootRef) === null || _a === void 0 ? void 0 : _a.current);\n if (!win || ((_b = win.FabricConfig) === null || _b === void 0 ? void 0 : _b.disableFocusRects) === true) {\n return undefined;\n }\n var count = setMountCounters(win, 1);\n if (count <= 1) {\n win.addEventListener('mousedown', _onMouseDown, true);\n win.addEventListener('pointerdown', _onPointerDown, true);\n win.addEventListener('keydown', _onKeyDown, true);\n }\n return function () {\n var _a;\n if (!win || ((_a = win.FabricConfig) === null || _a === void 0 ? void 0 : _a.disableFocusRects) === true) {\n return;\n }\n count = setMountCounters(win, -1);\n if (count === 0) {\n win.removeEventListener('mousedown', _onMouseDown, true);\n win.removeEventListener('pointerdown', _onPointerDown, true);\n win.removeEventListener('keydown', _onKeyDown, true);\n }\n };\n }, [rootRef]);\n}\n/**\n * Function Component wrapper which enables calling `useFocusRects` hook.\n * Renders nothing.\n */\nexport var FocusRects = function (props) {\n useFocusRects(props.rootRef);\n return null;\n};\nfunction _onMouseDown(ev) {\n setFocusVisibility(false, ev.target);\n}\nfunction _onPointerDown(ev) {\n if (ev.pointerType !== 'mouse') {\n setFocusVisibility(false, ev.target);\n }\n}\nfunction _onKeyDown(ev) {\n // eslint-disable-next-line deprecation/deprecation\n if (isDirectionalKeyCode(ev.which)) {\n setFocusVisibility(true, ev.target);\n }\n}\n//# sourceMappingURL=useFocusRects.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "yyay", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "index": 691, - "index2": 686, - "size": 567, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "cjs require", - "userRequest": "./WebPartTitle.module.css", - "loc": "2:0-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./WebPartTitle.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "zEVN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "name": "./node_modules/lodash/isMap.js", - "index": 549, - "index2": 543, - "size": 613, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./isMap", - "loc": "18:12-30" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseIsMap = require('./_baseIsMap'),\n baseUnary = require('./_baseUnary'),\n nodeUtil = require('./_nodeUtil');\n\n/* Node.js helper references. */\nvar nodeIsMap = nodeUtil && nodeUtil.isMap;\n\n/**\n * Checks if `value` is classified as a `Map` object.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a map, else `false`.\n * @example\n *\n * _.isMap(new Map);\n * // => true\n *\n * _.isMap(new WeakMap);\n * // => false\n */\nvar isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap;\n\nmodule.exports = isMap;\n" - }, - { - "id": "zQaE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/on.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/on.js", - "index": 143, - "index2": 129, - "size": 246, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "48:40-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "48:88-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "53:36-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "53:87-89" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "84:16-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/DraggableZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "85:16-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "248:36-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "248:101-103" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "248:166-168" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "248:258-260" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "248:350-352" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "251:40-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "258:40-42" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "63:40-42" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "63:102-104" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "66:40-42" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "66:102-104" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/on", - "loc": "11:0-25" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/on", - "loc": "11:0-25" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "51:35-37" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "51:89-91" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "54:39-41" - }, - { - "moduleId": "xjL4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useOnEvent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "19:22-24" - } - ], - "usedExports": [ - "on" - ], - "providedExports": [ - "on" - ], - "optimizationBailout": [], - "depth": 6, - "source": "export function on(element, eventName, callback, options) {\n element.addEventListener(eventName, callback, options);\n return function () { return element.removeEventListener(eventName, callback, options); };\n}\n//# sourceMappingURL=on.js.map" - }, - { - "id": "zS9i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "name": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "index": 52, - "index2": 43, - "size": 16016, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "4:0-76" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "47:35-54" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "61:12-29" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "3:0-54" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "26:21-37" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "3:0-58" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "3:0-58" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "9:56-76" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "15:39-59" - } - ], - "usedExports": [ - "applyRegistration", - "serializeRuleEntries", - "styleToClassName", - "styleToRegistration" - ], - "providedExports": [ - "serializeRuleEntries", - "styleToRegistration", - "applyRegistration", - "styleToClassName" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/Stylesheet.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js" - ], - "depth": 8, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "index": 52, - "index2": 43, - "size": 10496, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerId": "YDzY", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "4:0-76" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "47:35-54" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "61:12-29" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "3:0-54" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "26:21-37" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "3:0-58" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./styleToClassName", - "loc": "3:0-58" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "9:56-76" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./styleToClassName", - "loc": "15:39-59" - } - ], - "usedExports": [ - "applyRegistration", - "serializeRuleEntries", - "styleToClassName", - "styleToRegistration" - ], - "providedExports": [ - "serializeRuleEntries", - "styleToRegistration", - "applyRegistration", - "styleToClassName" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { __spreadArrays } from \"tslib\";\nimport { Stylesheet } from './Stylesheet';\nimport { kebabRules } from './transforms/kebabRules';\nimport { prefixRules } from './transforms/prefixRules';\nimport { provideUnits } from './transforms/provideUnits';\nimport { rtlifyRules } from './transforms/rtlifyRules';\nvar DISPLAY_NAME = 'displayName';\nfunction getDisplayName(rules) {\n var rootStyle = rules && rules['&'];\n return rootStyle ? rootStyle.displayName : undefined;\n}\nvar globalSelectorRegExp = /\\:global\\((.+?)\\)/g;\n/**\n * Finds comma separated selectors in a :global() e.g. \":global(.class1, .class2, .class3)\"\n * and wraps them each in their own global \":global(.class1), :global(.class2), :global(.class3)\"\n *\n * @param selectorWithGlobals The selector to process\n * @returns The updated selector\n */\nfunction expandCommaSeparatedGlobals(selectorWithGlobals) {\n // We the selector does not have a :global() we can shortcut\n if (!globalSelectorRegExp.test(selectorWithGlobals)) {\n return selectorWithGlobals;\n }\n var replacementInfo = [];\n var findGlobal = /\\:global\\((.+?)\\)/g;\n var match = null;\n // Create a result list for global selectors so we can replace them.\n while ((match = findGlobal.exec(selectorWithGlobals))) {\n // Only if the found selector is a comma separated list we'll process it.\n if (match[1].indexOf(',') > -1) {\n replacementInfo.push([\n match.index,\n match.index + match[0].length,\n // Wrap each of the found selectors in :global()\n match[1]\n .split(',')\n .map(function (v) { return \":global(\" + v.trim() + \")\"; })\n .join(', '),\n ]);\n }\n }\n // Replace the found selectors with their wrapped variants in reverse order\n return replacementInfo\n .reverse()\n .reduce(function (selector, _a) {\n var matchIndex = _a[0], matchEndIndex = _a[1], replacement = _a[2];\n var prefix = selector.slice(0, matchIndex);\n var suffix = selector.slice(matchEndIndex);\n return prefix + replacement + suffix;\n }, selectorWithGlobals);\n}\nfunction expandSelector(newSelector, currentSelector) {\n if (newSelector.indexOf(':global(') >= 0) {\n return newSelector.replace(globalSelectorRegExp, '$1');\n }\n else if (newSelector.indexOf(':') === 0) {\n return currentSelector + newSelector;\n }\n else if (newSelector.indexOf('&') < 0) {\n return currentSelector + ' ' + newSelector;\n }\n return newSelector;\n}\nfunction extractSelector(currentSelector, rules, selector, value) {\n if (rules === void 0) { rules = { __order: [] }; }\n if (selector.indexOf('@') === 0) {\n selector = selector + '{' + currentSelector;\n extractRules([value], rules, selector);\n }\n else if (selector.indexOf(',') > -1) {\n expandCommaSeparatedGlobals(selector)\n .split(',')\n .map(function (s) { return s.trim(); })\n .forEach(function (separatedSelector) {\n return extractRules([value], rules, expandSelector(separatedSelector, currentSelector));\n });\n }\n else {\n extractRules([value], rules, expandSelector(selector, currentSelector));\n }\n}\nfunction extractRules(args, rules, currentSelector) {\n if (rules === void 0) { rules = { __order: [] }; }\n if (currentSelector === void 0) { currentSelector = '&'; }\n var stylesheet = Stylesheet.getInstance();\n var currentRules = rules[currentSelector];\n if (!currentRules) {\n currentRules = {};\n rules[currentSelector] = currentRules;\n rules.__order.push(currentSelector);\n }\n for (var _i = 0, args_1 = args; _i < args_1.length; _i++) {\n var arg = args_1[_i];\n // If the arg is a string, we need to look up the class map and merge.\n if (typeof arg === 'string') {\n var expandedRules = stylesheet.argsFromClassName(arg);\n if (expandedRules) {\n extractRules(expandedRules, rules, currentSelector);\n }\n // Else if the arg is an array, we need to recurse in.\n }\n else if (Array.isArray(arg)) {\n extractRules(arg, rules, currentSelector);\n }\n else {\n for (var prop in arg) {\n if (arg.hasOwnProperty(prop)) {\n var propValue = arg[prop];\n if (prop === 'selectors') {\n // every child is a selector.\n var selectors = arg.selectors;\n for (var newSelector in selectors) {\n if (selectors.hasOwnProperty(newSelector)) {\n extractSelector(currentSelector, rules, newSelector, selectors[newSelector]);\n }\n }\n }\n else if (typeof propValue === 'object') {\n // prop is a selector.\n if (propValue !== null) {\n extractSelector(currentSelector, rules, prop, propValue);\n }\n }\n else {\n if (propValue !== undefined) {\n // Else, add the rule to the currentSelector.\n if (prop === 'margin' || prop === 'padding') {\n expandQuads(currentRules, prop, propValue);\n }\n else {\n currentRules[prop] = propValue;\n }\n }\n }\n }\n }\n }\n }\n return rules;\n}\nfunction expandQuads(currentRules, name, value) {\n var parts = typeof value === 'string' ? value.split(' ') : [value];\n currentRules[name + 'Top'] = parts[0];\n currentRules[name + 'Right'] = parts[1] || parts[0];\n currentRules[name + 'Bottom'] = parts[2] || parts[0];\n currentRules[name + 'Left'] = parts[3] || parts[1] || parts[0];\n}\nfunction getKeyForRules(options, rules) {\n var serialized = [options.rtl ? 'rtl' : 'ltr'];\n var hasProps = false;\n for (var _i = 0, _a = rules.__order; _i < _a.length; _i++) {\n var selector = _a[_i];\n serialized.push(selector);\n var rulesForSelector = rules[selector];\n for (var propName in rulesForSelector) {\n if (rulesForSelector.hasOwnProperty(propName) && rulesForSelector[propName] !== undefined) {\n hasProps = true;\n serialized.push(propName, rulesForSelector[propName]);\n }\n }\n }\n return hasProps ? serialized.join('') : undefined;\n}\nfunction repeatString(target, count) {\n if (count <= 0) {\n return '';\n }\n if (count === 1) {\n return target;\n }\n return target + repeatString(target, count - 1);\n}\nexport function serializeRuleEntries(options, ruleEntries) {\n if (!ruleEntries) {\n return '';\n }\n var allEntries = [];\n for (var entry in ruleEntries) {\n if (ruleEntries.hasOwnProperty(entry) && entry !== DISPLAY_NAME && ruleEntries[entry] !== undefined) {\n allEntries.push(entry, ruleEntries[entry]);\n }\n }\n // Apply transforms.\n for (var i = 0; i < allEntries.length; i += 2) {\n kebabRules(allEntries, i);\n provideUnits(allEntries, i);\n rtlifyRules(options, allEntries, i);\n prefixRules(allEntries, i);\n }\n // Apply punctuation.\n for (var i = 1; i < allEntries.length; i += 4) {\n allEntries.splice(i, 1, ':', allEntries[i], ';');\n }\n return allEntries.join('');\n}\nexport function styleToRegistration(options) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n var rules = extractRules(args);\n var key = getKeyForRules(options, rules);\n if (key) {\n var stylesheet = Stylesheet.getInstance();\n var registration = {\n className: stylesheet.classNameFromKey(key),\n key: key,\n args: args,\n };\n if (!registration.className) {\n registration.className = stylesheet.getClassName(getDisplayName(rules));\n var rulesToInsert = [];\n for (var _a = 0, _b = rules.__order; _a < _b.length; _a++) {\n var selector = _b[_a];\n rulesToInsert.push(selector, serializeRuleEntries(options, rules[selector]));\n }\n registration.rulesToInsert = rulesToInsert;\n }\n return registration;\n }\n return undefined;\n}\n/**\n * Insert style to stylesheet.\n * @param registration Style registration.\n * @param specificityMultiplier Number of times classname selector is repeated in the css rule.\n * This is to increase css specificity in case it's needed. Default to 1.\n */\nexport function applyRegistration(registration, specificityMultiplier) {\n if (specificityMultiplier === void 0) { specificityMultiplier = 1; }\n var stylesheet = Stylesheet.getInstance();\n var className = registration.className, key = registration.key, args = registration.args, rulesToInsert = registration.rulesToInsert;\n if (rulesToInsert) {\n // rulesToInsert is an ordered array of selector/rule pairs.\n for (var i = 0; i < rulesToInsert.length; i += 2) {\n var rules = rulesToInsert[i + 1];\n if (rules) {\n var selector = rulesToInsert[i];\n selector = selector.replace(/&/g, repeatString(\".\" + registration.className, specificityMultiplier));\n // Insert. Note if a media query, we must close the query with a final bracket.\n var processedRule = selector + \"{\" + rules + \"}\" + (selector.indexOf('@') === 0 ? '}' : '');\n stylesheet.insertRule(processedRule);\n }\n }\n stylesheet.cacheClassName(className, key, args, rulesToInsert);\n }\n}\nexport function styleToClassName(options) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n var registration = styleToRegistration.apply(void 0, __spreadArrays([options], args));\n if (registration) {\n applyRegistration(registration, options.specificityMultiplier);\n return registration.className;\n }\n return '';\n}\n//# sourceMappingURL=styleToClassName.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/transforms/kebabRules.js", - "name": "./node_modules/@uifabric/merge-styles/lib/transforms/kebabRules.js", - "index": 53, - "index2": 38, - "size": 279, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/kebabRules", - "loc": "3:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./transforms/kebabRules", - "loc": "186:8-18" - } - ], - "usedExports": [ - "kebabRules" - ], - "providedExports": [ - "kebabRules" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var rules = {};\nexport function kebabRules(rulePairs, index) {\n var rule = rulePairs[index];\n if (rule.charAt(0) !== '-') {\n rulePairs[index] = rules[rule] = rules[rule] || rule.replace(/([A-Z])/g, '-$1').toLowerCase();\n }\n}\n//# sourceMappingURL=kebabRules.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "name": "./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "index": 56, - "index2": 42, - "size": 843, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/prefixRules", - "loc": "4:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./transforms/prefixRules", - "loc": "189:8-19" - } - ], - "usedExports": [ - "prefixRules" - ], - "providedExports": [ - "prefixRules" - ], - "optimizationBailout": [], - "depth": 9, - "source": "import { getVendorSettings } from '../getVendorSettings';\nvar autoPrefixNames = {\n 'user-select': 1,\n};\nexport function prefixRules(rulePairs, index) {\n var vendorSettings = getVendorSettings();\n var name = rulePairs[index];\n if (autoPrefixNames[name]) {\n var value = rulePairs[index + 1];\n if (autoPrefixNames[name]) {\n if (vendorSettings.isWebkit) {\n rulePairs.push('-webkit-' + name, value);\n }\n if (vendorSettings.isMoz) {\n rulePairs.push('-moz-' + name, value);\n }\n if (vendorSettings.isMs) {\n rulePairs.push('-ms-' + name, value);\n }\n if (vendorSettings.isOpera) {\n rulePairs.push('-o-' + name, value);\n }\n }\n }\n}\n//# sourceMappingURL=prefixRules.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/transforms/provideUnits.js", - "name": "./node_modules/@uifabric/merge-styles/lib/transforms/provideUnits.js", - "index": 54, - "index2": 39, - "size": 654, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/provideUnits", - "loc": "5:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./transforms/provideUnits", - "loc": "187:8-20" - } - ], - "usedExports": [ - "provideUnits" - ], - "providedExports": [ - "provideUnits" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var NON_PIXEL_NUMBER_PROPS = [\n 'column-count',\n 'font-weight',\n 'flex',\n 'flex-grow',\n 'flex-shrink',\n 'fill-opacity',\n 'opacity',\n 'order',\n 'z-index',\n 'zoom',\n];\nexport function provideUnits(rulePairs, index) {\n var name = rulePairs[index];\n var value = rulePairs[index + 1];\n if (typeof value === 'number') {\n var isNonPixelProp = NON_PIXEL_NUMBER_PROPS.indexOf(name) > -1;\n var isVariableOrPrefixed = name.indexOf('--') > -1;\n var unit = isNonPixelProp || isVariableOrPrefixed ? '' : 'px';\n rulePairs[index + 1] = \"\" + value + unit;\n }\n}\n//# sourceMappingURL=provideUnits.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "name": "./node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js", - "index": 55, - "index2": 40, - "size": 2557, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "./transforms/rtlifyRules", - "loc": "6:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "type": "harmony import specifier", - "userRequest": "./transforms/rtlifyRules", - "loc": "188:8-19" - } - ], - "usedExports": [ - "rtlifyRules" - ], - "providedExports": [ - "rtlifyRules" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var _a;\nvar LEFT = 'left';\nvar RIGHT = 'right';\nvar NO_FLIP = '@noflip';\nvar NAME_REPLACEMENTS = (_a = {},\n _a[LEFT] = RIGHT,\n _a[RIGHT] = LEFT,\n _a);\nvar VALUE_REPLACEMENTS = {\n 'w-resize': 'e-resize',\n 'sw-resize': 'se-resize',\n 'nw-resize': 'ne-resize',\n};\n/**\n * RTLifies the rulePair in the array at the current index. This mutates the array for performance\n * reasons.\n */\nexport function rtlifyRules(options, rulePairs, index) {\n if (options.rtl) {\n var name_1 = rulePairs[index];\n if (!name_1) {\n return;\n }\n var value = rulePairs[index + 1];\n if (typeof value === 'string' && value.indexOf(NO_FLIP) >= 0) {\n rulePairs[index + 1] = value.replace(/\\s*(?:\\/\\*\\s*)?\\@noflip\\b(?:\\s*\\*\\/)?\\s*?/g, '');\n }\n else if (name_1.indexOf(LEFT) >= 0) {\n rulePairs[index] = name_1.replace(LEFT, RIGHT);\n }\n else if (name_1.indexOf(RIGHT) >= 0) {\n rulePairs[index] = name_1.replace(RIGHT, LEFT);\n }\n else if (String(value).indexOf(LEFT) >= 0) {\n rulePairs[index + 1] = value.replace(LEFT, RIGHT);\n }\n else if (String(value).indexOf(RIGHT) >= 0) {\n rulePairs[index + 1] = value.replace(RIGHT, LEFT);\n }\n else if (NAME_REPLACEMENTS[name_1]) {\n rulePairs[index] = NAME_REPLACEMENTS[name_1];\n }\n else if (VALUE_REPLACEMENTS[value]) {\n rulePairs[index + 1] = VALUE_REPLACEMENTS[value];\n }\n else {\n switch (name_1) {\n case 'margin':\n case 'padding':\n rulePairs[index + 1] = flipQuad(value);\n break;\n case 'box-shadow':\n rulePairs[index + 1] = negateNum(value, 0);\n break;\n }\n }\n }\n}\n/**\n * Given a string value in a space delimited format (e.g. \"1 2 3 4\"), negates a particular value.\n */\nfunction negateNum(value, partIndex) {\n var parts = value.split(' ');\n var numberVal = parseInt(parts[partIndex], 10);\n parts[0] = parts[0].replace(String(numberVal), String(numberVal * -1));\n return parts.join(' ');\n}\n/**\n * Given a string quad, flips the left and right values.\n */\nfunction flipQuad(value) {\n if (typeof value === 'string') {\n var parts = value.split(' ');\n if (parts.length === 4) {\n return parts[0] + \" \" + parts[3] + \" \" + parts[2] + \" \" + parts[1];\n }\n }\n return value;\n}\n//# sourceMappingURL=rtlifyRules.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/getVendorSettings.js", - "name": "./node_modules/@uifabric/merge-styles/lib/getVendorSettings.js", - "index": 57, - "index2": 41, - "size": 1177, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js", - "name": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "name": "./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "module": "./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "type": "harmony side effect evaluation", - "userRequest": "../getVendorSettings", - "loc": "1:0-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "module": "./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js", - "type": "harmony import specifier", - "userRequest": "../getVendorSettings", - "loc": "6:25-42" - } - ], - "usedExports": [ - "getVendorSettings" - ], - "providedExports": [ - "getVendorSettings", - "setVendorSettings" - ], - "optimizationBailout": [], - "depth": 10, - "source": "var _vendorSettings;\nexport function getVendorSettings() {\n if (!_vendorSettings) {\n var doc = typeof document !== 'undefined' ? document : undefined;\n var nav = typeof navigator !== 'undefined' ? navigator : undefined;\n var userAgent = nav ? nav.userAgent.toLowerCase() : undefined;\n if (!doc) {\n _vendorSettings = {\n isWebkit: true,\n isMoz: true,\n isOpera: true,\n isMs: true,\n };\n }\n else {\n _vendorSettings = {\n isWebkit: !!(doc && 'WebkitAppearance' in doc.documentElement.style),\n isMoz: !!(userAgent && userAgent.indexOf('firefox') > -1),\n isOpera: !!(userAgent && userAgent.indexOf('opera') > -1),\n isMs: !!(nav && (/rv:11.0/i.test(nav.userAgent) || /Edge\\/\\d./i.test(navigator.userAgent))),\n };\n }\n }\n return _vendorSettings;\n}\n/**\n * Sets the vendor settings for prefixing and vendor specific operations.\n */\nexport function setVendorSettings(vendorSettings) {\n _vendorSettings = vendorSettings;\n}\n//# sourceMappingURL=getVendorSettings.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "zXKl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "index": 261, - "index2": 252, - "size": 20076, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Checkbox", - "loc": "8:28-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Checkbox", - "loc": "56:35-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Checkbox", - "loc": "75:31-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Checkbox", - "loc": "167:366-374" - }, - { - "moduleId": "fmqj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Checkbox", - "loc": "1:0-27" - }, - { - "moduleId": "fmqj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Checkbox", - "loc": "1:0-27" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Checkbox", - "loc": "377:466-474" - } - ], - "usedExports": [ - "Checkbox" - ], - "providedExports": [ - "Checkbox" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/aria.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/useFocusRects.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 3, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "index": 262, - "index2": 250, - "size": 7354, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "fmqj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "type": "harmony side effect evaluation", - "userRequest": "./Checkbox.base", - "loc": "2:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "type": "harmony import specifier", - "userRequest": "./Checkbox.base", - "loc": "4:29-41" - }, - { - "moduleId": "fmqj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Checkbox.base", - "loc": "2:0-32" - }, - { - "moduleId": "fmqj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Checkbox.base", - "loc": "2:0-32" - } - ], - "usedExports": [ - "CheckboxBase" - ], - "providedExports": [ - "CheckboxBase" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { getId, classNamesFunction, mergeAriaAttributeValues, initializeComponentRef, warnMutuallyExclusive, FocusRects, } from '../../Utilities';\nimport { Icon } from '../../Icon';\nimport { KeytipData } from '../../KeytipData';\nvar getClassNames = classNamesFunction();\nvar CheckboxBase = /** @class */ (function (_super) {\n __extends(CheckboxBase, _super);\n /**\n * Initialize a new instance of the Checkbox\n * @param props - Props for the component\n * @param context - Context or initial state for the base component.\n */\n function CheckboxBase(props, context) {\n var _this = _super.call(this, props, context) || this;\n _this._checkBox = React.createRef();\n _this._renderContent = function (checked, indeterminate, keytipAttributes) {\n if (keytipAttributes === void 0) { keytipAttributes = {}; }\n var _a = _this.props, disabled = _a.disabled, inputProps = _a.inputProps, name = _a.name, ariaLabel = _a.ariaLabel, ariaLabelledBy = _a.ariaLabelledBy, ariaDescribedBy = _a.ariaDescribedBy, _b = _a.onRenderLabel, onRenderLabel = _b === void 0 ? _this._onRenderLabel : _b, checkmarkIconProps = _a.checkmarkIconProps, ariaPositionInSet = _a.ariaPositionInSet, ariaSetSize = _a.ariaSetSize, title = _a.title, label = _a.label;\n return (React.createElement(\"div\", { className: _this._classNames.root, title: title },\n React.createElement(FocusRects, null),\n React.createElement(\"input\", __assign({ type: \"checkbox\" }, inputProps, { \"data-ktp-execute-target\": keytipAttributes['data-ktp-execute-target'], checked: checked, disabled: disabled, className: _this._classNames.input, ref: _this._checkBox, name: name, id: _this._id, title: title, onChange: _this._onChange, onFocus: _this._onFocus, onBlur: _this._onBlur, \"aria-disabled\": disabled, \"aria-label\": ariaLabel || label, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": mergeAriaAttributeValues(ariaDescribedBy, keytipAttributes['aria-describedby']), \"aria-posinset\": ariaPositionInSet, \"aria-setsize\": ariaSetSize, \"aria-checked\": indeterminate ? 'mixed' : checked ? 'true' : 'false' })),\n React.createElement(\"label\", { className: _this._classNames.label, htmlFor: _this._id },\n React.createElement(\"div\", { className: _this._classNames.checkbox, \"data-ktp-target\": keytipAttributes['data-ktp-target'] },\n React.createElement(Icon, __assign({ iconName: \"CheckMark\" }, checkmarkIconProps, { className: _this._classNames.checkmark }))),\n onRenderLabel(_this.props, _this._onRenderLabel))));\n };\n _this._onFocus = function (ev) {\n var inputProps = _this.props.inputProps;\n if (inputProps && inputProps.onFocus) {\n inputProps.onFocus(ev);\n }\n };\n _this._onBlur = function (ev) {\n var inputProps = _this.props.inputProps;\n if (inputProps && inputProps.onBlur) {\n inputProps.onBlur(ev);\n }\n };\n _this._onChange = function (ev) {\n var onChange = _this.props.onChange;\n var _a = _this.state, isChecked = _a.isChecked, isIndeterminate = _a.isIndeterminate;\n if (!isIndeterminate) {\n if (onChange) {\n onChange(ev, !isChecked);\n }\n if (_this.props.checked === undefined) {\n _this.setState({ isChecked: !isChecked });\n }\n }\n else {\n // If indeterminate, clicking the checkbox *only* removes the indeterminate state (or if\n // controlled, lets the consumer know to change it by calling onChange). It doesn't\n // change the checked state.\n if (onChange) {\n onChange(ev, isChecked);\n }\n if (_this.props.indeterminate === undefined) {\n _this.setState({ isIndeterminate: false });\n }\n }\n };\n _this._onRenderLabel = function (props) {\n var label = props.label, title = props.title;\n return label ? (React.createElement(\"span\", { \"aria-hidden\": \"true\", className: _this._classNames.text, title: title }, label)) : null;\n };\n initializeComponentRef(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnMutuallyExclusive('Checkbox', props, {\n checked: 'defaultChecked',\n indeterminate: 'defaultIndeterminate',\n });\n }\n _this._id = _this.props.id || getId('checkbox-');\n _this.state = {\n isChecked: !!(props.checked !== undefined ? props.checked : props.defaultChecked),\n isIndeterminate: !!(props.indeterminate !== undefined ? props.indeterminate : props.defaultIndeterminate),\n };\n return _this;\n }\n CheckboxBase.getDerivedStateFromProps = function (nextProps, prevState) {\n var stateUpdate = {};\n if (nextProps.indeterminate !== undefined) {\n stateUpdate.isIndeterminate = !!nextProps.indeterminate;\n }\n if (nextProps.checked !== undefined) {\n stateUpdate.isChecked = !!nextProps.checked;\n }\n return Object.keys(stateUpdate).length ? stateUpdate : null;\n };\n /**\n * Render the Checkbox based on passed props\n */\n CheckboxBase.prototype.render = function () {\n var _this = this;\n var _a = this.props, className = _a.className, disabled = _a.disabled, boxSide = _a.boxSide, theme = _a.theme, styles = _a.styles, _b = _a.onRenderLabel, onRenderLabel = _b === void 0 ? this._onRenderLabel : _b, keytipProps = _a.keytipProps;\n var _c = this.state, isChecked = _c.isChecked, isIndeterminate = _c.isIndeterminate;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n disabled: disabled,\n indeterminate: isIndeterminate,\n checked: isChecked,\n reversed: boxSide !== 'start',\n isUsingCustomLabelRender: onRenderLabel !== this._onRenderLabel,\n });\n if (keytipProps) {\n return (React.createElement(KeytipData, { keytipProps: keytipProps, disabled: disabled }, function (keytipAttributes) { return _this._renderContent(isChecked, isIndeterminate, keytipAttributes); }));\n }\n return this._renderContent(isChecked, isIndeterminate);\n };\n Object.defineProperty(CheckboxBase.prototype, \"indeterminate\", {\n get: function () {\n return !!this.state.isIndeterminate;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CheckboxBase.prototype, \"checked\", {\n get: function () {\n return !!this.state.isChecked;\n },\n enumerable: true,\n configurable: true\n });\n CheckboxBase.prototype.focus = function () {\n if (this._checkBox.current) {\n this._checkBox.current.focus();\n }\n };\n CheckboxBase.defaultProps = {\n boxSide: 'start',\n };\n return CheckboxBase;\n}(React.Component));\nexport { CheckboxBase };\n//# sourceMappingURL=Checkbox.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "index": 261, - "index2": 252, - "size": 262, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "issuerId": "fmqj", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "fmqj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Checkbox", - "loc": "8:28-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Checkbox", - "loc": "56:35-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Checkbox", - "loc": "75:31-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Checkbox", - "loc": "167:366-374" - }, - { - "moduleId": "fmqj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Checkbox", - "loc": "1:0-27" - }, - { - "moduleId": "fmqj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Checkbox", - "loc": "1:0-27" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Checkbox", - "loc": "377:466-474" - } - ], - "usedExports": [ - "Checkbox" - ], - "providedExports": [ - "Checkbox" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { styled } from '../../Utilities';\nimport { CheckboxBase } from './Checkbox.base';\nimport { getStyles } from './Checkbox.styles';\nexport var Checkbox = styled(CheckboxBase, getStyles, undefined, { scope: 'Checkbox' });\n//# sourceMappingURL=Checkbox.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "index": 263, - "index2": 251, - "size": 12400, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "fmqj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "type": "harmony side effect evaluation", - "userRequest": "./Checkbox.styles", - "loc": "3:0-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js", - "type": "harmony import specifier", - "userRequest": "./Checkbox.styles", - "loc": "4:43-52" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, getGlobalClassNames, getHighContrastNoAdjustStyle } from '../../Styling';\nimport { IsFocusVisibleClassName } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Checkbox',\n label: 'ms-Checkbox-label',\n checkbox: 'ms-Checkbox-checkbox',\n checkmark: 'ms-Checkbox-checkmark',\n text: 'ms-Checkbox-text',\n};\nvar MS_CHECKBOX_LABEL_SIZE = '20px';\nvar MS_CHECKBOX_TRANSITION_DURATION = '200ms';\nvar MS_CHECKBOX_TRANSITION_TIMING = 'cubic-bezier(.4, 0, .23, 1)';\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;\n var className = props.className, theme = props.theme, reversed = props.reversed, checked = props.checked, disabled = props.disabled, isUsingCustomLabelRender = props.isUsingCustomLabelRender, indeterminate = props.indeterminate;\n var semanticColors = theme.semanticColors, effects = theme.effects, palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var checkmarkFontColor = semanticColors.inputForegroundChecked;\n // TODO: after updating the semanticColors slots mapping this needs to be semanticColors.inputBorder\n var checkmarkFontColorHovered = palette.neutralSecondary;\n // TODO: after updating the semanticColors slots mapping this needs to be semanticColors.smallInputBorder\n var checkboxBorderColor = palette.neutralPrimary;\n var checkboxBorderIndeterminateColor = semanticColors.inputBackgroundChecked;\n var checkboxBorderColorChecked = semanticColors.inputBackgroundChecked;\n var checkboxBorderColorDisabled = semanticColors.disabledBodySubtext;\n var checkboxBorderHoveredColor = semanticColors.inputBorderHovered;\n var checkboxBorderIndeterminateHoveredColor = semanticColors.inputBackgroundCheckedHovered;\n var checkboxBackgroundChecked = semanticColors.inputBackgroundChecked;\n // TODO: after updating the semanticColors slots mapping the following 2 tokens need to be\n // semanticColors.inputBackgroundCheckedHovered\n var checkboxBackgroundCheckedHovered = semanticColors.inputBackgroundCheckedHovered;\n var checkboxBorderColorCheckedHovered = semanticColors.inputBackgroundCheckedHovered;\n var checkboxHoveredTextColor = semanticColors.inputTextHovered;\n var checkboxBackgroundDisabledChecked = semanticColors.disabledBodySubtext;\n var checkboxTextColor = semanticColors.bodyText;\n var checkboxTextColorDisabled = semanticColors.disabledText;\n var indeterminateDotStyles = [\n (_a = {\n content: '\"\"',\n borderRadius: effects.roundedCorner2,\n position: 'absolute',\n width: 10,\n height: 10,\n top: 4,\n left: 4,\n boxSizing: 'border-box',\n borderWidth: 5,\n borderStyle: 'solid',\n borderColor: disabled ? checkboxBorderColorDisabled : checkboxBorderIndeterminateColor,\n transitionProperty: 'border-width, border, border-color',\n transitionDuration: MS_CHECKBOX_TRANSITION_DURATION,\n transitionTimingFunction: MS_CHECKBOX_TRANSITION_TIMING\n },\n _a[HighContrastSelector] = {\n borderColor: 'WindowText',\n },\n _a),\n ];\n return {\n root: [\n classNames.root,\n {\n position: 'relative',\n display: 'flex',\n },\n reversed && 'reversed',\n checked && 'is-checked',\n !disabled && 'is-enabled',\n disabled && 'is-disabled',\n !disabled && [\n !checked && (_b = {},\n _b[\":hover .\" + classNames.checkbox] = (_c = {\n borderColor: checkboxBorderHoveredColor\n },\n _c[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _c),\n _b[\":focus .\" + classNames.checkbox] = { borderColor: checkboxBorderHoveredColor },\n _b[\":hover .\" + classNames.checkmark] = (_d = {\n color: checkmarkFontColorHovered,\n opacity: '1'\n },\n _d[HighContrastSelector] = {\n color: 'Highlight',\n },\n _d),\n _b),\n checked &&\n !indeterminate && (_e = {},\n _e[\":hover .\" + classNames.checkbox] = {\n background: checkboxBackgroundCheckedHovered,\n borderColor: checkboxBorderColorCheckedHovered,\n },\n _e[\":focus .\" + classNames.checkbox] = {\n background: checkboxBackgroundCheckedHovered,\n borderColor: checkboxBorderColorCheckedHovered,\n },\n _e[HighContrastSelector] = (_f = {},\n _f[\":hover .\" + classNames.checkbox] = {\n background: 'Highlight',\n borderColor: 'Highlight',\n },\n _f[\":focus .\" + classNames.checkbox] = {\n background: 'Highlight',\n },\n _f[\":focus:hover .\" + classNames.checkbox] = {\n background: 'Highlight',\n },\n _f[\":focus:hover .\" + classNames.checkmark] = {\n color: 'Window',\n },\n _f[\":hover .\" + classNames.checkmark] = {\n color: 'Window',\n },\n _f),\n _e),\n indeterminate && (_g = {},\n _g[\":hover .\" + classNames.checkbox + \", :hover .\" + classNames.checkbox + \":after\"] = (_h = {\n borderColor: checkboxBorderIndeterminateHoveredColor\n },\n _h[HighContrastSelector] = {\n borderColor: 'WindowText',\n },\n _h),\n _g[\":focus .\" + classNames.checkbox] = {\n borderColor: checkboxBorderIndeterminateHoveredColor,\n },\n _g[\":hover .\" + classNames.checkmark] = {\n opacity: '0',\n },\n _g),\n (_j = {},\n _j[\":hover .\" + classNames.text + \", :focus .\" + classNames.text] = (_k = {\n color: checkboxHoveredTextColor\n },\n _k[HighContrastSelector] = {\n color: disabled ? 'GrayText' : 'WindowText',\n },\n _k),\n _j),\n ],\n className,\n ],\n input: (_l = {\n position: 'absolute',\n background: 'none',\n opacity: 0\n },\n _l[\".\" + IsFocusVisibleClassName + \" &:focus + label::before\"] = (_m = {\n outline: '1px solid ' + theme.palette.neutralSecondary,\n outlineOffset: '2px'\n },\n _m[HighContrastSelector] = {\n outline: '1px solid WindowText',\n },\n _m),\n _l),\n label: [\n classNames.label,\n theme.fonts.medium,\n {\n display: 'flex',\n alignItems: isUsingCustomLabelRender ? 'center' : 'flex-start',\n cursor: disabled ? 'default' : 'pointer',\n position: 'relative',\n userSelect: 'none',\n },\n reversed && {\n flexDirection: 'row-reverse',\n justifyContent: 'flex-end',\n },\n {\n '&::before': {\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n content: '\"\"',\n pointerEvents: 'none',\n },\n },\n ],\n checkbox: [\n classNames.checkbox,\n (_o = {\n position: 'relative',\n display: 'flex',\n flexShrink: 0,\n alignItems: 'center',\n justifyContent: 'center',\n height: MS_CHECKBOX_LABEL_SIZE,\n width: MS_CHECKBOX_LABEL_SIZE,\n border: \"1px solid \" + checkboxBorderColor,\n borderRadius: effects.roundedCorner2,\n boxSizing: 'border-box',\n transitionProperty: 'background, border, border-color',\n transitionDuration: MS_CHECKBOX_TRANSITION_DURATION,\n transitionTimingFunction: MS_CHECKBOX_TRANSITION_TIMING,\n /* in case the icon is bigger than the box */\n overflow: 'hidden',\n ':after': indeterminate ? indeterminateDotStyles : null\n },\n _o[HighContrastSelector] = __assign({ borderColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _o),\n indeterminate && {\n borderColor: checkboxBorderIndeterminateColor,\n },\n !reversed\n ? // This margin on the checkbox is for backwards compat. Notably it has the effect where a customRender\n // is used, there will be only a 4px margin from checkbox to label. The label by default would have\n // another 4px margin for a total of 8px margin between checkbox and label. We don't combine the two\n // (and move it into the text) to not incur a breaking change for everyone using custom render atm.\n {\n marginRight: 4,\n }\n : {\n marginLeft: 4,\n },\n !disabled &&\n !indeterminate &&\n checked && (_p = {\n background: checkboxBackgroundChecked,\n borderColor: checkboxBorderColorChecked\n },\n _p[HighContrastSelector] = {\n background: 'Highlight',\n borderColor: 'Highlight',\n },\n _p),\n disabled && (_q = {\n borderColor: checkboxBorderColorDisabled\n },\n _q[HighContrastSelector] = {\n borderColor: 'GrayText',\n },\n _q),\n checked &&\n disabled && (_r = {\n background: checkboxBackgroundDisabledChecked,\n borderColor: checkboxBorderColorDisabled\n },\n _r[HighContrastSelector] = {\n background: 'Window',\n },\n _r),\n ],\n checkmark: [\n classNames.checkmark,\n (_s = {\n opacity: checked ? '1' : '0',\n color: checkmarkFontColor\n },\n _s[HighContrastSelector] = __assign({ color: disabled ? 'GrayText' : 'Window' }, getHighContrastNoAdjustStyle()),\n _s),\n ],\n text: [\n classNames.text,\n (_t = {\n color: disabled ? checkboxTextColorDisabled : checkboxTextColor,\n fontSize: fonts.medium.fontSize,\n lineHeight: '20px'\n },\n _t[HighContrastSelector] = __assign({ color: disabled ? 'GrayText' : 'WindowText' }, getHighContrastNoAdjustStyle()),\n _t),\n !reversed\n ? {\n marginLeft: 4,\n }\n : {\n marginRight: 4,\n },\n ],\n };\n};\n//# sourceMappingURL=Checkbox.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "zZ0H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/identity.js", - "name": "./node_modules/lodash/identity.js", - "index": 578, - "index2": 569, - "size": 370, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "issuerId": "pFRH", - "issuerName": "./node_modules/lodash/_baseSetToString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "wclG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "name": "./node_modules/lodash/_setToString.js" - }, - { - "id": "pFRH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "name": "./node_modules/lodash/_baseSetToString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "pFRH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "module": "./node_modules/lodash/_baseSetToString.js", - "moduleName": "./node_modules/lodash/_baseSetToString.js", - "type": "cjs require", - "userRequest": "./identity", - "loc": "3:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\nfunction identity(value) {\n return value;\n}\n\nmodule.exports = identity;\n" - }, - { - "id": "zoYe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseToString.js", - "name": "./node_modules/lodash/_baseToString.js", - "index": 561, - "index2": 552, - "size": 1154, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/toString.js", - "issuerId": "dt0z", - "issuerName": "./node_modules/lodash/toString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - }, - { - "id": "dt0z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/toString.js", - "name": "./node_modules/lodash/toString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dt0z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/toString.js", - "module": "./node_modules/lodash/toString.js", - "moduleName": "./node_modules/lodash/toString.js", - "type": "cjs require", - "userRequest": "./_baseToString", - "loc": "1:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var Symbol = require('./_Symbol'),\n arrayMap = require('./_arrayMap'),\n isArray = require('./isArray'),\n isSymbol = require('./isSymbol');\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/** Used to convert symbols to primitives and strings. */\nvar symbolProto = Symbol ? Symbol.prototype : undefined,\n symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n/**\n * The base implementation of `_.toString` which doesn't convert nullish\n * values to empty strings.\n *\n * @private\n * @param {*} value The value to process.\n * @returns {string} Returns the string.\n */\nfunction baseToString(value) {\n // Exit early for strings to avoid a performance hit in some environments.\n if (typeof value == 'string') {\n return value;\n }\n if (isArray(value)) {\n // Recursively convert values (susceptible to call stack limits).\n return arrayMap(value, baseToString) + '';\n }\n if (isSymbol(value)) {\n return symbolToString ? symbolToString.call(value) : '';\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\nmodule.exports = baseToString;\n" - }, - { - "id": "zwa+", - "identifier": "external \"PropertyControlStrings\"", - "name": "external \"PropertyControlStrings\"", - "index": 27, - "index2": 19, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "issuerId": "IAIq", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - }, - { - "id": "IAIq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "PropertyControlStrings", - "loc": "66:0-50" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "214:52-75" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "556:55-96" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "563:69-113" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "566:76-114" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "567:105-140" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "PropertyControlStrings", - "loc": "18:0-50" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "31:23-57" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "36:23-61" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "40:23-61" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony side effect evaluation", - "userRequest": "PropertyControlStrings", - "loc": "26:0-50" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "54:115-136" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony side effect evaluation", - "userRequest": "PropertyControlStrings", - "loc": "26:0-50" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "226:202-234" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "228:155-194" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "229:152-175" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "230:88-113" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "PropertyControlStrings", - "loc": "32:0-50" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "72:101-134" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "PropertyControlStrings", - "loc": "63:0-50" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "148:58-96" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "158:57-84" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "164:24-53" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony side effect evaluation", - "userRequest": "PropertyControlStrings", - "loc": "25:0-50" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "41:134-175" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "PropertyControlStrings", - "loc": "3:0-50" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "43:36-52" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "43:95-111" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "46:36-52" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "46:96-112" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "49:76-92" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "49:132-148" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "49:192-208" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "49:257-273" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "52:36-52" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "52:95-111" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "56:40-56" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "56:90-106" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "59:52-68" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "59:109-125" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "63:76-92" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "63:130-146" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "63:188-204" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "63:251-267" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "70:41-57" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "74:76-92" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "74:129-145" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "74:186-202" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "74:248-264" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "77:25-41" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "221:19-40" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "PropertyControlStrings", - "loc": "226:72-88" - } - ], - "usedExports": [ - "CancelButtonLabel", - "CollectionAddRowButtonLabel", - "CollectionDataEmptyFields", - "CollectionDataEmptyValue", - "CollectionDataItemFieldRequiredLabel", - "CollectionDataItemShowErrorsLabel", - "CollectionDeleteRowButtonLabel", - "CollectionSaveAndAddButtonLabel", - "DateTime", - "EmptyFileSize", - "InvalidUrlError", - "MaximumNumberValidationMessage", - "MinimumNumberValidationMessage", - "MoreInfoLabel", - "NotNumberValidationMessage", - "SaveButtonLabel", - "SitePickerNoResults", - "SitePickerSearchBoxPlaceholder", - "SitePickerSitesChosen", - "SizeUnit", - "propertyFieldMultiSelectNoOptions" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4 - } - ], - "filteredModules": 0, - "origins": [ - { - "module": "", - "moduleIdentifier": "", - "moduleName": "", - "loc": "list-search-web-part", - "request": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "reasons": [] - } - ] - } - ], - "modules": [ - { - "id": "+6XX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheHas.js", - "name": "./node_modules/lodash/_listCacheHas.js", - "index": 453, - "index2": 444, - "size": 403, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "issuerId": "Xi7e", - "issuerName": "./node_modules/lodash/_ListCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Xi7e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "module": "./node_modules/lodash/_ListCache.js", - "moduleName": "./node_modules/lodash/_ListCache.js", - "type": "cjs require", - "userRequest": "./_listCacheHas", - "loc": "4:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var assocIndexOf = require('./_assocIndexOf');\n\n/**\n * Checks if a list cache value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf ListCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction listCacheHas(key) {\n return assocIndexOf(this.__data__, key) > -1;\n}\n\nmodule.exports = listCacheHas;\n" - }, - { - "id": "+D8x", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "name": "./node_modules/@uifabric/foundation/lib/hooks/controlled.js", - "index": null, - "index2": null, - "size": 1823, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/index.js", - "issuerId": "vOMI", - "issuerName": "./node_modules/@uifabric/foundation/lib/hooks/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - }, - { - "id": "MObJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js" - }, - { - "id": "7Rmr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "name": "./node_modules/office-ui-fabric-react/lib/Foundation.js" - }, - { - "id": "1ptM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "name": "./node_modules/@uifabric/foundation/lib/index.js" - }, - { - "id": "vOMI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/index.js", - "name": "./node_modules/@uifabric/foundation/lib/hooks/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "vOMI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/index.js", - "module": "./node_modules/@uifabric/foundation/lib/hooks/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/hooks/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./controlled", - "loc": "1:0-29" - }, - { - "moduleId": "vOMI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/hooks/index.js", - "module": "./node_modules/@uifabric/foundation/lib/hooks/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/hooks/index.js", - "type": "harmony export imported specifier", - "userRequest": "./controlled", - "loc": "1:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "useControlledState", - "getControlledDerivedProps" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 9, - "source": "import * as React from 'react';\n/**\n * Controlled state helper that gives priority to props value. Useful for components that have props with both\n * controlled and uncontrolled modes. Any props values will override state, but will not update internal state.\n * If prop is defined and then later undefined, state will revert to its previous value.\n *\n * @param props - The props object containing controlled prop values.\n * @param propName - The controlled prop name.\n * @param options - Options. defaultPropValue is only used if defaultPropName (or its value) is undefined.\n */\nexport function useControlledState(props, propName, options) {\n var defaultValue;\n if (options) {\n if (options.defaultPropName && props[options.defaultPropName] !== undefined) {\n // No easy way to coerce TProps[TDefaultProp] to match TProps[TProp] in generic typings, so cast it here.\n defaultValue = props[options.defaultPropName];\n }\n else {\n defaultValue = options && options.defaultPropValue;\n }\n }\n var _a = React.useState(defaultValue), state = _a[0], setState = _a[1];\n if (props[propName] !== undefined) {\n return [props[propName], setState];\n }\n else {\n return [state, setState];\n }\n}\n/**\n * Simple controlled helper that gives priority to props value and falls back to derived value.\n *\n * @param props - The props object containing controlled prop values.\n * @param propName - The controlled prop name.\n * @param derivedValue - Derived value. Returned when controlled value is not present.\n */\nexport function getControlledDerivedProps(props, propName, derivedValue) {\n if (props[propName] !== undefined) {\n return props[propName];\n }\n else {\n return derivedValue;\n }\n}\n//# sourceMappingURL=controlled.js.map" - }, - { - "id": "+EKj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/MessageBar.js", - "index": null, - "index2": null, - "size": 85, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBar", - "loc": "48:0-29" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./MessageBar", - "loc": "48:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "MessageBar", - "MessageBarBase", - "MessageBarType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/MessageBar/index';\n//# sourceMappingURL=MessageBar.js.map" - }, - { - "id": "+FJf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SpinButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/SpinButton.js", - "index": null, - "index2": null, - "size": 85, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SpinButton", - "loc": "74:0-29" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SpinButton", - "loc": "74:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "KeyboardSpinDirection", - "SpinButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/SpinButton/index';\n//# sourceMappingURL=SpinButton.js.map" - }, - { - "id": "+G3N", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "name": "./node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "index": null, - "index2": null, - "size": 1015, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./safeSetTimeout", - "loc": "52:0-33" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./safeSetTimeout", - "loc": "52:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "safeSetTimeout" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { extendComponent } from './extendComponent';\n/**\n * Generates a function to be attached to a React component, which can be called\n * as a replacement to setTimeout. In-flight async calls will be auto canceled if the component\n * is unmounting before the async code is executed, preventing bugs where code\n * accesses things within the component after being unmounted.\n */\nexport var safeSetTimeout = function (component) {\n var activeTimeouts;\n return function (cb, duration) {\n if (!activeTimeouts) {\n activeTimeouts = new Set();\n extendComponent(component, {\n componentWillUnmount: function () {\n activeTimeouts.forEach(function (id) { return clearTimeout(id); });\n },\n });\n }\n var timeoutId = setTimeout(function () {\n activeTimeouts.delete(timeoutId);\n cb();\n }, duration);\n activeTimeouts.add(timeoutId);\n };\n};\n//# sourceMappingURL=safeSetTimeout.js.map" - }, - { - "id": "+K+b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneArrayBuffer.js", - "name": "./node_modules/lodash/_cloneArrayBuffer.js", - "index": 541, - "index2": 534, - "size": 449, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "issuerId": "wrZu", - "issuerName": "./node_modules/lodash/_initCloneByTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "XYm9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneDataView.js", - "module": "./node_modules/lodash/_cloneDataView.js", - "moduleName": "./node_modules/lodash/_cloneDataView.js", - "type": "cjs require", - "userRequest": "./_cloneArrayBuffer", - "loc": "1:23-53" - }, - { - "moduleId": "wrZu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "module": "./node_modules/lodash/_initCloneByTag.js", - "moduleName": "./node_modules/lodash/_initCloneByTag.js", - "type": "cjs require", - "userRequest": "./_cloneArrayBuffer", - "loc": "1:23-53" - }, - { - "moduleId": "yP5f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneTypedArray.js", - "module": "./node_modules/lodash/_cloneTypedArray.js", - "moduleName": "./node_modules/lodash/_cloneTypedArray.js", - "type": "cjs require", - "userRequest": "./_cloneArrayBuffer", - "loc": "1:23-53" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var Uint8Array = require('./_Uint8Array');\n\n/**\n * Creates a clone of `arrayBuffer`.\n *\n * @private\n * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n * @returns {ArrayBuffer} Returns the cloned array buffer.\n */\nfunction cloneArrayBuffer(arrayBuffer) {\n var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n return result;\n}\n\nmodule.exports = cloneArrayBuffer;\n" - }, - { - "id": "+KCX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Sticky/index.js", - "index": null, - "index2": null, - "size": 91, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Sticky.js", - "issuerId": "KJoR", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Sticky.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "KJoR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Sticky.js", - "name": "./node_modules/office-ui-fabric-react/lib/Sticky.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "KJoR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Sticky.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Sticky/index", - "loc": "1:0-42" - }, - { - "moduleId": "KJoR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Sticky.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Sticky/index", - "loc": "1:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "Sticky", - "StickyPositionType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './Sticky';\nexport * from './Sticky.types';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "+Uuy", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Checkbox.js", - "name": "./node_modules/office-ui-fabric-react/lib/Checkbox.js", - "index": null, - "index2": null, - "size": 81, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Checkbox", - "loc": "10:0-27" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Checkbox", - "loc": "10:0-27" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Checkbox", - "loc": "6:0-42" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Checkbox", - "loc": "2:0-63" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Checkbox", - "loc": "5:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "Checkbox", - "CheckboxBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Checkbox/index';\n//# sourceMappingURL=Checkbox.js.map" - }, - { - "id": "+Vxm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "index": null, - "index2": null, - "size": 382, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "issuerId": "II1S", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js" - }, - { - "id": "II1S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "II1S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "type": "harmony side effect evaluation", - "userRequest": "./HoverCard.styles", - "loc": "2:0-47" - }, - { - "moduleId": "II1S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "type": "harmony import specifier", - "userRequest": "./HoverCard.styles", - "loc": "4:45-54" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n host: 'ms-HoverCard-host',\n};\nexport function getStyles(props) {\n var className = props.className, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n host: [classNames.host, className],\n };\n}\n//# sourceMappingURL=HoverCard.styles.js.map" - }, - { - "id": "+WGp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "index": null, - "index2": null, - "size": 93, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FloatingPicker", - "loc": "30:0-33" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FloatingPicker", - "loc": "30:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "BaseFloatingPicker", - "BaseFloatingPeoplePicker", - "FloatingPeoplePicker", - "createItem", - "SuggestionsStore", - "SuggestionItemType", - "SuggestionsHeaderFooterItem", - "SuggestionsControl", - "SuggestionsCore" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/FloatingPicker/index';\n//# sourceMappingURL=FloatingPicker.js.map" - }, - { - "id": "+iFO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "name": "./node_modules/lodash/_initCloneObject.js", - "index": 547, - "index2": 541, - "size": 486, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_initCloneObject", - "loc": "15:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseCreate = require('./_baseCreate'),\n getPrototype = require('./_getPrototype'),\n isPrototype = require('./_isPrototype');\n\n/**\n * Initializes an object clone.\n *\n * @private\n * @param {Object} object The object to clone.\n * @returns {Object} Returns the initialized clone.\n */\nfunction initCloneObject(object) {\n return (typeof object.constructor == 'function' && !isPrototype(object))\n ? baseCreate(getPrototype(object))\n : {};\n}\n\nmodule.exports = initCloneObject;\n" - }, - { - "id": "+vuT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "index": null, - "index2": null, - "size": 2571, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "issuerId": "FaLo", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "nqDX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ComboBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/ComboBox.js" - }, - { - "id": "FaLo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "FaLo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./VirtualizedComboBox", - "loc": "3:0-38" - }, - { - "moduleId": "FaLo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "type": "harmony export imported specifier", - "userRequest": "./VirtualizedComboBox", - "loc": "3:0-38" - } - ], - "usedExports": false, - "providedExports": [ - "VirtualizedComboBox" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { ComboBox } from './ComboBox';\nimport { List } from '../../List';\nimport { initializeComponentRef } from '../../Utilities';\nvar VirtualizedComboBox = /** @class */ (function (_super) {\n __extends(VirtualizedComboBox, _super);\n function VirtualizedComboBox(props) {\n var _this = _super.call(this, props) || this;\n /** The combo box element */\n _this._comboBox = React.createRef();\n /** The virtualized list element */\n _this._list = React.createRef();\n _this._onRenderList = function (props) {\n var id = props.id, onRenderItem = props.onRenderItem;\n // Render virtualized list\n return (React.createElement(List, { componentRef: _this._list, role: \"listbox\", id: id + \"-list\", \"aria-labelledby\": id + \"-label\", items: props.options, \n // eslint-disable-next-line react/jsx-no-bind\n onRenderCell: onRenderItem ? function (item) { return onRenderItem(item); } : function () { return null; } }));\n };\n _this._onScrollToItem = function (itemIndex) {\n // We are using the List component, call scrollToIndex\n _this._list.current && _this._list.current.scrollToIndex(itemIndex);\n };\n initializeComponentRef(_this);\n return _this;\n }\n Object.defineProperty(VirtualizedComboBox.prototype, \"selectedOptions\", {\n /**\n * All selected options\n */\n get: function () {\n if (this._comboBox.current) {\n return this._comboBox.current.selectedOptions;\n }\n return [];\n },\n enumerable: true,\n configurable: true\n });\n VirtualizedComboBox.prototype.dismissMenu = function () {\n if (this._comboBox.current) {\n return this._comboBox.current.dismissMenu();\n }\n };\n VirtualizedComboBox.prototype.focus = function (shouldOpenOnFocus, useFocusAsync) {\n if (this._comboBox.current) {\n this._comboBox.current.focus(shouldOpenOnFocus, useFocusAsync);\n return true;\n }\n return false;\n };\n VirtualizedComboBox.prototype.render = function () {\n return (React.createElement(ComboBox, __assign({}, this.props, { componentRef: this._comboBox, onRenderList: this._onRenderList, onScrollToItem: this._onScrollToItem })));\n };\n return VirtualizedComboBox;\n}(React.Component));\nexport { VirtualizedComboBox };\n//# sourceMappingURL=VirtualizedComboBox.js.map" - }, - { - "id": "//8a", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "index": 111, - "index2": 99, - "size": 2407, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "8:39-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "34:108-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "36:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "93:39-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "122:43-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "465:43-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "578:54-62" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./FontIcon", - "loc": "7:0-44" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./FontIcon", - "loc": "37:26-40" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FontIcon", - "loc": "4:0-27" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FontIcon", - "loc": "4:0-27" - } - ], - "usedExports": [ - "FontIcon", - "getIconContent" - ], - "providedExports": [ - "getIconContent", - "FontIcon", - "getFontIcon" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { classNames, MS_ICON } from './Icon.styles';\nimport { css, getNativeProps, htmlElementProperties, memoizeFunction } from '../../Utilities';\nimport { getIcon } from '../../Styling';\nexport var getIconContent = memoizeFunction(function (iconName) {\n var _a = getIcon(iconName) || {\n subset: {},\n code: undefined,\n }, code = _a.code, subset = _a.subset;\n if (!code) {\n return null;\n }\n return {\n children: code,\n iconClassName: subset.className,\n fontFamily: subset.fontFace && subset.fontFace.fontFamily,\n };\n}, undefined, true /*ignoreNullOrUndefinedResult */);\n/**\n * Fast icon component which only supports font glyphs (not images) and can't be targeted by customizations.\n * To style the icon, use `className` or reference `ms-Icon` in CSS.\n * {@docCategory Icon}\n */\nexport var FontIcon = function (props) {\n var iconName = props.iconName, className = props.className, _a = props.style, style = _a === void 0 ? {} : _a;\n var iconContent = getIconContent(iconName) || {};\n var iconClassName = iconContent.iconClassName, children = iconContent.children, fontFamily = iconContent.fontFamily;\n var nativeProps = getNativeProps(props, htmlElementProperties);\n var containerProps = props['aria-label']\n ? {}\n : {\n role: 'presentation',\n 'aria-hidden': true,\n };\n return (React.createElement(\"i\", __assign({ \"data-icon-name\": iconName }, containerProps, nativeProps, { className: css(MS_ICON, classNames.root, iconClassName, !iconName && classNames.placeholder, className), \n // Apply the font family this way to ensure it doesn't get overridden by Fabric Core ms-Icon styles\n // https://github.com/microsoft/fluentui/issues/10449\n style: __assign({ fontFamily: fontFamily }, style) }), children));\n};\n/**\n * Memoized helper for rendering a FontIcon.\n * @param iconName - The name of the icon to use from the icon font.\n * @param className - Class name for styling the icon.\n * @param ariaLabel - Label for the icon for the benefit of screen readers.\n * {@docCategory Icon}\n */\nexport var getFontIcon = memoizeFunction(function (iconName, className, ariaLabel) {\n return FontIcon({ iconName: iconName, className: className, 'aria-label': ariaLabel });\n});\n//# sourceMappingURL=FontIcon.js.map" - }, - { - "id": "//Os", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "index": null, - "index2": null, - "size": 85, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../KeytipData", - "loc": "5:0-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../KeytipData", - "loc": "5:0-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../KeytipData", - "loc": "6:0-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../KeytipData", - "loc": "9:0-46" - } - ], - "usedExports": false, - "providedExports": [ - "KeytipData" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "export * from './components/KeytipData/index';\n//# sourceMappingURL=KeytipData.js.map" - }, - { - "id": "/9aa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSymbol.js", - "name": "./node_modules/lodash/isSymbol.js", - "index": 556, - "index2": 547, - "size": 682, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toKey.js", - "issuerId": "9Nap", - "issuerName": "./node_modules/lodash/_toKey.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - }, - { - "id": "9Nap", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toKey.js", - "name": "./node_modules/lodash/_toKey.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "9Nap", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toKey.js", - "module": "./node_modules/lodash/_toKey.js", - "moduleName": "./node_modules/lodash/_toKey.js", - "type": "cjs require", - "userRequest": "./isSymbol", - "loc": "1:15-36" - }, - { - "moduleId": "9ggG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isKey.js", - "module": "./node_modules/lodash/_isKey.js", - "moduleName": "./node_modules/lodash/_isKey.js", - "type": "cjs require", - "userRequest": "./isSymbol", - "loc": "2:15-36" - }, - { - "moduleId": "zoYe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseToString.js", - "module": "./node_modules/lodash/_baseToString.js", - "moduleName": "./node_modules/lodash/_baseToString.js", - "type": "cjs require", - "userRequest": "./isSymbol", - "loc": "4:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var baseGetTag = require('./_baseGetTag'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar symbolTag = '[object Symbol]';\n\n/**\n * Checks if `value` is classified as a `Symbol` primitive or object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n * @example\n *\n * _.isSymbol(Symbol.iterator);\n * // => true\n *\n * _.isSymbol('abc');\n * // => false\n */\nfunction isSymbol(value) {\n return typeof value == 'symbol' ||\n (isObjectLike(value) && baseGetTag(value) == symbolTag);\n}\n\nmodule.exports = isSymbol;\n" - }, - { - "id": "/A2d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/telemetry-js/dist/index.js", - "name": "./node_modules/@pnp/telemetry-js/dist/index.js", - "index": 14, - "index2": 10, - "size": 5072, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/telemetry-js", - "loc": "12:0-45" - }, - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/telemetry-js", - "loc": "18:20-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/telemetry-js", - "loc": "12:0-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/telemetry-js", - "loc": "25:20-32" - } - ], - "usedExports": [ - "default" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "\"use strict\";\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nObject.defineProperty(exports, \"__esModule\", { value: true });\nrequire(\"whatwg-fetch\");\nvar PNP_TELEMETRY_URL = \"https://pnptelemetryproxy.azurewebsites.net/track\";\n/**\n * PnP Telemetry class\n *\n * This can be used to track PnP client-side events\n */\nvar PnPTelemetry = /** @class */ (function () {\n function PnPTelemetry() {\n this.events = [];\n this.timeout = null;\n this.tracking = true;\n }\n /**\n * Initialize the telemetry class and return the instance\n */\n PnPTelemetry.getInstance = function () {\n if (typeof window.pnpTelemetry === \"undefined\") {\n window.pnpTelemetry = new PnPTelemetry();\n }\n return window.pnpTelemetry;\n };\n /**\n * Opt out of tracking\n */\n PnPTelemetry.prototype.optOut = function () {\n this.tracking = false;\n };\n /**\n * Track the event information\n *\n * @param name\n * @param props\n */\n PnPTelemetry.prototype.trackEvent = function (name, properties) {\n if (this.tracking) {\n this.events.push({ name: name, properties: properties });\n this.debounceTracking();\n }\n };\n /**\n * Delay event tracking\n */\n PnPTelemetry.prototype.debounceTracking = function () {\n return __awaiter(this, void 0, void 0, function () {\n var _this = this;\n return __generator(this, function (_a) {\n // Check if timeout was defined\n if (this.timeout) {\n clearTimeout(this.timeout);\n }\n // Set a new timeout\n this.timeout = setTimeout(function () { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, fetch(PNP_TELEMETRY_URL, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json'\n },\n body: JSON.stringify(this.events)\n })];\n case 1:\n _a.sent();\n // Reset the events\n this.events = [];\n return [2 /*return*/];\n }\n });\n }); }, 1000);\n return [2 /*return*/];\n });\n });\n };\n return PnPTelemetry;\n}());\nexports.default = PnPTelemetry;\n" - }, - { - "id": "/DGj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/IPropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/IPropertyFieldMultiSelect.js", - "index": 907, - "index2": 904, - "size": 53, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerId": "p38f", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldMultiSelect", - "loc": "1:0-44" - }, - { - "moduleId": "p38f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldMultiSelect", - "loc": "1:0-44" - } - ], - "usedExports": [ - "PropertyFieldMultiSelect" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldMultiSelect.js.map" - }, - { - "id": "/LPW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "index": null, - "index2": null, - "size": 8264, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "issuerId": "hrfb", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "wYsl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ChoiceGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/ChoiceGroup.js" - }, - { - "id": "siR0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js" - }, - { - "id": "hrfb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hrfb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "type": "harmony side effect evaluation", - "userRequest": "./ChoiceGroup.base", - "loc": "2:0-53" - }, - { - "moduleId": "hrfb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "type": "harmony import specifier", - "userRequest": "./ChoiceGroup.base", - "loc": "4:32-47" - }, - { - "moduleId": "siR0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ChoiceGroup.base", - "loc": "2:0-35" - }, - { - "moduleId": "siR0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ChoiceGroup.base", - "loc": "2:0-35" - } - ], - "usedExports": false, - "providedExports": [ - "ChoiceGroupBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Label } from '../../Label';\nimport { initializeComponentRef, warnDeprecations, warnMutuallyExclusive, classNamesFunction, find, getId, isControlled, getNativeProps, divProperties, setFocusVisibility, } from '../../Utilities';\nimport { ChoiceGroupOption } from './ChoiceGroupOption/index';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory ChoiceGroup}\n */\nvar ChoiceGroupBase = /** @class */ (function (_super) {\n __extends(ChoiceGroupBase, _super);\n function ChoiceGroupBase(props) {\n var _this = _super.call(this, props) || this;\n _this._focusCallbacks = {};\n _this._changeCallbacks = {};\n _this._onBlur = function (ev, option) {\n _this.setState({\n keyFocused: undefined,\n });\n };\n initializeComponentRef(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('ChoiceGroup', props, { onChanged: 'onChange' });\n warnMutuallyExclusive('ChoiceGroup', props, {\n selectedKey: 'defaultSelectedKey',\n });\n }\n var defaultSelectedKey = props.defaultSelectedKey, _a = props.options, options = _a === void 0 ? [] : _a;\n var validDefaultSelectedKey = !_isControlled(props) &&\n defaultSelectedKey !== undefined &&\n options.some(function (option) { return option.key === defaultSelectedKey; });\n _this.state = {\n keyChecked: validDefaultSelectedKey ? defaultSelectedKey : _this._getKeyChecked(props),\n };\n _this._id = getId('ChoiceGroup');\n _this._labelId = getId('ChoiceGroupLabel');\n return _this;\n }\n Object.defineProperty(ChoiceGroupBase.prototype, \"checkedOption\", {\n /**\n * Gets the current checked option.\n */\n get: function () {\n var _this = this;\n var _a = this.props.options, options = _a === void 0 ? [] : _a;\n return find(options, function (value) { return value.key === _this.state.keyChecked; });\n },\n enumerable: true,\n configurable: true\n });\n ChoiceGroupBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n // Only update if a new props object has been passed in (don't care about state updates)\n if (prevProps !== this.props) {\n var newKeyChecked = this._getKeyChecked(this.props);\n var oldKeyChecked = this._getKeyChecked(prevProps);\n if (newKeyChecked !== oldKeyChecked) {\n this.setState({\n keyChecked: newKeyChecked,\n });\n }\n }\n };\n ChoiceGroupBase.prototype.render = function () {\n var _this = this;\n var _a = this.props, className = _a.className, theme = _a.theme, styles = _a.styles, _b = _a.options, options = _b === void 0 ? [] : _b, label = _a.label, required = _a.required, disabled = _a.disabled, name = _a.name;\n var _c = this.state, keyChecked = _c.keyChecked, keyFocused = _c.keyFocused;\n var divProps = getNativeProps(this.props, divProperties, [\n 'onChange',\n 'className',\n 'required',\n ]);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n optionsContainIconOrImage: options.some(function (option) { return !!(option.iconProps || option.imageSrc); }),\n });\n var labelId = this._id + '-label';\n var ariaLabelledBy = this.props.ariaLabelledBy || (label ? labelId : this.props['aria-labelledby']);\n // TODO (Fabric 8?) - if possible, move `root` class to the actual root and eliminate\n // `applicationRole` class (but the div structure will stay the same by necessity)\n return (\n // eslint-disable-next-line deprecation/deprecation\n React.createElement(\"div\", __assign({ className: classNames.applicationRole }, divProps),\n React.createElement(\"div\", __assign({ className: classNames.root, role: \"radiogroup\" }, (ariaLabelledBy && { 'aria-labelledby': ariaLabelledBy })),\n label && (React.createElement(Label, { className: classNames.label, required: required, id: labelId, disabled: disabled }, label)),\n React.createElement(\"div\", { className: classNames.flexContainer }, options.map(function (option) {\n var innerOptionProps = __assign(__assign({}, option), { focused: option.key === keyFocused, checked: option.key === keyChecked, disabled: option.disabled || disabled, id: _this._getOptionId(option), labelId: _this._getOptionLabelId(option), name: name || _this._id, required: required });\n return (React.createElement(ChoiceGroupOption, __assign({ key: option.key, onBlur: _this._onBlur, onFocus: _this._onFocus(option.key), onChange: _this._onChange(option.key) }, innerOptionProps)));\n })))));\n };\n ChoiceGroupBase.prototype.focus = function () {\n var _a = this.props.options, options = _a === void 0 ? [] : _a;\n var optionToFocus = this.checkedOption || options.filter(function (option) { return !option.disabled; })[0];\n var elementToFocus = optionToFocus && document.getElementById(this._getOptionId(optionToFocus));\n if (elementToFocus) {\n elementToFocus.focus();\n setFocusVisibility(true, elementToFocus);\n }\n };\n ChoiceGroupBase.prototype._onFocus = function (key) {\n var _this = this;\n // This extra mess is necessary because React won't pass the `key` prop through to ChoiceGroupOption\n if (!this._focusCallbacks[key]) {\n this._focusCallbacks[key] = function (ev, option) {\n _this.setState({\n keyFocused: key,\n });\n };\n }\n return this._focusCallbacks[key];\n };\n ChoiceGroupBase.prototype._onChange = function (key) {\n var _this = this;\n // This extra mess is necessary because React won't pass the `key` prop through to ChoiceGroupOption\n if (!this._changeCallbacks[key]) {\n this._changeCallbacks[key] = function (evt, option) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, onChanged = _a.onChanged, onChange = _a.onChange;\n // Only manage state in uncontrolled scenarios.\n if (!_isControlled(_this.props)) {\n _this.setState({\n keyChecked: key,\n });\n }\n // Get the original option without the `key` prop removed\n var originalOption = find(_this.props.options || [], function (value) { return value.key === key; });\n // TODO: onChanged deprecated, remove else if after 07/17/2017 when onChanged has been removed.\n if (onChange) {\n onChange(evt, originalOption);\n }\n else if (onChanged) {\n onChanged(originalOption, evt);\n }\n };\n }\n return this._changeCallbacks[key];\n };\n /**\n * Returns `selectedKey` if provided, or the key of the first option with the `checked` prop set.\n */\n ChoiceGroupBase.prototype._getKeyChecked = function (props) {\n if (props.selectedKey !== undefined) {\n return props.selectedKey;\n }\n var _a = props.options, options = _a === void 0 ? [] : _a;\n // eslint-disable-next-line deprecation/deprecation\n var optionsChecked = options.filter(function (option) { return option.checked; });\n return optionsChecked[0] && optionsChecked[0].key;\n };\n ChoiceGroupBase.prototype._getOptionId = function (option) {\n return option.id || this._id + \"-\" + option.key;\n };\n ChoiceGroupBase.prototype._getOptionLabelId = function (option) {\n return option.labelId || this._labelId + \"-\" + option.key;\n };\n return ChoiceGroupBase;\n}(React.Component));\nexport { ChoiceGroupBase };\nfunction _isControlled(props) {\n return isControlled(props, 'selectedKey');\n}\n//# sourceMappingURL=ChoiceGroup.base.js.map" - }, - { - "id": "/Mmo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "index": null, - "index2": null, - "size": 345, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "issuerId": "7wj7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "pEld", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js" - }, - { - "id": "7wj7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7wj7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPickerGridCell", - "loc": "3:0-38" - }, - { - "moduleId": "7wj7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ColorPickerGridCell", - "loc": "3:0-38" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPickerGridCell", - "loc": "5:0-60" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorPickerGridCell", - "loc": "42:40-59" - } - ], - "usedExports": false, - "providedExports": [ - "ColorPickerGridCell" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { ColorPickerGridCellBase } from './ColorPickerGridCell.base';\nimport { getStyles } from './ColorPickerGridCell.styles';\nexport var ColorPickerGridCell = styled(ColorPickerGridCellBase, getStyles, undefined, { scope: 'ColorPickerGridCell' }, true);\n//# sourceMappingURL=ColorPickerGridCell.js.map" - }, - { - "id": "/TvW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/IPropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/IPropertyPaneWebPartInformation.js", - "index": 914, - "index2": 911, - "size": 59, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerId": "QxFg", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyPaneWebPartInformation", - "loc": "1:0-50" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyPaneWebPartInformation", - "loc": "1:0-50" - } - ], - "usedExports": [ - "PropertyPaneWebPartInformation" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyPaneWebPartInformation.js.map" - }, - { - "id": "/b11", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Layer.js", - "index": null, - "index2": null, - "size": 95, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Layer", - "loc": "44:0-24" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Layer", - "loc": "44:0-24" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Layer", - "loc": "5:0-36" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Layer", - "loc": "4:0-36" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Layer", - "loc": "5:0-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Layer", - "loc": "4:0-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Layer", - "loc": "7:0-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Layer", - "loc": "7:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "Layer", - "LayerBase", - "LayerHost" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "import './version';\nexport * from './components/Layer/index';\n//# sourceMappingURL=Layer.js.map" - }, - { - "id": "/f8K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/FabricPerformance.js", - "name": "./node_modules/@uifabric/utilities/lib/FabricPerformance.js", - "index": null, - "index2": null, - "size": 1886, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FabricPerformance", - "loc": "6:0-36" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FabricPerformance", - "loc": "6:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "FabricPerformance" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "var now = function () {\n return typeof performance !== 'undefined' && !!performance.now ? performance.now() : Date.now();\n};\nvar RESET_INTERVAL = 3 * 60 * 1000; // auto reset every 3 minutes\n/**\n * Performance helper class for measuring things.\n *\n * @public\n * {@docCategory FabricPerformance}\n */\nvar FabricPerformance = /** @class */ (function () {\n function FabricPerformance() {\n }\n /**\n * Measures execution time of the given syncronous function. If the same logic is executed multiple times,\n * each individual measurement will be collected as well the overall numbers.\n * @param name - The name of this measurement\n * @param func - The logic to be measured for execution time\n */\n FabricPerformance.measure = function (name, func) {\n if (FabricPerformance._timeoutId) {\n FabricPerformance.setPeriodicReset();\n }\n var start = now();\n func();\n var end = now();\n var measurement = FabricPerformance.summary[name] || {\n totalDuration: 0,\n count: 0,\n all: [],\n };\n var duration = end - start;\n measurement.totalDuration += duration;\n measurement.count++;\n measurement.all.push({\n duration: duration,\n timeStamp: end,\n });\n FabricPerformance.summary[name] = measurement;\n };\n FabricPerformance.reset = function () {\n FabricPerformance.summary = {};\n clearTimeout(FabricPerformance._timeoutId);\n FabricPerformance._timeoutId = NaN;\n };\n FabricPerformance.setPeriodicReset = function () {\n FabricPerformance._timeoutId = setTimeout(function () { return FabricPerformance.reset(); }, RESET_INTERVAL);\n };\n FabricPerformance.summary = {};\n return FabricPerformance;\n}());\nexport { FabricPerformance };\n//# sourceMappingURL=FabricPerformance.js.map" - }, - { - "id": "/j92", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "index": null, - "index2": null, - "size": 20640, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "issuerId": "oJku", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "B3ms", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DatePicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/DatePicker.js" - }, - { - "id": "LxWX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js" - }, - { - "id": "oJku", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LxWX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DatePicker.base", - "loc": "2:0-34" - }, - { - "moduleId": "LxWX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DatePicker.base", - "loc": "2:0-34" - }, - { - "moduleId": "oJku", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./DatePicker.base", - "loc": "2:0-51" - }, - { - "moduleId": "oJku", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "type": "harmony import specifier", - "userRequest": "./DatePicker.base", - "loc": "7:31-45" - } - ], - "usedExports": false, - "providedExports": [ - "DatePickerBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { KeyCodes, classNamesFunction, getId, getNativeProps, divProperties, css, initializeComponentRef, } from '../../Utilities';\nimport { Calendar, DayOfWeek } from '../../Calendar';\nimport { FirstWeekOfYear } from '../../utilities/dateValues/DateValues';\nimport { Callout } from '../../Callout';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { TextField } from '../../TextField';\nimport { compareDates, compareDatePart } from '../../utilities/dateMath/DateMath';\nimport { FocusTrapZone } from '../../FocusTrapZone';\nvar getClassNames = classNamesFunction();\nvar DEFAULT_STRINGS = {\n months: [\n 'January',\n 'February',\n 'March',\n 'April',\n 'May',\n 'June',\n 'July',\n 'August',\n 'September',\n 'October',\n 'November',\n 'December',\n ],\n shortMonths: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],\n days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],\n shortDays: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],\n goToToday: 'Go to today',\n prevMonthAriaLabel: 'Go to previous month',\n nextMonthAriaLabel: 'Go to next month',\n prevYearAriaLabel: 'Go to previous year',\n nextYearAriaLabel: 'Go to next year',\n prevYearRangeAriaLabel: 'Previous year range',\n nextYearRangeAriaLabel: 'Next year range',\n closeButtonAriaLabel: 'Close date picker',\n weekNumberFormatString: 'Week number {0}',\n};\nvar DatePickerBase = /** @class */ (function (_super) {\n __extends(DatePickerBase, _super);\n function DatePickerBase(props) {\n var _this = _super.call(this, props) || this;\n _this._calendar = React.createRef();\n _this._datePickerDiv = React.createRef();\n _this._textField = React.createRef();\n _this._onSelectDate = function (date) {\n var _a = _this.props, formatDate = _a.formatDate, onSelectDate = _a.onSelectDate;\n if (_this.props.calendarProps && _this.props.calendarProps.onSelectDate) {\n _this.props.calendarProps.onSelectDate(date);\n }\n _this.setState({\n selectedDate: date,\n formattedDate: formatDate && date ? formatDate(date) : '',\n });\n if (onSelectDate) {\n onSelectDate(date);\n }\n _this._calendarDismissed();\n };\n _this._onCalloutPositioned = function () {\n var shouldFocus = true;\n // If the user has specified that the callout shouldn't use initial focus, then respect\n // that and don't attempt to set focus. That will default to true within the callout\n // so we need to check if it's undefined here.\n if (_this.props.calloutProps && _this.props.calloutProps.setInitialFocus !== undefined) {\n shouldFocus = _this.props.calloutProps.setInitialFocus;\n }\n if (_this._calendar.current && shouldFocus) {\n _this._calendar.current.focus();\n }\n };\n _this._onTextFieldFocus = function (ev) {\n if (_this.props.disableAutoFocus) {\n return;\n }\n if (!_this.props.allowTextInput) {\n if (!_this._preventFocusOpeningPicker) {\n _this._showDatePickerPopup();\n }\n else {\n _this._preventFocusOpeningPicker = false;\n }\n }\n };\n _this._onTextFieldBlur = function (ev) {\n _this._validateTextInput();\n };\n _this._onTextFieldChanged = function (ev, newValue) {\n var _a = _this.props, allowTextInput = _a.allowTextInput, textField = _a.textField;\n if (allowTextInput) {\n if (_this.state.isDatePickerShown) {\n _this._dismissDatePickerPopup();\n }\n var _b = _this.props, isRequired = _b.isRequired, strings = _b.strings;\n _this.setState({\n errorMessage: isRequired && !newValue ? strings.isRequiredErrorMessage || ' ' : undefined,\n formattedDate: newValue,\n });\n }\n if (textField && textField.onChange) {\n textField.onChange(ev, newValue);\n }\n };\n _this._onTextFieldKeyDown = function (ev) {\n switch (ev.which) {\n case KeyCodes.enter:\n ev.preventDefault();\n ev.stopPropagation();\n if (!_this.state.isDatePickerShown) {\n _this._validateTextInput();\n _this._showDatePickerPopup();\n }\n else {\n // When DatePicker allows input date string directly,\n // it is expected to hit another enter to close the popup\n if (_this.props.allowTextInput) {\n _this._dismissDatePickerPopup();\n }\n }\n break;\n case KeyCodes.escape:\n _this._handleEscKey(ev);\n break;\n default:\n break;\n }\n };\n _this._onTextFieldClick = function (ev) {\n if (!_this.props.disableAutoFocus && !_this.state.isDatePickerShown && !_this.props.disabled) {\n _this._showDatePickerPopup();\n return;\n }\n if (_this.props.allowTextInput) {\n _this._dismissDatePickerPopup();\n }\n };\n _this._onIconClick = function (ev) {\n ev.stopPropagation();\n if (!_this.state.isDatePickerShown && !_this.props.disabled) {\n _this._showDatePickerPopup();\n }\n else if (_this.props.allowTextInput) {\n _this._dismissDatePickerPopup();\n }\n };\n _this._dismissDatePickerPopup = function () {\n if (_this.state.isDatePickerShown) {\n _this.setState({\n isDatePickerShown: false,\n }, function () {\n // setState is async, so we must call validate in a callback\n _this._validateTextInput();\n });\n }\n };\n /**\n * Callback for closing the calendar callout\n */\n _this._calendarDismissed = function () {\n _this._preventFocusOpeningPicker = true;\n _this._dismissDatePickerPopup();\n // don't need to focus the text box, if necessary the focusTrapZone will do it\n };\n _this._handleEscKey = function (ev) {\n if (_this.state.isDatePickerShown) {\n ev.stopPropagation();\n }\n _this._calendarDismissed();\n };\n _this._validateTextInput = function () {\n var _a = _this.props, isRequired = _a.isRequired, allowTextInput = _a.allowTextInput, strings = _a.strings, parseDateFromString = _a.parseDateFromString, onSelectDate = _a.onSelectDate, formatDate = _a.formatDate, minDate = _a.minDate, maxDate = _a.maxDate;\n var inputValue = _this.state.formattedDate;\n // Do validation only if DatePicker's popup is dismissed\n if (_this.state.isDatePickerShown) {\n return;\n }\n if (allowTextInput) {\n var date = null;\n if (inputValue) {\n // Don't parse if the selected date has the same formatted string as what we're about to parse.\n // The formatted string might be ambiguous (ex: \"1/2/3\" or \"New Year Eve\") and the parser might\n // not be able to come up with the exact same date.\n if (_this.state.selectedDate &&\n !_this.state.errorMessage &&\n formatDate &&\n formatDate(_this.state.selectedDate) === inputValue) {\n return;\n }\n date = parseDateFromString(inputValue);\n // Check if date is null, or date is Invalid Date\n if (!date || isNaN(date.getTime())) {\n // Reset invalid input field, if formatting is available\n if (formatDate) {\n date = _this.state.selectedDate;\n _this.setState({\n formattedDate: formatDate(date).toString(),\n });\n }\n _this.setState({\n errorMessage: strings.invalidInputErrorMessage || ' ',\n });\n }\n else {\n // Check against optional date boundaries\n if (_this._isDateOutOfBounds(date, minDate, maxDate)) {\n _this.setState({\n errorMessage: strings.isOutOfBoundsErrorMessage || ' ',\n });\n }\n else {\n _this.setState({\n selectedDate: date,\n errorMessage: '',\n });\n // When formatting is available:\n // If formatted date is valid, but is different from input, update with formatted date.\n // This occurs when an invalid date is entered twice.\n if (formatDate && formatDate(date) !== inputValue) {\n _this.setState({\n formattedDate: formatDate(date).toString(),\n });\n }\n }\n }\n }\n else {\n // Only show error for empty inputValue if it is a required field\n _this.setState({\n errorMessage: isRequired ? strings.isRequiredErrorMessage || ' ' : '',\n });\n }\n // Execute onSelectDate callback\n if (onSelectDate) {\n // If no input date string or input date string is invalid\n // date variable will be null, callback should expect null value for this case\n onSelectDate(date);\n }\n }\n else if (isRequired && !inputValue) {\n // Check when DatePicker is a required field but has NO input value\n _this.setState({\n errorMessage: strings.isRequiredErrorMessage || ' ',\n });\n }\n else {\n // Cleanup the error message\n _this.setState({\n errorMessage: '',\n });\n }\n };\n initializeComponentRef(_this);\n _this.state = _this._getDefaultState();\n _this._id = props.id || getId('DatePicker');\n _this._preventFocusOpeningPicker = false;\n return _this;\n }\n DatePickerBase.prototype.UNSAFE_componentWillReceiveProps = function (nextProps) {\n var formatDate = nextProps.formatDate, value = nextProps.value;\n if (compareDates(this.props.minDate, nextProps.minDate) &&\n compareDates(this.props.maxDate, nextProps.maxDate) &&\n this.props.isRequired === nextProps.isRequired &&\n compareDates(this.state.selectedDate, value) &&\n this.props.formatDate === formatDate) {\n // if the props we care about haven't changed, don't run validation or updates\n return;\n }\n this._setErrorMessage(true, nextProps);\n this._id = nextProps.id || this._id;\n // Issue# 1274: Check if the date value changed from old value, i.e., if indeed a new date is being\n // passed in or if the formatting function was modified. We only update the selected date if either of these\n // had a legit change. Note tha the bug will still repro when only the formatDate was passed in props and this\n // is the result of the onSelectDate callback, but this should be a rare scenario.\n var oldValue = this.state.selectedDate;\n if (!compareDates(oldValue, value) || this.props.formatDate !== formatDate) {\n this.setState({\n selectedDate: value || undefined,\n formattedDate: formatDate && value ? formatDate(value) : '',\n });\n }\n };\n DatePickerBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n if (prevState.isDatePickerShown && !this.state.isDatePickerShown) {\n // If DatePicker's menu (Calendar) is closed, run onAfterMenuDismiss\n if (this.props.onAfterMenuDismiss) {\n this.props.onAfterMenuDismiss();\n }\n }\n };\n DatePickerBase.prototype.render = function () {\n var _a = this.props, firstDayOfWeek = _a.firstDayOfWeek, strings = _a.strings, label = _a.label, theme = _a.theme, className = _a.className, styles = _a.styles, initialPickerDate = _a.initialPickerDate, isRequired = _a.isRequired, disabled = _a.disabled, ariaLabel = _a.ariaLabel, pickerAriaLabel = _a.pickerAriaLabel, placeholder = _a.placeholder, allowTextInput = _a.allowTextInput, borderless = _a.borderless, minDate = _a.minDate, maxDate = _a.maxDate, showCloseButton = _a.showCloseButton, calendarProps = _a.calendarProps, calloutProps = _a.calloutProps, textFieldProps = _a.textField, underlined = _a.underlined, allFocusable = _a.allFocusable, _b = _a.calendarAs, CalendarType = _b === void 0 ? Calendar : _b, tabIndex = _a.tabIndex;\n var _c = this.state, isDatePickerShown = _c.isDatePickerShown, formattedDate = _c.formattedDate, selectedDate = _c.selectedDate;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n disabled: disabled,\n label: !!label,\n isDatePickerShown: isDatePickerShown,\n });\n var calloutId = getId('DatePicker-Callout');\n var nativeProps = getNativeProps(this.props, divProperties, ['value']);\n var iconProps = textFieldProps && textFieldProps.iconProps;\n var textFieldId = textFieldProps && textFieldProps.id && textFieldProps.id !== this._id ? textFieldProps.id : this._id + '-label';\n return (React.createElement(\"div\", __assign({}, nativeProps, { className: classNames.root }),\n React.createElement(\"div\", { ref: this._datePickerDiv, \"aria-haspopup\": \"true\", \"aria-owns\": isDatePickerShown ? calloutId : undefined, className: classNames.wrapper },\n React.createElement(TextField, __assign({ role: \"combobox\", label: label, \"aria-expanded\": isDatePickerShown, ariaLabel: ariaLabel, \"aria-controls\": isDatePickerShown ? calloutId : undefined, required: isRequired, disabled: disabled, errorMessage: this._getErrorMessage(), placeholder: placeholder, borderless: borderless, value: formattedDate, componentRef: this._textField, underlined: underlined, tabIndex: tabIndex, readOnly: !allowTextInput }, textFieldProps, { id: textFieldId, className: css(classNames.textField, textFieldProps && textFieldProps.className), iconProps: __assign(__assign({ iconName: 'Calendar' }, iconProps), { className: css(classNames.icon, iconProps && iconProps.className), onClick: this._onIconClick }), onKeyDown: this._onTextFieldKeyDown, onFocus: this._onTextFieldFocus, onBlur: this._onTextFieldBlur, onClick: this._onTextFieldClick, onChange: this._onTextFieldChanged }))),\n isDatePickerShown && (React.createElement(Callout, __assign({ id: calloutId, role: \"dialog\", ariaLabel: pickerAriaLabel, isBeakVisible: false, gapSpace: 0, doNotLayer: false, target: this._datePickerDiv.current, directionalHint: DirectionalHint.bottomLeftEdge }, calloutProps, { className: css(classNames.callout, calloutProps && calloutProps.className), onDismiss: this._calendarDismissed, onPositioned: this._onCalloutPositioned }),\n React.createElement(FocusTrapZone, { isClickableOutsideFocusTrap: true, disableFirstFocus: this.props.disableAutoFocus, forceFocusInsideTrap: false },\n React.createElement(CalendarType, __assign({}, calendarProps, { onSelectDate: this._onSelectDate, onDismiss: this._calendarDismissed, isMonthPickerVisible: this.props.isMonthPickerVisible, showMonthPickerAsOverlay: this.props.showMonthPickerAsOverlay, today: this.props.today, value: selectedDate || initialPickerDate, firstDayOfWeek: firstDayOfWeek, strings: strings, highlightCurrentMonth: this.props.highlightCurrentMonth, highlightSelectedMonth: this.props.highlightSelectedMonth, showWeekNumbers: this.props.showWeekNumbers, firstWeekOfYear: this.props.firstWeekOfYear, showGoToToday: this.props.showGoToToday, dateTimeFormatter: this.props.dateTimeFormatter, minDate: minDate, maxDate: maxDate, componentRef: this._calendar, showCloseButton: showCloseButton, allFocusable: allFocusable })))))));\n };\n DatePickerBase.prototype.focus = function () {\n if (this._textField.current) {\n this._textField.current.focus();\n }\n };\n DatePickerBase.prototype.reset = function () {\n this.setState(this._getDefaultState());\n };\n DatePickerBase.prototype._setErrorMessage = function (setState, nextProps) {\n var _a = nextProps || this.props, isRequired = _a.isRequired, strings = _a.strings, value = _a.value, minDate = _a.minDate, maxDate = _a.maxDate, initialPickerDate = _a.initialPickerDate;\n var errorMessage = !initialPickerDate && isRequired && !value ? strings.isRequiredErrorMessage || ' ' : undefined;\n if (!errorMessage && value) {\n errorMessage = this._isDateOutOfBounds(value, minDate, maxDate)\n ? strings.isOutOfBoundsErrorMessage || ' '\n : undefined;\n }\n if (setState) {\n this.setState({\n errorMessage: errorMessage,\n });\n }\n return errorMessage;\n };\n DatePickerBase.prototype._showDatePickerPopup = function () {\n if (!this.state.isDatePickerShown) {\n this._preventFocusOpeningPicker = true;\n this.setState({\n isDatePickerShown: true,\n });\n }\n };\n DatePickerBase.prototype._getDefaultState = function (props) {\n if (props === void 0) { props = this.props; }\n return {\n selectedDate: props.value || undefined,\n formattedDate: props.formatDate && props.value ? props.formatDate(props.value) : '',\n isDatePickerShown: false,\n errorMessage: this._setErrorMessage(false),\n };\n };\n DatePickerBase.prototype._isDateOutOfBounds = function (date, minDate, maxDate) {\n return (!!minDate && compareDatePart(minDate, date) > 0) || (!!maxDate && compareDatePart(maxDate, date) < 0);\n };\n DatePickerBase.prototype._getErrorMessage = function () {\n if (this.state.isDatePickerShown) {\n return undefined;\n }\n return this.state.errorMessage;\n };\n DatePickerBase.defaultProps = {\n allowTextInput: false,\n formatDate: function (date) {\n if (date) {\n return date.toDateString();\n }\n return '';\n },\n parseDateFromString: function (dateStr) {\n var date = Date.parse(dateStr);\n if (date) {\n return new Date(date);\n }\n return null;\n },\n firstDayOfWeek: DayOfWeek.Sunday,\n initialPickerDate: new Date(),\n isRequired: false,\n isMonthPickerVisible: true,\n showMonthPickerAsOverlay: false,\n strings: DEFAULT_STRINGS,\n highlightCurrentMonth: false,\n highlightSelectedMonth: false,\n borderless: false,\n pickerAriaLabel: 'Calendar',\n showWeekNumbers: false,\n firstWeekOfYear: FirstWeekOfYear.FirstDay,\n showGoToToday: true,\n dateTimeFormatter: undefined,\n showCloseButton: false,\n underlined: false,\n allFocusable: false,\n };\n return DatePickerBase;\n}(React.Component));\nexport { DatePickerBase };\n//# sourceMappingURL=DatePicker.base.js.map" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js", - "index": null, - "index2": null, - "size": 527, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/react-hooks", - "loc": "3:0-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/react-hooks", - "loc": "20:0-49" - } - ], - "usedExports": false, - "providedExports": [ - "useAsync", - "useBoolean", - "useConst", - "useConstCallback", - "useControllableValue", - "useForceUpdate", - "useId", - "useMergedRefs", - "useOnEvent", - "usePrevious", - "useRefEffect", - "useSetInterval", - "useSetTimeout", - "useTarget", - "useWarnings" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import './version';\nexport * from './useAsync';\nexport * from './useBoolean';\nexport * from './useConst';\nexport * from './useConstCallback';\nexport * from './useControllableValue';\nexport * from './useForceUpdate';\nexport * from './useId';\nexport * from './useMergedRefs';\nexport * from './useOnEvent';\nexport * from './usePrevious';\nexport * from './useRefEffect';\nexport * from './useSetInterval';\nexport * from './useSetTimeout';\nexport * from './useTarget';\nexport * from './useWarnings';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "/nNC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "index": null, - "index2": null, - "size": 712, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "issuerId": "5YQ7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js" - }, - { - "id": "II1S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js" - }, - { - "id": "uAzL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js" - }, - { - "id": "5YQ7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "5YQ7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "type": "harmony side effect evaluation", - "userRequest": "./PlainCard.styles", - "loc": "2:0-47" - }, - { - "moduleId": "5YQ7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "type": "harmony import specifier", - "userRequest": "./PlainCard.styles", - "loc": "4:45-54" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames, HighContrastSelector } from '../../../Styling';\nvar GlobalClassNames = {\n root: 'ms-PlainCard-root',\n};\nexport function getStyles(props) {\n var _a;\n var theme = props.theme, className = props.className;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n pointerEvents: 'auto',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n border: '1px solid WindowText',\n },\n _a),\n },\n className,\n ],\n };\n}\n//# sourceMappingURL=PlainCard.styles.js.map" - }, - { - "id": "/oVv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "index": null, - "index2": null, - "size": 65, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "issuerId": "GiGj", - "issuerName": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "GiGj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "GiGj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/ActivityItem/index", - "loc": "1:0-48" - }, - { - "moduleId": "GiGj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "type": "harmony export imported specifier", - "userRequest": "./components/ActivityItem/index", - "loc": "1:0-48" - } - ], - "usedExports": false, - "providedExports": [ - "ActivityItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './ActivityItem';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "/olZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/math.js", - "name": "./node_modules/@uifabric/utilities/lib/math.js", - "index": null, - "index2": null, - "size": 3244, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "54:75-93" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:23-37" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "98:23-37" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./math", - "loc": "39:0-23" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./math", - "loc": "39:0-23" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "156:39-63" - } - ], - "usedExports": false, - "providedExports": [ - "getDistanceBetweenPoints", - "fitContentToBounds", - "calculatePrecision", - "precisionRound" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * Determines the distance between two points.\n *\n * @public\n */\n/* eslint-disable deprecation/deprecation */\nexport function getDistanceBetweenPoints(point1, point2) {\n var left1 = point1.left || point1.x || 0;\n var top1 = point1.top || point1.y || 0;\n var left2 = point2.left || point2.x || 0;\n var top2 = point2.top || point2.y || 0;\n /* eslint-enable deprecation/deprecation */\n var distance = Math.sqrt(Math.pow(left1 - left2, 2) + Math.pow(top1 - top2, 2));\n return distance;\n}\n/**\n * Produces a proportionally-scaled version of an input content size when fit to a bounding size.\n * Given a `contentSize` and a `boundsSize`, this function scales `contentSize` proportionally\n * using either `contain` or `cover` fit behaviors.\n * Use this function to pre-calculate the layout for the CSS `object-fit` and `background-fit` behaviors.\n * With `contain`, the output size must be the largest it can be while completely within the `boundsSize`.\n * With `cover`, the output size must be the smallest it can be while completely around the `boundsSize`.\n * By default, there is a `maxScale` value of 1, which prevents the `contentSize` from being scaled larger.\n *\n * @param options - the options for the bounds fit operation\n */\nexport function fitContentToBounds(options) {\n var contentSize = options.contentSize, boundsSize = options.boundsSize, _a = options.mode, mode = _a === void 0 ? 'contain' : _a, _b = options.maxScale, maxScale = _b === void 0 ? 1 : _b;\n var contentAspectRatio = contentSize.width / contentSize.height;\n var boundsAspectRatio = boundsSize.width / boundsSize.height;\n var scale;\n if (mode === 'contain' ? contentAspectRatio > boundsAspectRatio : contentAspectRatio < boundsAspectRatio) {\n scale = boundsSize.width / contentSize.width;\n }\n else {\n scale = boundsSize.height / contentSize.height;\n }\n var finalScale = Math.min(maxScale, scale);\n return {\n width: contentSize.width * finalScale,\n height: contentSize.height * finalScale,\n };\n}\n/**\n * Calculates a number's precision based on the number of trailing\n * zeros if the number does not have a decimal indicated by a negative\n * precision. Otherwise, it calculates the number of digits after\n * the decimal point indicated by a positive precision.\n * @param value - the value to determine the precision of\n */\nexport function calculatePrecision(value) {\n /**\n * Group 1:\n * [1-9]([0]+$) matches trailing zeros\n * Group 2:\n * \\.([0-9]*) matches all digits after a decimal point.\n */\n var groups = /[1-9]([0]+$)|\\.([0-9]*)/.exec(String(value));\n if (!groups) {\n return 0;\n }\n if (groups[1]) {\n return -groups[1].length;\n }\n if (groups[2]) {\n return groups[2].length;\n }\n return 0;\n}\n/**\n * Rounds a number to a certain level of precision. Accepts negative precision.\n * @param value - The value that is being rounded.\n * @param precision - The number of decimal places to round the number to\n */\nexport function precisionRound(value, precision, base) {\n if (base === void 0) { base = 10; }\n var exp = Math.pow(base, precision);\n return Math.round(value * exp) / exp;\n}\n//# sourceMappingURL=math.js.map" - }, - { - "id": "/sqS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useMergedRefs.js", - "index": null, - "index2": null, - "size": 1150, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useMergedRefs", - "loc": "9:0-32" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useMergedRefs", - "loc": "9:0-32" - } - ], - "usedExports": false, - "providedExports": [ - "useMergedRefs" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __spreadArrays } from \"tslib\";\nimport * as React from 'react';\n/**\n * React hook to merge multiple React refs (either MutableRefObjects or ref callbacks) into a single ref callback that\n * updates all provided refs\n * @param refs - Refs to collectively update with one ref value.\n * @returns A function with an attached \"current\" prop, so that it can be treated like a RefObject.\n */\nexport function useMergedRefs() {\n var refs = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n refs[_i] = arguments[_i];\n }\n var mergedCallback = React.useCallback(function (value) {\n // Update the \"current\" prop hanging on the function.\n mergedCallback.current = value;\n for (var _i = 0, refs_1 = refs; _i < refs_1.length; _i++) {\n var ref = refs_1[_i];\n if (typeof ref === 'function') {\n ref(value);\n }\n else if (ref) {\n // work around the immutability of the React.Ref type\n ref.current = value;\n }\n }\n }, __spreadArrays(refs));\n return mergedCallback;\n}\n//# sourceMappingURL=useMergedRefs.js.map" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "index": 17, - "index2": 274, - "size": 165, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "issuerId": "TUT9", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "./collectionDataViewer", - "loc": "30:0-62" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "./collectionDataViewer", - "loc": "75:36-56" - } - ], - "usedExports": [ - "CollectionDataViewer" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 4, - "source": "export * from './CollectionDataViewer';\nexport * from './ICollectionDataViewerProps';\nexport * from './ICollectionDataViewerState';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "01ST", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "index": 50, - "index2": 44, - "size": 2932, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./mergeStyleSets", - "loc": "2:0-64" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mergeStyleSets", - "loc": "2:0-64" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./mergeStyleSets", - "loc": "2:0-64" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "68:34-46" - } - ], - "usedExports": [ - "mergeCssSets", - "mergeStyleSets" - ], - "providedExports": [ - "mergeStyleSets", - "mergeCssSets" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { concatStyleSets } from './concatStyleSets';\nimport { extractStyleParts } from './extractStyleParts';\nimport { getStyleOptions } from './StyleOptionsState';\nimport { applyRegistration, styleToRegistration } from './styleToClassName';\n/**\n * Takes in one or more style set objects, each consisting of a set of areas,\n * each which will produce a class name. Using this is analogous to calling\n * `mergeStyles` for each property in the object, but ensures we maintain the\n * set ordering when multiple style sets are merged.\n *\n * @param styleSets - One or more style sets to be merged.\n */\nexport function mergeStyleSets() {\n var styleSets = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styleSets[_i] = arguments[_i];\n }\n return mergeCssSets(styleSets, getStyleOptions());\n}\n/**\n * Takes in one or more style set objects, each1consisting of a set of areas,\n * each which will produce a class name. Using this is analogous to calling\n * `mergeCss` for each property in the object, but ensures the\n * set ordering when multiple style sets are merged.\n *\n * @param styleSets - One or more style sets to be merged.\n * @param options - (optional) Options to use when creating rules.\n */\nexport function mergeCssSets(styleSets, options) {\n var _a, _b;\n var classNameSet = { subComponentStyles: {} };\n var styleSet = styleSets[0];\n if (!styleSet && styleSets.length <= 1) {\n return { subComponentStyles: {} };\n }\n var concatenatedStyleSet = concatStyleSets.apply(void 0, styleSets);\n var registrations = [];\n for (var styleSetArea in concatenatedStyleSet) {\n if (concatenatedStyleSet.hasOwnProperty(styleSetArea)) {\n if (styleSetArea === 'subComponentStyles') {\n classNameSet.subComponentStyles = concatenatedStyleSet.subComponentStyles || {};\n continue;\n }\n var styles = concatenatedStyleSet[styleSetArea];\n var _c = extractStyleParts(styles), classes = _c.classes, objects = _c.objects;\n if ((_a = objects) === null || _a === void 0 ? void 0 : _a.length) {\n var registration = styleToRegistration(options || {}, { displayName: styleSetArea }, objects);\n if (registration) {\n registrations.push(registration);\n classNameSet[styleSetArea] = classes.concat([registration.className]).join(' ');\n }\n }\n else {\n classNameSet[styleSetArea] = classes.join(' ');\n }\n }\n }\n for (var _i = 0, registrations_1 = registrations; _i < registrations_1.length; _i++) {\n var registration = registrations_1[_i];\n if (registration) {\n applyRegistration(registration, (_b = options) === null || _b === void 0 ? void 0 : _b.specificityMultiplier);\n }\n }\n return classNameSet;\n}\n//# sourceMappingURL=mergeStyleSets.js.map" - }, - { - "id": "03A+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "name": "./node_modules/lodash/isArguments.js", - "index": 499, - "index2": 491, - "size": 1026, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "issuerId": "b80T", - "issuerName": "./node_modules/lodash/_arrayLikeKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "BiGR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isFlattenable.js", - "module": "./node_modules/lodash/_isFlattenable.js", - "moduleName": "./node_modules/lodash/_isFlattenable.js", - "type": "cjs require", - "userRequest": "./isArguments", - "loc": "2:18-42" - }, - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./isArguments", - "loc": "2:18-42" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var baseIsArguments = require('./_baseIsArguments'),\n isObjectLike = require('./isObjectLike');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Built-in value references. */\nvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n/**\n * Checks if `value` is likely an `arguments` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n * else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\nvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n !propertyIsEnumerable.call(value, 'callee');\n};\n\nmodule.exports = isArguments;\n" - }, - { - "id": "08ZC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/safe-global.js", - "name": "./node_modules/@pnp/common/safe-global.js", - "index": 703, - "index2": 695, - "size": 148, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/GraphService.js", - "name": "./lib/webparts/listSearch/services/GraphService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "./safe-global.js", - "loc": "3:0-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "./safe-global.js", - "loc": "7:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony export imported specifier", - "userRequest": "./safe-global.js", - "loc": "7:0-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "./safe-global.js", - "loc": "35:15-25" - } - ], - "usedExports": [ - "safeGlobal" - ], - "providedExports": [ - "safeGlobal" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module uses injected variables (global)" - ], - "depth": 4, - "source": "// export either window or global\r\nexport var safeGlobal = typeof global === \"undefined\" ? window : global;\r\n//# sourceMappingURL=safe-global.js.map" - }, - { - "id": "08vz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "index": null, - "index2": null, - "size": 339, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerId": "7hkT", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardDetails", - "loc": "5:0-38" - }, - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DocumentCardDetails", - "loc": "5:0-38" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardDetails" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { DocumentCardDetailsBase } from './DocumentCardDetails.base';\nimport { getStyles } from './DocumentCardDetails.styles';\nexport var DocumentCardDetails = styled(DocumentCardDetailsBase, getStyles, undefined, { scope: 'DocumentCardDetails' });\n//# sourceMappingURL=DocumentCardDetails.js.map" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js", - "index": 459, - "index2": 481, - "size": 853, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackSet", - "loc": "6:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var ListCache = require('./_ListCache'),\n Map = require('./_Map'),\n MapCache = require('./_MapCache');\n\n/** Used as the size to enable large array optimizations. */\nvar LARGE_ARRAY_SIZE = 200;\n\n/**\n * Sets the stack `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Stack\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the stack cache instance.\n */\nfunction stackSet(key, value) {\n var data = this.__data__;\n if (data instanceof ListCache) {\n var pairs = data.__data__;\n if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\n pairs.push([key, value]);\n this.size = ++data.size;\n return this;\n }\n data = this.__data__ = new MapCache(pairs);\n }\n data.set(key, value);\n this.size = data.size;\n return this;\n}\n\nmodule.exports = stackSet;\n" - }, - { - "id": "0FyB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "index": null, - "index2": null, - "size": 19948, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "issuerId": "iASX", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "AnrA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Slider.js", - "name": "./node_modules/office-ui-fabric-react/lib/Slider.js" - }, - { - "id": "iASX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Lk5B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "type": "harmony side effect evaluation", - "userRequest": "./Slider.base", - "loc": "2:0-43" - }, - { - "moduleId": "Lk5B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "type": "harmony import specifier", - "userRequest": "./Slider.base", - "loc": "4:27-37" - }, - { - "moduleId": "iASX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Slider.base", - "loc": "2:0-30" - }, - { - "moduleId": "iASX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Slider.base", - "loc": "2:0-30" - } - ], - "usedExports": false, - "providedExports": [ - "ONKEYDOWN_TIMEOUT_DURATION", - "SliderBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { KeyCodes, css, getId, getRTL, getRTLSafeKeyCode, warnMutuallyExclusive, initializeComponentRef, Async, on, FocusRects, } from '../../Utilities';\nimport { classNamesFunction, getNativeProps, divProperties } from '../../Utilities';\nimport { Label } from '../../Label';\nvar getClassNames = classNamesFunction();\nvar COMPONENT_NAME = 'SliderBase';\nexport var ONKEYDOWN_TIMEOUT_DURATION = 1000;\nvar SliderBase = /** @class */ (function (_super) {\n __extends(SliderBase, _super);\n function SliderBase(props) {\n var _this = _super.call(this, props) || this;\n _this._disposables = [];\n _this._sliderLine = React.createRef();\n _this._thumb = React.createRef();\n _this._lowerValueThumb = React.createRef();\n _this._onKeyDownTimer = -1;\n _this._isAdjustingLowerValue = false;\n _this._getAriaValueText = function (value) {\n var ariaValueText = _this.props.ariaValueText;\n if (value !== undefined) {\n return ariaValueText ? ariaValueText(value) : value.toString();\n }\n return undefined;\n };\n _this._calculateCurrentSteps = function (event) {\n if (!_this._sliderLine.current) {\n return;\n }\n var _a = _this.props, max = _a.max, min = _a.min, step = _a.step;\n var steps = (max - min) / step;\n var sliderPositionRect = _this._sliderLine.current.getBoundingClientRect();\n var sliderLength = !_this.props.vertical ? sliderPositionRect.width : sliderPositionRect.height;\n var stepLength = sliderLength / steps;\n var currentSteps;\n var distance;\n if (!_this.props.vertical) {\n var left = _this._getPosition(event, _this.props.vertical);\n distance = getRTL(_this.props.theme) ? sliderPositionRect.right - left : left - sliderPositionRect.left;\n currentSteps = distance / stepLength;\n }\n else {\n var bottom = _this._getPosition(event, _this.props.vertical);\n distance = sliderPositionRect.bottom - bottom;\n currentSteps = distance / stepLength;\n }\n return currentSteps;\n };\n _this._onMouseDownOrTouchStart = function (event) {\n var _a = _this.props, ranged = _a.ranged, min = _a.min, step = _a.step;\n if (ranged) {\n var currentSteps = _this._calculateCurrentSteps(event);\n var newRenderedValue = min + step * currentSteps;\n if (newRenderedValue <= _this.state.lowerValue ||\n newRenderedValue - _this.state.lowerValue <= _this.state.value - newRenderedValue) {\n _this._isAdjustingLowerValue = true;\n }\n else {\n _this._isAdjustingLowerValue = false;\n }\n }\n if (event.type === 'mousedown') {\n _this._disposables.push(on(window, 'mousemove', _this._onMouseMoveOrTouchMove, true), on(window, 'mouseup', _this._onMouseUpOrTouchEnd, true));\n }\n else if (event.type === 'touchstart') {\n _this._disposables.push(on(window, 'touchmove', _this._onMouseMoveOrTouchMove, true), on(window, 'touchend', _this._onMouseUpOrTouchEnd, true));\n }\n _this._onMouseMoveOrTouchMove(event, true);\n };\n _this._onMouseMoveOrTouchMove = function (event, suppressEventCancelation) {\n if (!_this._sliderLine.current) {\n return;\n }\n var _a = _this.props, max = _a.max, min = _a.min, step = _a.step;\n var steps = (max - min) / step;\n var currentSteps = _this._calculateCurrentSteps(event);\n var currentValue;\n var renderedValue;\n // The value shouldn't be bigger than max or be smaller than min.\n if (currentSteps > Math.floor(steps)) {\n renderedValue = currentValue = max;\n }\n else if (currentSteps < 0) {\n renderedValue = currentValue = min;\n }\n else {\n renderedValue = min + step * currentSteps;\n currentValue = min + step * Math.round(currentSteps);\n }\n _this._updateValue(currentValue, renderedValue);\n if (!suppressEventCancelation) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n _this._onMouseUpOrTouchEnd = function (event) {\n // Disable renderedValue override.\n _this.setState({\n renderedValue: undefined,\n renderedLowerValue: undefined,\n });\n if (_this.props.onChanged) {\n _this.props.onChanged(event, _this.state.value);\n }\n _this._disposeListeners();\n };\n _this._disposeListeners = function () {\n _this._disposables.forEach(function (dispose) { return dispose(); });\n _this._disposables = [];\n };\n _this._onKeyDown = function (event) {\n var value;\n if (_this._isAdjustingLowerValue) {\n value = _this.props.lowerValue || _this.state.lowerValue;\n }\n else {\n value = _this.props.value || _this.state.value;\n }\n var _a = _this.props, max = _a.max, min = _a.min, step = _a.step;\n var diff = 0;\n // eslint-disable-next-line deprecation/deprecation\n switch (event.which) {\n case getRTLSafeKeyCode(KeyCodes.left, _this.props.theme):\n case KeyCodes.down:\n diff = -step;\n _this._clearOnKeyDownTimer();\n _this._setOnKeyDownTimer(event);\n break;\n case getRTLSafeKeyCode(KeyCodes.right, _this.props.theme):\n case KeyCodes.up:\n diff = step;\n _this._clearOnKeyDownTimer();\n _this._setOnKeyDownTimer(event);\n break;\n case KeyCodes.home:\n value = min;\n break;\n case KeyCodes.end:\n value = max;\n break;\n default:\n return;\n }\n var newValue = Math.min(max, Math.max(min, value + diff));\n _this._updateValue(newValue, newValue);\n event.preventDefault();\n event.stopPropagation();\n // Disable renderedValue override.\n _this.setState({\n renderedValue: undefined,\n renderedLowerValue: undefined,\n });\n };\n _this._onThumbFocus = function (event) {\n _this._isAdjustingLowerValue = event.target === _this._lowerValueThumb.current;\n };\n _this._clearOnKeyDownTimer = function () {\n _this._async.clearTimeout(_this._onKeyDownTimer);\n };\n _this._setOnKeyDownTimer = function (event) {\n _this._onKeyDownTimer = _this._async.setTimeout(function () {\n if (_this.props.onChanged) {\n _this.props.onChanged(event, _this.state.value);\n }\n }, ONKEYDOWN_TIMEOUT_DURATION);\n };\n _this._async = new Async(_this);\n initializeComponentRef(_this);\n warnMutuallyExclusive(COMPONENT_NAME, _this.props, {\n value: 'defaultValue',\n });\n if (props.ranged) {\n warnMutuallyExclusive(COMPONENT_NAME, _this.props, {\n lowerValue: 'defaultLowerValue',\n });\n }\n _this._id = getId('Slider');\n var value = props.value !== undefined ? props.value : props.defaultValue !== undefined ? props.defaultValue : props.min;\n var lowerValue = props.lowerValue !== undefined\n ? props.lowerValue\n : props.defaultLowerValue !== undefined\n ? props.defaultLowerValue\n : props.min;\n _this.state = {\n value: value,\n lowerValue: lowerValue,\n renderedValue: undefined,\n renderedLowerValue: undefined,\n };\n return _this;\n }\n SliderBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._disposeListeners();\n };\n SliderBase.prototype.render = function () {\n var _a, _b, _c;\n var _d = this.props, ariaLabel = _d.ariaLabel, className = _d.className, disabled = _d.disabled, label = _d.label, max = _d.max, min = _d.min, showValue = _d.showValue, buttonProps = _d.buttonProps, vertical = _d.vertical, styles = _d.styles, theme = _d.theme, originFromZero = _d.originFromZero, ranged = _d.ranged;\n var value = this.value;\n var renderedValue = this.renderedValue;\n var renderedLowerValue = this.renderedLowerValue;\n var thumbOffsetPercent = this._getPercent(renderedValue);\n var lowerThumbOffsetPercent = this._getPercent(renderedLowerValue);\n var originValue = originFromZero ? 0 : min;\n var originPercent = this._getPercent(originValue);\n var activeSectionWidth = ranged\n ? thumbOffsetPercent - lowerThumbOffsetPercent\n : Math.abs(originPercent - thumbOffsetPercent);\n var topSectionWidth = Math.min(100 - thumbOffsetPercent, 100 - originPercent);\n var bottomSectionWidth = ranged ? lowerThumbOffsetPercent : Math.min(thumbOffsetPercent, originPercent);\n var lengthString = vertical ? 'height' : 'width';\n var onMouseDownProp = disabled ? {} : { onMouseDown: this._onMouseDownOrTouchStart };\n var onTouchStartProp = disabled ? {} : { onTouchStart: this._onMouseDownOrTouchStart };\n var onKeyDownProp = disabled ? {} : { onKeyDown: this._onKeyDown };\n var onFocusProp = disabled ? {} : { onFocus: this._onThumbFocus };\n var classNames = getClassNames(styles, {\n className: className,\n ranged: ranged,\n disabled: disabled,\n vertical: vertical,\n showTransitions: renderedValue === value || (ranged && renderedLowerValue === this.lowerValue),\n showValue: showValue,\n theme: theme,\n });\n var divButtonProps = buttonProps\n ? getNativeProps(buttonProps, divProperties)\n : undefined;\n var sliderProps = {\n 'aria-disabled': disabled,\n role: 'slider',\n tabIndex: disabled ? undefined : 0,\n 'data-is-focusable': !disabled,\n };\n var sliderBoxProps = __assign(__assign(__assign(__assign(__assign({ id: this._id, className: css(classNames.slideBox, buttonProps.className) }, onMouseDownProp), onTouchStartProp), onKeyDownProp), divButtonProps), (!ranged && __assign(__assign({}, sliderProps), { 'aria-valuemin': min, 'aria-valuemax': max, 'aria-valuenow': value, 'aria-valuetext': this._getAriaValueText(value), 'aria-label': ariaLabel || label })));\n var thumbProps = ranged\n ? __assign(__assign(__assign({}, sliderProps), onFocusProp), { id: \"max-\" + this._id, 'aria-valuemin': this.lowerValue, 'aria-valuemax': max, 'aria-valuenow': value, 'aria-valuetext': this._getAriaValueText(value), 'aria-label': \"max \" + (ariaLabel || label) }) : undefined;\n var lowerValueThumbProps = ranged\n ? __assign(__assign(__assign({}, sliderProps), onFocusProp), { id: \"min-\" + this._id, 'aria-valuemin': min, 'aria-valuemax': value, 'aria-valuenow': this.lowerValue, 'aria-valuetext': this._getAriaValueText(this.lowerValue), 'aria-label': \"min \" + (ariaLabel || label) }) : undefined;\n return (React.createElement(\"div\", { className: classNames.root },\n label && (React.createElement(Label, __assign({ className: classNames.titleLabel }, (ariaLabel ? {} : { htmlFor: this._id }), { disabled: disabled }), label)),\n React.createElement(\"div\", { className: classNames.container },\n ranged && showValue && (React.createElement(Label, { className: classNames.valueLabel, disabled: disabled }, this._getValueLabel(vertical ? this.value : this.lowerValue))),\n React.createElement(\"div\", __assign({}, sliderBoxProps),\n React.createElement(\"div\", { ref: this._sliderLine, className: classNames.line },\n originFromZero && (React.createElement(\"span\", { className: css(classNames.zeroTick), style: this._getStyleUsingOffsetPercent(vertical, originPercent) })),\n ranged && (React.createElement(\"span\", __assign({ ref: this._lowerValueThumb, className: classNames.thumb, style: this._getStyleUsingOffsetPercent(vertical, lowerThumbOffsetPercent) }, lowerValueThumbProps))),\n React.createElement(\"span\", __assign({ ref: this._thumb, className: classNames.thumb, style: this._getStyleUsingOffsetPercent(vertical, thumbOffsetPercent) }, thumbProps)),\n (ranged || originFromZero) && (React.createElement(\"span\", { className: css(classNames.lineContainer, classNames.inactiveSection), style: (_a = {}, _a[lengthString] = bottomSectionWidth + '%', _a) })),\n React.createElement(\"span\", { className: css(classNames.lineContainer, classNames.activeSection), style: (_b = {}, _b[lengthString] = activeSectionWidth + '%', _b) }),\n React.createElement(\"span\", { className: css(classNames.lineContainer, classNames.inactiveSection), style: (_c = {}, _c[lengthString] = topSectionWidth + '%', _c) }))),\n showValue && (React.createElement(Label, { className: classNames.valueLabel, disabled: disabled }, this._getValueLabel(ranged && vertical ? this.lowerValue : this.value)))),\n React.createElement(FocusRects, null)));\n };\n SliderBase.prototype.focus = function () {\n if (this._thumb.current) {\n this._thumb.current.focus();\n }\n };\n Object.defineProperty(SliderBase.prototype, \"range\", {\n get: function () {\n if (this.props.ranged) {\n return [this.lowerValue, this.value];\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(SliderBase.prototype, \"value\", {\n get: function () {\n var _a = this.props.value, value = _a === void 0 ? this.state.value : _a;\n if (this.props.min === undefined || this.props.max === undefined || value === undefined) {\n return undefined;\n }\n else {\n return Math.max(this.props.min, Math.min(this.props.max, value));\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(SliderBase.prototype, \"renderedValue\", {\n get: function () {\n // renderedValue is expected to be defined while user is interacting with control, otherwise `undefined`.\n // Fall back to `value`.\n var _a = this.state.renderedValue, renderedValue = _a === void 0 ? this.value : _a;\n return renderedValue;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(SliderBase.prototype, \"lowerValue\", {\n get: function () {\n var _a = this.props, _b = _a.lowerValue, lowerValue = _b === void 0 ? this.state.lowerValue : _b, ranged = _a.ranged;\n if (!ranged || this.props.min === undefined || this.props.max === undefined || lowerValue === undefined) {\n return undefined;\n }\n else {\n return Math.max(this.props.min, Math.min(this.props.max, lowerValue));\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(SliderBase.prototype, \"renderedLowerValue\", {\n get: function () {\n // renderedLowerValue is expected to be defined while user is interacting with control, otherwise `undefined`.\n // Fall back to `lowerValue`.\n var _a = this.state.renderedLowerValue, renderedLowerValue = _a === void 0 ? this.lowerValue : _a;\n return renderedLowerValue;\n },\n enumerable: true,\n configurable: true\n });\n SliderBase.prototype._getPercent = function (value) {\n var _a = this.props, min = _a.min, max = _a.max;\n return max === min ? 0 : ((value - min) / (max - min)) * 100;\n };\n SliderBase.prototype._getValueLabel = function (value) {\n var valueFormat = this.props.valueFormat;\n return valueFormat ? valueFormat(value) : value;\n };\n SliderBase.prototype._getStyleUsingOffsetPercent = function (vertical, thumbOffsetPercent) {\n var _a;\n var direction = vertical ? 'bottom' : getRTL(this.props.theme) ? 'right' : 'left';\n return _a = {},\n _a[direction] = thumbOffsetPercent + '%',\n _a;\n };\n SliderBase.prototype._getPosition = function (event, vertical) {\n var currentPosition;\n switch (event.type) {\n case 'mousedown':\n case 'mousemove':\n currentPosition = !vertical ? event.clientX : event.clientY;\n break;\n case 'touchstart':\n case 'touchmove':\n currentPosition = !vertical\n ? event.touches[0].clientX\n : event.touches[0].clientY;\n break;\n }\n return currentPosition;\n };\n SliderBase.prototype._setValueState = function (roundedValue, renderedValue) {\n var _a;\n var _this = this;\n var isAdjustingLowerValue = this._isAdjustingLowerValue;\n var valueChanged = roundedValue !== (isAdjustingLowerValue ? this.state.lowerValue : this.state.value);\n this.setState((_a = {},\n _a[isAdjustingLowerValue ? 'lowerValue' : 'value'] = roundedValue,\n _a[isAdjustingLowerValue ? 'renderedLowerValue' : 'renderedValue'] = renderedValue,\n _a), function () {\n var _a = _this.state, lowerValue = _a.lowerValue, value = _a.value;\n if (valueChanged && _this.props.onChange) {\n _this.props.onChange(isAdjustingLowerValue ? lowerValue : value, _this.props.ranged ? [lowerValue, value] : undefined);\n }\n });\n };\n SliderBase.prototype._updateValue = function (value, renderedValue) {\n var _a = this.props, step = _a.step, snapToStep = _a.snapToStep, ranged = _a.ranged, originFromZero = _a.originFromZero;\n var numDec = 0;\n if (isFinite(step)) {\n while (Math.round(step * Math.pow(10, numDec)) / Math.pow(10, numDec) !== step) {\n numDec++;\n }\n }\n // Make sure value has correct number of decimal places based on number of decimals in step\n var roundedValue = parseFloat(value.toFixed(numDec));\n if (snapToStep) {\n renderedValue = roundedValue;\n }\n var shouldAdjustLowerThumb = this._isAdjustingLowerValue && (originFromZero ? roundedValue <= 0 : roundedValue <= this.renderedValue);\n var shouldAdjustUpperThumb = !this._isAdjustingLowerValue && (originFromZero ? roundedValue >= 0 : roundedValue >= this.renderedLowerValue);\n if (!ranged || shouldAdjustLowerThumb || shouldAdjustUpperThumb) {\n this._setValueState(roundedValue, renderedValue);\n }\n };\n SliderBase.defaultProps = {\n step: 1,\n min: 0,\n max: 10,\n showValue: true,\n disabled: false,\n vertical: false,\n buttonProps: {},\n originFromZero: false,\n };\n return SliderBase;\n}(React.Component));\nexport { SliderBase };\n//# sourceMappingURL=Slider.base.js.map" - }, - { - "id": "0YjV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "index": null, - "index2": null, - "size": 79, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Divider", - "loc": "8:0-51" - } - ], - "usedExports": false, - "providedExports": [ - "VerticalDivider" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 12, - "source": "export * from './components/Divider/index';\n//# sourceMappingURL=Divider.js.map" - }, - { - "id": "0a3e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "index": null, - "index2": null, - "size": 5387, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "issuerId": "/oVv", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "GiGj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js" - }, - { - "id": "/oVv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/oVv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ActivityItem", - "loc": "1:0-31" - }, - { - "moduleId": "/oVv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ActivityItem", - "loc": "1:0-31" - } - ], - "usedExports": false, - "providedExports": [ - "ActivityItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { getClassNames } from './ActivityItem.classNames';\nimport { getStyles } from './ActivityItem.styles';\nimport { PersonaSize, PersonaCoin } from '../../Persona';\n/**\n * {@docCategory ActivityItem}\n */\nvar ActivityItem = /** @class */ (function (_super) {\n __extends(ActivityItem, _super);\n function ActivityItem(props) {\n var _this = _super.call(this, props) || this;\n _this._onRenderIcon = function (props) {\n if (props.activityPersonas) {\n return _this._onRenderPersonaArray(props);\n }\n else {\n return _this.props.activityIcon;\n }\n };\n _this._onRenderActivityDescription = function (props) {\n var classNames = _this._getClassNames(props);\n // eslint-disable-next-line deprecation/deprecation\n var activityDescription = props.activityDescription || props.activityDescriptionText;\n if (activityDescription) {\n return React.createElement(\"span\", { className: classNames.activityText }, activityDescription);\n }\n return null;\n };\n _this._onRenderComments = function (props) {\n var classNames = _this._getClassNames(props);\n // eslint-disable-next-line deprecation/deprecation\n var comments = props.comments || props.commentText;\n if (!props.isCompact && comments) {\n return React.createElement(\"div\", { className: classNames.commentText }, comments);\n }\n return null;\n };\n _this._onRenderTimeStamp = function (props) {\n var classNames = _this._getClassNames(props);\n if (!props.isCompact && props.timeStamp) {\n return React.createElement(\"div\", { className: classNames.timeStamp }, props.timeStamp);\n }\n return null;\n };\n // If activityPersonas is an array of persona props, build the persona cluster element.\n _this._onRenderPersonaArray = function (props) {\n var classNames = _this._getClassNames(props);\n var personaElement = null;\n var activityPersonas = props.activityPersonas;\n if (activityPersonas[0].imageUrl || activityPersonas[0].imageInitials) {\n var personaList_1 = [];\n var showSize16Personas_1 = activityPersonas.length > 1 || props.isCompact;\n var personaLimit_1 = props.isCompact ? 3 : 4;\n var style_1 = undefined;\n if (props.isCompact) {\n style_1 = {\n display: 'inline-block',\n width: '10px',\n minWidth: '10px',\n overflow: 'visible',\n };\n }\n activityPersonas\n .filter(function (person, index) { return index < personaLimit_1; })\n .forEach(function (person, index) {\n personaList_1.push(React.createElement(PersonaCoin, __assign({}, person, { key: person.key || index, className: classNames.activityPersona, \n // eslint-disable-next-line deprecation/deprecation\n size: showSize16Personas_1 ? PersonaSize.size16 : PersonaSize.size32, style: style_1 })));\n });\n personaElement = React.createElement(\"div\", { className: classNames.personaContainer }, personaList_1);\n }\n return personaElement;\n };\n return _this;\n }\n ActivityItem.prototype.render = function () {\n var _a = this.props, _b = _a.onRenderIcon, onRenderIcon = _b === void 0 ? this._onRenderIcon : _b, _c = _a.onRenderActivityDescription, onRenderActivityDescription = _c === void 0 ? this._onRenderActivityDescription : _c, _d = _a.onRenderComments, onRenderComments = _d === void 0 ? this._onRenderComments : _d, _e = _a.onRenderTimeStamp, onRenderTimeStamp = _e === void 0 ? this._onRenderTimeStamp : _e, animateBeaconSignal = _a.animateBeaconSignal, isCompact = _a.isCompact;\n var classNames = this._getClassNames(this.props);\n return (React.createElement(\"div\", { className: classNames.root, style: this.props.style },\n (this.props.activityPersonas || this.props.activityIcon || this.props.onRenderIcon) && (React.createElement(\"div\", { className: classNames.activityTypeIcon },\n animateBeaconSignal && isCompact && React.createElement(\"div\", { className: classNames.pulsingBeacon }),\n onRenderIcon(this.props))),\n React.createElement(\"div\", { className: classNames.activityContent },\n onRenderActivityDescription(this.props, this._onRenderActivityDescription),\n onRenderComments(this.props, this._onRenderComments),\n onRenderTimeStamp(this.props, this._onRenderTimeStamp))));\n };\n ActivityItem.prototype._getClassNames = function (props) {\n return getClassNames(getStyles(undefined, props.styles, props.animateBeaconSignal, props.beaconColorOne, props.beaconColorTwo, props.isCompact), props.className, props.activityPersonas, props.isCompact);\n };\n return ActivityItem;\n}(React.Component));\nexport { ActivityItem };\n//# sourceMappingURL=ActivityItem.js.map" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js", - "index": 350, - "index2": 354, - "size": 12613, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "react-js-pagination", - "loc": "17:0-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "react-js-pagination", - "loc": "944:76-86" - } - ], - "usedExports": [ - "default" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 2, - "source": "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports[\"default\"] = void 0;\n\nvar _react = _interopRequireWildcard(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _paginator = _interopRequireDefault(require(\"paginator\"));\n\nvar _Page = _interopRequireDefault(require(\"./Page\"));\n\nvar _classnames = _interopRequireDefault(require(\"classnames\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _getRequireWildcardCache() { if (typeof WeakMap !== \"function\") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== \"object\" && typeof obj !== \"function\") { return { \"default\": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj[\"default\"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar Pagination =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inherits(Pagination, _React$Component);\n\n function Pagination() {\n _classCallCheck(this, Pagination);\n\n return _possibleConstructorReturn(this, _getPrototypeOf(Pagination).apply(this, arguments));\n }\n\n _createClass(Pagination, [{\n key: \"isFirstPageVisible\",\n value: function isFirstPageVisible(has_previous_page) {\n var _this$props = this.props,\n hideDisabled = _this$props.hideDisabled,\n hideNavigation = _this$props.hideNavigation,\n hideFirstLastPages = _this$props.hideFirstLastPages;\n if (hideFirstLastPages || hideDisabled && !has_previous_page) return false;\n return true;\n }\n }, {\n key: \"isPrevPageVisible\",\n value: function isPrevPageVisible(has_previous_page) {\n var _this$props2 = this.props,\n hideDisabled = _this$props2.hideDisabled,\n hideNavigation = _this$props2.hideNavigation;\n if (hideNavigation || hideDisabled && !has_previous_page) return false;\n return true;\n }\n }, {\n key: \"isNextPageVisible\",\n value: function isNextPageVisible(has_next_page) {\n var _this$props3 = this.props,\n hideDisabled = _this$props3.hideDisabled,\n hideNavigation = _this$props3.hideNavigation;\n if (hideNavigation || hideDisabled && !has_next_page) return false;\n return true;\n }\n }, {\n key: \"isLastPageVisible\",\n value: function isLastPageVisible(has_next_page) {\n var _this$props4 = this.props,\n hideDisabled = _this$props4.hideDisabled,\n hideNavigation = _this$props4.hideNavigation,\n hideFirstLastPages = _this$props4.hideFirstLastPages;\n if (hideFirstLastPages || hideDisabled && !has_next_page) return false;\n return true;\n }\n }, {\n key: \"buildPages\",\n value: function buildPages() {\n var pages = [];\n var _this$props5 = this.props,\n itemsCountPerPage = _this$props5.itemsCountPerPage,\n pageRangeDisplayed = _this$props5.pageRangeDisplayed,\n activePage = _this$props5.activePage,\n prevPageText = _this$props5.prevPageText,\n nextPageText = _this$props5.nextPageText,\n firstPageText = _this$props5.firstPageText,\n lastPageText = _this$props5.lastPageText,\n totalItemsCount = _this$props5.totalItemsCount,\n onChange = _this$props5.onChange,\n activeClass = _this$props5.activeClass,\n itemClass = _this$props5.itemClass,\n itemClassFirst = _this$props5.itemClassFirst,\n itemClassPrev = _this$props5.itemClassPrev,\n itemClassNext = _this$props5.itemClassNext,\n itemClassLast = _this$props5.itemClassLast,\n activeLinkClass = _this$props5.activeLinkClass,\n disabledClass = _this$props5.disabledClass,\n hideDisabled = _this$props5.hideDisabled,\n hideNavigation = _this$props5.hideNavigation,\n linkClass = _this$props5.linkClass,\n linkClassFirst = _this$props5.linkClassFirst,\n linkClassPrev = _this$props5.linkClassPrev,\n linkClassNext = _this$props5.linkClassNext,\n linkClassLast = _this$props5.linkClassLast,\n hideFirstLastPages = _this$props5.hideFirstLastPages,\n getPageUrl = _this$props5.getPageUrl;\n var paginationInfo = new _paginator[\"default\"](itemsCountPerPage, pageRangeDisplayed).build(totalItemsCount, activePage);\n\n for (var i = paginationInfo.first_page; i <= paginationInfo.last_page; i++) {\n pages.push(_react[\"default\"].createElement(_Page[\"default\"], {\n isActive: i === activePage,\n key: i,\n href: getPageUrl(i),\n pageNumber: i,\n pageText: i + \"\",\n onClick: onChange,\n itemClass: itemClass,\n linkClass: linkClass,\n activeClass: activeClass,\n activeLinkClass: activeLinkClass,\n ariaLabel: \"Go to page number \".concat(i)\n }));\n }\n\n this.isPrevPageVisible(paginationInfo.has_previous_page) && pages.unshift(_react[\"default\"].createElement(_Page[\"default\"], {\n key: \"prev\" + paginationInfo.previous_page,\n href: getPageUrl(paginationInfo.previous_page),\n pageNumber: paginationInfo.previous_page,\n onClick: onChange,\n pageText: prevPageText,\n isDisabled: !paginationInfo.has_previous_page,\n itemClass: (0, _classnames[\"default\"])(itemClass, itemClassPrev),\n linkClass: (0, _classnames[\"default\"])(linkClass, linkClassPrev),\n disabledClass: disabledClass,\n ariaLabel: \"Go to previous page\"\n }));\n this.isFirstPageVisible(paginationInfo.has_previous_page) && pages.unshift(_react[\"default\"].createElement(_Page[\"default\"], {\n key: \"first\",\n href: getPageUrl(1),\n pageNumber: 1,\n onClick: onChange,\n pageText: firstPageText,\n isDisabled: !paginationInfo.has_previous_page,\n itemClass: (0, _classnames[\"default\"])(itemClass, itemClassFirst),\n linkClass: (0, _classnames[\"default\"])(linkClass, linkClassFirst),\n disabledClass: disabledClass,\n ariaLabel: \"Go to first page\"\n }));\n this.isNextPageVisible(paginationInfo.has_next_page) && pages.push(_react[\"default\"].createElement(_Page[\"default\"], {\n key: \"next\" + paginationInfo.next_page,\n href: getPageUrl(paginationInfo.next_page),\n pageNumber: paginationInfo.next_page,\n onClick: onChange,\n pageText: nextPageText,\n isDisabled: !paginationInfo.has_next_page,\n itemClass: (0, _classnames[\"default\"])(itemClass, itemClassNext),\n linkClass: (0, _classnames[\"default\"])(linkClass, linkClassNext),\n disabledClass: disabledClass,\n ariaLabel: \"Go to next page\"\n }));\n this.isLastPageVisible(paginationInfo.has_next_page) && pages.push(_react[\"default\"].createElement(_Page[\"default\"], {\n key: \"last\",\n href: getPageUrl(paginationInfo.total_pages),\n pageNumber: paginationInfo.total_pages,\n onClick: onChange,\n pageText: lastPageText,\n isDisabled: paginationInfo.current_page === paginationInfo.total_pages,\n itemClass: (0, _classnames[\"default\"])(itemClass, itemClassLast),\n linkClass: (0, _classnames[\"default\"])(linkClass, linkClassLast),\n disabledClass: disabledClass,\n ariaLabel: \"Go to last page\"\n }));\n return pages;\n }\n }, {\n key: \"render\",\n value: function render() {\n var pages = this.buildPages();\n return _react[\"default\"].createElement(\"ul\", {\n className: this.props.innerClass\n }, pages);\n }\n }]);\n\n return Pagination;\n}(_react[\"default\"].Component);\n\nexports[\"default\"] = Pagination;\n\n_defineProperty(Pagination, \"propTypes\", {\n totalItemsCount: _propTypes[\"default\"].number.isRequired,\n onChange: _propTypes[\"default\"].func.isRequired,\n activePage: _propTypes[\"default\"].number,\n itemsCountPerPage: _propTypes[\"default\"].number,\n pageRangeDisplayed: _propTypes[\"default\"].number,\n prevPageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n nextPageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n lastPageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n firstPageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n disabledClass: _propTypes[\"default\"].string,\n hideDisabled: _propTypes[\"default\"].bool,\n hideNavigation: _propTypes[\"default\"].bool,\n innerClass: _propTypes[\"default\"].string,\n itemClass: _propTypes[\"default\"].string,\n itemClassFirst: _propTypes[\"default\"].string,\n itemClassPrev: _propTypes[\"default\"].string,\n itemClassNext: _propTypes[\"default\"].string,\n itemClassLast: _propTypes[\"default\"].string,\n linkClass: _propTypes[\"default\"].string,\n activeClass: _propTypes[\"default\"].string,\n activeLinkClass: _propTypes[\"default\"].string,\n linkClassFirst: _propTypes[\"default\"].string,\n linkClassPrev: _propTypes[\"default\"].string,\n linkClassNext: _propTypes[\"default\"].string,\n linkClassLast: _propTypes[\"default\"].string,\n hideFirstLastPages: _propTypes[\"default\"].bool,\n getPageUrl: _propTypes[\"default\"].func\n});\n\n_defineProperty(Pagination, \"defaultProps\", {\n itemsCountPerPage: 10,\n pageRangeDisplayed: 5,\n activePage: 1,\n prevPageText: \"⟨\",\n firstPageText: \"«\",\n nextPageText: \"⟩\",\n lastPageText: \"»\",\n innerClass: \"pagination\",\n itemClass: undefined,\n linkClass: undefined,\n activeLinkClass: undefined,\n hideFirstLastPages: false,\n getPageUrl: function getPageUrl(i) {\n return \"#\";\n }\n});" - }, - { - "id": "0l15", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "index": null, - "index2": null, - "size": 2018, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "2eko", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Button", - "loc": "3:0-25" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Button", - "loc": "3:0-25" - } - ], - "usedExports": false, - "providedExports": [ - "Button" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseComponent, warn } from '../../Utilities';\nimport { ButtonType } from './Button.types';\nimport { DefaultButton } from './DefaultButton/DefaultButton';\nimport { ActionButton } from './ActionButton/ActionButton';\nimport { CompoundButton } from './CompoundButton/CompoundButton';\nimport { IconButton } from './IconButton/IconButton';\nimport { PrimaryButton } from './PrimaryButton/PrimaryButton';\n/**\n * This class is deprecated. Use the individual *Button components instead.\n * @deprecated Use the individual *Button components instead.\n * {@docCategory Button}\n */\nvar Button = /** @class */ (function (_super) {\n tslib_1.__extends(Button, _super);\n function Button(props) {\n var _this = _super.call(this, props) || this;\n /**\n * Set this BaseComponent._skipComponentRefResolution to true, bypassing resolution of componentRef.\n */\n _this._skipComponentRefResolution = true;\n warn(\"The Button component has been deprecated. Use specific variants instead. \" +\n \"(PrimaryButton, DefaultButton, IconButton, ActionButton, etc.)\");\n return _this;\n }\n Button.prototype.render = function () {\n var props = this.props;\n switch (props.buttonType) {\n case ButtonType.command:\n return React.createElement(ActionButton, tslib_1.__assign({}, props));\n case ButtonType.compound:\n return React.createElement(CompoundButton, tslib_1.__assign({}, props));\n case ButtonType.icon:\n return React.createElement(IconButton, tslib_1.__assign({}, props));\n case ButtonType.primary:\n return React.createElement(PrimaryButton, tslib_1.__assign({}, props));\n default:\n return React.createElement(DefaultButton, tslib_1.__assign({}, props));\n }\n };\n return Button;\n}(BaseComponent));\nexport { Button };\n//# sourceMappingURL=Button.js.map" - }, - { - "id": "0s40", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "index": null, - "index2": null, - "size": 290, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerId": "7hkT", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCard", - "loc": "1:0-31" - }, - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DocumentCard", - "loc": "1:0-31" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCard" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { DocumentCardBase } from './DocumentCard.base';\nimport { getStyles } from './DocumentCard.styles';\nexport var DocumentCard = styled(DocumentCardBase, getStyles, undefined, { scope: 'DocumentCard' });\n//# sourceMappingURL=DocumentCard.js.map" - }, - { - "id": "0xmZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/elementContains.js", - "index": 135, - "index2": 124, - "size": 1134, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "32:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "52:54-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "56:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:21-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "93:20-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "95:39-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "146:13-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "187:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "225:72-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "229:35-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "237:49-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js", - "module": "./node_modules/@uifabric/utilities/lib/focus.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./dom/elementContains", - "loc": "238:32-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "244:13-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "273:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "472:16-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "534:41-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "599:13-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "935:40-55" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:17-32" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:38-53" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "144:69-84" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "150:49-64" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "320:13-28" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "322:64-79" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "43:17-32" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:46-61" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./elementContains", - "loc": "1:0-34" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./elementContains", - "loc": "1:0-34" - }, - { - "moduleId": "xu/W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-58" - } - ], - "usedExports": [ - "elementContains" - ], - "providedExports": [ - "elementContains" - ], - "optimizationBailout": [], - "depth": 8, - "source": "import { getParent } from './getParent';\n/**\n * Determines whether or not a parent element contains a given child element.\n * If `allowVirtualParents` is true, this method may return `true` if the child\n * has the parent in its virtual element hierarchy.\n *\n * @public\n */\nexport function elementContains(parent, child, allowVirtualParents) {\n if (allowVirtualParents === void 0) { allowVirtualParents = true; }\n var isContained = false;\n if (parent && child) {\n if (allowVirtualParents) {\n if (parent === child) {\n isContained = true;\n }\n else {\n isContained = false;\n while (child) {\n var nextParent = getParent(child);\n if (nextParent === parent) {\n isContained = true;\n break;\n }\n child = nextParent;\n }\n }\n }\n else if (parent.contains) {\n isContained = parent.contains(child);\n }\n }\n return isContained;\n}\n//# sourceMappingURL=elementContains.js.map" - }, - { - "id": "0ycA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/stubArray.js", - "name": "./node_modules/lodash/stubArray.js", - "index": 526, - "index2": 517, - "size": 390, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "issuerId": "oCl/", - "issuerName": "./node_modules/lodash/_getSymbolsIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MvSz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "module": "./node_modules/lodash/_getSymbols.js", - "moduleName": "./node_modules/lodash/_getSymbols.js", - "type": "cjs require", - "userRequest": "./stubArray", - "loc": "2:16-38" - }, - { - "moduleId": "oCl/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "module": "./node_modules/lodash/_getSymbolsIn.js", - "moduleName": "./node_modules/lodash/_getSymbolsIn.js", - "type": "cjs require", - "userRequest": "./stubArray", - "loc": "4:16-38" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * This method returns a new empty array.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {Array} Returns the new empty array.\n * @example\n *\n * var arrays = _.times(2, _.stubArray);\n *\n * console.log(arrays);\n * // => [[], []]\n *\n * console.log(arrays[0] === arrays[1]);\n * // => false\n */\nfunction stubArray() {\n return [];\n}\n\nmodule.exports = stubArray;\n" - }, - { - "id": "1+5i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSet.js", - "name": "./node_modules/lodash/isSet.js", - "index": 551, - "index2": 545, - "size": 613, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./isSet", - "loc": "20:12-30" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseIsSet = require('./_baseIsSet'),\n baseUnary = require('./_baseUnary'),\n nodeUtil = require('./_nodeUtil');\n\n/* Node.js helper references. */\nvar nodeIsSet = nodeUtil && nodeUtil.isSet;\n\n/**\n * Checks if `value` is classified as a `Set` object.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a set, else `false`.\n * @example\n *\n * _.isSet(new Set);\n * // => true\n *\n * _.isSet(new WeakSet);\n * // => false\n */\nvar isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;\n\nmodule.exports = isSet;\n" - }, - { - "id": "1/U1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/fonts.js", - "name": "./node_modules/@uifabric/styling/lib/styles/fonts.js", - "index": null, - "index2": null, - "size": 184, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./fonts", - "loc": "5:0-82" - } - ], - "usedExports": false, - "providedExports": [ - "LocalizedFontNames", - "LocalizedFontFamilies", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export { LocalizedFontNames, LocalizedFontFamilies, FontSizes, FontWeights, IconFontSizes, createFontStyles, } from '@fluentui/theme/lib/fonts/index';\n//# sourceMappingURL=fonts.js.map" - }, - { - "id": "16Al", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/factoryWithThrowingShims.js", - "name": "./node_modules/prop-types/factoryWithThrowingShims.js", - "index": 352, - "index2": 349, - "size": 1639, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "issuerId": "17x9", - "issuerName": "./node_modules/prop-types/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - }, - { - "id": "17x9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "name": "./node_modules/prop-types/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "17x9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "module": "./node_modules/prop-types/index.js", - "moduleName": "./node_modules/prop-types/index.js", - "type": "cjs require", - "userRequest": "./factoryWithThrowingShims", - "loc": "18:19-56" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n" - }, - { - "id": "16Wd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "index": null, - "index2": null, - "size": 3611, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "issuerId": "Cv5W", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": "Cv5W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./CompoundButton.styles", - "loc": "5:0-52" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "./CompoundButton.styles", - "loc": "16:165-174" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { concatStyleSets, FontWeights, HighContrastSelector, getHighContrastNoAdjustStyle, } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nimport { primaryStyles, standardStyles } from '../ButtonThemes';\nexport var getStyles = memoizeFunction(function (theme, customStyles, primary) {\n var _a, _b, _c, _d, _e;\n var fonts = theme.fonts, palette = theme.palette;\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var compoundButtonStyles = {\n root: {\n maxWidth: '280px',\n minHeight: '72px',\n height: 'auto',\n padding: '16px 12px',\n },\n flexContainer: {\n flexDirection: 'row',\n alignItems: 'flex-start',\n minWidth: '100%',\n margin: '',\n },\n textContainer: {\n textAlign: 'left',\n },\n icon: {\n fontSize: '2em',\n lineHeight: '1em',\n height: '1em',\n margin: '0px 8px 0px 0px',\n flexBasis: '1em',\n flexShrink: '0',\n },\n label: {\n margin: '0 0 5px',\n lineHeight: '100%',\n fontWeight: FontWeights.semibold,\n },\n description: [\n fonts.small,\n {\n lineHeight: '100%',\n },\n ],\n };\n var standardCompoundTheme = {\n description: {\n color: palette.neutralSecondary,\n },\n descriptionHovered: {\n color: palette.neutralDark,\n },\n descriptionPressed: {\n color: 'inherit',\n },\n descriptionChecked: {\n color: 'inherit',\n },\n descriptionDisabled: {\n color: 'inherit',\n },\n };\n var primaryCompoundTheme = {\n description: {\n color: palette.white,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ backgroundColor: 'WindowText', color: 'Window' }, getHighContrastNoAdjustStyle()),\n _a),\n },\n descriptionHovered: {\n color: palette.white,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n backgroundColor: 'Highlight',\n color: 'Window',\n },\n _b),\n },\n descriptionPressed: {\n color: 'inherit',\n selectors: (_c = {},\n _c[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _c),\n },\n descriptionChecked: {\n color: 'inherit',\n selectors: (_d = {},\n _d[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _d),\n },\n descriptionDisabled: {\n color: 'inherit',\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n color: 'inherit',\n },\n _e),\n },\n };\n return concatStyleSets(baseButtonStyles, compoundButtonStyles, primary ? primaryStyles(theme) : standardStyles(theme), primary ? primaryCompoundTheme : standardCompoundTheme, splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=CompoundButton.styles.js.map" - }, - { - "id": "175d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "index": null, - "index2": null, - "size": 70, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "issuerId": "/LPW", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "wYsl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ChoiceGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/ChoiceGroup.js" - }, - { - "id": "siR0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js" - }, - { - "id": "hrfb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js" - }, - { - "id": "/LPW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ChoiceGroupOption/index", - "loc": "5:0-62" - }, - { - "moduleId": "siR0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ChoiceGroupOption/index", - "loc": "3:0-42" - }, - { - "moduleId": "siR0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ChoiceGroupOption/index", - "loc": "3:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "ChoiceGroupOption" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export * from './ChoiceGroupOption';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "17x9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/prop-types/index.js", - "name": "./node_modules/prop-types/index.js", - "index": 351, - "index2": 350, - "size": 710, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "issuerId": "0fKb", - "issuerName": "./node_modules/react-js-pagination/dist/Pagination.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "prop-types", - "loc": "10:40-61" - }, - { - "moduleId": "HBL8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Page.js", - "module": "./node_modules/react-js-pagination/dist/Page.js", - "moduleName": "./node_modules/react-js-pagination/dist/Page.js", - "type": "cjs require", - "userRequest": "prop-types", - "loc": "10:40-61" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n" - }, - { - "id": "1L4v", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "index": null, - "index2": null, - "size": 3988, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "issuerId": "0s40", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "0s40", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0s40", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCard.styles", - "loc": "3:0-50" - }, - { - "moduleId": "0s40", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCard.styles", - "loc": "4:51-60" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames, getInputFocusStyle } from '../../Styling';\nimport { IsFocusVisibleClassName } from '../../Utilities';\nimport { DocumentCardPreviewGlobalClassNames as previewClassNames } from './DocumentCardPreview.styles';\nimport { DocumentCardActivityGlobalClassNames as activityClassNames } from './DocumentCardActivity.styles';\nimport { DocumentCardTitleGlobalClassNames as titleClassNames } from './DocumentCardTitle.styles';\nimport { DocumentCardLocationGlobalClassNames as locationClassNames } from './DocumentCardLocation.styles';\nvar GlobalClassNames = {\n root: 'ms-DocumentCard',\n rootActionable: 'ms-DocumentCard--actionable',\n rootCompact: 'ms-DocumentCard--compact',\n};\nexport var getStyles = function (props) {\n var _a, _b;\n var className = props.className, theme = props.theme, actionable = props.actionable, compact = props.compact;\n var palette = theme.palette, fonts = theme.fonts, effects = theme.effects;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n WebkitFontSmoothing: 'antialiased',\n backgroundColor: palette.white,\n border: \"1px solid \" + palette.neutralLight,\n maxWidth: '320px',\n minWidth: '206px',\n userSelect: 'none',\n position: 'relative',\n selectors: (_a = {\n ':focus': {\n outline: '0px solid',\n }\n },\n _a[\".\" + IsFocusVisibleClassName + \" &:focus\"] = getInputFocusStyle(palette.neutralSecondary, effects.roundedCorner2),\n _a[\".\" + locationClassNames.root + \" + .\" + titleClassNames.root] = {\n paddingTop: '4px',\n },\n _a),\n },\n actionable && [\n classNames.rootActionable,\n {\n selectors: {\n ':hover': {\n cursor: 'pointer',\n borderColor: palette.neutralTertiaryAlt,\n },\n ':hover:after': {\n content: '\" \"',\n position: 'absolute',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n border: \"1px solid \" + palette.neutralTertiaryAlt,\n pointerEvents: 'none',\n },\n },\n },\n ],\n compact && [\n classNames.rootCompact,\n {\n display: 'flex',\n maxWidth: '480px',\n height: '108px',\n selectors: (_b = {},\n _b[\".\" + previewClassNames.root] = {\n borderRight: \"1px solid \" + palette.neutralLight,\n borderBottom: 0,\n maxHeight: '106px',\n maxWidth: '144px',\n },\n _b[\".\" + previewClassNames.icon] = {\n maxHeight: '32px',\n maxWidth: '32px',\n },\n _b[\".\" + activityClassNames.root] = {\n paddingBottom: '12px',\n },\n _b[\".\" + titleClassNames.root] = {\n paddingBottom: '12px 16px 8px 16px',\n fontSize: fonts.mediumPlus.fontSize,\n lineHeight: '16px',\n },\n _b),\n },\n ],\n className,\n ],\n };\n};\n//# sourceMappingURL=DocumentCard.styles.js.map" - }, - { - "id": "1LlL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "index": null, - "index2": null, - "size": 11474, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "issuerId": "Lk5B", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "AnrA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Slider.js", - "name": "./node_modules/office-ui-fabric-react/lib/Slider.js" - }, - { - "id": "iASX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js" - }, - { - "id": "Lk5B", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Lk5B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "type": "harmony side effect evaluation", - "userRequest": "./Slider.styles", - "loc": "3:0-44" - }, - { - "moduleId": "Lk5B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "type": "harmony import specifier", - "userRequest": "./Slider.styles", - "loc": "4:39-48" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __spreadArrays } from \"tslib\";\nimport { getGlobalClassNames, HighContrastSelector, AnimationVariables, getFocusStyle } from '../../Styling';\nimport { getRTL } from '@uifabric/utilities';\nvar GlobalClassNames = {\n root: 'ms-Slider',\n enabled: 'ms-Slider-enabled',\n disabled: 'ms-Slider-disabled',\n row: 'ms-Slider-row',\n column: 'ms-Slider-column',\n container: 'ms-Slider-container',\n slideBox: 'ms-Slider-slideBox',\n line: 'ms-Slider-line',\n thumb: 'ms-Slider-thumb',\n activeSection: 'ms-Slider-active',\n inactiveSection: 'ms-Slider-inactive',\n valueLabel: 'ms-Slider-value',\n showValue: 'ms-Slider-showValue',\n showTransitions: 'ms-Slider-showTransitions',\n zeroTick: 'ms-Slider-zeroTick',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;\n var className = props.className, titleLabelClassName = props.titleLabelClassName, theme = props.theme, vertical = props.vertical, disabled = props.disabled, showTransitions = props.showTransitions, showValue = props.showValue, ranged = props.ranged;\n var semanticColors = theme.semanticColors;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n /** Tokens:\n * The word \"active\" in the token refers to the selected section of the slider\n * The word \"inactive\" in the token refers to the unselected section of the slider */\n var pressedActiveSectionColor = semanticColors.inputBackgroundCheckedHovered;\n var hoveredActiveSectionColor = semanticColors.inputBackgroundChecked;\n var hoveredPressedinactiveSectionColor = semanticColors.inputPlaceholderBackgroundChecked;\n var restActiveSectionColor = semanticColors.smallInputBorder;\n var restInactiveSectionColor = semanticColors.disabledBorder;\n var disabledActiveSectionColor = semanticColors.disabledText;\n var disabledInactiveSectionColor = semanticColors.disabledBackground;\n var thumbBackgroundColor = semanticColors.inputBackground;\n var thumbBorderColor = semanticColors.smallInputBorder;\n var thumbDisabledBorderColor = semanticColors.disabledBorder;\n var slideBoxActiveSectionStyles = !disabled && {\n backgroundColor: pressedActiveSectionColor,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n backgroundColor: 'Highlight',\n },\n _a),\n };\n var slideBoxInactiveSectionStyles = !disabled && {\n backgroundColor: hoveredPressedinactiveSectionColor,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _b),\n };\n var slideHoverSectionStyles = !disabled && {\n backgroundColor: hoveredActiveSectionColor,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n backgroundColor: 'Highlight',\n },\n _c),\n };\n var slideBoxActiveThumbStyles = !disabled && {\n border: \"2px solid \" + pressedActiveSectionColor,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _d),\n };\n var slideBoxActiveZeroTickStyles = !props.disabled && {\n backgroundColor: semanticColors.inputPlaceholderBackgroundChecked,\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n backgroundColor: 'Highlight',\n },\n _e),\n };\n return {\n root: __spreadArrays([\n classNames.root,\n theme.fonts.medium,\n {\n userSelect: 'none',\n },\n vertical && {\n marginRight: 8,\n }\n ], [!disabled ? classNames.enabled : undefined], [disabled ? classNames.disabled : undefined], [!vertical ? classNames.row : undefined], [vertical ? classNames.column : undefined], [\n className,\n ]),\n titleLabel: [\n {\n padding: 0,\n },\n titleLabelClassName,\n ],\n container: [\n classNames.container,\n {\n display: 'flex',\n flexWrap: 'nowrap',\n alignItems: 'center',\n },\n vertical && {\n flexDirection: 'column',\n height: '100%',\n textAlign: 'center',\n margin: '8px 0',\n },\n ],\n slideBox: __spreadArrays([\n classNames.slideBox,\n !ranged && getFocusStyle(theme),\n {\n background: 'transparent',\n border: 'none',\n flexGrow: 1,\n lineHeight: 28,\n display: 'flex',\n alignItems: 'center',\n selectors: (_f = {},\n _f[\":active .\" + classNames.activeSection] = slideBoxActiveSectionStyles,\n _f[\":hover .\" + classNames.activeSection] = slideHoverSectionStyles,\n _f[\":active .\" + classNames.inactiveSection] = slideBoxInactiveSectionStyles,\n _f[\":hover .\" + classNames.inactiveSection] = slideBoxInactiveSectionStyles,\n _f[\":active .\" + classNames.thumb] = slideBoxActiveThumbStyles,\n _f[\":hover .\" + classNames.thumb] = slideBoxActiveThumbStyles,\n _f[\":active .\" + classNames.zeroTick] = slideBoxActiveZeroTickStyles,\n _f[\":hover .\" + classNames.zeroTick] = slideBoxActiveZeroTickStyles,\n _f[HighContrastSelector] = {\n forcedColorAdjust: 'none',\n },\n _f),\n },\n vertical\n ? {\n height: '100%',\n width: 28,\n padding: '8px 0',\n }\n : {\n height: 28,\n width: 'auto',\n padding: '0 8px',\n }\n ], [showValue ? classNames.showValue : undefined], [showTransitions ? classNames.showTransitions : undefined]),\n thumb: [\n classNames.thumb,\n ranged && getFocusStyle(theme, { inset: -4 }),\n {\n borderWidth: 2,\n borderStyle: 'solid',\n borderColor: thumbBorderColor,\n borderRadius: 10,\n boxSizing: 'border-box',\n background: thumbBackgroundColor,\n display: 'block',\n width: 16,\n height: 16,\n position: 'absolute',\n },\n vertical\n ? {\n left: -6,\n margin: '0 auto',\n transform: 'translateY(8px)',\n }\n : {\n top: -6,\n transform: getRTL(theme) ? 'translateX(50%)' : 'translateX(-50%)',\n },\n showTransitions && {\n transition: \"left \" + AnimationVariables.durationValue3 + \" \" + AnimationVariables.easeFunction1,\n },\n disabled && {\n borderColor: thumbDisabledBorderColor,\n selectors: (_g = {},\n _g[HighContrastSelector] = {\n borderColor: 'GrayText',\n },\n _g),\n },\n ],\n line: [\n classNames.line,\n {\n display: 'flex',\n position: 'relative',\n },\n vertical\n ? {\n height: '100%',\n width: 4,\n margin: '0 auto',\n flexDirection: 'column-reverse',\n }\n : {\n width: '100%',\n },\n ],\n lineContainer: [\n {\n borderRadius: 4,\n boxSizing: 'border-box',\n },\n vertical\n ? {\n width: 4,\n height: '100%',\n }\n : {\n height: 4,\n width: '100%',\n },\n ],\n activeSection: [\n classNames.activeSection,\n {\n background: restActiveSectionColor,\n selectors: (_h = {},\n _h[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n },\n _h),\n },\n showTransitions && {\n transition: \"width \" + AnimationVariables.durationValue3 + \" \" + AnimationVariables.easeFunction1,\n },\n disabled && {\n background: disabledActiveSectionColor,\n selectors: (_j = {},\n _j[HighContrastSelector] = {\n backgroundColor: 'GrayText',\n borderColor: 'GrayText',\n },\n _j),\n },\n ],\n inactiveSection: [\n classNames.inactiveSection,\n {\n background: restInactiveSectionColor,\n selectors: (_k = {},\n _k[HighContrastSelector] = {\n border: '1px solid WindowText',\n },\n _k),\n },\n showTransitions && {\n transition: \"width \" + AnimationVariables.durationValue3 + \" \" + AnimationVariables.easeFunction1,\n },\n disabled && {\n background: disabledInactiveSectionColor,\n selectors: (_l = {},\n _l[HighContrastSelector] = {\n borderColor: 'GrayText',\n },\n _l),\n },\n ],\n zeroTick: [\n classNames.zeroTick,\n {\n position: 'absolute',\n background: semanticColors.disabledBorder,\n selectors: (_m = {},\n _m[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n },\n _m),\n },\n props.disabled && {\n background: semanticColors.disabledBackground,\n selectors: (_o = {},\n _o[HighContrastSelector] = {\n backgroundColor: 'GrayText',\n },\n _o),\n },\n props.vertical\n ? {\n width: '16px',\n height: '1px',\n transform: getRTL(theme) ? 'translateX(6px)' : 'translateX(-6px)',\n }\n : {\n width: '1px',\n height: '16px',\n transform: 'translateY(-6px)',\n },\n ],\n valueLabel: [\n classNames.valueLabel,\n {\n flexShrink: 1,\n width: 30,\n lineHeight: '1',\n },\n vertical\n ? {\n margin: '0 auto',\n whiteSpace: 'nowrap',\n width: 40,\n }\n : {\n margin: '0 8px',\n whiteSpace: 'nowrap',\n width: 40,\n },\n ],\n };\n};\n//# sourceMappingURL=Slider.styles.js.map" - }, - { - "id": "1R2D", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "index": null, - "index2": null, - "size": 328, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "issuerId": "175d", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "wYsl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ChoiceGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/ChoiceGroup.js" - }, - { - "id": "siR0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js" - }, - { - "id": "hrfb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js" - }, - { - "id": "/LPW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js" - }, - { - "id": "175d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./ChoiceGroupOption/index", - "loc": "88:48-65" - }, - { - "moduleId": "175d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ChoiceGroupOption", - "loc": "1:0-36" - }, - { - "moduleId": "175d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ChoiceGroupOption", - "loc": "1:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "ChoiceGroupOption" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { styled } from '../../../Utilities';\nimport { ChoiceGroupOptionBase } from './ChoiceGroupOption.base';\nimport { getStyles } from './ChoiceGroupOption.styles';\nexport var ChoiceGroupOption = styled(ChoiceGroupOptionBase, getStyles, undefined, { scope: 'ChoiceGroupOption' });\n//# sourceMappingURL=ChoiceGroupOption.js.map" - }, - { - "id": "1Z81", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "index": null, - "index2": null, - "size": 2787, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "issuerId": "xaxG", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+WGp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js" - }, - { - "id": "HhSh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js" - }, - { - "id": "3L5l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js" - }, - { - "id": "xaxG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony side effect evaluation", - "userRequest": "./SuggestionsControl.scss", - "loc": "5:0-58" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "userRequest": "./SuggestionsControl.scss", - "loc": "7:13-25" - } - ], - "usedExports": false, - "providedExports": [ - "root", - "actionButton", - "buttonSelected", - "suggestionsTitle", - "suggestionsSpinner", - "itemButton", - "screenReaderOnly" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "/* eslint-disable */\nimport { loadStyles } from '@microsoft/load-themed-styles';\nloadStyles([{ \"rawString\": \".root_dffe64b5{min-width:260px}.actionButton_dffe64b5{background:0 0;background-color:transparent;border:0;cursor:pointer;margin:0;padding:0;position:relative;width:100%;font-size:12px}html[dir=ltr] .actionButton_dffe64b5{text-align:left}html[dir=rtl] .actionButton_dffe64b5{text-align:right}.actionButton_dffe64b5:hover{background-color:\" }, { \"theme\": \"neutralLighter\", \"defaultValue\": \"#f3f2f1\" }, { \"rawString\": \";cursor:pointer}.actionButton_dffe64b5:active,.actionButton_dffe64b5:focus{background-color:\" }, { \"theme\": \"themeLight\", \"defaultValue\": \"#c7e0f4\" }, { \"rawString\": \"}.actionButton_dffe64b5 .ms-Button-icon{font-size:16px;width:25px}.actionButton_dffe64b5 .ms-Button-label{margin:0 4px 0 9px}html[dir=rtl] .actionButton_dffe64b5 .ms-Button-label{margin:0 9px 0 4px}.buttonSelected_dffe64b5{background-color:\" }, { \"theme\": \"themeLighter\", \"defaultValue\": \"#deecf9\" }, { \"rawString\": \"}.buttonSelected_dffe64b5:hover{background-color:\" }, { \"theme\": \"themeLight\", \"defaultValue\": \"#c7e0f4\" }, { \"rawString\": \";cursor:pointer}@media screen and (-ms-high-contrast:active){.buttonSelected_dffe64b5:hover{background-color:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast:active){.buttonSelected_dffe64b5{background-color:Highlight;color:HighlightText;-ms-high-contrast-adjust:none}}.suggestionsTitle_dffe64b5{font-size:12px}.suggestionsSpinner_dffe64b5{margin:5px 0;white-space:nowrap;line-height:20px;font-size:12px}html[dir=ltr] .suggestionsSpinner_dffe64b5{padding-left:14px}html[dir=rtl] .suggestionsSpinner_dffe64b5{padding-right:14px}html[dir=ltr] .suggestionsSpinner_dffe64b5{text-align:left}html[dir=rtl] .suggestionsSpinner_dffe64b5{text-align:right}.suggestionsSpinner_dffe64b5 .ms-Spinner-circle{display:inline-block;vertical-align:middle}.suggestionsSpinner_dffe64b5 .ms-Spinner-label{display:inline-block;margin:0 10px 0 16px;vertical-align:middle}html[dir=rtl] .suggestionsSpinner_dffe64b5 .ms-Spinner-label{margin:0 16px 0 10px}.itemButton_dffe64b5{height:100%;width:100%;padding:7px 12px}@media screen and (-ms-high-contrast:active){.itemButton_dffe64b5{color:WindowText}}.screenReaderOnly_dffe64b5{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}\" }]);\nexport var root = \"root_dffe64b5\";\nexport var actionButton = \"actionButton_dffe64b5\";\nexport var buttonSelected = \"buttonSelected_dffe64b5\";\nexport var suggestionsTitle = \"suggestionsTitle_dffe64b5\";\nexport var suggestionsSpinner = \"suggestionsSpinner_dffe64b5\";\nexport var itemButton = \"itemButton_dffe64b5\";\nexport var screenReaderOnly = \"screenReaderOnly_dffe64b5\";\n//# sourceMappingURL=SuggestionsControl.scss.js.map" - }, - { - "id": "1ptM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "name": "./node_modules/@uifabric/foundation/lib/index.js", - "index": null, - "index2": null, - "size": 239, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "issuerId": "7Rmr", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Foundation.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - }, - { - "id": "MObJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js" - }, - { - "id": "7Rmr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "name": "./node_modules/office-ui-fabric-react/lib/Foundation.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7Rmr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "module": "./node_modules/office-ui-fabric-react/lib/Foundation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Foundation.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/foundation", - "loc": "1:0-37" - }, - { - "moduleId": "7Rmr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "module": "./node_modules/office-ui-fabric-react/lib/Foundation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Foundation.js", - "type": "harmony export imported specifier", - "userRequest": "@uifabric/foundation", - "loc": "1:0-37" - } - ], - "usedExports": false, - "providedExports": [ - "createComponent", - "withSlots", - "createFactory", - "getSlots", - "ThemeProvider", - "useControlledState", - "getControlledDerivedProps", - "legacyStyled" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "export * from './createComponent';\nexport * from './slots';\nexport * from './ThemeProvider';\nexport * from './hooks/index';\nexport { styled as legacyStyled } from '@uifabric/utilities';\nimport './version';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "1uzz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/Selection.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/selection/Selection.js", - "index": null, - "index2": null, - "size": 86, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "issuerId": "Ox9w", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - }, - { - "id": "Ox9w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Ox9w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Selection", - "loc": "2:0-28" - }, - { - "moduleId": "Ox9w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Selection", - "loc": "2:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "Selection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export { Selection } from '@uifabric/utilities';\n//# sourceMappingURL=Selection.js.map" - }, - { - "id": "2+xV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "index": 113, - "index2": 98, - "size": 1127, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "3:0-52" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "36:124-131" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "36:133-143" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "36:178-188" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "3:0-42" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "9:35-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.styles", - "loc": "5:0-52" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "20:98-105" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "20:107-117" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "./Icon.styles", - "loc": "20:124-134" - } - ], - "usedExports": [ - "MS_ICON", - "classNames", - "getStyles" - ], - "providedExports": [ - "classNames", - "MS_ICON", - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { mergeStyleSets } from '../../Styling';\n/** Class names used in themeable and non-themeable Icon components */\nexport var classNames = mergeStyleSets({\n root: {\n display: 'inline-block',\n },\n placeholder: [\n 'ms-Icon-placeHolder',\n {\n width: '1em',\n },\n ],\n image: [\n 'ms-Icon-imageContainer',\n {\n overflow: 'hidden',\n },\n ],\n});\n/** Class name used only in non-themeable Icon components */\nexport var MS_ICON = 'ms-Icon';\nexport var getStyles = function (props) {\n var className = props.className, iconClassName = props.iconClassName, isPlaceholder = props.isPlaceholder, isImage = props.isImage, styles = props.styles;\n return {\n root: [\n isPlaceholder && classNames.placeholder,\n classNames.root,\n isImage && classNames.image,\n iconClassName,\n className,\n styles && styles.root,\n // eslint-disable-next-line deprecation/deprecation\n styles && styles.imageContainer,\n ],\n };\n};\n//# sourceMappingURL=Icon.styles.js.map" - }, - { - "id": "23UO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "index": null, - "index2": null, - "size": 874, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "issuerId": "nti7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "yI02", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/Coachmark.js" - }, - { - "id": "bATe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js" - }, - { - "id": "y19T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js" - }, - { - "id": "Sbs+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js" - }, - { - "id": "nti7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony side effect evaluation", - "userRequest": "./Beak.styles", - "loc": "4:0-42" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "userRequest": "./Beak.styles", - "loc": "59:39-48" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "import { HighContrastSelector } from '../../../Styling';\nexport function getStyles(props) {\n var _a;\n return {\n root: [\n {\n position: 'absolute',\n boxShadow: 'inherit',\n border: 'none',\n boxSizing: 'border-box',\n transform: props.transform,\n width: props.width,\n height: props.height,\n left: props.left,\n top: props.top,\n right: props.right,\n bottom: props.bottom,\n },\n ],\n beak: {\n fill: props.color,\n display: 'block',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n fill: 'windowtext',\n },\n _a),\n },\n };\n}\n//# sourceMappingURL=Beak.styles.js.map" - }, - { - "id": "26ea", - "identifier": "external \"@microsoft/sp-property-pane\"", - "name": "external \"@microsoft/sp-property-pane\"", - "index": 4, - "index2": 3, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "14:0-68" - }, - { - "moduleId": "EEdu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "25:20-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "2:0-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "5:20-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "13:0-165" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "467:81-101" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "472:83-104" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "475:79-97" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "479:84-104" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "490:137-158" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "493:165-192" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "496:16-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "516:86-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "522:87-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "526:77-98" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "544:72-92" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "556:63-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "561:76-96" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "591:85-105" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "690:137-158" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "768:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "773:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "778:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "919:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "929:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "934:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "946:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "968:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "977:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "982:32-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "994:32-50" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "3:0-124" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "45:32-59" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "48:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "51:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "54:40-64" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "59:47-69" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-property-pane", - "loc": "14:0-68" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-property-pane", - "loc": "18:20-41" - } - ], - "usedExports": [ - "DynamicDataSharedDepth", - "PropertyPaneDropdown", - "PropertyPaneDynamicField", - "PropertyPaneDynamicFieldSet", - "PropertyPaneFieldType", - "PropertyPaneTextField", - "PropertyPaneToggle" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "2ME3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/IPropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/IPropertyFieldCollectionData.js", - "index": 9, - "index2": 6, - "size": 56, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldCollectionData", - "loc": "2:0-47" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldCollectionData", - "loc": "2:0-47" - } - ], - "usedExports": [ - "PropertyFieldCollectionData", - "PropertyFieldCollectionDataHost" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldCollectionData.js.map" - }, - { - "id": "2R+p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-16.js", - "index": null, - "index2": null, - "size": 4986, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-16", - "loc": "18:0-59" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-16", - "loc": "42:8-11" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-16\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-16-9cf93f3b.woff') format('woff')\"\n },\n icons: {\n 'OfficeChatSolid': '\\uF710',\n 'MailSchedule': '\\uF72E',\n 'WarningSolid': '\\uF736',\n 'Blocked2Solid': '\\uF737',\n 'SkypeCircleArrow': '\\uF747',\n 'SkypeArrow': '\\uF748',\n 'SyncStatus': '\\uF751',\n 'SyncStatusSolid': '\\uF752',\n 'ProjectDocument': '\\uF759',\n 'ToDoLogoOutline': '\\uF75B',\n 'VisioOnlineLogoFill32': '\\uF75F',\n 'VisioOnlineLogo32': '\\uF760',\n 'VisioOnlineLogoCloud32': '\\uF761',\n 'VisioDiagramSync': '\\uF762',\n 'Event12': '\\uF763',\n 'EventDateMissed12': '\\uF764',\n 'UserOptional': '\\uF767',\n 'ResponsesMenu': '\\uF768',\n 'DoubleDownArrow': '\\uF769',\n 'DistributeDown': '\\uF76A',\n 'BookmarkReport': '\\uF76B',\n 'FilterSettings': '\\uF76C',\n 'GripperDotsVertical': '\\uF772',\n 'MailAttached': '\\uF774',\n 'AddIn': '\\uF775',\n 'LinkedDatabase': '\\uF779',\n 'TableLink': '\\uF77A',\n 'PromotedDatabase': '\\uF77D',\n 'BarChartVerticalFilter': '\\uF77E',\n 'BarChartVerticalFilterSolid': '\\uF77F',\n 'MicOff2': '\\uF781',\n 'MicrosoftTranslatorLogo': '\\uF782',\n 'ShowTimeAs': '\\uF787',\n 'FileRequest': '\\uF789',\n 'WorkItemAlert': '\\uF78F',\n 'PowerBILogo16': '\\uF790',\n 'PowerBILogoBackplate16': '\\uF791',\n 'BulletedListText': '\\uF792',\n 'BulletedListBullet': '\\uF793',\n 'BulletedListTextMirrored': '\\uF794',\n 'BulletedListBulletMirrored': '\\uF795',\n 'NumberedListText': '\\uF796',\n 'NumberedListNumber': '\\uF797',\n 'NumberedListTextMirrored': '\\uF798',\n 'NumberedListNumberMirrored': '\\uF799',\n 'RemoveLinkChain': '\\uF79A',\n 'RemoveLinkX': '\\uF79B',\n 'FabricTextHighlight': '\\uF79C',\n 'ClearFormattingA': '\\uF79D',\n 'ClearFormattingEraser': '\\uF79E',\n 'Photo2Fill': '\\uF79F',\n 'IncreaseIndentText': '\\uF7A0',\n 'IncreaseIndentArrow': '\\uF7A1',\n 'DecreaseIndentText': '\\uF7A2',\n 'DecreaseIndentArrow': '\\uF7A3',\n 'IncreaseIndentTextMirrored': '\\uF7A4',\n 'IncreaseIndentArrowMirrored': '\\uF7A5',\n 'DecreaseIndentTextMirrored': '\\uF7A6',\n 'DecreaseIndentArrowMirrored': '\\uF7A7',\n 'CheckListText': '\\uF7A8',\n 'CheckListCheck': '\\uF7A9',\n 'CheckListTextMirrored': '\\uF7AA',\n 'CheckListCheckMirrored': '\\uF7AB',\n 'NumberSymbol': '\\uF7AC',\n 'Coupon': '\\uF7BC',\n 'VerifiedBrand': '\\uF7BD',\n 'ReleaseGate': '\\uF7BE',\n 'ReleaseGateCheck': '\\uF7BF',\n 'ReleaseGateError': '\\uF7C0',\n 'M365InvoicingLogo': '\\uF7C1',\n 'RemoveFromShoppingList': '\\uF7D5',\n 'ShieldAlert': '\\uF7D7',\n 'FabricTextHighlightComposite': '\\uF7DA',\n 'Dataflows': '\\uF7DD',\n 'GenericScanFilled': '\\uF7DE',\n 'DiagnosticDataBarTooltip': '\\uF7DF',\n 'SaveToMobile': '\\uF7E0',\n 'Orientation2': '\\uF7E1',\n 'ScreenCast': '\\uF7E2',\n 'ShowGrid': '\\uF7E3',\n 'SnapToGrid': '\\uF7E4',\n 'ContactList': '\\uF7E5',\n 'NewMail': '\\uF7EA',\n 'EyeShadow': '\\uF7EB',\n 'FabricFolderConfirm': '\\uF7FF',\n 'InformationBarriers': '\\uF803',\n 'CommentActive': '\\uF804',\n 'ColumnVerticalSectionEdit': '\\uF806',\n 'WavingHand': '\\uF807',\n 'ShakeDevice': '\\uF80A',\n 'SmartGlassRemote': '\\uF80B',\n 'Rotate90Clockwise': '\\uF80D',\n 'Rotate90CounterClockwise': '\\uF80E',\n 'CampaignTemplate': '\\uF811',\n 'ChartTemplate': '\\uF812',\n 'PageListFilter': '\\uF813',\n 'SecondaryNav': '\\uF814',\n 'ColumnVerticalSection': '\\uF81E',\n 'SkypeCircleSlash': '\\uF825',\n 'SkypeSlash': '\\uF826'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-16.js.map" - }, - { - "id": "2WvF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "index": 207, - "index2": 237, - "size": 3011, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "55:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "63:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "68:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "131:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "433:36-46" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "47:63-73" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "298:40-50" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "299:40-50" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "92:75-85" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "28:28-38" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "8:0-53" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./IconButton/IconButton", - "loc": "32:43-53" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "28:44-54" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "41:105-115" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "42:128-138" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "19:28-38" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "24:36-46" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "28:36-46" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "134:36-46" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "83:47-57" - } - ], - "usedExports": [ - "IconButton" - ], - "providedExports": [ - "IconButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/BaseComponent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/customizations/customizable.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/memoize.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "index": 207, - "index2": 237, - "size": 1021, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "55:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "63:40-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "68:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "131:36-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "433:36-46" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "47:63-73" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "298:40-50" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "299:40-50" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IconButton/IconButton", - "loc": "11:0-40" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "92:75-85" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "28:28-38" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton/IconButton", - "loc": "8:0-53" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./IconButton/IconButton", - "loc": "32:43-53" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "28:44-54" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "41:105-115" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "42:128-138" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Button", - "loc": "19:28-38" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "24:36-46" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Button", - "loc": "28:36-46" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "134:36-46" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "83:47-57" - } - ], - "usedExports": [ - "IconButton" - ], - "providedExports": [ - "IconButton" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './IconButton.styles';\n/**\n * {@docCategory Button}\n */\nvar IconButton = /** @class */ (function (_super) {\n __extends(IconButton, _super);\n function IconButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n IconButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: \"ms-Button--icon\", styles: getStyles(theme, styles), onRenderText: nullRender, onRenderDescription: nullRender })));\n };\n IconButton = __decorate([\n customizable('IconButton', ['theme', 'styles'], true)\n ], IconButton);\n return IconButton;\n}(React.Component));\nexport { IconButton };\n//# sourceMappingURL=IconButton.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "index": 248, - "index2": 236, - "size": 1945, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./IconButton.styles", - "loc": "5:0-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "userRequest": "./IconButton.styles", - "loc": "16:120-129" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { concatStyleSets, HighContrastSelector } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var _a;\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var palette = theme.palette, semanticColors = theme.semanticColors;\n var iconButtonStyles = {\n root: {\n padding: '0 4px',\n width: '32px',\n height: '32px',\n backgroundColor: 'transparent',\n border: 'none',\n color: semanticColors.link,\n },\n rootHovered: {\n color: palette.themeDarkAlt,\n backgroundColor: palette.neutralLighter,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _a),\n },\n rootHasMenu: {\n width: 'auto',\n },\n rootPressed: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootExpanded: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootChecked: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootCheckedHovered: {\n color: palette.themeDark,\n backgroundColor: palette.neutralQuaternaryAlt,\n },\n rootDisabled: {\n color: palette.neutralTertiaryAlt,\n },\n };\n return concatStyleSets(baseButtonStyles, iconButtonStyles, splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=IconButton.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "2a+Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "index": null, - "index2": null, - "size": 288, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "issuerId": "DlPT", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hgfh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js" - }, - { - "id": "DlPT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "DlPT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./OverflowSet", - "loc": "1:0-30" - }, - { - "moduleId": "DlPT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "type": "harmony export imported specifier", - "userRequest": "./OverflowSet", - "loc": "1:0-30" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../OverflowSet", - "loc": "19:36-47" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../OverflowSet", - "loc": "20:82-93" - } - ], - "usedExports": false, - "providedExports": [ - "OverflowSet" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { OverflowSetBase } from './OverflowSet.base';\nimport { getStyles } from './OverflowSet.styles';\nexport var OverflowSet = styled(OverflowSetBase, getStyles, undefined, {\n scope: 'OverflowSet',\n});\n//# sourceMappingURL=OverflowSet.js.map" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "index": null, - "index2": null, - "size": 503, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "issuerId": "VPIu", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "VPIu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Button/index", - "loc": "1:0-42" - }, - { - "moduleId": "VPIu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Button/index", - "loc": "1:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "BaseButton", - "ElementType", - "ButtonType", - "Button", - "ActionButton", - "CommandBarButton", - "CommandButton", - "CompoundButton", - "DefaultButton", - "MessageBarButton", - "PrimaryButton", - "IconButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export * from './BaseButton';\nexport * from './Button.types';\nexport * from './Button';\nexport * from './ActionButton/ActionButton';\nexport * from './CommandBarButton/CommandBarButton';\nexport * from './CommandButton/CommandButton';\nexport * from './CompoundButton/CompoundButton';\nexport * from './DefaultButton/DefaultButton';\nexport * from './MessageBarButton/MessageBarButton';\nexport * from './PrimaryButton/PrimaryButton';\nexport * from './IconButton/IconButton';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "2gN3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_coreJsData.js", - "name": "./node_modules/lodash/_coreJsData.js", - "index": 472, - "index2": 459, - "size": 157, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isMasked.js", - "issuerId": "E2jh", - "issuerName": "./node_modules/lodash/_isMasked.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js" - }, - { - "id": "NKxu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "name": "./node_modules/lodash/_baseIsNative.js" - }, - { - "id": "E2jh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isMasked.js", - "name": "./node_modules/lodash/_isMasked.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "E2jh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isMasked.js", - "module": "./node_modules/lodash/_isMasked.js", - "moduleName": "./node_modules/lodash/_isMasked.js", - "type": "cjs require", - "userRequest": "./_coreJsData", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "var root = require('./_root');\n\n/** Used to detect overreaching core-js shims. */\nvar coreJsData = root['__core-js_shared__'];\n\nmodule.exports = coreJsData;\n" - }, - { - "id": "2ihB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "index": null, - "index2": null, - "size": 1067, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CommandBarButton/CommandBarButton", - "loc": "5:0-52" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CommandBarButton/CommandBarButton", - "loc": "5:0-52" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "39:34-50" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "56:67-83" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Button", - "loc": "57:18-34" - } - ], - "usedExports": false, - "providedExports": [ - "CommandBarButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './CommandBarButton.styles';\n/**\n * {@docCategory Button}\n */\nvar CommandBarButton = /** @class */ (function (_super) {\n __extends(CommandBarButton, _super);\n function CommandBarButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n CommandBarButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: \"ms-Button--commandBar\", styles: getStyles(theme, styles), onRenderDescription: nullRender })));\n };\n CommandBarButton = __decorate([\n customizable('CommandBarButton', ['theme', 'styles'], true)\n ], CommandBarButton);\n return CommandBarButton;\n}(React.Component));\nexport { CommandBarButton };\n//# sourceMappingURL=CommandBarButton.js.map" - }, - { - "id": "2iod", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "index": null, - "index2": null, - "size": 427, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DateTimeUtilities", - "loc": "20:0-36" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DateTimeUtilities", - "loc": "20:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "addDays", - "addWeeks", - "addMonths", - "addYears", - "getMonthStart", - "getMonthEnd", - "getYearStart", - "getYearEnd", - "setMonth", - "compareDates", - "compareDatePart", - "getDateRangeArray", - "isInDateRangeArray", - "getWeekNumbersInMonth", - "getWeekNumber", - "getStartDateOfWeek", - "getEndDateOfWeek", - "getDatePartHashValue", - "DayOfWeek", - "MonthOfYear", - "FirstWeekOfYear", - "DateRangeType", - "DAYS_IN_WEEK" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "// NOTE: This is not a full re-export because date-time-utilities includes some additional stuff\n// which is exported elsewhere, causes conflicts, or isn't needed.\nexport * from '@fluentui/date-time-utilities/lib/dateMath/dateMath';\nexport * from '@fluentui/date-time-utilities/lib/dateValues/dateValues';\nexport * from '@fluentui/date-time-utilities/lib/dateValues/timeConstants';\n//# sourceMappingURL=DateTimeUtilities.js.map" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "index": null, - "index2": null, - "size": 9971, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "issuerId": "GtBs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "GtBs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ThemeGenerator", - "loc": "1:0-33" - }, - { - "moduleId": "GtBs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ThemeGenerator", - "loc": "1:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "ThemeGenerator" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { getColorFromString } from '../../utilities/color/getColorFromString';\nimport { isValidShade, getShade, getBackgroundShade } from '../../utilities/color/shades';\nimport { format } from '../../Utilities';\nvar ThemeGenerator = /** @class */ (function () {\n function ThemeGenerator() {\n }\n /**\n * Sets an IThemeSlotRule to the given color and cascades it to the rest of the theme, updating other IThemeSlotRules\n * in the theme that inherit from that color.\n * @param isInverted - whether it's a dark theme or not, which affects the algorithm used to generate shades\n * @param isCustomization - should be true only if it's a user action, and indicates overwriting the slot's\n * inheritance (if any)\n * @param overwriteCustomColor - A slot could have a generated color based on its inheritance rules (isCustomized\n * is false), or a custom color based on user input (isCustomized is true). This bool tells us whether to override\n * existing customized colors.\n */\n ThemeGenerator.setSlot = function (rule, color, isInverted, isCustomization, overwriteCustomColor) {\n if (isInverted === void 0) { isInverted = false; }\n if (isCustomization === void 0) { isCustomization = false; }\n if (overwriteCustomColor === void 0) { overwriteCustomColor = true; }\n if (!rule.color && rule.value) {\n // not a color rule\n return;\n }\n if (overwriteCustomColor) {\n var colorAsIColor = void 0;\n if (typeof color === 'string') {\n colorAsIColor = getColorFromString(color); // the ! is a lie here but we'll verify it in the next line\n if (!colorAsIColor) {\n throw new Error('color is invalid in setSlot(): ' + color);\n }\n }\n else {\n colorAsIColor = color;\n }\n ThemeGenerator._setSlot(rule, colorAsIColor, isInverted, isCustomization, overwriteCustomColor);\n }\n else if (rule.color) {\n ThemeGenerator._setSlot(rule, rule.color, isInverted, isCustomization, overwriteCustomColor);\n }\n };\n /**\n * Sets the color of each slot based on its rule. Slots that don't inherit must have a color already.\n * If this completes without error, then the theme is ready to use. (All slots will have a color.)\n * setSlot() can be called before this, but this must be called before getThemeAs*().\n * Does not override colors of rules where isCustomized is true (i.e. doesn't override existing customizations).\n */\n ThemeGenerator.insureSlots = function (slotRules, isInverted) {\n // Get all the \"root\" rules, the ones which don't inherit. Then \"set\" them to trigger updating dependent slots.\n for (var ruleName in slotRules) {\n if (slotRules.hasOwnProperty(ruleName)) {\n var rule = slotRules[ruleName];\n if (!rule.inherits && !rule.value) {\n if (!rule.color) {\n throw new Error('A color slot rule that does not inherit must provide its own color.');\n }\n ThemeGenerator._setSlot(rule, rule.color, isInverted, false, false);\n }\n }\n }\n };\n /**\n * Gets the JSON-formatted blob that describes the theme, usable with the REST request endpoints:\n * ```\n * { [theme slot name as string] : [color as string],\n * \"tokenName\": \"#f00f00\",\n * \"tokenName2\": \"#ba2ba2\",\n * ... }\n * ```\n */\n ThemeGenerator.getThemeAsJson = function (slotRules) {\n var theme = {};\n for (var ruleName in slotRules) {\n if (slotRules.hasOwnProperty(ruleName)) {\n var rule = slotRules[ruleName];\n theme[rule.name] = rule.color ? rule.color.str : rule.value || '';\n }\n }\n return theme;\n };\n /**\n * Gets code-formatted load theme blob that can be copy and pasted.\n * Only used for the old theme designer, where loadTheme usage is acceptable,\n * unlike in the new theme designer.\n */\n ThemeGenerator.getThemeAsCode = function (slotRules) {\n var output = 'loadTheme({\\n palette: {\\n';\n return ThemeGenerator._makeRemainingCode(output, slotRules);\n };\n /**\n * Gets code-formatted load theme blob, specifically for the new theme designer,\n * aka.ms/themedesigner. Shouldn't use loadTheme like the old theme designer since it's deprecated.\n * We want to use the theme object from createTheme and use the Customizations.applySettings API instead.\n */\n ThemeGenerator.getThemeAsCodeWithCreateTheme = function (slotRules) {\n var output = 'const myTheme = createTheme({\\n palette: {\\n';\n return ThemeGenerator._makeRemainingCode(output, slotRules);\n };\n /**\n * Gets the theme as a list of SASS variables that can be used in code\n * ```\n * $tokenName: \"[theme:tokenName, default:#f00f00]\";\n * $tokenName2: \"[theme:tokenName2, default:#ba2ba2]\";\n * ...\n * ```\n */\n ThemeGenerator.getThemeAsSass = function (slotRules) {\n var sassVarTemplate = '${0}Color: \"[theme: {1}, default: {2}]\";\\n';\n var output = '';\n for (var ruleName in slotRules) {\n if (slotRules.hasOwnProperty(ruleName)) {\n var rule = slotRules[ruleName];\n var camelCasedName = rule.name.charAt(0).toLowerCase() + rule.name.slice(1);\n output += format(sassVarTemplate, camelCasedName, camelCasedName, rule.color ? rule.color.str : rule.value || '');\n }\n }\n return output;\n };\n /**\n * Gets the theme formatted for PowerShell scripts\n * ```\n * @{\n * \"tokenName\" = \"#f00f00\";\n * \"tokenName2\" = \"#ba2ba2\";\n * ...\n * }\n * ```\n */\n ThemeGenerator.getThemeForPowerShell = function (slotRules) {\n var psVarTemplate = '\"{0}\" = \"{1}\";\\n';\n var output = '';\n for (var ruleName in slotRules) {\n if (slotRules.hasOwnProperty(ruleName)) {\n var rule = slotRules[ruleName];\n if (rule.value) {\n // skip this one, it's not a color\n continue;\n }\n var camelCasedName = rule.name.charAt(0).toLowerCase() + rule.name.slice(1);\n var outputColor = rule.color ? '#' + rule.color.hex : rule.value || '';\n // powershell endpoint uses the RGBA format\n if (rule.color && rule.color.a && rule.color.a !== 100) {\n outputColor += String(rule.color.a.toString(16));\n }\n output += format(psVarTemplate, camelCasedName, outputColor);\n }\n }\n return '@{\\n' + output + '}';\n };\n /**\n * Sets the given slot's color to the appropriate color, shading it if necessary.\n * Then, iterates through all other rules (that are this rule's dependents) to update them accordingly.\n * @param isCustomization - If true, it's a user-provided color, which should be to that raw color.\n * If false, the rule it's inheriting from changed, so updated using asShade.\n */\n ThemeGenerator._setSlot = function (rule, color, isInverted, isCustomization, overwriteCustomColor) {\n if (overwriteCustomColor === void 0) { overwriteCustomColor = true; }\n if (!rule.color && rule.value) {\n // not a color rule\n return;\n }\n if (overwriteCustomColor || !rule.color || !rule.isCustomized || !rule.inherits) {\n // set the rule's color under these conditions\n if ((overwriteCustomColor || !rule.isCustomized) &&\n !isCustomization &&\n rule.inherits &&\n isValidShade(rule.asShade)) {\n // it's inheriting by shade\n if (rule.isBackgroundShade) {\n rule.color = getBackgroundShade(color, rule.asShade, isInverted);\n }\n else {\n rule.color = getShade(color, rule.asShade, isInverted);\n }\n rule.isCustomized = false;\n }\n else {\n rule.color = color;\n rule.isCustomized = true;\n }\n // then update dependent colors\n for (var _i = 0, _a = rule.dependentRules; _i < _a.length; _i++) {\n var ruleToUpdate = _a[_i];\n ThemeGenerator._setSlot(ruleToUpdate, rule.color, isInverted, false, overwriteCustomColor);\n }\n }\n };\n /**\n * Makes the rest of the code that's used for the load theme blob in the exported codepens of\n * both the older sharepoint-specific theme designer and the new theme designer. Takes in\n * theme rules and converts them to format fitting a list of palette colors and their values.\n * Resulting output looks like:\n * ```\n * const _theme = createTheme({\n * palette: {\n * themePrimary: '#0078d4',\n * themeLighterAlt: '#f3f9fd',\n * ...\n * }});\n * ```\n * The first line is loadTheme instead of createTheme for the old sharepoint theme designer.\n */\n ThemeGenerator._makeRemainingCode = function (output, slotRules) {\n var attributeTemplate = \" {0}: '{1}',\\n\";\n for (var ruleName in slotRules) {\n if (slotRules.hasOwnProperty(ruleName)) {\n var rule = slotRules[ruleName];\n var camelCasedName = rule.name.charAt(0).toLowerCase() + rule.name.slice(1);\n var outputColor = rule.color ? '#' + rule.color.hex : rule.value || '';\n output += format(attributeTemplate, camelCasedName, outputColor);\n }\n }\n output += ' }});';\n return output;\n };\n return ThemeGenerator;\n}());\nexport { ThemeGenerator };\n//# sourceMappingURL=ThemeGenerator.js.map" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "index": null, - "index2": null, - "size": 117, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "issuerId": "uoCI", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "uoCI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Layer/index", - "loc": "2:0-41" - }, - { - "moduleId": "uoCI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Layer/index", - "loc": "2:0-41" - } - ], - "usedExports": false, - "providedExports": [ - "Layer", - "LayerBase", - "LayerHost" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 12, - "source": "export * from './Layer';\nexport * from './Layer.base';\nexport * from './LayerHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "3AaP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.types.js", - "index": null, - "index2": null, - "size": 366, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "issuerId": "ZEVL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "k+iy", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/CommandBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/CommandBar.js" - }, - { - "id": "vX7Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js" - }, - { - "id": "62r0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js" - }, - { - "id": "vu/h", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js" - }, - { - "id": "rPQp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ResizeGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/ResizeGroup.js" - }, - { - "id": "ZEVL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ResizeGroup.types", - "loc": "4:0-59" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "./ResizeGroup.types", - "loc": "296:47-67" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "userRequest": "./ResizeGroup.types", - "loc": "303:50-70" - }, - { - "moduleId": "ZEVL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ResizeGroup.types", - "loc": "3:0-36" - }, - { - "moduleId": "ZEVL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ResizeGroup.types", - "loc": "3:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "ResizeGroupDirection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * {@docCategory ResizeGroup}\n */\nexport var ResizeGroupDirection;\n(function (ResizeGroupDirection) {\n ResizeGroupDirection[ResizeGroupDirection[\"horizontal\"] = 0] = \"horizontal\";\n ResizeGroupDirection[ResizeGroupDirection[\"vertical\"] = 1] = \"vertical\";\n})(ResizeGroupDirection || (ResizeGroupDirection = {}));\n//# sourceMappingURL=ResizeGroup.types.js.map" - }, - { - "id": "3Fdi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toSource.js", - "name": "./node_modules/lodash/_toSource.js", - "index": 473, - "index2": 461, - "size": 556, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "issuerId": "QqLw", - "issuerName": "./node_modules/lodash/_getTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NKxu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "module": "./node_modules/lodash/_baseIsNative.js", - "moduleName": "./node_modules/lodash/_baseIsNative.js", - "type": "cjs require", - "userRequest": "./_toSource", - "loc": "4:15-37" - }, - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_toSource", - "loc": "7:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/** Used for built-in method references. */\nvar funcProto = Function.prototype;\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/**\n * Converts `func` to its source code.\n *\n * @private\n * @param {Function} func The function to convert.\n * @returns {string} Returns the source code.\n */\nfunction toSource(func) {\n if (func != null) {\n try {\n return funcToString.call(func);\n } catch (e) {}\n try {\n return (func + '');\n } catch (e) {}\n }\n return '';\n}\n\nmodule.exports = toSource;\n" - }, - { - "id": "3Htz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "index": null, - "index2": null, - "size": 1250, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "issuerId": "O0iI", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": "O0iI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBarButton.styles", - "loc": "5:0-54" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "./MessageBarButton.styles", - "loc": "16:93-102" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "import { concatStyleSets, getFocusStyle } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nexport var getStyles = memoizeFunction(function (theme, customStyles, focusInset, focusColor) {\n var baseButtonStyles = getBaseButtonStyles(theme);\n var messageBarButtonStyles = {\n root: [\n getFocusStyle(theme, {\n inset: 1,\n highContrastStyle: {\n outlineOffset: '-4px',\n outlineColor: 'ActiveBorder'\n },\n borderColor: 'transparent'\n }),\n {\n backgroundColor: theme.palette.neutralQuaternaryAlt,\n color: theme.palette.neutralPrimary\n }\n ],\n rootHovered: {\n backgroundColor: theme.palette.neutralTertiaryAlt,\n color: theme.palette.neutralDark\n },\n rootPressed: {\n backgroundColor: theme.palette.neutralTertiary,\n color: theme.palette.neutralDark\n }\n };\n return concatStyleSets(baseButtonStyles, messageBarButtonStyles, customStyles);\n});\n//# sourceMappingURL=MessageBarButton.styles.js.map" - }, - { - "id": "3L5l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "index": null, - "index2": null, - "size": 13734, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "issuerId": "HhSh", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+WGp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js" - }, - { - "id": "HhSh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HhSh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseFloatingPicker", - "loc": "1:0-37" - }, - { - "moduleId": "HhSh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./BaseFloatingPicker", - "loc": "1:0-37" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../BaseFloatingPicker", - "loc": "3:0-59" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "../BaseFloatingPicker", - "loc": "15:2-20" - } - ], - "usedExports": false, - "providedExports": [ - "BaseFloatingPicker" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport * as stylesImport from './BaseFloatingPicker.scss';\nimport { Async, initializeComponentRef, css, KeyCodes } from '../../Utilities';\nimport { Callout, DirectionalHint } from '../../Callout';\nimport { SuggestionsControl } from './Suggestions/SuggestionsControl';\nvar styles = stylesImport;\nvar BaseFloatingPicker = /** @class */ (function (_super) {\n __extends(BaseFloatingPicker, _super);\n function BaseFloatingPicker(basePickerProps) {\n var _this = _super.call(this, basePickerProps) || this;\n _this.root = React.createRef();\n _this.suggestionsControl = React.createRef();\n _this.SuggestionsControlOfProperType = SuggestionsControl;\n _this.isComponentMounted = false;\n _this.onQueryStringChanged = function (queryString) {\n if (queryString !== _this.state.queryString) {\n _this.setState({\n queryString: queryString,\n });\n if (_this.props.onInputChanged) {\n _this.props.onInputChanged(queryString);\n }\n _this.updateValue(queryString);\n }\n };\n _this.hidePicker = function () {\n var wasShownBeforeUpdate = _this.isSuggestionsShown;\n _this.setState({\n suggestionsVisible: false,\n });\n if (_this.props.onSuggestionsHidden && wasShownBeforeUpdate) {\n _this.props.onSuggestionsHidden();\n }\n };\n _this.showPicker = function (updateValue) {\n if (updateValue === void 0) { updateValue = false; }\n var wasShownBeforeUpdate = _this.isSuggestionsShown;\n _this.setState({\n suggestionsVisible: true,\n });\n // Update the suggestions if updateValue == true\n var value = _this.props.inputElement ? _this.props.inputElement.value : '';\n if (updateValue) {\n _this.updateValue(value);\n }\n if (_this.props.onSuggestionsShown && !wasShownBeforeUpdate) {\n _this.props.onSuggestionsShown();\n }\n };\n _this.completeSuggestion = function () {\n if (_this.suggestionsControl.current && _this.suggestionsControl.current.hasSuggestionSelected()) {\n _this.onChange(_this.suggestionsControl.current.currentSuggestion.item);\n }\n };\n _this.onSuggestionClick = function (ev, item, index) {\n _this.onChange(item);\n _this._updateSuggestionsVisible(false /*shouldShow*/);\n };\n _this.onSuggestionRemove = function (ev, item, index) {\n if (_this.props.onRemoveSuggestion) {\n _this.props.onRemoveSuggestion(item);\n }\n if (_this.suggestionsControl.current) {\n _this.suggestionsControl.current.removeSuggestion(index);\n }\n };\n _this.onKeyDown = function (ev) {\n if (!_this.state.suggestionsVisible ||\n (_this.props.inputElement && !_this.props.inputElement.contains(ev.target))) {\n return;\n }\n // eslint-disable-next-line deprecation/deprecation\n var keyCode = ev.which;\n switch (keyCode) {\n case KeyCodes.escape:\n _this.hidePicker();\n ev.preventDefault();\n ev.stopPropagation();\n break;\n case KeyCodes.tab:\n case KeyCodes.enter:\n if (!ev.shiftKey &&\n !ev.ctrlKey &&\n _this.suggestionsControl.current &&\n _this.suggestionsControl.current.handleKeyDown(keyCode)) {\n ev.preventDefault();\n ev.stopPropagation();\n }\n else {\n _this._onValidateInput();\n }\n break;\n case KeyCodes.del:\n if (_this.props.onRemoveSuggestion &&\n _this.suggestionsControl.current &&\n _this.suggestionsControl.current.hasSuggestionSelected &&\n _this.suggestionsControl.current.currentSuggestion &&\n ev.shiftKey) {\n _this.props.onRemoveSuggestion(_this.suggestionsControl.current.currentSuggestion.item);\n _this.suggestionsControl.current.removeSuggestion();\n _this.forceUpdate();\n ev.stopPropagation();\n }\n break;\n case KeyCodes.up:\n if (_this.suggestionsControl.current && _this.suggestionsControl.current.handleKeyDown(keyCode)) {\n ev.preventDefault();\n ev.stopPropagation();\n _this._updateActiveDescendant();\n }\n break;\n case KeyCodes.down:\n if (_this.suggestionsControl.current && _this.suggestionsControl.current.handleKeyDown(keyCode)) {\n ev.preventDefault();\n ev.stopPropagation();\n _this._updateActiveDescendant();\n }\n break;\n }\n };\n _this._onValidateInput = function () {\n if (_this.state.queryString && _this.props.onValidateInput && _this.props.createGenericItem) {\n var itemToConvert = _this.props.createGenericItem(_this.state.queryString, _this.props.onValidateInput(_this.state.queryString));\n var convertedItems = _this.suggestionStore.convertSuggestionsToSuggestionItems([itemToConvert]);\n _this.onChange(convertedItems[0].item);\n }\n };\n _this._async = new Async(_this);\n initializeComponentRef(_this);\n _this.suggestionStore = basePickerProps.suggestionsStore;\n _this.state = {\n queryString: '',\n didBind: false,\n };\n return _this;\n }\n Object.defineProperty(BaseFloatingPicker.prototype, \"inputText\", {\n get: function () {\n return this.state.queryString;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseFloatingPicker.prototype, \"suggestions\", {\n get: function () {\n return this.suggestionStore.suggestions;\n },\n enumerable: true,\n configurable: true\n });\n BaseFloatingPicker.prototype.forceResolveSuggestion = function () {\n if (this.suggestionsControl.current && this.suggestionsControl.current.hasSuggestionSelected()) {\n this.completeSuggestion();\n }\n else {\n this._onValidateInput();\n }\n };\n Object.defineProperty(BaseFloatingPicker.prototype, \"currentSelectedSuggestionIndex\", {\n get: function () {\n return this.suggestionsControl.current ? this.suggestionsControl.current.currentSuggestionIndex : -1;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseFloatingPicker.prototype, \"isSuggestionsShown\", {\n get: function () {\n return this.state.suggestionsVisible === undefined ? false : this.state.suggestionsVisible;\n },\n enumerable: true,\n configurable: true\n });\n BaseFloatingPicker.prototype.componentDidMount = function () {\n this._bindToInputElement();\n this.isComponentMounted = true;\n this._onResolveSuggestions = this._async.debounce(this._onResolveSuggestions, this.props.resolveDelay);\n };\n BaseFloatingPicker.prototype.componentDidUpdate = function () {\n this._bindToInputElement();\n };\n BaseFloatingPicker.prototype.componentWillUnmount = function () {\n this._unbindFromInputElement();\n this.isComponentMounted = false;\n };\n BaseFloatingPicker.prototype.UNSAFE_componentWillReceiveProps = function (newProps) {\n if (newProps.suggestionItems) {\n this.updateSuggestions(newProps.suggestionItems);\n }\n };\n BaseFloatingPicker.prototype.updateSuggestions = function (suggestions, forceUpdate) {\n if (forceUpdate === void 0) { forceUpdate = false; }\n this.suggestionStore.updateSuggestions(suggestions);\n if (forceUpdate) {\n this.forceUpdate();\n }\n };\n BaseFloatingPicker.prototype.render = function () {\n var className = this.props.className;\n return (React.createElement(\"div\", { ref: this.root, className: css('ms-BasePicker ms-BaseFloatingPicker', className ? className : '') }, this.renderSuggestions()));\n };\n BaseFloatingPicker.prototype.renderSuggestions = function () {\n var TypedSuggestionsControl = this.SuggestionsControlOfProperType;\n return this.state.suggestionsVisible ? (React.createElement(Callout, __assign({ className: styles.callout, isBeakVisible: false, gapSpace: 5, target: this.props.inputElement, onDismiss: this.hidePicker, directionalHint: DirectionalHint.bottomLeftEdge, directionalHintForRTL: DirectionalHint.bottomRightEdge, calloutWidth: this.props.calloutWidth ? this.props.calloutWidth : 0 }, this.props.pickerCalloutProps),\n React.createElement(TypedSuggestionsControl, __assign({ onRenderSuggestion: this.props.onRenderSuggestionsItem, onSuggestionClick: this.onSuggestionClick, onSuggestionRemove: this.onSuggestionRemove, suggestions: this.suggestionStore.getSuggestions(), componentRef: this.suggestionsControl, completeSuggestion: this.completeSuggestion, shouldLoopSelection: false }, this.props.pickerSuggestionsProps)))) : null;\n };\n BaseFloatingPicker.prototype.onSelectionChange = function () {\n this.forceUpdate();\n };\n BaseFloatingPicker.prototype.updateValue = function (updatedValue) {\n if (updatedValue === '') {\n this.updateSuggestionWithZeroState();\n }\n else {\n this._onResolveSuggestions(updatedValue);\n }\n };\n BaseFloatingPicker.prototype.updateSuggestionWithZeroState = function () {\n if (this.props.onZeroQuerySuggestion) {\n var onEmptyInputFocus = this.props.onZeroQuerySuggestion;\n var suggestions = onEmptyInputFocus(this.props.selectedItems);\n this.updateSuggestionsList(suggestions);\n }\n else {\n this.hidePicker();\n }\n };\n BaseFloatingPicker.prototype.updateSuggestionsList = function (suggestions) {\n var _this = this;\n var suggestionsArray = suggestions;\n var suggestionsPromiseLike = suggestions;\n // Check to see if the returned value is an array, if it is then just pass it into the next function.\n // If the returned value is not an array then check to see if it's a promise or PromiseLike.\n // If it is then resolve it asynchronously.\n if (Array.isArray(suggestionsArray)) {\n this.updateSuggestions(suggestionsArray, true /*forceUpdate*/);\n }\n else if (suggestionsPromiseLike && suggestionsPromiseLike.then) {\n // Ensure that the promise will only use the callback if it was the most recent one.\n var promise_1 = (this.currentPromise = suggestionsPromiseLike);\n promise_1.then(function (newSuggestions) {\n // Only update if the next promise has not yet resolved and\n // the floating picker is still mounted.\n if (promise_1 === _this.currentPromise && _this.isComponentMounted) {\n _this.updateSuggestions(newSuggestions, true /*forceUpdate*/);\n }\n });\n }\n };\n BaseFloatingPicker.prototype.onChange = function (item) {\n if (this.props.onChange) {\n this.props.onChange(item);\n }\n };\n BaseFloatingPicker.prototype._updateActiveDescendant = function () {\n if (this.props.inputElement && this.suggestionsControl.current && this.suggestionsControl.current.selectedElement) {\n var selectedElId = this.suggestionsControl.current.selectedElement.getAttribute('id');\n if (selectedElId) {\n this.props.inputElement.setAttribute('aria-activedescendant', selectedElId);\n }\n }\n };\n BaseFloatingPicker.prototype._onResolveSuggestions = function (updatedValue) {\n var suggestions = this.props.onResolveSuggestions(updatedValue, this.props.selectedItems);\n this._updateSuggestionsVisible(true /*shouldShow*/);\n if (suggestions !== null) {\n this.updateSuggestionsList(suggestions);\n }\n };\n BaseFloatingPicker.prototype._updateSuggestionsVisible = function (shouldShow) {\n if (shouldShow) {\n this.showPicker();\n }\n else {\n this.hidePicker();\n }\n };\n BaseFloatingPicker.prototype._bindToInputElement = function () {\n if (this.props.inputElement && !this.state.didBind) {\n this.props.inputElement.addEventListener('keydown', this.onKeyDown);\n this.setState({ didBind: true });\n }\n };\n BaseFloatingPicker.prototype._unbindFromInputElement = function () {\n if (this.props.inputElement && this.state.didBind) {\n this.props.inputElement.removeEventListener('keydown', this.onKeyDown);\n this.setState({ didBind: false });\n }\n };\n return BaseFloatingPicker;\n}(React.Component));\nexport { BaseFloatingPicker };\n//# sourceMappingURL=BaseFloatingPicker.js.map" - }, - { - "id": "3MvN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "index": null, - "index2": null, - "size": 66, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "issuerId": "S+gH", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": "wAdI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js" - }, - { - "id": "S+gH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S+gH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/FocusTrapZone/index", - "loc": "1:0-49" - }, - { - "moduleId": "S+gH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "type": "harmony export imported specifier", - "userRequest": "./components/FocusTrapZone/index", - "loc": "1:0-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../FocusTrapZone/index", - "loc": "4:0-55" - } - ], - "usedExports": false, - "providedExports": [ - "FocusTrapZone" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 11, - "source": "export * from './FocusTrapZone';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "index": null, - "index2": null, - "size": 215, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "issuerId": "zwhP", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Callout.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/components/Callout", - "loc": "69:0-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Callout/index", - "loc": "10:0-51" - }, - { - "moduleId": "zwhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "module": "./node_modules/office-ui-fabric-react/lib/Callout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Callout.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Callout/index", - "loc": "1:0-43" - }, - { - "moduleId": "zwhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "module": "./node_modules/office-ui-fabric-react/lib/Callout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Callout.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Callout/index", - "loc": "1:0-43" - } - ], - "usedExports": false, - "providedExports": [ - "Callout", - "CalloutContent", - "CalloutContentBase", - "FocusTrapCallout", - "DirectionalHint" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './Callout';\nexport * from './CalloutContent';\nexport * from './CalloutContent.base';\nexport * from './FocusTrapCallout';\nexport * from '../../common/DirectionalHint';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "3Xv5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Overlay.js", - "index": null, - "index2": null, - "size": 79, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "bgSp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Overlay", - "loc": "6:0-40" - } - ], - "usedExports": false, - "providedExports": [ - "Overlay", - "OverlayBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 11, - "source": "export * from './components/Overlay/index';\n//# sourceMappingURL=Overlay.js.map" - }, - { - "id": "3ZCB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "index": null, - "index2": null, - "size": 3219, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "issuerId": "rGd0", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": "rGd0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./CompoundButton.styles", - "loc": "5:0-52" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony import specifier", - "userRequest": "./CompoundButton.styles", - "loc": "21:173-182" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "import { concatStyleSets, FontWeights, HighContrastSelector } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nimport { primaryStyles, standardStyles } from '../ButtonThemes';\nexport var getStyles = memoizeFunction(function (theme, customStyles, primary) {\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var compoundButtonStyles = {\n root: {\n maxWidth: '280px',\n minHeight: '72px',\n height: 'auto',\n padding: '20px'\n },\n flexContainer: {\n flexDirection: 'row',\n alignItems: 'flex-start',\n minWidth: '100%',\n margin: ''\n },\n textContainer: {\n textAlign: 'left'\n },\n icon: {\n fontSize: '2em',\n lineHeight: '1em',\n height: '1em',\n margin: '0px 8px 0px 0px',\n flexBasis: '1em',\n flexShrink: '0'\n },\n label: {\n margin: '0 0 5px',\n lineHeight: '100%',\n fontWeight: FontWeights.semibold\n },\n description: [\n theme.fonts.small,\n {\n lineHeight: '100%'\n }\n ]\n };\n var standardCompoundTheme = {\n description: {\n color: theme.palette.neutralSecondary\n },\n descriptionHovered: {\n color: theme.palette.neutralDark\n },\n descriptionPressed: {\n color: 'inherit'\n },\n descriptionChecked: {\n color: 'inherit'\n },\n descriptionDisabled: {\n color: 'inherit'\n }\n };\n var primaryCompoundTheme = {\n description: {\n color: theme.palette.white,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'WindowText',\n MsHighContrastAdjust: 'none'\n },\n _a)\n },\n descriptionHovered: {\n color: theme.palette.white,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'Highlight',\n MsHighContrastAdjust: 'none'\n },\n _b)\n },\n descriptionPressed: {\n color: 'inherit'\n },\n descriptionChecked: {\n color: 'inherit'\n },\n descriptionDisabled: {\n color: 'inherit',\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'inherit'\n },\n _c)\n }\n };\n return concatStyleSets(baseButtonStyles, compoundButtonStyles, primary ? primaryStyles(theme) : standardStyles(theme), primary ? primaryCompoundTheme : standardCompoundTheme, splitButtonStyles, customStyles);\n var _a, _b, _c;\n});\n//# sourceMappingURL=CompoundButton.styles.js.map" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "index": null, - "index2": null, - "size": 557, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "issuerId": "mBXz", - "issuerName": "./node_modules/office-ui-fabric-react/lib/DetailsList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "mBXz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/DetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DetailsList.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/DetailsList/index", - "loc": "1:0-47" - }, - { - "moduleId": "mBXz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/DetailsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DetailsList.js", - "type": "harmony export imported specifier", - "userRequest": "./components/DetailsList/index", - "loc": "1:0-47" - } - ], - "usedExports": false, - "providedExports": [ - "SELECTION_CHANGE", - "SelectionDirection", - "SelectionMode", - "Selection", - "SelectionZone", - "CollapseAllVisibility", - "DetailsHeader", - "DetailsHeaderBase", - "SelectAllVisibility", - "DetailsList", - "DetailsListBase", - "buildColumns", - "ColumnActionsMode", - "ConstrainMode", - "ColumnDragEndLocation", - "DetailsListLayoutMode", - "CheckboxVisibility", - "DetailsRow", - "DetailsRowBase", - "DetailsRowGlobalClassNames", - "DEFAULT_CELL_STYLE_PROPS", - "DEFAULT_ROW_HEIGHTS", - "getDetailsRowStyles", - "DetailsRowCheck", - "DetailsRowFields", - "DetailsColumnBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from '../../utilities/selection/index';\nexport * from '../GroupedList/GroupedList.types';\nexport * from './DetailsHeader';\nexport * from './DetailsHeader.base';\nexport * from './DetailsHeader.types';\nexport * from './DetailsList';\nexport * from './DetailsList.base';\nexport * from './DetailsList.types';\nexport * from './DetailsRow';\nexport * from './DetailsRow.base';\nexport * from './DetailsRow.styles';\nexport * from './DetailsRowCheck';\nexport * from './DetailsRowFields';\nexport * from './DetailsColumn.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "3bXa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "index": null, - "index2": null, - "size": 1050, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "issuerId": "08vz", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "08vz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "08vz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardDetails.base", - "loc": "2:0-69" - }, - { - "moduleId": "08vz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardDetails.base", - "loc": "4:40-63" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardDetailsBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef } from '../../Utilities';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory DocumentCard}\n */\nvar DocumentCardDetailsBase = /** @class */ (function (_super) {\n __extends(DocumentCardDetailsBase, _super);\n function DocumentCardDetailsBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n return _this;\n }\n DocumentCardDetailsBase.prototype.render = function () {\n var _a = this.props, children = _a.children, styles = _a.styles, theme = _a.theme, className = _a.className;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n });\n return React.createElement(\"div\", { className: this._classNames.root }, children);\n };\n return DocumentCardDetailsBase;\n}(React.Component));\nexport { DocumentCardDetailsBase };\n//# sourceMappingURL=DocumentCardDetails.base.js.map" - }, - { - "id": "3hNq", - "identifier": "external \"ListSearchConsumerWebPartWebPartStrings\"", - "name": "external \"ListSearchConsumerWebPartWebPartStrings\"", - "index": 919, - "index2": 918, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "ListSearchConsumerWebPartWebPartStrings", - "loc": "5:0-67" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchConsumerWebPartWebPartStrings", - "loc": "39:37-68" - }, - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchConsumerWebPartWebPartStrings", - "loc": "43:39-61" - } - ], - "usedExports": [ - "BasicGroupName", - "PropertyPaneDescription" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "3mns", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "index": 267, - "index2": 261, - "size": 9124, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "18:32-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "556:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "566:61-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "567:90-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "656:49-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "683:55-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "687:52-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "698:49-53" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "110:44-48" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link", - "loc": "1:0-23" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Link", - "loc": "1:0-23" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "29:36-40" - } - ], - "usedExports": [ - "Link" - ], - "providedExports": [ - "Link" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "index": 268, - "index2": 259, - "size": 4244, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sidz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/Link.js" - }, - { - "id": "ZZzf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link.base", - "loc": "2:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony import specifier", - "userRequest": "./Link.base", - "loc": "4:25-33" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link.base", - "loc": "2:0-28" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Link.base", - "loc": "2:0-28" - } - ], - "usedExports": [ - "LinkBase" - ], - "providedExports": [ - "LinkBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef } from '../../Utilities';\nimport { KeytipData } from '../../KeytipData';\nvar getClassNames = classNamesFunction();\nvar LinkBase = /** @class */ (function (_super) {\n __extends(LinkBase, _super);\n function LinkBase(props) {\n var _this = _super.call(this, props) || this;\n _this._link = React.createRef();\n _this._renderContent = function (keytipAttributes) {\n if (keytipAttributes === void 0) { keytipAttributes = {}; }\n var _a = _this.props, disabled = _a.disabled, children = _a.children, className = _a.className, href = _a.href, underline = _a.underline, theme = _a.theme, styles = _a.styles;\n var classNames = getClassNames(styles, {\n className: className,\n isButton: !href,\n isDisabled: disabled,\n isUnderlined: underline,\n theme: theme,\n });\n var RootType = _this._getRootType(_this.props);\n return (React.createElement(RootType, __assign({}, keytipAttributes, _this._adjustPropsForRootType(RootType, _this.props), { className: classNames.root, onClick: _this._onClick, ref: _this._link, \"aria-disabled\": disabled }), children));\n };\n _this._onClick = function (ev) {\n var _a = _this.props, onClick = _a.onClick, disabled = _a.disabled;\n if (disabled) {\n ev.preventDefault();\n }\n else if (onClick) {\n onClick(ev);\n }\n };\n initializeComponentRef(_this);\n return _this;\n }\n LinkBase.prototype.render = function () {\n var _this = this;\n var _a = this.props, disabled = _a.disabled, keytipProps = _a.keytipProps;\n if (keytipProps) {\n return (React.createElement(KeytipData, { keytipProps: keytipProps, ariaDescribedBy: this.props['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return _this._renderContent(keytipAttributes); }));\n }\n return this._renderContent();\n };\n LinkBase.prototype.focus = function () {\n var current = this._link.current;\n if (current && current.focus) {\n current.focus();\n }\n };\n LinkBase.prototype._adjustPropsForRootType = function (RootType, props) {\n // Deconstruct the props so we remove props like `as`, `theme` and `styles`\n // as those will always be removed. We also take some props that are optional\n // based on the RootType.\n var children = props.children, as = props.as, disabled = props.disabled, target = props.target, href = props.href, theme = props.theme, getStyles = props.getStyles, styles = props.styles, componentRef = props.componentRef, keytipProps = props.keytipProps, underline = props.underline, restProps = __rest(props, [\"children\", \"as\", \"disabled\", \"target\", \"href\", \"theme\", \"getStyles\", \"styles\", \"componentRef\", \"keytipProps\", \"underline\"]);\n // RootType will be a string if we're dealing with an html component\n if (typeof RootType === 'string') {\n // Remove the disabled prop for anchor elements\n if (RootType === 'a') {\n return __assign({ target: target, href: disabled ? undefined : href }, restProps);\n }\n // Add the type='button' prop for button elements\n if (RootType === 'button') {\n return __assign({ type: 'button', disabled: disabled }, restProps);\n }\n // Remove the target and href props for all other non anchor elements\n return __assign(__assign({}, restProps), { disabled: disabled });\n }\n // Retain all props except 'as' for ReactComponents\n return __assign({ target: target, href: href, disabled: disabled }, restProps);\n };\n LinkBase.prototype._getRootType = function (props) {\n if (props.as) {\n return props.as;\n }\n if (props.href) {\n return 'a';\n }\n return 'button';\n };\n return LinkBase;\n}(React.Component));\nexport { LinkBase };\n//# sourceMappingURL=Link.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "index": 267, - "index2": 261, - "size": 239, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "issuerId": "ZZzf", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sidz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/Link.js" - }, - { - "id": "ZZzf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "18:32-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "556:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "566:61-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Link", - "loc": "567:90-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "656:49-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "683:55-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "687:52-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "698:49-53" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "110:44-48" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link", - "loc": "1:0-23" - }, - { - "moduleId": "ZZzf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Link", - "loc": "1:0-23" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Link", - "loc": "29:36-40" - } - ], - "usedExports": [ - "Link" - ], - "providedExports": [ - "Link" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { LinkBase } from './Link.base';\nimport { getStyles } from './Link.styles';\nexport var Link = styled(LinkBase, getStyles, undefined, {\n scope: 'Link',\n});\n//# sourceMappingURL=Link.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.styles.js", - "index": 269, - "index2": 260, - "size": 4606, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sidz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/Link.js" - }, - { - "id": "ZZzf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony side effect evaluation", - "userRequest": "./Link.styles", - "loc": "3:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js", - "type": "harmony import specifier", - "userRequest": "./Link.styles", - "loc": "4:35-44" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { getGlobalClassNames, HighContrastSelector } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Link',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f;\n var className = props.className, isButton = props.isButton, isDisabled = props.isDisabled, isUnderlined = props.isUnderlined, theme = props.theme;\n var semanticColors = theme.semanticColors;\n // Tokens\n var linkColor = semanticColors.link;\n var linkInteractedColor = semanticColors.linkHovered;\n var linkDisabledColor = semanticColors.disabledText;\n var focusBorderColor = semanticColors.focusBorder;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n color: linkColor,\n outline: 'none',\n fontSize: 'inherit',\n fontWeight: 'inherit',\n textDecoration: isUnderlined ? 'underline' : 'none',\n selectors: (_a = {\n '.ms-Fabric--isFocusVisible &:focus': {\n // Can't use getFocusStyle because it doesn't support wrapping links\n // https://github.com/microsoft/fluentui/issues/4883#issuecomment-406743543\n // Using box-shadow and outline allows the focus rect to wrap links that span multiple lines\n // and helps the focus rect avoid getting clipped.\n boxShadow: \"0 0 0 1px \" + focusBorderColor + \" inset\",\n outline: \"1px auto \" + focusBorderColor,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n outline: '1px solid WindowText',\n },\n _b),\n }\n },\n _a[HighContrastSelector] = {\n // For IE high contrast mode\n borderBottom: 'none',\n },\n _a),\n },\n isButton && {\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n cursor: 'pointer',\n display: 'inline',\n margin: 0,\n overflow: 'inherit',\n padding: 0,\n textAlign: 'left',\n textOverflow: 'inherit',\n userSelect: 'text',\n borderBottom: '1px solid transparent',\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'LinkText',\n forcedColorAdjust: 'none',\n },\n _c),\n },\n !isButton && {\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n // This is mainly for MessageBar, which sets MsHighContrastAdjust: none by default\n MsHighContrastAdjust: 'auto',\n forcedColorAdjust: 'auto',\n },\n _d),\n },\n isDisabled && [\n 'is-disabled',\n {\n color: linkDisabledColor,\n cursor: 'default',\n },\n {\n selectors: {\n '&:link, &:visited': {\n pointerEvents: 'none',\n },\n },\n },\n ],\n !isDisabled && {\n selectors: {\n '&:active, &:hover, &:active:hover': {\n color: linkInteractedColor,\n textDecoration: 'underline',\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n color: 'LinkText',\n },\n _e),\n },\n '&:focus': {\n color: linkColor,\n selectors: (_f = {},\n _f[HighContrastSelector] = {\n color: 'LinkText',\n },\n _f),\n },\n },\n },\n classNames.root,\n className,\n ],\n };\n};\n//# sourceMappingURL=Link.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "3uSm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "index": 38, - "index2": 24, - "size": 1029, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "issuerId": "elao", - "issuerName": "./node_modules/@uifabric/utilities/lib/Async.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "elao", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "name": "./node_modules/@uifabric/utilities/lib/Async.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "13:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:26-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "26:17-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:40-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "46:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "module": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "moduleName": "./node_modules/@fluentui/theme/lib/fonts/DefaultFontStyles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "58:29-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "71:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "88:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:22-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "318:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "359:34-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "379:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "383:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "389:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "394:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "398:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "403:33-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "439:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "801:18-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "842:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "846:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "854:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "859:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "863:37-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "868:33-42" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "9:0-32" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getWindow", - "loc": "9:0-32" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "238:24-33" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "3:0-44" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "160:13-22" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./dom", - "loc": "79:22-31" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "4:14-23" - }, - { - "moduleId": "DU53", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/osDetector.js", - "module": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "DU53", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/osDetector.js", - "module": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "9:18-27" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "52:32-41" - }, - { - "moduleId": "LQdl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "LQdl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "18:23-32" - }, - { - "moduleId": "LQdl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "module": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "18:43-52" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "256:37-46" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "260:37-46" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "268:37-46" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "273:37-46" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "278:33-42" - }, - { - "moduleId": "VCDA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "module": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "VCDA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "module": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "70:14-23" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "4:0-44" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "267:18-27" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "120:18-27" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "149:18-27" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "374:18-27" - }, - { - "moduleId": "elao", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "module": "./node_modules/@uifabric/utilities/lib/Async.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/Async.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "399:18-27" - }, - { - "moduleId": "mWkG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getId.js", - "module": "./node_modules/@uifabric/utilities/lib/getId.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "mWkG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getId.js", - "module": "./node_modules/@uifabric/utilities/lib/getId.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "7:14-23" - }, - { - "moduleId": "qXI7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "qXI7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "9:18-27" - }, - { - "moduleId": "qXI7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/sessionStorage.js", - "module": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/sessionStorage.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "25:14-23" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "9:18-27" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "24:18-27" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "1:0-44" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "22:25-34" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getWindow", - "loc": "2:0-44" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getWindow", - "loc": "40:18-27" - } - ], - "usedExports": [ - "getWindow" - ], - "providedExports": [ - "getWindow" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { _isSSR } from './setSSR';\nvar _window = undefined;\n// Note: Accessing \"window\" in IE11 is somewhat expensive, and calling \"typeof window\"\n// hits a memory leak, whereas aliasing it and calling \"typeof _window\" does not.\n// Caching the window value at the file scope lets us minimize the impact.\ntry {\n _window = window;\n}\ncatch (e) {\n /* no-op */\n}\n/**\n * Helper to get the window object. The helper will make sure to use a cached variable\n * of \"window\", to avoid overhead and memory leaks in IE11. Note that in popup scenarios the\n * window object won't match the \"global\" window object, and for these scenarios, you should\n * pass in an element hosted within the popup.\n *\n * @public\n */\nexport function getWindow(rootElement) {\n if (_isSSR || typeof _window === 'undefined') {\n return undefined;\n }\n else {\n var el = rootElement;\n return el && el.ownerDocument && el.ownerDocument.defaultView ? el.ownerDocument.defaultView : _window;\n }\n}\n//# sourceMappingURL=getWindow.js.map" - }, - { - "id": "3xEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "index": null, - "index2": null, - "size": 77, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Fabric", - "loc": "4:0-38" - } - ], - "usedExports": false, - "providedExports": [ - "Fabric", - "FabricBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 14, - "source": "export * from './components/Fabric/index';\n//# sourceMappingURL=Fabric.js.map" - }, - { - "id": "3xoV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Modal.js", - "index": null, - "index2": null, - "size": 136, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "Xtwx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Modal", - "loc": "5:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "Modal", - "ModalBase", - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "export * from './components/Modal/index';\nexport { Modal as default } from './components/Modal/index';\n//# sourceMappingURL=Modal.js.map" - }, - { - "id": "44Ds", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/memoize.js", - "name": "./node_modules/lodash/memoize.js", - "index": 559, - "index2": 549, - "size": 2224, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_memoizeCapped.js", - "issuerId": "I01J", - "issuerName": "./node_modules/lodash/_memoizeCapped.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - }, - { - "id": "GNiM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "name": "./node_modules/lodash/_stringToPath.js" - }, - { - "id": "I01J", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_memoizeCapped.js", - "name": "./node_modules/lodash/_memoizeCapped.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "I01J", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_memoizeCapped.js", - "module": "./node_modules/lodash/_memoizeCapped.js", - "moduleName": "./node_modules/lodash/_memoizeCapped.js", - "type": "cjs require", - "userRequest": "./memoize", - "loc": "1:14-34" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var MapCache = require('./_MapCache');\n\n/** Error message constants. */\nvar FUNC_ERROR_TEXT = 'Expected a function';\n\n/**\n * Creates a function that memoizes the result of `func`. If `resolver` is\n * provided, it determines the cache key for storing the result based on the\n * arguments provided to the memoized function. By default, the first argument\n * provided to the memoized function is used as the map cache key. The `func`\n * is invoked with the `this` binding of the memoized function.\n *\n * **Note:** The cache is exposed as the `cache` property on the memoized\n * function. Its creation may be customized by replacing the `_.memoize.Cache`\n * constructor with one whose instances implement the\n * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\n * method interface of `clear`, `delete`, `get`, `has`, and `set`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to have its output memoized.\n * @param {Function} [resolver] The function to resolve the cache key.\n * @returns {Function} Returns the new memoized function.\n * @example\n *\n * var object = { 'a': 1, 'b': 2 };\n * var other = { 'c': 3, 'd': 4 };\n *\n * var values = _.memoize(_.values);\n * values(object);\n * // => [1, 2]\n *\n * values(other);\n * // => [3, 4]\n *\n * object.a = 2;\n * values(object);\n * // => [1, 2]\n *\n * // Modify the result cache.\n * values.cache.set(object, ['a', 'b']);\n * values(object);\n * // => ['a', 'b']\n *\n * // Replace `_.memoize.Cache`.\n * _.memoize.Cache = WeakMap;\n */\nfunction memoize(func, resolver) {\n if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n var memoized = function() {\n var args = arguments,\n key = resolver ? resolver.apply(this, args) : args[0],\n cache = memoized.cache;\n\n if (cache.has(key)) {\n return cache.get(key);\n }\n var result = func.apply(this, args);\n memoized.cache = cache.set(key, result) || cache;\n return result;\n };\n memoized.cache = new (memoize.Cache || MapCache);\n return memoized;\n}\n\n// Expose `MapCache`.\nmemoize.Cache = MapCache;\n\nmodule.exports = memoize;\n" - }, - { - "id": "44Od", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DragDrop.js", - "name": "./node_modules/office-ui-fabric-react/lib/DragDrop.js", - "index": null, - "index2": null, - "size": 80, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DragDrop", - "loc": "25:0-27" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DragDrop", - "loc": "25:0-27" - } - ], - "usedExports": false, - "providedExports": [ - "DragDropHelper" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './utilities/dragdrop/index';\n//# sourceMappingURL=DragDrop.js.map" - }, - { - "id": "44vO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "index": null, - "index2": null, - "size": 90, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Fabric.js", - "issuerId": "4aRf", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Fabric.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "4aRf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/office-ui-fabric-react/lib/Fabric.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4aRf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Fabric.js", - "module": "./node_modules/office-ui-fabric-react/lib/Fabric.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Fabric.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Fabric/index", - "loc": "1:0-42" - }, - { - "moduleId": "4aRf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Fabric.js", - "module": "./node_modules/office-ui-fabric-react/lib/Fabric.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Fabric.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Fabric/index", - "loc": "1:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "Fabric", - "FabricBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './Fabric';\nexport * from './Fabric.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "477F", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "name": "./node_modules/@uifabric/foundation/lib/slots.js", - "index": null, - "index2": null, - "size": 9310, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "issuerId": "1ptM", - "issuerName": "./node_modules/@uifabric/foundation/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - }, - { - "id": "MObJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js" - }, - { - "id": "7Rmr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "name": "./node_modules/office-ui-fabric-react/lib/Foundation.js" - }, - { - "id": "1ptM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "name": "./node_modules/@uifabric/foundation/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1ptM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "module": "./node_modules/@uifabric/foundation/lib/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./slots", - "loc": "2:0-24" - }, - { - "moduleId": "1ptM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "module": "./node_modules/@uifabric/foundation/lib/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./slots", - "loc": "2:0-24" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Foundation", - "loc": "14:16-24" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Foundation", - "loc": "17:11-20" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Foundation", - "loc": "12:16-24" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Foundation", - "loc": "15:11-20" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Foundation", - "loc": "30:16-24" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Foundation", - "loc": "35:16-25" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Foundation", - "loc": "36:12-21" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Foundation", - "loc": "38:11-20" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./slots", - "loc": "5:0-40" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "./slots", - "loc": "49:33-46" - } - ], - "usedExports": false, - "providedExports": [ - "withSlots", - "createFactory", - "getSlots" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "import { __assign, __spreadArrays } from \"tslib\";\nimport * as React from 'react';\nimport { mergeCss } from '@uifabric/merge-styles';\nimport { getRTL, memoizeFunction } from '@uifabric/utilities';\nimport { assign } from './utilities';\n/**\n * This function is required for any module that uses slots.\n *\n * This function is a slot resolver that automatically evaluates slot functions to generate React elements.\n * A byproduct of this resolver is that it removes slots from the React hierarchy by bypassing React.createElement.\n *\n * To use this function on a per-file basis, use the jsx directive targeting withSlots.\n * This directive must be the FIRST LINE in the file to work correctly.\n * Usage of this pragma also requires withSlots import statement.\n *\n * See React.createElement\n */\n// Can't use typeof on React.createElement since it's overloaded. Approximate createElement's signature for now\n// and widen as needed.\nexport function withSlots(type, props) {\n var children = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n children[_i - 2] = arguments[_i];\n }\n var slotType = type;\n if (slotType.isSlot) {\n // Since we are bypassing createElement, use React.Children.toArray to make sure children are\n // properly assigned keys.\n // TODO: should this be mutating? does React mutate children subprop with createElement?\n // TODO: will toArray clobber existing keys?\n // TODO: React generates warnings because it doesn't detect hidden member _store that is set in createElement.\n // Even children passed to createElement without keys don't generate this warning.\n // Is there a better way to prevent slots from appearing in hierarchy? toArray doesn't address root issue.\n children = React.Children.toArray(children);\n // TODO: There is something weird going on here with children embedded in props vs. rest args.\n // Comment out these lines to see. Make sure this function is doing the right things.\n if (children.length === 0) {\n return slotType(props);\n }\n return slotType(__assign(__assign({}, props), { children: children }));\n }\n else {\n // TODO: Are there some cases where children should NOT be spread? Also, spreading reraises perf question.\n // Children had to be spread to avoid breaking KeytipData in Toggle.view:\n // react-dom.development.js:18931 Uncaught TypeError: children is not a function\n // Without spread, function child is a child array of one element\n // TODO: is there a reason this can't be:\n // return React.createElement.apply(this, arguments);\n return React.createElement.apply(React, __spreadArrays([type, props], children));\n }\n}\n/**\n * This function creates factories that render ouput depending on the user ISlotProp props passed in.\n * @param DefaultComponent - Base component to render when not overridden by user props.\n * @param options - Factory options, including defaultProp value for shorthand prop mapping.\n * @returns ISlotFactory function used for rendering slots.\n */\nexport function createFactory(DefaultComponent, options) {\n if (options === void 0) { options = {}; }\n var _a = options.defaultProp, defaultProp = _a === void 0 ? 'children' : _a;\n var result = function (componentProps, userProps, userSlotOptions, defaultStyles, theme) {\n // If they passed in raw JSX, just return that.\n if (React.isValidElement(userProps)) {\n return userProps;\n }\n var flattenedUserProps = _translateShorthand(defaultProp, userProps);\n var finalProps = _constructFinalProps(defaultStyles, theme, componentProps, flattenedUserProps);\n if (userSlotOptions) {\n if (userSlotOptions.component) {\n // TODO: Remove cast if possible. This cast is needed because TS errors on the intrinsic portion of ReactType.\n // return ;\n var UserComponent = userSlotOptions.component;\n return React.createElement(UserComponent, __assign({}, finalProps));\n }\n if (userSlotOptions.render) {\n return userSlotOptions.render(finalProps, DefaultComponent);\n }\n }\n return React.createElement(DefaultComponent, __assign({}, finalProps));\n };\n return result;\n}\n/**\n * Default factory for components without explicit factories.\n */\nvar defaultFactory = memoizeFunction(function (type) { return createFactory(type); });\n/**\n * This function generates slots that can be used in JSX given a definition of slots and their corresponding types.\n * @param userProps - Props as pass to component.\n * @param slots - Slot definition object defining the default slot component for each slot.\n * @returns A set of created slots that components can render in JSX.\n */\nexport function getSlots(userProps, slots) {\n var result = {};\n // userProps already has default props mixed in by createComponent. Recast here to gain typing for this function.\n var mixedProps = userProps;\n var _loop_1 = function (name_1) {\n if (slots.hasOwnProperty(name_1)) {\n // This closure method requires the use of withSlots to prevent unnecessary rerenders. This is because React\n // detects each closure as a different component (since it is a new instance) from the previous one and then\n // forces a rerender of the entire slot subtree. For now, the only way to avoid this is to use withSlots, which\n // bypasses the call to React.createElement.\n var slot = function (componentProps) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n if (args.length > 0) {\n // If React.createElement is being incorrectly used with slots, there will be additional arguments.\n // We can detect these additional arguments and error on their presence.\n throw new Error('Any module using getSlots must use withSlots. Please see withSlots javadoc for more info.');\n }\n // TODO: having TS infer types here seems to cause infinite loop.\n // use explicit types or casting to preserve typing if possible.\n // TODO: this should be a lookup on TProps property instead of being TProps directly, which is probably\n // causing the infinite loop\n return _renderSlot(slots[name_1], \n // TODO: this cast to any is hiding a relationship issue between the first two args\n componentProps, mixedProps[name_1], mixedProps.slots && mixedProps.slots[name_1], \n // _defaultStyles should always be present, but a check for existence is added to make view tests\n // easier to use.\n mixedProps._defaultStyles && mixedProps._defaultStyles[name_1], mixedProps.theme);\n };\n slot.isSlot = true;\n result[name_1] = slot;\n }\n };\n for (var name_1 in slots) {\n _loop_1(name_1);\n }\n return result;\n}\n/**\n * Helper function that translates shorthand as needed.\n * @param defaultProp\n * @param slotProps\n */\nfunction _translateShorthand(defaultProp, slotProps) {\n var _a;\n var transformedProps;\n if (typeof slotProps === 'string' || typeof slotProps === 'number' || typeof slotProps === 'boolean') {\n transformedProps = (_a = {},\n _a[defaultProp] = slotProps,\n _a);\n }\n else {\n transformedProps = slotProps;\n }\n return transformedProps;\n}\n/**\n * Helper function that constructs final styles and props given a series of props ordered by increasing priority.\n */\nfunction _constructFinalProps(defaultStyles, theme) {\n var allProps = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n allProps[_i - 2] = arguments[_i];\n }\n var finalProps = {};\n var classNames = [];\n for (var _a = 0, allProps_1 = allProps; _a < allProps_1.length; _a++) {\n var props = allProps_1[_a];\n classNames.push(props && props.className);\n assign(finalProps, props);\n }\n finalProps.className = mergeCss([defaultStyles, classNames], { rtl: getRTL(theme) });\n return finalProps;\n}\n/**\n * Render a slot given component and user props. Uses component factory if available, otherwise falls back\n * to default factory.\n * @param ComponentType Factory component type.\n * @param componentProps The properties passed into slot from within the component.\n * @param userProps The user properties passed in from outside of the component.\n */\nfunction _renderSlot(ComponentType, componentProps, userProps, slotOptions, defaultStyles, theme) {\n if (ComponentType.create !== undefined) {\n return ComponentType.create(componentProps, userProps, slotOptions, defaultStyles);\n }\n else {\n // TODO: need to resolve typing / generic issues passing through memoizeFunction. for now, cast to 'unknown'\n return defaultFactory(ComponentType)(componentProps, userProps, slotOptions, defaultStyles, theme);\n }\n}\n//# sourceMappingURL=slots.js.map" - }, - { - "id": "49Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "index": null, - "index2": null, - "size": 354, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "cmLf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Dropdown.types", - "loc": "3:0-33" - }, - { - "moduleId": "cmLf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Dropdown.types", - "loc": "3:0-33" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Dropdown.types", - "loc": "2:0-57" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Dropdown.types", - "loc": "8:0-57" - } - ], - "usedExports": false, - "providedExports": [ - "DropdownMenuItemType", - "ResponsiveMode" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "import { ResponsiveMode } from '../../utilities/decorators/withResponsiveMode';\nexport { SelectableOptionMenuItemType as DropdownMenuItemType } from '../../utilities/selectableOption/SelectableOption.types';\nexport { ResponsiveMode }; // Exported because the type is an optional prop and not exported otherwise.\n//# sourceMappingURL=Dropdown.types.js.map" - }, - { - "id": "4ApC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Label.js", - "name": "./node_modules/office-ui-fabric-react/lib/Label.js", - "index": null, - "index2": null, - "size": 75, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Label", - "loc": "3:0-36" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Label", - "loc": "5:0-36" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Label", - "loc": "43:0-24" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Label", - "loc": "43:0-24" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Label", - "loc": "4:0-36" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Label", - "loc": "3:0-36" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Label", - "loc": "12:0-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Label", - "loc": "4:0-36" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Label", - "loc": "61:0-57" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Label", - "loc": "12:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "LabelBase", - "Label" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Label/index';\n//# sourceMappingURL=Label.js.map" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js", - "index": null, - "index2": null, - "size": 2665, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react", - "loc": "15:0-112" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react", - "loc": "18:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react", - "loc": "19:0-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react", - "loc": "29:0-46" - } - ], - "usedExports": false, - "providedExports": [ - "ActivityItem", - "Autofill", - "BaseAutoFill", - "Announced", - "AnnouncedBase", - "Breadcrumb", - "BreadcrumbBase", - "BaseButton", - "ElementType", - "ButtonType", - "Button", - "ActionButton", - "CommandBarButton", - "CommandButton", - "CompoundButton", - "DefaultButton", - "MessageBarButton", - "PrimaryButton", - "IconButton", - "getSplitButtonClassNames", - "ButtonGrid", - "Grid", - "ButtonGridCell", - "GridCell", - "Calendar", - "DayOfWeek", - "DateRangeType", - "FirstWeekOfYear", - "Callout", - "CalloutContent", - "CalloutContentBase", - "FocusTrapCallout", - "DirectionalHint", - "Check", - "CheckBase", - "Checkbox", - "CheckboxBase", - "ChoiceGroup", - "ChoiceGroupBase", - "ChoiceGroupOption", - "Coachmark", - "COACHMARK_ATTRIBUTE_NAME", - "CoachmarkBase", - "MAX_COLOR_SATURATION", - "MAX_COLOR_HUE", - "MAX_COLOR_VALUE", - "MAX_COLOR_RGB", - "MAX_COLOR_RGBA", - "MAX_COLOR_ALPHA", - "MIN_HEX_LENGTH", - "MAX_HEX_LENGTH", - "MIN_RGBA_LENGTH", - "MAX_RGBA_LENGTH", - "HEX_REGEX", - "RGBA_REGEX", - "cssColor", - "rgb2hex", - "clamp", - "hsl2rgb", - "hsl2hsv", - "hsv2rgb", - "hsv2hex", - "rgb2hsv", - "hsv2hsl", - "getColorFromString", - "getColorFromRGBA", - "getColorFromHSV", - "getFullColorString", - "updateSV", - "updateH", - "updateRGB", - "updateA", - "correctRGB", - "correctHSV", - "correctHex", - "Shade", - "isValidShade", - "isDark", - "getShade", - "getBackgroundShade", - "getContrastRatio", - "updateT", - "ColorPicker", - "ColorPickerBase", - "SelectableOptionMenuItemType", - "ComboBox", - "VirtualizedComboBox", - "CommandBar", - "CommandBarBase", - "ContextualMenu", - "getSubmenuItems", - "canAnyMenuItemsCheck", - "ContextualMenuBase", - "ContextualMenuItemType", - "ContextualMenuItem", - "ContextualMenuItemBase", - "getMenuItemStyles", - "DatePicker", - "DatePickerBase", - "addDays", - "addWeeks", - "addMonths", - "addYears", - "getMonthStart", - "getMonthEnd", - "getYearStart", - "getYearEnd", - "setMonth", - "compareDates", - "compareDatePart", - "getDateRangeArray", - "isInDateRangeArray", - "getWeekNumbersInMonth", - "getWeekNumber", - "getStartDateOfWeek", - "getEndDateOfWeek", - "getDatePartHashValue", - "MonthOfYear", - "DAYS_IN_WEEK", - "SELECTION_CHANGE", - "SelectionDirection", - "SelectionMode", - "Selection", - "SelectionZone", - "CollapseAllVisibility", - "DetailsHeader", - "DetailsHeaderBase", - "SelectAllVisibility", - "DetailsList", - "DetailsListBase", - "buildColumns", - "ColumnActionsMode", - "ConstrainMode", - "ColumnDragEndLocation", - "DetailsListLayoutMode", - "CheckboxVisibility", - "DetailsRow", - "DetailsRowBase", - "DetailsRowGlobalClassNames", - "DEFAULT_CELL_STYLE_PROPS", - "DEFAULT_ROW_HEIGHTS", - "getDetailsRowStyles", - "DetailsRowCheck", - "DetailsRowFields", - "DetailsColumnBase", - "Dialog", - "DialogBase", - "DialogContent", - "DialogContentBase", - "DialogFooter", - "DialogFooterBase", - "ResponsiveMode", - "DialogType", - "VerticalDivider", - "DocumentCard", - "DocumentCardType", - "DocumentCardActions", - "DocumentCardActivity", - "DocumentCardDetails", - "DocumentCardLocation", - "DocumentCardPreview", - "DocumentCardImage", - "DocumentCardTitle", - "DocumentCardLogo", - "DocumentCardStatus", - "DragDropHelper", - "Dropdown", - "DropdownBase", - "DropdownMenuItemType", - "BaseExtendedPicker", - "BaseExtendedPeoplePicker", - "ExtendedPeoplePicker", - "Fabric", - "FabricBase", - "OverflowButtonType", - "FacepileBase", - "Facepile", - "BaseFloatingPicker", - "BaseFloatingPeoplePicker", - "FloatingPeoplePicker", - "createItem", - "SuggestionsStore", - "SuggestionItemType", - "SuggestionsHeaderFooterItem", - "SuggestionsControl", - "SuggestionsCore", - "FocusTrapZone", - "FocusZone", - "FocusZoneTabbableElements", - "FocusZoneDirection", - "GroupedList", - "GroupedListBase", - "GroupHeader", - "GroupFooter", - "GroupShowAll", - "GroupSpacer", - "GroupedListSection", - "HoverCard", - "HoverCardBase", - "OpenCardMode", - "HoverCardType", - "ExpandingCard", - "ExpandingCardBase", - "ExpandingCardMode", - "PlainCard", - "PlainCardBase", - "Icon", - "IconBase", - "IconType", - "getIconContent", - "FontIcon", - "getFontIcon", - "ImageIcon", - "initializeIcons", - "Image", - "ImageBase", - "ImageFit", - "ImageCoverStyle", - "ImageLoadState", - "Keytip", - "KeytipData", - "useKeytipRef", - "KeytipLayer", - "KeytipLayerBase", - "transitionKeysAreEqual", - "transitionKeysContain", - "buildKeytipConfigMap", - "constructKeytip", - "KTP_PREFIX", - "KTP_SEPARATOR", - "KTP_FULL_PREFIX", - "DATAKTP_TARGET", - "DATAKTP_EXECUTE_TARGET", - "DATAKTP_ARIA_TARGET", - "KTP_LAYER_ID", - "KTP_ARIA_SEPARATOR", - "KeytipEvents", - "KeytipManager", - "sequencesToID", - "mergeOverflows", - "ktpTargetFromSequences", - "ktpTargetFromId", - "getAriaDescribedBy", - "LabelBase", - "Label", - "Layer", - "LayerBase", - "LayerHost", - "Link", - "LinkBase", - "List", - "ScrollToMode", - "MarqueeSelection", - "MessageBar", - "MessageBarBase", - "MessageBarType", - "Modal", - "ModalBase", - "Nav", - "isRelativeUrl", - "NavBase", - "OverflowSet", - "OverflowSetBase", - "Overlay", - "OverlayBase", - "Panel", - "PanelBase", - "PanelType", - "Persona", - "PersonaBase", - "PersonaSize", - "PersonaPresence", - "PersonaInitialsColor", - "PersonaCoin", - "PersonaCoinBase", - "personaSize", - "personaPresenceSize", - "sizeBoolean", - "sizeToPixels", - "presenceBoolean", - "getPersonaInitialsColor", - "Suggestions", - "SuggestionActionType", - "SuggestionsItem", - "SuggestionsController", - "BasePicker", - "BasePickerListBelow", - "ValidationState", - "BasePeoplePicker", - "MemberListPeoplePicker", - "NormalPeoplePickerBase", - "CompactPeoplePickerBase", - "ListPeoplePickerBase", - "createGenericItem", - "NormalPeoplePicker", - "CompactPeoplePicker", - "ListPeoplePicker", - "PeoplePickerItemBase", - "PeoplePickerItem", - "PeoplePickerItemSuggestionBase", - "PeoplePickerItemSuggestion", - "TagPickerBase", - "TagPicker", - "TagItemBase", - "TagItem", - "TagItemSuggestionBase", - "TagItemSuggestion", - "Pivot", - "PivotBase", - "PivotItem", - "PivotLinkFormat", - "PivotLinkSize", - "Popup", - "getBoundsFromTargetWindow", - "getMaxHeight", - "getOppositeEdge", - "positionCallout", - "positionCard", - "positionElement", - "RectangleEdge", - "Position", - "PositioningContainer", - "ProgressIndicator", - "ProgressIndicatorBase", - "Rating", - "RatingBase", - "RatingSize", - "ResizeGroup", - "getMeasurementCache", - "getNextResizeGroupStateProvider", - "MeasuredContext", - "ResizeGroupBase", - "ResizeGroupDirection", - "ScrollablePane", - "ScrollablePaneBase", - "ScrollbarVisibility", - "ScrollablePaneContext", - "SearchBox", - "SearchBoxBase", - "getAllSelectedOptions", - "BaseSelectedItemsList", - "BasePeopleSelectedItemsList", - "SelectedPeopleList", - "ExtendedSelectedItem", - "SeparatorBase", - "Separator", - "Shimmer", - "ShimmerBase", - "ShimmerElementType", - "ShimmerElementsDefaultHeights", - "ShimmerLine", - "ShimmerLineBase", - "ShimmerCircle", - "ShimmerCircleBase", - "ShimmerGap", - "ShimmerGapBase", - "ShimmerElementsGroup", - "ShimmerElementsGroupBase", - "ShimmeredDetailsList", - "ShimmeredDetailsListBase", - "Slider", - "ONKEYDOWN_TIMEOUT_DURATION", - "SliderBase", - "KeyboardSpinDirection", - "SpinButton", - "Spinner", - "SpinnerBase", - "SpinnerSize", - "SpinnerType", - "StackItem", - "Stack", - "Sticky", - "StickyPositionType", - "AnimationClassNames", - "FontClassNames", - "ColorClassNames", - "AnimationStyles", - "AnimationVariables", - "DefaultPalette", - "DefaultEffects", - "DefaultFontStyles", - "registerDefaultFontFaces", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles", - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "getInputFocusStyle", - "hiddenContentStyle", - "PulsingBeaconAnimationStyles", - "getGlobalClassNames", - "getThemedContext", - "ThemeSettingName", - "getTheme", - "loadTheme", - "createTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "EdgeChromiumHighContrastSelector", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "getHighContrastNoAdjustStyle", - "getEdgeChromiumNoHighContrastAdjustSelector", - "normalize", - "noWrap", - "getFadedOverflowStyle", - "getPlaceholderStyles", - "ZIndexes", - "buildClassMap", - "getIcon", - "registerIcons", - "registerIconAlias", - "unregisterIcons", - "setIconOptions", - "getIconClassName", - "InjectionMode", - "Stylesheet", - "concatStyleSets", - "concatStyleSetsWithProps", - "fontFace", - "keyframes", - "mergeStyleSets", - "mergeStyles", - "SwatchColorPicker", - "SwatchColorPickerBase", - "ColorPickerGridCell", - "ColorPickerGridCellBase", - "TeachingBubble", - "TeachingBubbleBase", - "TeachingBubbleContent", - "TeachingBubbleContentBase", - "Text", - "TextView", - "TextStyles", - "TextField", - "TextFieldBase", - "DEFAULT_MASK_CHAR", - "MaskedTextField", - "ThemeGenerator", - "BaseSlots", - "FabricSlots", - "SemanticColorSlots", - "themeRulesStandardCreator", - "Toggle", - "ToggleBase", - "Tooltip", - "TooltipBase", - "TooltipDelay", - "TooltipHost", - "TooltipHostBase", - "TooltipOverflowMode", - "Async", - "AutoScroll", - "BaseComponent", - "nullRender", - "DelayedRender", - "EventGroup", - "FabricPerformance", - "GlobalSettings", - "KeyCodes", - "Rectangle", - "appendFunction", - "mergeAriaAttributeValues", - "findIndex", - "find", - "createArray", - "toMatrix", - "removeIndex", - "replaceElement", - "addElementAtIndex", - "flatten", - "arraysEqual", - "asAsync", - "assertNever", - "classNamesFunction", - "composeComponentAs", - "isControlled", - "css", - "Customizations", - "Customizer", - "CustomizerContext", - "customizable", - "useCustomizationSettings", - "mergeCustomizations", - "mergeSettings", - "mergeScopedSettings", - "elementContains", - "elementContainsAttribute", - "findElementRecursive", - "getChildren", - "getDocument", - "getParent", - "getRect", - "getVirtualParent", - "getWindow", - "isVirtualElement", - "on", - "portalContainsElement", - "raiseClick", - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute", - "setVirtualParent", - "extendComponent", - "getFirstFocusable", - "getLastFocusable", - "getFirstTabbable", - "getLastTabbable", - "focusFirstChild", - "getPreviousElement", - "getNextElement", - "isElementVisible", - "isElementTabbable", - "isElementFocusZone", - "isElementFocusSubZone", - "doesElementContainFocus", - "shouldWrapFocus", - "focusAsync", - "getFocusableByIndexPath", - "getElementIndexPath", - "getId", - "resetIds", - "getNativeElementProps", - "hoistMethods", - "unhoistMethods", - "hoistStatics", - "initializeComponentRef", - "initializeFocusRects", - "useFocusRects", - "FocusRects", - "getInitials", - "isDirectionalKeyCode", - "addDirectionalKeyCode", - "getLanguage", - "setLanguage", - "getDistanceBetweenPoints", - "fitContentToBounds", - "calculatePrecision", - "precisionRound", - "setMemoizeWeakMap", - "resetMemoizations", - "memoize", - "memoizeFunction", - "createMemoizer", - "merge", - "isIOS", - "modalize", - "assign", - "filteredAssign", - "mapEnumByName", - "shallowCompare", - "values", - "omit", - "isMac", - "hasHorizontalOverflow", - "hasVerticalOverflow", - "hasOverflow", - "baseElementEvents", - "baseElementProperties", - "htmlElementProperties", - "labelProperties", - "audioProperties", - "videoProperties", - "olProperties", - "liProperties", - "anchorProperties", - "buttonProperties", - "inputProperties", - "textAreaProperties", - "selectProperties", - "optionProperties", - "tableProperties", - "trProperties", - "thProperties", - "tdProperties", - "colGroupProperties", - "colProperties", - "formProperties", - "iframeProperties", - "imgProperties", - "imageProperties", - "divProperties", - "getNativeProps", - "composeRenderFunction", - "getResourceUrl", - "setBaseUrl", - "getRTL", - "setRTL", - "getRTLSafeKeyCode", - "safeRequestAnimationFrame", - "safeSetTimeout", - "DATA_IS_SCROLLABLE_ATTRIBUTE", - "allowScrollOnElement", - "allowOverscrollOnElement", - "disableBodyScroll", - "enableBodyScroll", - "getScrollbarWidth", - "findScrollableParent", - "format", - "styled", - "warn", - "setWarningCallback", - "warnConditionallyRequiredProps", - "resetControlledWarnings", - "warnControlledUsage", - "warnDeprecations", - "warnMutuallyExclusive", - "isIE11", - "getPropsWithDefaults", - "setFocusVisibility", - "IsFocusVisibleClassName", - "setSSR", - "createMergedRef", - "WindowContext", - "useWindow", - "useDocument", - "WindowProvider" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 2, - "source": "export * from './ActivityItem';\nexport * from './Autofill';\nexport * from './Announced';\nexport * from './Breadcrumb';\nexport * from './Button';\nexport * from './ButtonGrid';\nexport * from './Calendar';\nexport * from './Callout';\nexport * from './Check';\nexport * from './Checkbox';\nexport * from './ChoiceGroup';\n// export * from './ChoiceGroupOption'; // exported by ChoiceGroup\nexport * from './Coachmark';\nexport * from './Color';\nexport * from './ColorPicker';\nexport * from './ComboBox';\nexport * from './CommandBar';\nexport * from './ContextualMenu';\nexport * from './DatePicker';\nexport * from './DateTimeUtilities';\nexport * from './DetailsList';\nexport * from './Dialog';\nexport * from './Divider';\nexport * from './DocumentCard';\nexport * from './DragDrop';\nexport * from './Dropdown';\nexport * from './ExtendedPicker';\nexport * from './Fabric';\nexport * from './Facepile';\nexport * from './FloatingPicker';\nexport * from './FocusTrapZone';\nexport * from './FocusZone';\nexport * from './Grid';\nexport * from './GroupedList';\nexport * from './HoverCard';\nexport * from './Icon';\nexport * from './Icons';\nexport * from './Image';\nexport * from './Keytips';\nexport * from './Keytip';\nexport * from './KeytipData';\nexport * from './KeytipLayer';\nexport * from './Label';\nexport * from './Layer';\nexport * from './Link';\nexport * from './List';\nexport * from './MarqueeSelection';\nexport * from './MessageBar';\nexport * from './Modal';\nexport * from './Nav';\nexport * from './OverflowSet';\nexport * from './Overlay';\nexport * from './Panel';\nexport * from './Persona';\nexport * from './PersonaCoin';\n// export * from './PersonaPresence'; (Exported as part of Persona)\nexport * from './Pickers';\nexport * from './Pivot';\nexport * from './Popup';\nexport * from './Positioning';\nexport * from './PositioningContainer';\nexport * from './ProgressIndicator';\nexport * from './Rating';\nexport * from './ResizeGroup';\nexport * from './ScrollablePane';\nexport * from './SearchBox';\nexport * from './SelectableOption';\nexport * from './SelectedItemsList';\nexport * from './Selection';\nexport * from './Separator';\nexport * from './Shimmer';\nexport * from './ShimmeredDetailsList';\nexport * from './Slider';\nexport * from './SpinButton';\nexport * from './Spinner';\nexport * from './Stack';\nexport * from './Sticky';\nexport * from './Styling';\nexport * from './SwatchColorPicker';\nexport * from './TeachingBubble';\nexport * from './Text';\nexport * from './TextField';\nexport * from './ThemeGenerator';\nexport * from './Toggle';\nexport * from './Tooltip';\nexport * from './Utilities';\nexport * from './WindowProvider';\nimport './version';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js", - "index": 567, - "index2": 562, - "size": 475, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_customOmitClone", - "loc": "6:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var isPlainObject = require('./isPlainObject');\n\n/**\n * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain\n * objects.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {string} key The key of the property to inspect.\n * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.\n */\nfunction customOmitClone(value) {\n return isPlainObject(value) ? undefined : value;\n}\n\nmodule.exports = customOmitClone;\n" - }, - { - "id": "4PRO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "index": 47, - "index2": 33, - "size": 625, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "issuerId": "8lCt", - "issuerName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "8lCt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@uifabric/utilities/lib/scroll.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:22-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:22-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "62:31-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "103:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "194:42-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/DragDropHelper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "207:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "269:15-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "377:33-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "520:18-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "840:33-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "1036:15-26" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "5:0-34" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getDocument", - "loc": "5:0-34" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "1:0-48" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "87:14-25" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "101:18-29" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "138:14-25" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "27:33-44" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "2:0-48" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "23:18-29" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "36:14-25" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "546:15-26" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "549:15-26" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "47:39-50" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "75:46-57" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "254:33-44" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "307:25-36" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "5:0-48" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "236:19-30" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "6:0-48" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "14:25-36" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getDocument", - "loc": "1:0-48" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "15:18-29" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./dom/getDocument", - "loc": "34:14-25" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:23-34" - } - ], - "usedExports": [ - "getDocument" - ], - "providedExports": [ - "getDocument" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { _isSSR } from './setSSR';\n/**\n * Helper to get the document object. Note that in popup window cases, document\n * might be the wrong document, which is why we look at ownerDocument for the\n * truth. Also note that the SSR flag is used to test ssr scenarios even if\n * document is defined (from JSDOM for example.)\n *\n * @public\n */\nexport function getDocument(rootElement) {\n if (_isSSR || typeof document === 'undefined') {\n return undefined;\n }\n else {\n var el = rootElement;\n return el && el.ownerDocument ? el.ownerDocument : document;\n }\n}\n//# sourceMappingURL=getDocument.js.map" - }, - { - "id": "4R8s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "index": null, - "index2": null, - "size": 904, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "KCoL", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getChildren", - "loc": "4:0-34" - }, - { - "moduleId": "KCoL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getChildren", - "loc": "4:0-34" - } - ], - "usedExports": false, - "providedExports": [ - "getChildren" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 9, - "source": "import { isVirtualElement } from './isVirtualElement';\n/**\n * Gets the elements which are child elements of the given element.\n * If `allowVirtualChildren` is `true`, this method enumerates virtual child elements\n * after the original children.\n * @param parent - The element to get the children of.\n * @param allowVirtualChildren - true if the method should enumerate virtual child elements.\n */\nexport function getChildren(parent, allowVirtualChildren) {\n if (allowVirtualChildren === void 0) { allowVirtualChildren = true; }\n var children = [];\n if (parent) {\n for (var i = 0; i < parent.children.length; i++) {\n children.push(parent.children.item(i));\n }\n if (allowVirtualChildren && isVirtualElement(parent)) {\n children.push.apply(children, parent._virtual.children);\n }\n }\n return children;\n}\n//# sourceMappingURL=getChildren.js.map" - }, - { - "id": "4SV9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "index": null, - "index2": null, - "size": 1103, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerId": "hLc7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TagPicker/TagPicker", - "loc": "11:0-38" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TagPicker/TagPicker", - "loc": "11:0-38" - } - ], - "usedExports": false, - "providedExports": [ - "TagPickerBase", - "TagPicker" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { styled, initializeComponentRef } from '../../../Utilities';\nimport { BasePicker } from '../BasePicker';\nimport { getStyles } from '../BasePicker.styles';\nimport { TagItem } from './TagItem';\nimport { TagItemSuggestion } from './TagItemSuggestion';\n/**\n * {@docCategory TagPicker}\n */\nvar TagPickerBase = /** @class */ (function (_super) {\n __extends(TagPickerBase, _super);\n function TagPickerBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n return _this;\n }\n TagPickerBase.defaultProps = {\n onRenderItem: function (props) { return React.createElement(TagItem, __assign({}, props), props.item.name); },\n onRenderSuggestionsItem: function (props) { return React.createElement(TagItemSuggestion, null, props.name); },\n };\n return TagPickerBase;\n}(BasePicker));\nexport { TagPickerBase };\nexport var TagPicker = styled(TagPickerBase, getStyles, undefined, {\n scope: 'TagPicker',\n});\n//# sourceMappingURL=TagPicker.js.map" - }, - { - "id": "4ZPV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "index": null, - "index2": null, - "size": 763, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "issuerId": "ayV1", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "ayV1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ayV1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardLogo.styles", - "loc": "3:0-54" - }, - { - "moduleId": "ayV1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardLogo.styles", - "loc": "4:59-68" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-DocumentCardLogo',\n};\nexport var getStyles = function (props) {\n var theme = props.theme, className = props.className;\n var palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n // eslint-disable-next-line deprecation/deprecation\n fontSize: fonts.xxLargePlus.fontSize,\n color: palette.themePrimary,\n display: 'block',\n padding: '16px 16px 0 16px',\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=DocumentCardLogo.styles.js.map" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js", - "index": null, - "index2": null, - "size": 596, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom", - "loc": "3:0-34" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom", - "loc": "26:0-22" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./dom", - "loc": "26:0-22" - } - ], - "usedExports": false, - "providedExports": [ - "elementContains", - "elementContainsAttribute", - "findElementRecursive", - "getChildren", - "getDocument", - "getParent", - "getRect", - "getVirtualParent", - "getWindow", - "isVirtualElement", - "on", - "portalContainsElement", - "raiseClick", - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute", - "setVirtualParent" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export * from './dom/elementContains';\nexport * from './dom/elementContainsAttribute';\nexport * from './dom/findElementRecursive';\nexport * from './dom/getChildren';\nexport * from './dom/getDocument';\nexport * from './dom/getParent';\nexport * from './dom/getRect';\nexport * from './dom/getVirtualParent';\nexport * from './dom/getWindow';\nexport * from './dom/isVirtualElement';\nexport * from './dom/on';\nexport * from './dom/portalContainsElement';\nexport * from './dom/raiseClick';\nexport * from './dom/setPortalAttribute';\nexport * from './dom/setVirtualParent';\n//# sourceMappingURL=dom.js.map" - }, - { - "id": "4aRf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/office-ui-fabric-react/lib/Fabric.js", - "index": null, - "index2": null, - "size": 77, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Fabric", - "loc": "28:0-25" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Fabric", - "loc": "28:0-25" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Fabric", - "loc": "4:0-38" - } - ], - "usedExports": false, - "providedExports": [ - "Fabric", - "FabricBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Fabric/index';\n//# sourceMappingURL=Fabric.js.map" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "index": 846, - "index2": 885, - "size": 102, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldSitePicker", - "loc": "19:0-99" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/spfx-property-controls/lib/PropertyFieldSitePicker", - "loc": "705:32-55" - } - ], - "usedExports": [ - "PropertyFieldSitePicker" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 1, - "source": "export * from './propertyFields/sitePicker/index';\n//# sourceMappingURL=PropertyFieldSitePicker.js.map" - }, - { - "id": "4iH1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warnMutuallyExclusive.js", - "index": 246, - "index2": 230, - "size": 1023, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:8-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "169:8-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "173:12-33" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "6:0-69" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "172:8-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "232:8-29" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "5:0-45" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnMutuallyExclusive", - "loc": "5:0-45" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "687:8-29" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "66:8-29" - } - ], - "usedExports": [ - "warnMutuallyExclusive" - ], - "providedExports": [ - "warnMutuallyExclusive" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { warn } from './warn';\n/**\n * Warns when two props which are mutually exclusive are both being used.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param exclusiveMap - A map where the key is a parameter, and the value is the other parameter.\n */\nexport function warnMutuallyExclusive(componentName, props, exclusiveMap) {\n if (process.env.NODE_ENV !== 'production') {\n for (var propName in exclusiveMap) {\n if (props && props[propName] !== undefined) {\n var propInExclusiveMapValue = exclusiveMap[propName];\n if (propInExclusiveMapValue && props[propInExclusiveMapValue] !== undefined) {\n warn(componentName + \" property '\" + propName + \"' is mutually exclusive with '\" + exclusiveMap[propName] + \"'. \" +\n \"Use one or the other.\");\n }\n }\n }\n }\n}\n//# sourceMappingURL=warnMutuallyExclusive.js.map" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js", - "index": 477, - "index2": 472, - "size": 747, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "issuerId": "fGT3", - "issuerName": "./node_modules/lodash/_mapCacheClear.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fGT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "module": "./node_modules/lodash/_mapCacheClear.js", - "moduleName": "./node_modules/lodash/_mapCacheClear.js", - "type": "cjs require", - "userRequest": "./_Hash", - "loc": "1:11-29" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 10, - "source": "var hashClear = require('./_hashClear'),\n hashDelete = require('./_hashDelete'),\n hashGet = require('./_hashGet'),\n hashHas = require('./_hashHas'),\n hashSet = require('./_hashSet');\n\n/**\n * Creates a hash object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Hash(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n// Add methods to `Hash`.\nHash.prototype.clear = hashClear;\nHash.prototype['delete'] = hashDelete;\nHash.prototype.get = hashGet;\nHash.prototype.has = hashHas;\nHash.prototype.set = hashSet;\n\nmodule.exports = Hash;\n" - }, - { - "id": "4qJ4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/KeyCodes.js", - "name": "./node_modules/@uifabric/utilities/lib/KeyCodes.js", - "index": 49, - "index2": 35, - "size": 1838, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "23:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "24:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "27:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "31:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "32:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:91-99" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:93-101" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "35:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "37:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "40:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "42:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "48:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "76:50-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "88:30-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "90:67-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "103:67-75" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "109:82-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "112:71-79" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "112:108-116" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "122:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "124:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "132:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "138:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "144:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "150:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "157:47-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "160:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "160:85-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "161:33-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "163:30-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "187:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "192:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "200:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "204:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "204:60-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "208:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "212:62-70" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "212:79-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "216:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "222:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "223:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "224:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "229:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "230:36-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "231:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "233:29-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "233:60-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "234:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "234:46-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "235:51-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "258:33-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "260:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "272:33-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "273:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "278:43-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "278:74-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "280:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "283:41-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "283:49-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "284:38-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "285:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "289:46-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "297:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "302:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "307:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "310:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "315:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "330:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "342:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "347:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "351:25-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "352:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "370:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "370:70-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "372:54-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "372:86-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "378:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "399:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "411:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "412:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "413:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "414:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "416:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "421:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "424:21-29" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "485:51-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "596:32-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "743:28-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "840:28-36" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:21-29" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "122:21-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:39-47" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "124:21-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "129:39-47" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "130:21-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "135:21-29" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "138:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "76:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "82:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "94:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "106:21-29" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "113:21-29" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:29-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:60-68" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:33-41" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "188:48-56" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "188:79-87" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "193:29-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "198:29-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "203:29-37" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "427:44-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "430:75-83" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "433:66-74" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "436:81-89" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:32-40" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:63-71" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "179:96-104" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "189:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "193:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "197:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "200:21-29" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:56-64" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "220:87-95" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:57-65" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "104:29-37" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "148:29-37" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "205:60-68" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "205:91-99" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "1:0-38" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "52:20-28" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "53:18-26" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "55:25-33" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "56:18-26" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:19-27" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "475:30-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "478:30-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "481:30-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "484:30-38" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:29-37" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:60-68" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:21-29" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:29-37" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "76:29-37" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "85:29-37" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "115:55-63" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "115:86-94" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "32:28-36" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "65:33-41" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:25-33" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "62:25-33" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "63:25-33" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "294:35-43" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "294:50-58" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "13:29-37" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "68:32-40" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "71:37-45" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "150:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "157:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "158:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "171:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "177:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "195:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "223:21-29" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "341:25-33" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "342:25-33" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "346:29-37" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "37:41-49" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:29-37" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "153:32-40" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "153:66-74" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "157:38-46" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "158:38-46" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "162:48-56" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "8:0-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeyCodes", - "loc": "8:0-27" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "50:29-37" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "72:25-33" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "72:60-68" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "115:29-37" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "122:21-29" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:21-29" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "128:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "452:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "481:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "493:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "506:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "526:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "542:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "543:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "553:37-45" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "560:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "573:39-47" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "611:21-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1517:28-36" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1554:29-37" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1555:29-37" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "205:25-33" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "114:29-37" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "115:29-37" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "116:29-37" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "117:29-37" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "69:58-66" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "74:107-115" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "216:20-28" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "11:29-37" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "140:24-32" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "159:29-37" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "178:29-37" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "178:59-67" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./KeyCodes", - "loc": "2:0-38" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "4:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "5:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "6:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "7:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "8:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "9:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "10:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "11:7-15" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./KeyCodes", - "loc": "12:7-15" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:32-40" - } - ], - "usedExports": [ - "KeyCodes" - ], - "providedExports": [ - "KeyCodes" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Simulated enum for keycodes. These will get inlined by uglify when used much like an enum\n *\n * @public\n * {@docCategory KeyCodes}\n */\nexport var KeyCodes = {\n backspace: 8,\n tab: 9,\n enter: 13,\n shift: 16,\n ctrl: 17,\n alt: 18,\n pauseBreak: 19,\n capslock: 20,\n escape: 27,\n space: 32,\n pageUp: 33,\n pageDown: 34,\n end: 35,\n home: 36,\n left: 37,\n up: 38,\n right: 39,\n down: 40,\n insert: 45,\n del: 46,\n zero: 48,\n one: 49,\n two: 50,\n three: 51,\n four: 52,\n five: 53,\n six: 54,\n seven: 55,\n eight: 56,\n nine: 57,\n a: 65,\n b: 66,\n c: 67,\n d: 68,\n e: 69,\n f: 70,\n g: 71,\n h: 72,\n i: 73,\n j: 74,\n k: 75,\n l: 76,\n m: 77,\n n: 78,\n o: 79,\n p: 80,\n q: 81,\n r: 82,\n s: 83,\n t: 84,\n u: 85,\n v: 86,\n w: 87,\n x: 88,\n y: 89,\n z: 90,\n leftWindow: 91,\n rightWindow: 92,\n select: 93,\n /* eslint-disable @typescript-eslint/naming-convention */\n zero_numpad: 96,\n one_numpad: 97,\n two_numpad: 98,\n three_numpad: 99,\n four_numpad: 100,\n five_numpad: 101,\n six_numpad: 102,\n seven_numpad: 103,\n eight_numpad: 104,\n nine_numpad: 105,\n /* eslint-enable @typescript-eslint/naming-convention */\n multiply: 106,\n add: 107,\n subtract: 109,\n decimalPoint: 110,\n divide: 111,\n f1: 112,\n f2: 113,\n f3: 114,\n f4: 115,\n f5: 116,\n f6: 117,\n f7: 118,\n f8: 119,\n f9: 120,\n f10: 121,\n f11: 122,\n f12: 123,\n numlock: 144,\n scrollLock: 145,\n semicolon: 186,\n equalSign: 187,\n comma: 188,\n dash: 189,\n period: 190,\n forwardSlash: 191,\n graveAccent: 192,\n openBracket: 219,\n backSlash: 220,\n closeBracket: 221,\n singleQuote: 222,\n};\n//# sourceMappingURL=KeyCodes.js.map" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js", - "index": 554, - "index2": 554, - "size": 569, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_castPath", - "loc": "4:15-37" - }, - { - "moduleId": "S7Xf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "module": "./node_modules/lodash/_baseUnset.js", - "moduleName": "./node_modules/lodash/_baseUnset.js", - "type": "cjs require", - "userRequest": "./_castPath", - "loc": "1:15-37" - }, - { - "moduleId": "ZWtO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGet.js", - "module": "./node_modules/lodash/_baseGet.js", - "moduleName": "./node_modules/lodash/_baseGet.js", - "type": "cjs require", - "userRequest": "./_castPath", - "loc": "1:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var isArray = require('./isArray'),\n isKey = require('./_isKey'),\n stringToPath = require('./_stringToPath'),\n toString = require('./toString');\n\n/**\n * Casts `value` to a path array if it's not one.\n *\n * @private\n * @param {*} value The value to inspect.\n * @param {Object} [object] The object to query keys on.\n * @returns {Array} Returns the cast property path array.\n */\nfunction castPath(value, object) {\n if (isArray(value)) {\n return value;\n }\n return isKey(value, object) ? [value] : stringToPath(toString(value));\n}\n\nmodule.exports = castPath;\n" - }, - { - "id": "5+9y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "index": null, - "index2": null, - "size": 1119, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "issuerId": "ayV1", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "ayV1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ayV1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardLogo.base", - "loc": "2:0-63" - }, - { - "moduleId": "ayV1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardLogo.base", - "loc": "4:37-57" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardLogoBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Icon } from '../../Icon';\nimport { classNamesFunction, initializeComponentRef } from '../../Utilities';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory DocumentCard}\n */\nvar DocumentCardLogoBase = /** @class */ (function (_super) {\n __extends(DocumentCardLogoBase, _super);\n function DocumentCardLogoBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n return _this;\n }\n DocumentCardLogoBase.prototype.render = function () {\n var _a = this.props, logoIcon = _a.logoIcon, styles = _a.styles, theme = _a.theme, className = _a.className;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n });\n return (React.createElement(\"div\", { className: this._classNames.root },\n React.createElement(Icon, { iconName: logoIcon })));\n };\n return DocumentCardLogoBase;\n}(React.Component));\nexport { DocumentCardLogoBase };\n//# sourceMappingURL=DocumentCardLogo.base.js.map" - }, - { - "id": "57t7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/CustomizerContext.js", - "index": 35, - "index2": 22, - "size": 249, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./CustomizerContext", - "loc": "3:0-56" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "10:42-59" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "./CustomizerContext", - "loc": "4:0-56" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "36:36-53" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "41:39-56" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "./CustomizerContext", - "loc": "5:0-56" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./CustomizerContext", - "loc": "28:48-65" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/CustomizerContext", - "loc": "21:0-51" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/CustomizerContext", - "loc": "21:0-51" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "31:80-97" - } - ], - "usedExports": [ - "CustomizerContext" - ], - "providedExports": [ - "CustomizerContext" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as React from 'react';\nexport var CustomizerContext = React.createContext({\n customizations: {\n inCustomizerContext: false,\n settings: {},\n scopedSettings: {},\n },\n});\n//# sourceMappingURL=CustomizerContext.js.map" - }, - { - "id": "5AYc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "index": null, - "index2": null, - "size": 14865, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "issuerId": "LDcz", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "q3RN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Nav.js", - "name": "./node_modules/office-ui-fabric-react/lib/Nav.js" - }, - { - "id": "w7f7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js" - }, - { - "id": "LDcz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LDcz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "type": "harmony side effect evaluation", - "userRequest": "./Nav.base", - "loc": "2:0-37" - }, - { - "moduleId": "LDcz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "type": "harmony import specifier", - "userRequest": "./Nav.base", - "loc": "4:24-31" - }, - { - "moduleId": "w7f7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Nav.base", - "loc": "2:0-27" - }, - { - "moduleId": "w7f7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Nav.base", - "loc": "2:0-27" - } - ], - "usedExports": false, - "providedExports": [ - "isRelativeUrl", - "NavBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { ActionButton } from '../../Button';\nimport { buttonStyles } from './Nav.styles';\nimport { classNamesFunction, divProperties, getNativeProps, getWindow, initializeComponentRef } from '../../Utilities';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nimport { Icon } from '../../Icon';\nimport { composeComponentAs, composeRenderFunction } from '@uifabric/utilities';\n// The number pixels per indentation level for Nav links.\nvar _indentationSize = 14;\n// The number of pixels of left margin\nvar _baseIndent = 3;\n// global var used in _isLinkSelectedKey\nvar _urlResolver;\nexport function isRelativeUrl(url) {\n // A URL is relative if it has no protocol.\n return !!url && !/^[a-z0-9+-.]+:\\/\\//i.test(url);\n}\nvar getClassNames = classNamesFunction();\nvar NavBase = /** @class */ (function (_super) {\n __extends(NavBase, _super);\n function NavBase(props) {\n var _this = _super.call(this, props) || this;\n _this._focusZone = React.createRef();\n _this._onRenderLink = function (link) {\n var _a = _this.props, styles = _a.styles, groups = _a.groups, theme = _a.theme;\n var classNames = getClassNames(styles, { theme: theme, groups: groups });\n return React.createElement(\"div\", { className: classNames.linkText }, link.name);\n };\n _this._renderGroup = function (group, groupIndex) {\n var _a = _this.props, styles = _a.styles, groups = _a.groups, theme = _a.theme, _b = _a.onRenderGroupHeader, onRenderGroupHeader = _b === void 0 ? _this._renderGroupHeader : _b;\n var isExpanded = _this._isGroupExpanded(group);\n var classNames = getClassNames(styles, {\n theme: theme,\n isGroup: true,\n isExpanded: isExpanded,\n groups: groups,\n });\n var finalOnHeaderClick = function (ev, isCollapsing) {\n _this._onGroupHeaderClicked(group, ev);\n };\n var groupProps = __assign(__assign({}, group), { isExpanded: isExpanded, onHeaderClick: finalOnHeaderClick });\n return (React.createElement(\"div\", { key: groupIndex, className: classNames.group },\n groupProps.name ? onRenderGroupHeader(groupProps, _this._renderGroupHeader) : null,\n React.createElement(\"div\", { className: classNames.groupContent }, _this._renderLinks(groupProps.links, 0 /* nestingLevel */))));\n };\n _this._renderGroupHeader = function (group) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, styles = _a.styles, groups = _a.groups, theme = _a.theme, expandButtonAriaLabel = _a.expandButtonAriaLabel;\n var isExpanded = group.isExpanded;\n var classNames = getClassNames(styles, {\n theme: theme,\n isGroup: true,\n isExpanded: isExpanded,\n groups: groups,\n });\n var label = (isExpanded ? group.collapseAriaLabel : group.expandAriaLabel) || expandButtonAriaLabel;\n var onHeaderClick = group.onHeaderClick;\n var onClick = onHeaderClick\n ? function (ev) {\n onHeaderClick(ev, isExpanded);\n }\n : undefined;\n return (React.createElement(\"button\", { className: classNames.chevronButton, onClick: onClick, \"aria-label\": label, \"aria-expanded\": isExpanded },\n React.createElement(Icon, { className: classNames.chevronIcon, iconName: \"ChevronDown\" }),\n group.name));\n };\n initializeComponentRef(_this);\n _this.state = {\n isGroupCollapsed: {},\n // TODO: consider removing\n // eslint-disable-next-line react/no-unused-state\n isLinkExpandStateChanged: false,\n selectedKey: props.initialSelectedKey || props.selectedKey,\n };\n return _this;\n }\n NavBase.prototype.render = function () {\n var _a = this.props, styles = _a.styles, groups = _a.groups, className = _a.className, isOnTop = _a.isOnTop, theme = _a.theme;\n if (!groups) {\n return null;\n }\n var groupElements = groups.map(this._renderGroup);\n var classNames = getClassNames(styles, { theme: theme, className: className, isOnTop: isOnTop, groups: groups });\n return (React.createElement(FocusZone, { direction: FocusZoneDirection.vertical, componentRef: this._focusZone },\n React.createElement(\"nav\", { role: \"navigation\", className: classNames.root, \"aria-label\": this.props.ariaLabel }, groupElements)));\n };\n Object.defineProperty(NavBase.prototype, \"selectedKey\", {\n get: function () {\n return this.state.selectedKey;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Sets focus to the first tabbable item in the zone.\n * @param forceIntoFirstElement - If true, focus will be forced into the first element, even\n * if focus is already in the focus zone.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n NavBase.prototype.focus = function (forceIntoFirstElement) {\n if (forceIntoFirstElement === void 0) { forceIntoFirstElement = false; }\n if (this._focusZone && this._focusZone.current) {\n return this._focusZone.current.focus(forceIntoFirstElement);\n }\n return false;\n };\n NavBase.prototype._renderNavLink = function (link, linkIndex, nestingLevel) {\n var _a = this.props, styles = _a.styles, groups = _a.groups, theme = _a.theme;\n var isLinkWithIcon = link.icon || link.iconProps;\n var isSelectedLink = this._isLinkSelected(link);\n var _b = link.ariaCurrent, ariaCurrent = _b === void 0 ? 'page' : _b;\n var classNames = getClassNames(styles, {\n theme: theme,\n isSelected: isSelectedLink,\n isDisabled: link.disabled,\n isButtonEntry: link.onClick && !link.forceAnchor,\n leftPadding: _indentationSize * nestingLevel + _baseIndent + (isLinkWithIcon ? 0 : 24),\n groups: groups,\n });\n // Prevent hijacking of the parent window if link.target is defined\n var rel = link.url && link.target && !isRelativeUrl(link.url) ? 'noopener noreferrer' : undefined;\n var LinkAs = this.props.linkAs ? composeComponentAs(this.props.linkAs, ActionButton) : ActionButton;\n var onRenderLink = this.props.onRenderLink\n ? composeRenderFunction(this.props.onRenderLink, this._onRenderLink)\n : this._onRenderLink;\n return (React.createElement(LinkAs, { className: classNames.link, styles: buttonStyles, href: link.url || (link.forceAnchor ? '#' : undefined), iconProps: link.iconProps || { iconName: link.icon }, \n // eslint-disable-next-line react/jsx-no-bind\n onClick: link.onClick ? this._onNavButtonLinkClicked.bind(this, link) : this._onNavAnchorLinkClicked.bind(this, link), title: link.title !== undefined ? link.title : link.name, target: link.target, rel: rel, disabled: link.disabled, \"aria-current\": isSelectedLink ? ariaCurrent : undefined, \"aria-label\": link.ariaLabel ? link.ariaLabel : undefined, link: link }, onRenderLink(link)));\n };\n NavBase.prototype._renderCompositeLink = function (link, linkIndex, nestingLevel) {\n var divProps = __assign({}, getNativeProps(link, divProperties, ['onClick']));\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, expandButtonAriaLabel = _a.expandButtonAriaLabel, styles = _a.styles, groups = _a.groups, theme = _a.theme;\n var classNames = getClassNames(styles, {\n theme: theme,\n isExpanded: !!link.isExpanded,\n isSelected: this._isLinkSelected(link),\n isLink: true,\n isDisabled: link.disabled,\n position: _indentationSize * nestingLevel + 1,\n groups: groups,\n });\n var finalExpandBtnAriaLabel = '';\n if (link.links && link.links.length > 0) {\n if (link.collapseAriaLabel || link.expandAriaLabel) {\n finalExpandBtnAriaLabel = link.isExpanded ? link.collapseAriaLabel : link.expandAriaLabel;\n }\n else {\n // TODO remove when `expandButtonAriaLabel` is removed. This is not an ideal concatenation for localization.\n finalExpandBtnAriaLabel = expandButtonAriaLabel ? link.name + \" \" + expandButtonAriaLabel : link.name;\n }\n }\n return (React.createElement(\"div\", __assign({}, divProps, { key: link.key || linkIndex, className: classNames.compositeLink }),\n link.links && link.links.length > 0 ? (React.createElement(\"button\", { className: classNames.chevronButton, onClick: this._onLinkExpandClicked.bind(this, link), \"aria-label\": finalExpandBtnAriaLabel, \"aria-expanded\": link.isExpanded ? 'true' : 'false' },\n React.createElement(Icon, { className: classNames.chevronIcon, iconName: \"ChevronDown\" }))) : null,\n this._renderNavLink(link, linkIndex, nestingLevel)));\n };\n NavBase.prototype._renderLink = function (link, linkIndex, nestingLevel) {\n var _a = this.props, styles = _a.styles, groups = _a.groups, theme = _a.theme;\n var classNames = getClassNames(styles, { theme: theme, groups: groups });\n return (React.createElement(\"li\", { key: link.key || linkIndex, role: \"listitem\", className: classNames.navItem },\n this._renderCompositeLink(link, linkIndex, nestingLevel),\n link.isExpanded ? this._renderLinks(link.links, ++nestingLevel) : null));\n };\n NavBase.prototype._renderLinks = function (links, nestingLevel) {\n var _this = this;\n if (!links || !links.length) {\n return null;\n }\n var linkElements = links.map(function (link, linkIndex) {\n return _this._renderLink(link, linkIndex, nestingLevel);\n });\n var _a = this.props, styles = _a.styles, groups = _a.groups, theme = _a.theme;\n var classNames = getClassNames(styles, { theme: theme, groups: groups });\n return (React.createElement(\"ul\", { role: \"list\", className: classNames.navItems }, linkElements));\n };\n NavBase.prototype._onGroupHeaderClicked = function (group, ev) {\n if (group.onHeaderClick) {\n group.onHeaderClick(ev, this._isGroupExpanded(group));\n }\n this._toggleCollapsed(group);\n if (ev) {\n ev.preventDefault();\n ev.stopPropagation();\n }\n };\n NavBase.prototype._onLinkExpandClicked = function (link, ev) {\n var onLinkExpandClick = this.props.onLinkExpandClick;\n if (onLinkExpandClick) {\n onLinkExpandClick(ev, link);\n }\n if (!ev.defaultPrevented) {\n link.isExpanded = !link.isExpanded;\n // eslint-disable-next-line react/no-unused-state\n this.setState({ isLinkExpandStateChanged: true });\n }\n ev.preventDefault();\n ev.stopPropagation();\n };\n NavBase.prototype._preventBounce = function (link, ev) {\n if (!link.url && link.forceAnchor) {\n ev.preventDefault();\n }\n };\n NavBase.prototype._onNavAnchorLinkClicked = function (link, ev) {\n // If the href is \"#\" we should call preventDefault to prevent scrolling to the top of the page\n this._preventBounce(link, ev);\n if (this.props.onLinkClick) {\n this.props.onLinkClick(ev, link);\n }\n if (!link.url && link.links && link.links.length > 0) {\n this._onLinkExpandClicked(link, ev);\n }\n this.setState({ selectedKey: link.key });\n };\n NavBase.prototype._onNavButtonLinkClicked = function (link, ev) {\n // If the href is \"#\" we should call preventDefault to prevent scrolling to the top of the page\n this._preventBounce(link, ev);\n if (link.onClick) {\n link.onClick(ev, link);\n }\n if (!link.url && link.links && link.links.length > 0) {\n this._onLinkExpandClicked(link, ev);\n }\n this.setState({ selectedKey: link.key });\n };\n NavBase.prototype._isLinkSelected = function (link) {\n // if caller passes in selectedKey, use it as first choice or\n // if current state.selectedKey (from addressbar) is match to the link or\n // check if URL is matching location.href (if link.url exists)\n if (this.props.selectedKey !== undefined) {\n return link.key === this.props.selectedKey;\n }\n else if (this.state.selectedKey !== undefined) {\n return link.key === this.state.selectedKey;\n }\n else if (typeof getWindow() === 'undefined' || !link.url) {\n // resolve is not supported for ssr\n return false;\n }\n else {\n // If selectedKey is undefined in props and state, then check URL\n _urlResolver = _urlResolver || document.createElement('a');\n _urlResolver.href = link.url || '';\n var target = _urlResolver.href;\n if (location.href === target) {\n return true;\n }\n // If selectedKey is not defined in state, then check URL to determine link selected status\n if (location.protocol + '//' + location.host + location.pathname === target) {\n return true;\n }\n if (location.hash) {\n // Match the hash to the url.\n if (location.hash === link.url) {\n return true;\n }\n // Match a rebased url. (e.g. #foo becomes http://hostname/foo)\n _urlResolver.href = location.hash.substring(1);\n return _urlResolver.href === target;\n }\n }\n return false;\n };\n NavBase.prototype._isGroupExpanded = function (group) {\n if (group.name && this.state.isGroupCollapsed.hasOwnProperty(group.name)) {\n return !this.state.isGroupCollapsed[group.name];\n }\n if (group.collapseByDefault !== undefined) {\n return !group.collapseByDefault;\n }\n return true;\n };\n NavBase.prototype._toggleCollapsed = function (group) {\n var _a;\n if (group.name) {\n var newGroupCollapsed = __assign(__assign({}, this.state.isGroupCollapsed), (_a = {}, _a[group.name] = this._isGroupExpanded(group), _a));\n this.setState({ isGroupCollapsed: newGroupCollapsed });\n }\n };\n NavBase.defaultProps = {\n groups: null,\n };\n return NavBase;\n}(React.Component));\nexport { NavBase };\n//# sourceMappingURL=Nav.base.js.map" - }, - { - "id": "5AgF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "name": "./node_modules/@microsoft/load-themed-styles/lib-es6/index.js", - "index": 79, - "index2": 62, - "size": 10876, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "issuerId": "Khh+", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - }, - { - "id": "MgI6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js" - }, - { - "id": "Khh+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1Z81", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "1Z81", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "E/aL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "E/aL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "Khh+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "Khh+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "TCe0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "TCe0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "iC7h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "iC7h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "ldgY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "ldgY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "nCPe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "nCPe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "rqo+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "rqo+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-77" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "69:4-19" - }, - { - "moduleId": "x/L3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "x/L3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - }, - { - "moduleId": "yCvn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/load-themed-styles", - "loc": "2:0-59" - }, - { - "moduleId": "yCvn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/load-themed-styles", - "loc": "3:0-10" - } - ], - "usedExports": [ - "loadTheme" - ], - "providedExports": [ - "loadStyles", - "configureLoadStyles", - "configureRunMode", - "flush", - "loadTheme", - "clearStyles", - "detokenize", - "splitStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module uses injected variables (global)" - ], - "depth": 6, - "source": "// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\n// Store the theming state in __themeState__ global scope for reuse in the case of duplicate\n// load-themed-styles hosted on the page.\nvar _root = typeof window === 'undefined' ? global : window; // eslint-disable-line @typescript-eslint/no-explicit-any\n// Nonce string to inject into script tag if one provided. This is used in CSP (Content Security Policy).\nvar _styleNonce = _root && _root.CSPSettings && _root.CSPSettings.nonce;\nvar _themeState = initializeThemeState();\n/**\n * Matches theming tokens. For example, \"[theme: themeSlotName, default: #FFF]\" (including the quotes).\n */\nvar _themeTokenRegex = /[\\'\\\"]\\[theme:\\s*(\\w+)\\s*(?:\\,\\s*default:\\s*([\\\\\"\\']?[\\.\\,\\(\\)\\#\\-\\s\\w]*[\\.\\,\\(\\)\\#\\-\\w][\\\"\\']?))?\\s*\\][\\'\\\"]/g;\nvar now = function () {\n return typeof performance !== 'undefined' && !!performance.now ? performance.now() : Date.now();\n};\nfunction measure(func) {\n var start = now();\n func();\n var end = now();\n _themeState.perf.duration += end - start;\n}\n/**\n * initialize global state object\n */\nfunction initializeThemeState() {\n var state = _root.__themeState__ || {\n theme: undefined,\n lastStyleElement: undefined,\n registeredStyles: []\n };\n if (!state.runState) {\n state = __assign(__assign({}, state), { perf: {\n count: 0,\n duration: 0\n }, runState: {\n flushTimer: 0,\n mode: 0 /* sync */,\n buffer: []\n } });\n }\n if (!state.registeredThemableStyles) {\n state = __assign(__assign({}, state), { registeredThemableStyles: [] });\n }\n _root.__themeState__ = state;\n return state;\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load\n * event is fired.\n * @param {string | ThemableArray} styles Themable style text to register.\n * @param {boolean} loadAsync When true, always load styles in async mode, irrespective of current sync mode.\n */\nexport function loadStyles(styles, loadAsync) {\n if (loadAsync === void 0) { loadAsync = false; }\n measure(function () {\n var styleParts = Array.isArray(styles) ? styles : splitStyles(styles);\n var _a = _themeState.runState, mode = _a.mode, buffer = _a.buffer, flushTimer = _a.flushTimer;\n if (loadAsync || mode === 1 /* async */) {\n buffer.push(styleParts);\n if (!flushTimer) {\n _themeState.runState.flushTimer = asyncLoadStyles();\n }\n }\n else {\n applyThemableStyles(styleParts);\n }\n });\n}\n/**\n * Allows for customizable loadStyles logic. e.g. for server side rendering application\n * @param {(processedStyles: string, rawStyles?: string | ThemableArray) => void}\n * a loadStyles callback that gets called when styles are loaded or reloaded\n */\nexport function configureLoadStyles(loadStylesFn) {\n _themeState.loadStyles = loadStylesFn;\n}\n/**\n * Configure run mode of load-themable-styles\n * @param mode load-themable-styles run mode, async or sync\n */\nexport function configureRunMode(mode) {\n _themeState.runState.mode = mode;\n}\n/**\n * external code can call flush to synchronously force processing of currently buffered styles\n */\nexport function flush() {\n measure(function () {\n var styleArrays = _themeState.runState.buffer.slice();\n _themeState.runState.buffer = [];\n var mergedStyleArray = [].concat.apply([], styleArrays);\n if (mergedStyleArray.length > 0) {\n applyThemableStyles(mergedStyleArray);\n }\n });\n}\n/**\n * register async loadStyles\n */\nfunction asyncLoadStyles() {\n return setTimeout(function () {\n _themeState.runState.flushTimer = 0;\n flush();\n }, 0);\n}\n/**\n * Loads a set of style text. If it is registered too early, we will register it when the window.load event\n * is fired.\n * @param {string} styleText Style to register.\n * @param {IStyleRecord} styleRecord Existing style record to re-apply.\n */\nfunction applyThemableStyles(stylesArray, styleRecord) {\n if (_themeState.loadStyles) {\n _themeState.loadStyles(resolveThemableArray(stylesArray).styleString, stylesArray);\n }\n else {\n registerStyles(stylesArray);\n }\n}\n/**\n * Registers a set theme tokens to find and replace. If styles were already registered, they will be\n * replaced.\n * @param {theme} theme JSON object of theme tokens to values.\n */\nexport function loadTheme(theme) {\n _themeState.theme = theme;\n // reload styles.\n reloadStyles();\n}\n/**\n * Clear already registered style elements and style records in theme_State object\n * @param option - specify which group of registered styles should be cleared.\n * Default to be both themable and non-themable styles will be cleared\n */\nexport function clearStyles(option) {\n if (option === void 0) { option = 3 /* all */; }\n if (option === 3 /* all */ || option === 2 /* onlyNonThemable */) {\n clearStylesInternal(_themeState.registeredStyles);\n _themeState.registeredStyles = [];\n }\n if (option === 3 /* all */ || option === 1 /* onlyThemable */) {\n clearStylesInternal(_themeState.registeredThemableStyles);\n _themeState.registeredThemableStyles = [];\n }\n}\nfunction clearStylesInternal(records) {\n records.forEach(function (styleRecord) {\n var styleElement = styleRecord && styleRecord.styleElement;\n if (styleElement && styleElement.parentElement) {\n styleElement.parentElement.removeChild(styleElement);\n }\n });\n}\n/**\n * Reloads styles.\n */\nfunction reloadStyles() {\n if (_themeState.theme) {\n var themableStyles = [];\n for (var _i = 0, _a = _themeState.registeredThemableStyles; _i < _a.length; _i++) {\n var styleRecord = _a[_i];\n themableStyles.push(styleRecord.themableStyle);\n }\n if (themableStyles.length > 0) {\n clearStyles(1 /* onlyThemable */);\n applyThemableStyles([].concat.apply([], themableStyles));\n }\n }\n}\n/**\n * Find theme tokens and replaces them with provided theme values.\n * @param {string} styles Tokenized styles to fix.\n */\nexport function detokenize(styles) {\n if (styles) {\n styles = resolveThemableArray(splitStyles(styles)).styleString;\n }\n return styles;\n}\n/**\n * Resolves ThemingInstruction objects in an array and joins the result into a string.\n * @param {ThemableArray} splitStyleArray ThemableArray to resolve and join.\n */\nfunction resolveThemableArray(splitStyleArray) {\n var theme = _themeState.theme;\n var themable = false;\n // Resolve the array of theming instructions to an array of strings.\n // Then join the array to produce the final CSS string.\n var resolvedArray = (splitStyleArray || []).map(function (currentValue) {\n var themeSlot = currentValue.theme;\n if (themeSlot) {\n themable = true;\n // A theming annotation. Resolve it.\n var themedValue = theme ? theme[themeSlot] : undefined;\n var defaultValue = currentValue.defaultValue || 'inherit';\n // Warn to console if we hit an unthemed value even when themes are provided, but only if \"DEBUG\" is true.\n // Allow the themedValue to be undefined to explicitly request the default value.\n if (theme &&\n !themedValue &&\n console &&\n !(themeSlot in theme) &&\n typeof DEBUG !== 'undefined' &&\n DEBUG) {\n console.warn(\"Theming value not provided for \\\"\".concat(themeSlot, \"\\\". Falling back to \\\"\").concat(defaultValue, \"\\\".\"));\n }\n return themedValue || defaultValue;\n }\n else {\n // A non-themable string. Preserve it.\n return currentValue.rawString;\n }\n });\n return {\n styleString: resolvedArray.join(''),\n themable: themable\n };\n}\n/**\n * Split tokenized CSS into an array of strings and theme specification objects\n * @param {string} styles Tokenized styles to split.\n */\nexport function splitStyles(styles) {\n var result = [];\n if (styles) {\n var pos = 0; // Current position in styles.\n var tokenMatch = void 0;\n while ((tokenMatch = _themeTokenRegex.exec(styles))) {\n var matchIndex = tokenMatch.index;\n if (matchIndex > pos) {\n result.push({\n rawString: styles.substring(pos, matchIndex)\n });\n }\n result.push({\n theme: tokenMatch[1],\n defaultValue: tokenMatch[2] // May be undefined\n });\n // index of the first character after the current match\n pos = _themeTokenRegex.lastIndex;\n }\n // Push the rest of the string after the last match.\n result.push({\n rawString: styles.substring(pos)\n });\n }\n return result;\n}\n/**\n * Registers a set of style text. If it is registered too early, we will register it when the\n * window.load event is fired.\n * @param {ThemableArray} styleArray Array of IThemingInstruction objects to register.\n * @param {IStyleRecord} styleRecord May specify a style Element to update.\n */\nfunction registerStyles(styleArray) {\n if (typeof document === 'undefined') {\n return;\n }\n var head = document.getElementsByTagName('head')[0];\n var styleElement = document.createElement('style');\n var _a = resolveThemableArray(styleArray), styleString = _a.styleString, themable = _a.themable;\n styleElement.setAttribute('data-load-themed-styles', 'true');\n if (_styleNonce) {\n styleElement.setAttribute('nonce', _styleNonce);\n }\n styleElement.appendChild(document.createTextNode(styleString));\n _themeState.perf.count++;\n head.appendChild(styleElement);\n var ev = document.createEvent('HTMLEvents');\n ev.initEvent('styleinsert', true /* bubbleEvent */, false /* cancelable */);\n ev.args = {\n newStyle: styleElement\n };\n document.dispatchEvent(ev);\n var record = {\n styleElement: styleElement,\n themableStyle: styleArray\n };\n if (themable) {\n _themeState.registeredThemableStyles.push(record);\n }\n else {\n _themeState.registeredStyles.push(record);\n }\n}\n//# sourceMappingURL=index.js.map" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "index": null, - "index2": null, - "size": 72, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "issuerId": "U8fg", - "issuerName": "./node_modules/office-ui-fabric-react/lib/FocusZone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "U8fg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/FocusZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/FocusZone.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/FocusZone/index", - "loc": "1:0-45" - }, - { - "moduleId": "U8fg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/FocusZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/FocusZone.js", - "type": "harmony export imported specifier", - "userRequest": "./components/FocusZone/index", - "loc": "1:0-45" - } - ], - "usedExports": false, - "providedExports": [ - "FocusZone", - "FocusZoneTabbableElements", - "FocusZoneDirection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from '@fluentui/react-focus';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "5Tg0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneBuffer.js", - "name": "./node_modules/lodash/_cloneBuffer.js", - "index": 521, - "index2": 514, - "size": 1056, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_cloneBuffer", - "loc": "6:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var root = require('./_root');\n\n/** Detect free variable `exports`. */\nvar freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Built-in value references. */\nvar Buffer = moduleExports ? root.Buffer : undefined,\n allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;\n\n/**\n * Creates a clone of `buffer`.\n *\n * @private\n * @param {Buffer} buffer The buffer to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Buffer} Returns the cloned buffer.\n */\nfunction cloneBuffer(buffer, isDeep) {\n if (isDeep) {\n return buffer.slice();\n }\n var length = buffer.length,\n result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n buffer.copy(result);\n return result;\n}\n\nmodule.exports = cloneBuffer;\n" - }, - { - "id": "5YQ7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "index": null, - "index2": null, - "size": 277, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "issuerId": "uAzL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js" - }, - { - "id": "II1S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js" - }, - { - "id": "uAzL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PlainCard/PlainCard", - "loc": "7:0-38" - }, - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PlainCard/PlainCard", - "loc": "7:0-38" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./PlainCard/PlainCard", - "loc": "7:0-50" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./PlainCard/PlainCard", - "loc": "195:150-159" - } - ], - "usedExports": false, - "providedExports": [ - "PlainCard" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../../Utilities';\nimport { getStyles } from './PlainCard.styles';\nimport { PlainCardBase } from './PlainCard.base';\nexport var PlainCard = styled(PlainCardBase, getStyles, undefined, {\n scope: 'PlainCard',\n});\n//# sourceMappingURL=PlainCard.js.map" - }, - { - "id": "5fkN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/DelayedRender.js", - "name": "./node_modules/@uifabric/utilities/lib/DelayedRender.js", - "index": 117, - "index2": 105, - "size": 1385, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:36-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "62:36-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "99:36-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "213:40-53" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DelayedRender", - "loc": "4:0-32" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DelayedRender", - "loc": "4:0-32" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:32-45" - } - ], - "usedExports": [ - "DelayedRender" - ], - "providedExports": [ - "DelayedRender" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\n/**\n * Utility component for delaying the render of a child component after a given delay. This component\n * requires a single child component; don't pass in many components. Wrap multiple components in a DIV\n * if necessary.\n *\n * @public\n * {@docCategory DelayedRender}\n */\nvar DelayedRender = /** @class */ (function (_super) {\n __extends(DelayedRender, _super);\n function DelayedRender(props) {\n var _this = _super.call(this, props) || this;\n _this.state = {\n isRendered: false,\n };\n return _this;\n }\n DelayedRender.prototype.componentDidMount = function () {\n var _this = this;\n var delay = this.props.delay;\n this._timeoutId = window.setTimeout(function () {\n _this.setState({\n isRendered: true,\n });\n }, delay);\n };\n DelayedRender.prototype.componentWillUnmount = function () {\n if (this._timeoutId) {\n clearTimeout(this._timeoutId);\n }\n };\n DelayedRender.prototype.render = function () {\n return this.state.isRendered ? React.Children.only(this.props.children) : null;\n };\n DelayedRender.defaultProps = {\n delay: 0,\n };\n return DelayedRender;\n}(React.Component));\nexport { DelayedRender };\n//# sourceMappingURL=DelayedRender.js.map" - }, - { - "id": "5wfK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "index": null, - "index2": null, - "size": 4052, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "issuerId": "ypaI", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "6LVT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ProgressIndicator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ProgressIndicator.js" - }, - { - "id": "oOJb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js" - }, - { - "id": "ypaI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ypaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "type": "harmony side effect evaluation", - "userRequest": "./ProgressIndicator.styles", - "loc": "3:0-55" - }, - { - "moduleId": "ypaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "type": "harmony import specifier", - "userRequest": "./ProgressIndicator.styles", - "loc": "7:61-70" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, keyframes, noWrap, getGlobalClassNames, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { getRTL, memoizeFunction } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-ProgressIndicator',\n itemName: 'ms-ProgressIndicator-itemName',\n itemDescription: 'ms-ProgressIndicator-itemDescription',\n itemProgress: 'ms-ProgressIndicator-itemProgress',\n progressTrack: 'ms-ProgressIndicator-progressTrack',\n progressBar: 'ms-ProgressIndicator-progressBar',\n};\nvar IndeterminateProgress = memoizeFunction(function () {\n return keyframes({\n '0%': {\n left: '-30%',\n },\n '100%': {\n left: '100%',\n },\n });\n});\nvar IndeterminateProgressRTL = memoizeFunction(function () {\n return keyframes({\n '100%': {\n right: '-30%',\n },\n '0%': {\n right: '100%',\n },\n });\n});\nexport var getStyles = function (props) {\n var _a, _b, _c;\n var isRTL = getRTL(props.theme);\n var className = props.className, indeterminate = props.indeterminate, theme = props.theme, _d = props.barHeight, barHeight = _d === void 0 ? 2 : _d;\n var palette = theme.palette, semanticColors = theme.semanticColors, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var marginBetweenText = 8;\n var textHeight = 18;\n var progressTrackColor = palette.neutralLight;\n return {\n root: [classNames.root, fonts.medium, className],\n itemName: [\n classNames.itemName,\n noWrap,\n {\n color: semanticColors.bodyText,\n paddingTop: marginBetweenText / 2,\n lineHeight: textHeight + 2,\n },\n ],\n itemDescription: [\n classNames.itemDescription,\n {\n color: semanticColors.bodySubtext,\n fontSize: fonts.small.fontSize,\n lineHeight: textHeight,\n },\n ],\n itemProgress: [\n classNames.itemProgress,\n {\n position: 'relative',\n overflow: 'hidden',\n height: barHeight,\n padding: marginBetweenText + \"px 0\",\n },\n ],\n progressTrack: [\n classNames.progressTrack,\n {\n position: 'absolute',\n width: '100%',\n height: barHeight,\n backgroundColor: progressTrackColor,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderBottom: '1px solid WindowText',\n },\n _a),\n },\n ],\n progressBar: [\n {\n backgroundColor: palette.themePrimary,\n height: barHeight,\n position: 'absolute',\n transition: 'width .3s ease',\n width: 0,\n selectors: (_b = {},\n _b[HighContrastSelector] = __assign({ backgroundColor: 'highlight' }, getHighContrastNoAdjustStyle()),\n _b),\n },\n indeterminate\n ? {\n position: 'absolute',\n minWidth: '33%',\n background: \"linear-gradient(to right, \" + progressTrackColor + \" 0%, \" +\n (palette.themePrimary + \" 50%, \" + progressTrackColor + \" 100%)\"),\n animation: (isRTL ? IndeterminateProgressRTL() : IndeterminateProgress()) + \" 3s infinite\",\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n background: \"highlight\",\n },\n _c),\n }\n : {\n transition: 'width .15s linear',\n },\n classNames.progressBar,\n ],\n };\n};\n//# sourceMappingURL=ProgressIndicator.styles.js.map" - }, - { - "id": "6/e9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "index": 915, - "index2": 913, - "size": 1784, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerId": "QxFg", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyPaneWebPartInformation", - "loc": "2:0-49" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyPaneWebPartInformation", - "loc": "2:0-49" - } - ], - "usedExports": [ - "PropertyPaneWebPartInformation" - ], - "providedExports": [ - "PropertyPaneWebPartInformation" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import * as React from 'react';\nimport * as ReactDom from 'react-dom';\nimport { PropertyPaneFieldType } from '@microsoft/sp-webpart-base';\nimport PropertyPaneWebPartInformationHost from './PropertyPaneWebPartInformationHost';\nvar PropertyPaneWebPartInformationBuilder = /** @class */ (function () {\n function PropertyPaneWebPartInformationBuilder(_properties) {\n this.type = PropertyPaneFieldType.Custom;\n this.properties = {\n key: _properties.key,\n moreInfoLink: _properties.moreInfoLink,\n moreInfoLinkTarget: _properties.moreInfoLinkTarget !== undefined ? _properties.moreInfoLinkTarget : \"_blank\",\n videoProperties: _properties.videoProperties,\n description: _properties.description,\n onRender: this.onRender.bind(this)\n };\n }\n PropertyPaneWebPartInformationBuilder.prototype.render = function () {\n if (!this.elem) {\n return;\n }\n this.onRender(this.elem);\n };\n PropertyPaneWebPartInformationBuilder.prototype.onRender = function (elem, ctx, changeCallback) {\n if (!this.elem) {\n this.elem = elem;\n }\n var element = React.createElement(PropertyPaneWebPartInformationHost, {\n moreInfoLink: this.properties.moreInfoLink,\n moreInfoLinkTarget: this.properties.moreInfoLinkTarget,\n description: this.properties.description,\n videoProperties: this.properties.videoProperties\n });\n ReactDom.render(element, elem);\n };\n return PropertyPaneWebPartInformationBuilder;\n}());\nexport function PropertyPaneWebPartInformation(properties) {\n return new PropertyPaneWebPartInformationBuilder(properties);\n}\n//# sourceMappingURL=PropertyPaneWebPartInformation.js.map" - }, - { - "id": "6/y+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-1.js", - "index": null, - "index2": null, - "size": 4261, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-1", - "loc": "3:0-57" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-1", - "loc": "27:8-10" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-1\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-1-4d521695.woff') format('woff')\"\n },\n icons: {\n 'Paste': '\\uE77F',\n 'WindowsLogo': '\\uE782',\n 'Error': '\\uE783',\n 'GripperBarVertical': '\\uE784',\n 'Unlock': '\\uE785',\n 'Slideshow': '\\uE786',\n 'Trim': '\\uE78A',\n 'AutoEnhanceOn': '\\uE78D',\n 'AutoEnhanceOff': '\\uE78E',\n 'Color': '\\uE790',\n 'SaveAs': '\\uE792',\n 'Light': '\\uE793',\n 'Filters': '\\uE795',\n 'AspectRatio': '\\uE799',\n 'Contrast': '\\uE7A1',\n 'Redo': '\\uE7A6',\n 'Crop': '\\uE7A8',\n 'PhotoCollection': '\\uE7AA',\n 'Album': '\\uE7AB',\n 'Rotate': '\\uE7AD',\n 'PanoIndicator': '\\uE7B0',\n 'Translate': '\\uE7B2',\n 'RedEye': '\\uE7B3',\n 'ViewOriginal': '\\uE7B4',\n 'ThumbnailView': '\\uE7B6',\n 'Package': '\\uE7B8',\n 'Telemarketer': '\\uE7B9',\n 'Warning': '\\uE7BA',\n 'Financial': '\\uE7BB',\n 'Education': '\\uE7BE',\n 'ShoppingCart': '\\uE7BF',\n 'Train': '\\uE7C0',\n 'Move': '\\uE7C2',\n 'TouchPointer': '\\uE7C9',\n 'Merge': '\\uE7D5',\n 'TurnRight': '\\uE7DB',\n 'Ferry': '\\uE7E3',\n 'Highlight': '\\uE7E6',\n 'PowerButton': '\\uE7E8',\n 'Tab': '\\uE7E9',\n 'Admin': '\\uE7EF',\n 'TVMonitor': '\\uE7F4',\n 'Speakers': '\\uE7F5',\n 'Game': '\\uE7FC',\n 'HorizontalTabKey': '\\uE7FD',\n 'UnstackSelected': '\\uE7FE',\n 'StackIndicator': '\\uE7FF',\n 'Nav2DMapView': '\\uE800',\n 'StreetsideSplitMinimize': '\\uE802',\n 'Car': '\\uE804',\n 'Bus': '\\uE806',\n 'EatDrink': '\\uE807',\n 'SeeDo': '\\uE808',\n 'LocationCircle': '\\uE80E',\n 'Home': '\\uE80F',\n 'SwitcherStartEnd': '\\uE810',\n 'ParkingLocation': '\\uE811',\n 'IncidentTriangle': '\\uE814',\n 'Touch': '\\uE815',\n 'MapDirections': '\\uE816',\n 'CaretHollow': '\\uE817',\n 'CaretSolid': '\\uE818',\n 'History': '\\uE81C',\n 'Location': '\\uE81D',\n 'MapLayers': '\\uE81E',\n 'SearchNearby': '\\uE820',\n 'Work': '\\uE821',\n 'Recent': '\\uE823',\n 'Hotel': '\\uE824',\n 'Bank': '\\uE825',\n 'LocationDot': '\\uE827',\n 'Dictionary': '\\uE82D',\n 'ChromeBack': '\\uE830',\n 'FolderOpen': '\\uE838',\n 'PinnedFill': '\\uE842',\n 'RevToggleKey': '\\uE845',\n 'USB': '\\uE88E',\n 'Previous': '\\uE892',\n 'Next': '\\uE893',\n 'Sync': '\\uE895',\n 'Help': '\\uE897',\n 'Emoji': '\\uE899',\n 'MailForward': '\\uE89C',\n 'ClosePane': '\\uE89F',\n 'OpenPane': '\\uE8A0',\n 'PreviewLink': '\\uE8A1',\n 'ZoomIn': '\\uE8A3',\n 'Bookmarks': '\\uE8A4',\n 'Document': '\\uE8A5',\n 'ProtectedDocument': '\\uE8A6',\n 'OpenInNewWindow': '\\uE8A7',\n 'MailFill': '\\uE8A8',\n 'ViewAll': '\\uE8A9',\n 'Switch': '\\uE8AB',\n 'Rename': '\\uE8AC',\n 'Go': '\\uE8AD',\n 'Remote': '\\uE8AF',\n 'SelectAll': '\\uE8B3',\n 'Orientation': '\\uE8B4',\n 'Import': '\\uE8B5'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-1.js.map" - }, - { - "id": "62r0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "index": null, - "index2": null, - "size": 374, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "issuerId": "vX7Y", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "k+iy", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/CommandBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/CommandBar.js" - }, - { - "id": "vX7Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "vX7Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CommandBar", - "loc": "1:0-29" - }, - { - "moduleId": "vX7Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CommandBar", - "loc": "1:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "CommandBar" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { CommandBarBase } from './CommandBar.base';\nimport { getStyles } from './CommandBar.styles';\n// Create a CommandBar variant which uses these default styles and this styled subcomponent.\nexport var CommandBar = styled(CommandBarBase, getStyles, undefined, {\n scope: 'CommandBar',\n});\n//# sourceMappingURL=CommandBar.js.map" - }, - { - "id": "64bn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "index": null, - "index2": null, - "size": 33658, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "issuerId": "grUF", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "DyGw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/Calendar.js" - }, - { - "id": "uyAb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/index.js" - }, - { - "id": "grUF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalendarDay", - "loc": "4:0-44" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "./CalendarDay", - "loc": "197:71-82" - } - ], - "usedExports": false, - "providedExports": [ - "CalendarDay" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __extends, __spreadArrays } from \"tslib\";\nimport * as React from 'react';\nimport { KeyCodes, css, getId, getRTL, getRTLSafeKeyCode, format, findIndex, find, initializeComponentRef, } from '../../Utilities';\nimport { DateRangeType } from '../../utilities/dateValues/DateValues';\nimport { FocusZone } from '../../FocusZone';\nimport { Icon } from '../../Icon';\nimport { addDays, addWeeks, addMonths, compareDates, compareDatePart, getDateRangeArray, isInDateRangeArray, getWeekNumber, getWeekNumbersInMonth, getMonthStart, getMonthEnd, } from '../../utilities/dateMath/DateMath';\nimport * as stylesImport from './Calendar.scss';\nvar styles = stylesImport;\nvar DAYS_IN_WEEK = 7;\nvar CalendarDay = /** @class */ (function (_super) {\n __extends(CalendarDay, _super);\n function CalendarDay(props) {\n var _this = _super.call(this, props) || this;\n _this.days = {};\n _this._onKeyDown = function (callback, ev) {\n if (ev.which === KeyCodes.enter || ev.which === KeyCodes.space) {\n callback();\n }\n };\n _this._onDayKeyDown = function (originalDate, weekIndex, dayIndex) {\n return function (ev) {\n if (ev.which === KeyCodes.enter) {\n _this._onSelectDate(originalDate, ev);\n ev.preventDefault();\n }\n else {\n _this._navigateMonthEdge(ev, originalDate, weekIndex, dayIndex);\n }\n };\n };\n _this._onDayMouseDown = function (originalDate, weekIndex, dayIndex, dateRangeType) {\n return function (ev) {\n // set the press styling\n if (dateRangeType === DateRangeType.Month) {\n _this._applyFunctionToDayRefs(function (ref, day) {\n if (ref && day.originalDate.getMonth() === originalDate.getMonth() && day.isInBounds) {\n ref.classList.add(styles.dayPress);\n }\n });\n }\n else {\n // week or work week view\n _this._applyFunctionToDayRefs(function (ref, day, dayWeekIndex) {\n if (ref && dayWeekIndex === weekIndex && day.isInBounds) {\n ref.classList.add(styles.dayPress);\n ref.classList.add(styles.dayIsHighlighted);\n }\n else if (ref) {\n ref.classList.remove(styles.dayIsHighlighted);\n }\n });\n }\n };\n };\n _this._onDayMouseUp = function (originalDate, weekIndex, dayIndex, dateRangeType) {\n return function (ev) {\n // remove press styling\n if (dateRangeType === DateRangeType.Month) {\n _this._applyFunctionToDayRefs(function (ref, day) {\n if (ref && day.originalDate.getMonth() === originalDate.getMonth() && day.isInBounds) {\n ref.classList.remove(styles.dayPress);\n }\n });\n }\n else {\n // week or work week view\n _this._applyFunctionToDayRefs(function (ref, day, dayWeekIndex) {\n if (ref && dayWeekIndex === weekIndex && day.isInBounds) {\n ref.classList.remove(styles.dayPress);\n }\n });\n }\n };\n };\n _this._onDayMouseOver = function (originalDate, weekIndex, dayIndex, dateRangeType) {\n return function (ev) {\n // set the hover styling on every day in the same month\n if (dateRangeType === DateRangeType.Month) {\n _this._applyFunctionToDayRefs(function (ref, day) {\n if (ref && day.originalDate.getMonth() === originalDate.getMonth() && day.isInBounds) {\n ref.classList.add(styles.dayHover);\n }\n });\n }\n else {\n // week or work week view\n _this._applyFunctionToDayRefs(function (ref, day, dayWeekIndex) {\n if (ref && dayWeekIndex === weekIndex && day.isInBounds) {\n ref.classList.add(styles.dayHover);\n }\n });\n }\n };\n };\n _this._onDayMouseLeave = function (originalDate, weekIndex, dayIndex, dateRangeType) {\n return function (ev) {\n // remove the hover and pressed styling\n if (dateRangeType === DateRangeType.Month) {\n _this._applyFunctionToDayRefs(function (ref, day) {\n if (ref && day.originalDate.getMonth() === originalDate.getMonth() && day.isInBounds) {\n ref.classList.remove(styles.dayHover);\n }\n });\n }\n else {\n // week or work week view\n _this._applyFunctionToDayRefs(function (ref, day, dayWeekIndex) {\n if (ref && dayWeekIndex === weekIndex && day.isInBounds) {\n ref.classList.remove(styles.dayHover);\n }\n });\n }\n };\n };\n _this._onTableMouseLeave = function (ev) {\n if (ev.target.contains &&\n ev.relatedTarget &&\n ev.relatedTarget.contains &&\n ev.target.contains(ev.relatedTarget)) {\n return;\n }\n _this._applyFunctionToDayRefs(function (ref, day) {\n if (ref) {\n ref.classList.remove(styles.dayHover);\n ref.classList.remove(styles.dayPress);\n }\n });\n };\n _this._onTableMouseUp = function (ev) {\n if (ev.target.contains &&\n ev.relatedTarget &&\n ev.relatedTarget.contains &&\n ev.target.contains(ev.relatedTarget)) {\n return;\n }\n _this._applyFunctionToDayRefs(function (ref, day) {\n if (ref) {\n ref.classList.remove(styles.dayPress);\n }\n });\n };\n _this._onSelectDate = function (selectedDate, ev) {\n var _a = _this.props, onSelectDate = _a.onSelectDate, dateRangeType = _a.dateRangeType, firstDayOfWeek = _a.firstDayOfWeek, navigatedDate = _a.navigatedDate, autoNavigateOnSelection = _a.autoNavigateOnSelection, minDate = _a.minDate, maxDate = _a.maxDate, workWeekDays = _a.workWeekDays;\n if (ev) {\n ev.stopPropagation();\n }\n var dateRange = getDateRangeArray(selectedDate, dateRangeType, firstDayOfWeek, workWeekDays);\n if (dateRangeType !== DateRangeType.Day) {\n dateRange = _this._getBoundedDateRange(dateRange, minDate, maxDate);\n }\n dateRange = dateRange.filter(function (d) {\n return !_this._getIsRestrictedDate(d);\n });\n if (onSelectDate) {\n onSelectDate(selectedDate, dateRange);\n }\n // Navigate to next or previous month if needed\n if (autoNavigateOnSelection && selectedDate.getMonth() !== navigatedDate.getMonth()) {\n var compareResult = compareDatePart(selectedDate, navigatedDate);\n if (compareResult < 0) {\n _this._onSelectPrevMonth();\n }\n else if (compareResult > 0) {\n _this._onSelectNextMonth();\n }\n }\n };\n _this._onSelectNextMonth = function () {\n _this.props.onNavigateDate(addMonths(_this.props.navigatedDate, 1), false);\n };\n _this._onSelectPrevMonth = function () {\n _this.props.onNavigateDate(addMonths(_this.props.navigatedDate, -1), false);\n };\n _this._onClose = function () {\n if (_this.props.onDismiss) {\n _this.props.onDismiss();\n }\n };\n _this._onHeaderSelect = function () {\n var onHeaderSelect = _this.props.onHeaderSelect;\n if (onHeaderSelect) {\n onHeaderSelect(true);\n }\n };\n _this._onHeaderKeyDown = function (ev) {\n var onHeaderSelect = _this.props.onHeaderSelect;\n if (onHeaderSelect && (ev.which === KeyCodes.enter || ev.which === KeyCodes.space)) {\n onHeaderSelect(true);\n }\n };\n _this._onPrevMonthKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter) {\n _this._onKeyDown(_this._onSelectPrevMonth, ev);\n }\n };\n _this._onNextMonthKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter) {\n _this._onKeyDown(_this._onSelectNextMonth, ev);\n }\n };\n _this._onCloseButtonKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter) {\n _this._onKeyDown(_this._onClose, ev);\n }\n };\n initializeComponentRef(_this);\n _this.state = {\n activeDescendantId: getId('DatePickerDay-active'),\n weeks: _this._getWeeks(props),\n };\n _this._onSelectNextMonth = _this._onSelectNextMonth.bind(_this);\n _this._onSelectPrevMonth = _this._onSelectPrevMonth.bind(_this);\n _this._onClose = _this._onClose.bind(_this);\n return _this;\n }\n CalendarDay.prototype.UNSAFE_componentWillReceiveProps = function (nextProps) {\n this.setState({\n weeks: this._getWeeks(nextProps),\n });\n };\n CalendarDay.prototype.render = function () {\n var _a, _b;\n var _this = this;\n var _c = this.state, activeDescendantId = _c.activeDescendantId, weeks = _c.weeks;\n var _d = this.props, firstDayOfWeek = _d.firstDayOfWeek, strings = _d.strings, navigatedDate = _d.navigatedDate, selectedDate = _d.selectedDate, dateRangeType = _d.dateRangeType, navigationIcons = _d.navigationIcons, showWeekNumbers = _d.showWeekNumbers, firstWeekOfYear = _d.firstWeekOfYear, dateTimeFormatter = _d.dateTimeFormatter, minDate = _d.minDate, maxDate = _d.maxDate, showCloseButton = _d.showCloseButton, allFocusable = _d.allFocusable;\n var dayPickerId = getId('DatePickerDay-dayPicker');\n var monthAndYearId = getId('DatePickerDay-monthAndYear');\n var leftNavigationIcon = navigationIcons.leftNavigation;\n var rightNavigationIcon = navigationIcons.rightNavigation;\n var closeNavigationIcon = navigationIcons.closeIcon;\n var weekNumbers = showWeekNumbers\n ? getWeekNumbersInMonth(weeks.length, firstDayOfWeek, firstWeekOfYear, navigatedDate)\n : null;\n var selectedDateWeekNumber = showWeekNumbers\n ? getWeekNumber(selectedDate, firstDayOfWeek, firstWeekOfYear)\n : undefined;\n // When the month is highlighted get the corner dates so that styles can be added to them\n var weekCorners = this._getWeekCornerStyles(weeks, dateRangeType);\n // determine if previous/next months are in bounds\n var prevMonthInBounds = minDate ? compareDatePart(minDate, getMonthStart(navigatedDate)) < 0 : true;\n var nextMonthInBounds = maxDate ? compareDatePart(getMonthEnd(navigatedDate), maxDate) < 0 : true;\n return (React.createElement(\"div\", { className: css('ms-DatePicker-dayPicker', styles.dayPicker, showWeekNumbers &&\n 'ms-DatePicker-showWeekNumbers' &&\n (getRTL() ? styles.showWeekNumbersRTL : styles.showWeekNumbers)), id: dayPickerId },\n React.createElement(\"div\", { className: css('ms-DatePicker-header', styles.header) },\n React.createElement(\"div\", { \"aria-live\": \"polite\", \"aria-relevant\": \"text\", \"aria-atomic\": \"true\", id: monthAndYearId, className: styles.monthAndYear }, this.props.onHeaderSelect ? (React.createElement(\"div\", { className: css('ms-DatePicker-monthAndYear js-showMonthPicker', styles.headerToggleView), onClick: this._onHeaderSelect, onKeyDown: this._onHeaderKeyDown, \"aria-label\": dateTimeFormatter.formatMonthYear(navigatedDate, strings), role: \"button\", tabIndex: 0 }, dateTimeFormatter.formatMonthYear(navigatedDate, strings))) : (React.createElement(\"div\", { className: css('ms-DatePicker-monthAndYear', styles.monthAndYear) }, dateTimeFormatter.formatMonthYear(navigatedDate, strings)))),\n React.createElement(\"div\", { className: css('ms-DatePicker-monthComponents', styles.monthComponents) },\n React.createElement(\"div\", { className: css('ms-DatePicker-navContainer', styles.navContainer) },\n React.createElement(\"button\", { className: css('ms-DatePicker-prevMonth js-prevMonth', styles.prevMonth, (_a = {},\n _a['ms-DatePicker-prevMonth--disabled ' + styles.prevMonthIsDisabled] = !prevMonthInBounds,\n _a)), disabled: !allFocusable && !prevMonthInBounds, \"aria-disabled\": !prevMonthInBounds, onClick: prevMonthInBounds ? this._onSelectPrevMonth : undefined, onKeyDown: prevMonthInBounds ? this._onPrevMonthKeyDown : undefined, \"aria-controls\": dayPickerId, title: strings.prevMonthAriaLabel\n ? strings.prevMonthAriaLabel + ' ' + strings.months[addMonths(navigatedDate, -1).getMonth()]\n : undefined, role: \"button\", type: \"button\" },\n React.createElement(Icon, { iconName: leftNavigationIcon })),\n React.createElement(\"button\", { className: css('ms-DatePicker-nextMonth js-nextMonth', styles.nextMonth, (_b = {},\n _b['ms-DatePicker-nextMonth--disabled ' + styles.nextMonthIsDisabled] = !nextMonthInBounds,\n _b)), disabled: !allFocusable && !nextMonthInBounds, \"aria-disabled\": !nextMonthInBounds, onClick: nextMonthInBounds ? this._onSelectNextMonth : undefined, onKeyDown: nextMonthInBounds ? this._onNextMonthKeyDown : undefined, \"aria-controls\": dayPickerId, title: strings.nextMonthAriaLabel\n ? strings.nextMonthAriaLabel + ' ' + strings.months[addMonths(navigatedDate, 1).getMonth()]\n : undefined, role: \"button\", type: \"button\" },\n React.createElement(Icon, { iconName: rightNavigationIcon })),\n showCloseButton && (React.createElement(\"button\", { className: css('ms-DatePicker-closeButton js-closeButton', styles.closeButton), onClick: this._onClose, onKeyDown: this._onCloseButtonKeyDown, title: strings.closeButtonAriaLabel, role: \"button\", type: \"button\" },\n React.createElement(Icon, { iconName: closeNavigationIcon })))))),\n React.createElement(FocusZone, null,\n React.createElement(\"table\", { className: css('ms-DatePicker-table', styles.table), \"aria-readonly\": \"true\", \"aria-multiselectable\": \"false\", \"aria-labelledby\": monthAndYearId, \"aria-activedescendant\": activeDescendantId, role: \"grid\" },\n React.createElement(\"thead\", null,\n React.createElement(\"tr\", null,\n showWeekNumbers && React.createElement(\"th\", { className: css('ms-DatePicker-weekday', styles.weekday) }),\n strings.shortDays.map(function (val, index) { return (React.createElement(\"th\", { className: css('ms-DatePicker-weekday', styles.weekday), role: \"columnheader\", scope: \"col\", key: index, title: strings.days[(index + firstDayOfWeek) % DAYS_IN_WEEK], \"aria-label\": strings.days[(index + firstDayOfWeek) % DAYS_IN_WEEK], \"data-is-focusable\": allFocusable ? true : undefined }, strings.shortDays[(index + firstDayOfWeek) % DAYS_IN_WEEK])); }))),\n React.createElement(\"tbody\", { onMouseLeave: dateRangeType !== DateRangeType.Day ? this._onTableMouseLeave : undefined, onMouseUp: dateRangeType !== DateRangeType.Day ? this._onTableMouseUp : undefined }, weeks.map(function (week, weekIndex) {\n var _a;\n return (React.createElement(\"tr\", { key: weekNumbers ? weekNumbers[weekIndex] : weekIndex },\n showWeekNumbers && weekNumbers && (React.createElement(\"th\", { className: css('ms-DatePicker-weekNumbers', 'ms-DatePicker-weekday', styles.weekday, styles.weekNumbers), key: weekIndex, title: weekNumbers &&\n strings.weekNumberFormatString &&\n format(strings.weekNumberFormatString, weekNumbers[weekIndex]), \"aria-label\": weekNumbers &&\n strings.weekNumberFormatString &&\n format(strings.weekNumberFormatString, weekNumbers[weekIndex]), scope: \"row\" },\n React.createElement(\"div\", { className: css('ms-DatePicker-day', styles.day, (_a = {},\n _a['ms-DatePicker-week--highlighted ' + styles.weekIsHighlighted] = selectedDateWeekNumber === weekNumbers[weekIndex],\n _a)) },\n React.createElement(\"span\", null, weekNumbers[weekIndex])))),\n week.map(function (day, dayIndex) {\n var _a, _b;\n var isNavigatedDate = compareDates(navigatedDate, day.originalDate);\n return (React.createElement(\"td\", { key: day.key, onClick: day.isInBounds ? day.onSelected : undefined, className: css(styles.dayWrapper, 'ms-DatePicker-day', _this._getHighlightedCornerStyle(weekCorners, dayIndex, weekIndex), (_a = {},\n _a['ms-DatePicker-weekBackground ' + styles.weekBackground] = day.isSelected &&\n (dateRangeType === DateRangeType.Week || dateRangeType === DateRangeType.WorkWeek),\n _a['ms-DatePicker-dayBackground ' + styles.dayBackground] = dateRangeType === DateRangeType.Day,\n _a['ms-DatePicker-day--highlighted ' + styles.dayIsHighlighted] = day.isSelected && dateRangeType === DateRangeType.Day,\n _a['ms-DatePicker-day--infocus ' + styles.dayIsFocused] = day.isInBounds && day.isInMonth,\n _a['ms-DatePicker-day--outfocus ' + styles.dayIsUnfocused] = day.isInBounds && !day.isInMonth,\n _a[styles.daySelection] = dateRangeType === DateRangeType.Day,\n _a[styles.weekSelection] = dateRangeType === DateRangeType.Week || dateRangeType === DateRangeType.WorkWeek,\n _a[styles.monthSelection] = dateRangeType === DateRangeType.Month,\n _a)), ref: function (element) { return _this._setDayCellRef(element, day, isNavigatedDate); }, onMouseOver: dateRangeType !== DateRangeType.Day && day.isInBounds\n ? _this._onDayMouseOver(day.originalDate, weekIndex, dayIndex, dateRangeType)\n : undefined, onMouseLeave: dateRangeType !== DateRangeType.Day && day.isInBounds\n ? _this._onDayMouseLeave(day.originalDate, weekIndex, dayIndex, dateRangeType)\n : undefined, onMouseDown: dateRangeType !== DateRangeType.Day && day.isInBounds\n ? _this._onDayMouseDown(day.originalDate, weekIndex, dayIndex, dateRangeType)\n : undefined, onMouseUp: dateRangeType !== DateRangeType.Day && day.isInBounds\n ? _this._onDayMouseUp(day.originalDate, weekIndex, dayIndex, dateRangeType)\n : undefined, role: 'presentation' },\n React.createElement(\"button\", { key: day.key + 'button', onClick: day.isInBounds ? day.onSelected : undefined, className: css(styles.day, 'ms-DatePicker-day-button', (_b = {},\n _b['ms-DatePicker-day--disabled ' + styles.dayIsDisabled] = !day.isInBounds,\n _b['ms-DatePicker-day--today ' + styles.dayIsToday] = day.isToday,\n _b)), onKeyDown: _this._onDayKeyDown(day.originalDate, weekIndex, dayIndex), \"aria-label\": dateTimeFormatter.formatMonthDayYear(day.originalDate, strings), id: isNavigatedDate ? activeDescendantId : undefined, \"aria-readonly\": true, \"aria-current\": day.isToday ? 'date' : undefined, \"aria-selected\": day.isInBounds ? day.isSelected : undefined, \"data-is-focusable\": allFocusable || (day.isInBounds ? true : undefined), ref: function (element) { return _this._setDayRef(element, day, isNavigatedDate); }, disabled: !allFocusable && !day.isInBounds, \"aria-disabled\": !day.isInBounds, type: \"button\", role: 'gridcell' },\n React.createElement(\"span\", { \"aria-hidden\": \"true\" }, dateTimeFormatter.formatDay(day.originalDate)))));\n })));\n }))))));\n };\n CalendarDay.prototype.focus = function () {\n if (this.navigatedDay) {\n this.navigatedDay.tabIndex = 0;\n this.navigatedDay.focus();\n }\n };\n CalendarDay.prototype._setDayRef = function (element, day, isNavigatedDate) {\n if (isNavigatedDate) {\n this.navigatedDay = element;\n }\n };\n CalendarDay.prototype._setDayCellRef = function (element, day, isNavigatedDate) {\n this.days[day.key] = element;\n };\n CalendarDay.prototype._getWeekCornerStyles = function (weeks, dateRangeType) {\n var _this = this;\n var weekCornersStyled = {};\n switch (dateRangeType) {\n case DateRangeType.Month:\n /* need to handle setting all of the corners on arbitrarily shaped blobs\n __\n __|A |\n |B |C |__\n |D |E |F |\n \n in this case, A needs top left rounded, top right rounded\n B needs top left rounded\n C doesn't need any rounding\n D needs bottom left rounded\n E doesn't need any rounding\n F needs top right rounding\n */\n // if there's an item above, lose both top corners. Item below, lose both bottom corners, etc.\n weeks.forEach(function (week, weekIndex) {\n week.forEach(function (day, dayIndex) {\n var above = weeks[weekIndex - 1] &&\n weeks[weekIndex - 1][dayIndex] &&\n weeks[weekIndex - 1][dayIndex].originalDate.getMonth() ===\n weeks[weekIndex][dayIndex].originalDate.getMonth();\n var below = weeks[weekIndex + 1] &&\n weeks[weekIndex + 1][dayIndex] &&\n weeks[weekIndex + 1][dayIndex].originalDate.getMonth() ===\n weeks[weekIndex][dayIndex].originalDate.getMonth();\n var left = weeks[weekIndex][dayIndex - 1] &&\n weeks[weekIndex][dayIndex - 1].originalDate.getMonth() ===\n weeks[weekIndex][dayIndex].originalDate.getMonth();\n var right = weeks[weekIndex][dayIndex + 1] &&\n weeks[weekIndex][dayIndex + 1].originalDate.getMonth() ===\n weeks[weekIndex][dayIndex].originalDate.getMonth();\n var roundedTopLeft = !above && !left;\n var roundedTopRight = !above && !right;\n var roundedBottomLeft = !below && !left;\n var roundedBottomRight = !below && !right;\n var style = '';\n if (roundedTopLeft) {\n style = getRTL()\n ? style.concat(styles.topRightCornerDate + ' ')\n : style.concat(styles.topLeftCornerDate + ' ');\n }\n if (roundedTopRight) {\n style = getRTL()\n ? style.concat(styles.topLeftCornerDate + ' ')\n : style.concat(styles.topRightCornerDate + ' ');\n }\n if (roundedBottomLeft) {\n style = getRTL()\n ? style.concat(styles.bottomRightCornerDate + ' ')\n : style.concat(styles.bottomLeftCornerDate + ' ');\n }\n if (roundedBottomRight) {\n style = getRTL()\n ? style.concat(styles.bottomLeftCornerDate + ' ')\n : style.concat(styles.bottomRightCornerDate + ' ');\n }\n if (!above) {\n style = style.concat(styles.topDate + ' ');\n }\n if (!below) {\n style = style.concat(styles.bottomDate + ' ');\n }\n if (!right) {\n style = style.concat(styles.rightDate + ' ');\n }\n if (!left) {\n style = style.concat(styles.leftdate + ' ');\n }\n weekCornersStyled[weekIndex + '_' + dayIndex] = style;\n });\n });\n break;\n case DateRangeType.Week:\n case DateRangeType.WorkWeek:\n weeks.forEach(function (week, weekIndex) {\n var minIndex = findIndex(week, function (item) {\n return item.isInBounds;\n });\n var maxIndex = _this._findLastIndex(week, function (item) {\n return item.isInBounds;\n });\n var leftStyle = styles.topLeftCornerDate + ' ' + styles.bottomLeftCornerDate;\n var rightStyle = styles.topRightCornerDate + ' ' + styles.bottomRightCornerDate;\n weekCornersStyled[weekIndex + '_' + minIndex] = getRTL() ? rightStyle : leftStyle;\n weekCornersStyled[weekIndex + '_' + maxIndex] = getRTL() ? leftStyle : rightStyle;\n });\n break;\n }\n return weekCornersStyled;\n };\n CalendarDay.prototype._getHighlightedCornerStyle = function (weekCorners, dayIndex, weekIndex) {\n var cornerStyle = weekCorners[weekIndex + '_' + dayIndex] ? weekCorners[weekIndex + '_' + dayIndex] : '';\n return cornerStyle;\n };\n CalendarDay.prototype._navigateMonthEdge = function (ev, date, weekIndex, dayIndex) {\n var _a = this.props, minDate = _a.minDate, maxDate = _a.maxDate;\n var targetDate = undefined;\n if (weekIndex === 0 && ev.which === KeyCodes.up) {\n targetDate = addWeeks(date, -1);\n }\n else if (weekIndex === this.state.weeks.length - 1 && ev.which === KeyCodes.down) {\n targetDate = addWeeks(date, 1);\n }\n else if (dayIndex === 0 && ev.which === getRTLSafeKeyCode(KeyCodes.left)) {\n targetDate = addDays(date, -1);\n }\n else if (dayIndex === DAYS_IN_WEEK - 1 && ev.which === getRTLSafeKeyCode(KeyCodes.right)) {\n targetDate = addDays(date, 1);\n }\n // Don't navigate to out-of-bounds date\n if (targetDate &&\n (minDate ? compareDatePart(minDate, targetDate) < 1 : true) &&\n (maxDate ? compareDatePart(targetDate, maxDate) < 1 : true)) {\n this.props.onNavigateDate(targetDate, true);\n ev.preventDefault();\n }\n };\n CalendarDay.prototype._applyFunctionToDayRefs = function (func) {\n var _this = this;\n if (this.state.weeks) {\n this.state.weeks.forEach(function (week, weekIndex) {\n week.forEach(function (day) {\n var ref = _this.days[day.key];\n func(ref, day, weekIndex);\n });\n });\n }\n };\n CalendarDay.prototype._getWeeks = function (propsToUse) {\n var navigatedDate = propsToUse.navigatedDate, selectedDate = propsToUse.selectedDate, dateRangeType = propsToUse.dateRangeType, firstDayOfWeek = propsToUse.firstDayOfWeek, today = propsToUse.today, minDate = propsToUse.minDate, maxDate = propsToUse.maxDate, showSixWeeksByDefault = propsToUse.showSixWeeksByDefault, workWeekDays = propsToUse.workWeekDays;\n var date = new Date(navigatedDate.getFullYear(), navigatedDate.getMonth(), 1);\n var todaysDate = today || new Date();\n var weeks = [];\n // Cycle the date backwards to get to the first day of the week.\n while (date.getDay() !== firstDayOfWeek) {\n date.setDate(date.getDate() - 1);\n }\n // a flag to indicate whether all days of the week are in the month\n var isAllDaysOfWeekOutOfMonth = false;\n // in work week view we want to select the whole week\n var selectedDateRangeType = dateRangeType === DateRangeType.WorkWeek ? DateRangeType.Week : dateRangeType;\n var selectedDates = getDateRangeArray(selectedDate, selectedDateRangeType, firstDayOfWeek, workWeekDays);\n if (dateRangeType !== DateRangeType.Day) {\n selectedDates = this._getBoundedDateRange(selectedDates, minDate, maxDate);\n }\n var shouldGetWeeks = true;\n for (var weekIndex = 0; shouldGetWeeks; weekIndex++) {\n var week = [];\n isAllDaysOfWeekOutOfMonth = true;\n for (var dayIndex = 0; dayIndex < DAYS_IN_WEEK; dayIndex++) {\n // Casting date parameter as an any to avoid [ object Object ] error.\n var originalDate = new Date(date);\n var dayInfo = {\n key: date.toString(),\n date: date.getDate().toString(),\n originalDate: originalDate,\n isInMonth: date.getMonth() === navigatedDate.getMonth(),\n isToday: compareDates(todaysDate, date),\n isSelected: isInDateRangeArray(date, selectedDates),\n onSelected: this._onSelectDate.bind(this, originalDate),\n isInBounds: (minDate ? compareDatePart(minDate, date) < 1 : true) &&\n (maxDate ? compareDatePart(date, maxDate) < 1 : true) &&\n !this._getIsRestrictedDate(date),\n };\n week.push(dayInfo);\n if (dayInfo.isInMonth) {\n isAllDaysOfWeekOutOfMonth = false;\n }\n date.setDate(date.getDate() + 1);\n }\n // We append the condition of the loop depending upon the showSixWeeksByDefault prop.\n shouldGetWeeks = showSixWeeksByDefault\n ? !isAllDaysOfWeekOutOfMonth || weekIndex <= 5\n : !isAllDaysOfWeekOutOfMonth;\n if (shouldGetWeeks) {\n weeks.push(week);\n }\n }\n return weeks;\n };\n CalendarDay.prototype._getIsRestrictedDate = function (date) {\n var restrictedDates = this.props.restrictedDates;\n if (!restrictedDates) {\n return false;\n }\n var restrictedDate = find(restrictedDates, function (rd) {\n return compareDates(rd, date);\n });\n return restrictedDate ? true : false;\n };\n CalendarDay.prototype._getBoundedDateRange = function (dateRange, minDate, maxDate) {\n var boundedDateRange = __spreadArrays(dateRange);\n if (minDate) {\n boundedDateRange = boundedDateRange.filter(function (date) { return compareDatePart(date, minDate) >= 0; });\n }\n if (maxDate) {\n boundedDateRange = boundedDateRange.filter(function (date) { return compareDatePart(date, maxDate) <= 0; });\n }\n return boundedDateRange;\n };\n /**\n * Returns the index of the last element in the array where the predicate is true, and -1\n * otherwise\n * @param items Array of items to be iterated over using the predicate\n * @param predicate find calls predicate once for each element of the array, in descending\n * order, until it finds one where predicate returns true if such an element is found.\n */\n CalendarDay.prototype._findLastIndex = function (items, predicate) {\n for (var i = items.length - 1; i >= 0; i--) {\n var item = items[i];\n if (predicate(item)) {\n return i;\n }\n }\n return -1;\n };\n return CalendarDay;\n}(React.Component));\nexport { CalendarDay };\n//# sourceMappingURL=CalendarDay.js.map" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js", - "index": null, - "index2": null, - "size": 453, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "issuerId": null, - "issuerName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "3:0-50" - }, - { - "moduleId": "8lCt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "module": "./node_modules/@uifabric/utilities/lib/scroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/scroll.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "2:0-53" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-67" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "3:0-53" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "4:0-69" - }, - { - "moduleId": "HhHV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-53" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "3:0-66" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "6:0-57" - }, - { - "moduleId": "itTX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-53" - }, - { - "moduleId": "mWkG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getId.js", - "module": "./node_modules/@uifabric/utilities/lib/getId.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "2:0-52" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-52" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-51" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-50" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "3:0-75" - }, - { - "moduleId": "xL1/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/memoize.js", - "module": "./node_modules/@uifabric/utilities/lib/memoize.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/memoize.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-52" - }, - { - "moduleId": "yCKU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "module": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/merge-styles", - "loc": "2:0-51" - } - ], - "usedExports": false, - "providedExports": [ - "mergeStyles", - "mergeCss", - "mergeStyleSets", - "mergeCssSets", - "concatStyleSets", - "concatStyleSetsWithProps", - "fontFace", - "keyframes", - "InjectionMode", - "Stylesheet", - "setRTL" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export { mergeStyles, mergeCss } from './mergeStyles';\nexport { mergeStyleSets, mergeCssSets } from './mergeStyleSets';\nexport { concatStyleSets } from './concatStyleSets';\nexport { concatStyleSetsWithProps } from './concatStyleSetsWithProps';\nexport { fontFace } from './fontFace';\nexport { keyframes } from './keyframes';\nexport * from './Stylesheet';\nexport { setRTL } from './StyleOptionsState';\nimport './version';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "69HH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "index": null, - "index2": null, - "size": 131, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/setPortalAttribute", - "loc": "14:0-41" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/setPortalAttribute", - "loc": "14:0-41" - } - ], - "usedExports": false, - "providedExports": [ - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export { DATA_PORTAL_ATTRIBUTE, setPortalAttribute } from '@fluentui/dom-utilities';\n//# sourceMappingURL=setPortalAttribute.js.map" - }, - { - "id": "69gx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "index": 293, - "index2": 288, - "size": 1084, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./collections", - "loc": "1:0-30" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./collections", - "loc": "1:0-30" - }, - { - "moduleId": "IMkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "type": "harmony side effect evaluation", - "userRequest": "./collections", - "loc": "1:0-55" - }, - { - "moduleId": "IMkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "type": "harmony import specifier", - "userRequest": "./collections", - "loc": "33:18-27" - }, - { - "moduleId": "IMkN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "type": "harmony import specifier", - "userRequest": "./collections", - "loc": "33:37-48" - } - ], - "usedExports": [ - "mergeMaps", - "objectToMap" - ], - "providedExports": [ - "objectToMap", - "mergeMaps" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { isFunc } from \"./util\";\r\n/**\r\n * Used to calculate the object properties, with polyfill if needed\r\n */\r\nvar objectEntries = isFunc(Object.entries) ? Object.entries : function (o) { return Object.keys(o).map(function (k) { return [k, o[k]]; }); };\r\n/**\r\n * Converts the supplied object to a map\r\n *\r\n * @param o The object to map\r\n */\r\nexport function objectToMap(o) {\r\n if (o !== undefined && o !== null) {\r\n return new Map(objectEntries(o));\r\n }\r\n return new Map();\r\n}\r\n/**\r\n * Merges to Map instances together, overwriting values in target with matching keys, last in wins\r\n *\r\n * @param target map into which the other maps are merged\r\n * @param maps One or more maps to merge into the target\r\n */\r\nexport function mergeMaps(target) {\r\n var maps = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n maps[_i - 1] = arguments[_i];\r\n }\r\n for (var i = 0; i < maps.length; i++) {\r\n maps[i].forEach(function (v, k) {\r\n target.set(k, v);\r\n });\r\n }\r\n return target;\r\n}\r\n//# sourceMappingURL=collections.js.map" - }, - { - "id": "6ClI", - "identifier": "external \"ListSearchWebPartStrings\"", - "name": "external \"ListSearchWebPartStrings\"", - "index": 288, - "index2": 286, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "ListSearchWebPartStrings", - "loc": "12:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "ListSearchWebPartStrings", - "loc": "17:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "468:19-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "473:19-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "476:19-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "480:19-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "491:19-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "494:19-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "497:27-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "503:19-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "517:19-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "523:19-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "527:19-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "528:25-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "532:19-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "545:19-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "553:19-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "557:19-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "562:19-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "567:26-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "571:26-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "575:26-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "579:26-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "583:26-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "587:26-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "592:19-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "597:26-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "601:26-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "607:19-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "608:25-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "609:28-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "615:27-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "622:27-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "631:27-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "642:27-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "648:27-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "661:19-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "662:25-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "663:28-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "668:27-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "675:27-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "684:27-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "691:19-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "697:37-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "702:39-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "706:43-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "716:43-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "717:49-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "718:52-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "724:51-92" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "734:51-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "745:51-90" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "750:51-91" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "751:57-103" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "756:51-84" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "765:39-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "769:43-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "774:43-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "779:43-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "787:43-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "788:49-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "789:52-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "794:51-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "800:51-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "805:51-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "810:51-87" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "818:51-87" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "826:51-91" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "834:51-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "843:39-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "848:43-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "849:49-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "850:52-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "855:51-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "862:51-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "871:51-88" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "882:51-90" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "889:49-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "893:51-89" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "911:37-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "916:39-69" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "916:189-220" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "920:43-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "925:43-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "926:49-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "930:43-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "935:43-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "943:39-69" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "947:43-63" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "960:37-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "965:39-72" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "969:43-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "978:43-83" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "983:43-78" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "991:39-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "995:43-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "1006:37-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "1010:39-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "1064:31-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ListSearchWebPartStrings", - "loc": "1068:27-57" - } - ], - "usedExports": [ - "AboutPropertiesGroupName", - "CollectionDataFieldHeader", - "CollectionDataFieldTitle", - "CollectionDataFieldsButton", - "CollectionDataFieldsHeader", - "CollectionDataFieldsList", - "CollectionDataFieldsListField", - "CollectionDataFieldsProperties", - "CollectionDataFieldsRenderType", - "CollectionDataFieldsSearchable", - "CollectionDataFieldsSelectBtn", - "CollectionDataFieldsSiteCollection", - "CollectionDataFieldsTargetField", - "CollectionDataFieldsToRetreive", - "CollectionDataListCamlQueryPlaceHolder", - "CollectionDataListCamlQueryTitle", - "CollectionDataListTitle", - "CollectionDataListViewNameTitle", - "CollectionDataSiteCollectionTitle", - "CompleteModalButton", - "CompleteModalFieldSelector", - "CompleteModalFieldsList", - "CompleteModalFieldsListField", - "CompleteModalFieldsSiteCollection", - "CompleteModalFieldsTargetField", - "CompleteModalHeaderSelector", - "DisplayFieldsPropertiesGroup", - "FieldPropertiesGroup", - "FilterPropertiesClearAllBtn", - "FilterPropertiesClearAllBtnColor", - "FilterPropertiesClearAllBtnText", - "FilterPropertiesGeneralFilter", - "FilterPropertiesGeneralFilterPlaceHolder", - "FilterPropertiesGroup", - "FilterPropertiesGroupName", - "FilterPropertiesIndividualFilter", - "FilterPropertiesIndividualFilterPostion", - "GeneralFieldsPropertiesShowFileIcon", - "GeneralFieldsPropertiesShowListName", - "GeneralFieldsPropertiesShowSiteInformation", - "GeneralFieldsPropertiesSiteProperty", - "GeneralFilterConnection", - "GeneralFilterInitialQueryEnabled", - "GeneralFilterInitialQueryOption", - "GeneralFilterInitialQueryTextValue", - "GeneralPropertiesGroup", - "GeneralPropertiesGroupByField", - "GeneralPropertiesItemCountPlaceholder", - "GeneralPropertiesItemCountText", - "GeneralPropertiesItemPerPage", - "GeneralPropertiesRowLimitDescription", - "GeneralPropertiesRowLimitLabel", - "GeneralPropertiesShowItemCount", - "GeneralPropertiesShowPagination", - "GroupByEmptyValue", - "GroupFieldOptionsToSelect", - "InformationPropertiesGroupName", - "InitialSearchText", - "LblCacheType", - "LblErrorDiferentRender", - "LblErrorSameColumn", - "ListSelector", - "ListSelectorLabel", - "ListSelectorPanelHeader", - "MinutesToCacheData", - "ModerAudienceEnabledTitle", - "OnClickCompleteModalText", - "OnClickDynamicText", - "OnClickEvent", - "OnClickNumberOfClickOptionsToSelect", - "OnClickOptionsToSelect", - "OnClickPropertiesGroup", - "OnClickRedirectText", - "OnClickSimpleModalText", - "OnDocumentIframePreviewText", - "OnDocumentNewTabPreviewText", - "OnclickRedirectIdText", - "OneClickTriggerText", - "PropertyPaneDescription", - "SitesSelector", - "SourceSelectorGroup", - "StoragePropertiesGroupName", - "TwoClickTriggerText", - "UseLocalStorage", - "WebPartTitlePlaceHolder", - "detailListFieldsColumnMaxWidth", - "detailListFieldsColumnMinWidth", - "detailListFieldsColumnTitle", - "detailListFieldsIsFileIconColumn", - "detailListFieldsIsListColumn", - "detailListFieldsIsSiteColumn", - "redirectDataButton", - "redirectDataFieldSelector", - "redirectDataFieldsList", - "redirectDataFieldsSiteCollection", - "redirectDataHeaderSelector", - "redirectDataUrl" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "6Evp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "index": null, - "index2": null, - "size": 1011, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useSetInterval", - "loc": "13:0-33" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useSetInterval", - "loc": "13:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "useSetInterval" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import * as React from 'react';\nimport { useConst } from './useConst';\n/**\n * Returns a wrapper function for `setInterval` which automatically handles disposal.\n */\nexport var useSetInterval = function () {\n var intervalIds = useConst({});\n React.useEffect(function () { return function () {\n for (var _i = 0, _a = Object.keys(intervalIds); _i < _a.length; _i++) {\n var id = _a[_i];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n clearInterval(id);\n }\n }; }, \n // useConst ensures this will never change, but react-hooks/exhaustive-deps doesn't know that\n [intervalIds]);\n return useConst({\n setInterval: function (func, duration) {\n var id = setInterval(func, duration);\n intervalIds[id] = 1;\n return id;\n },\n clearInterval: function (id) {\n delete intervalIds[id];\n clearInterval(id);\n },\n });\n};\n//# sourceMappingURL=useSetInterval.js.map" - }, - { - "id": "6LVT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ProgressIndicator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ProgressIndicator.js", - "index": null, - "index2": null, - "size": 99, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ProgressIndicator", - "loc": "62:0-36" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ProgressIndicator", - "loc": "62:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "ProgressIndicator", - "ProgressIndicatorBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/ProgressIndicator/index';\n//# sourceMappingURL=ProgressIndicator.js.map" - }, - { - "id": "6SDC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useConst.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useConst.js", - "index": 230, - "index2": 210, - "size": 1344, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/react-hooks", - "loc": "13:24-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/react-hooks", - "loc": "190:26-34" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "4:0-27" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useConst", - "loc": "4:0-27" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "7:22-30" - }, - { - "moduleId": "6Evp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetInterval.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "17:11-19" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "7:21-29" - }, - { - "moduleId": "FLjh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "19:11-19" - }, - { - "moduleId": "KB00", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "KB00", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "8:22-30" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "5:23-31" - }, - { - "moduleId": "KVSy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "17:33-41" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "3:0-38" - }, - { - "moduleId": "KwlQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "8:16-24" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "2:0-38" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "15:18-26" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "19:19-27" - }, - { - "moduleId": "jEFs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useBoolean.js", - "type": "harmony import specifier", - "userRequest": "./useConst", - "loc": "23:17-25" - }, - { - "moduleId": "sNMJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "type": "harmony side effect evaluation", - "userRequest": "./useConst", - "loc": "5:0-38" - } - ], - "usedExports": [ - "useConst" - ], - "providedExports": [ - "useConst" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import * as React from 'react';\n/**\n * Hook to initialize and return a constant value. Unlike `React.useMemo`, this is guaranteed to\n * always return the same value (and if the initializer is a function, only call it once).\n * This is similar to setting a private member in a class constructor.\n *\n * If the value should ever change based on dependencies, use `React.useMemo` instead.\n *\n * @param initialValue - Initial value, or function to get the initial value. Similar to `useState`,\n * only the value/function passed in the first time this is called is respected.\n * @returns The value. The identity of this value will always be the same.\n */\nexport function useConst(initialValue) {\n // Use useRef to store the value because it's the least expensive built-in hook that works here\n // (we could also use `const [value] = React.useState(initialValue)` but that's more expensive\n // internally due to reducer handling which we don't need)\n var ref = React.useRef();\n if (ref.current === undefined) {\n // Box the value in an object so we can tell if it's initialized even if the initializer\n // returns/is undefined\n ref.current = {\n value: typeof initialValue === 'function' ? initialValue() : initialValue,\n };\n }\n return ref.current.value;\n}\n//# sourceMappingURL=useConst.js.map" - }, - { - "id": "6avo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-10.js", - "index": null, - "index2": null, - "size": 4641, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-10", - "loc": "12:0-59" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-10", - "loc": "36:8-11" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-10\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-10-c4ded8e4.woff') format('woff')\"\n },\n icons: {\n 'ViewListGroup': '\\uF248',\n 'ViewListTree': '\\uF249',\n 'TriggerAuto': '\\uF24A',\n 'TriggerUser': '\\uF24B',\n 'PivotChart': '\\uF24C',\n 'StackedBarChart': '\\uF24D',\n 'StackedLineChart': '\\uF24E',\n 'BuildQueue': '\\uF24F',\n 'BuildQueueNew': '\\uF250',\n 'UserFollowed': '\\uF25C',\n 'ContactLink': '\\uF25F',\n 'Stack': '\\uF26F',\n 'Bullseye': '\\uF272',\n 'VennDiagram': '\\uF273',\n 'FiveTileGrid': '\\uF274',\n 'FocalPoint': '\\uF277',\n 'Insert': '\\uF278',\n 'RingerRemove': '\\uF279',\n 'TeamsLogoInverse': '\\uF27A',\n 'TeamsLogo': '\\uF27B',\n 'TeamsLogoFill': '\\uF27C',\n 'SkypeForBusinessLogoFill': '\\uF27D',\n 'SharepointLogo': '\\uF27E',\n 'SharepointLogoFill': '\\uF27F',\n 'DelveLogo': '\\uF280',\n 'DelveLogoFill': '\\uF281',\n 'OfficeVideoLogo': '\\uF282',\n 'OfficeVideoLogoFill': '\\uF283',\n 'ExchangeLogo': '\\uF284',\n 'ExchangeLogoFill': '\\uF285',\n 'Signin': '\\uF286',\n 'DocumentApproval': '\\uF28B',\n 'CloneToDesktop': '\\uF28C',\n 'InstallToDrive': '\\uF28D',\n 'Blur': '\\uF28E',\n 'Build': '\\uF28F',\n 'ProcessMetaTask': '\\uF290',\n 'BranchFork2': '\\uF291',\n 'BranchLocked': '\\uF292',\n 'BranchCommit': '\\uF293',\n 'BranchCompare': '\\uF294',\n 'BranchMerge': '\\uF295',\n 'BranchPullRequest': '\\uF296',\n 'BranchSearch': '\\uF297',\n 'BranchShelveset': '\\uF298',\n 'RawSource': '\\uF299',\n 'MergeDuplicate': '\\uF29A',\n 'RowsGroup': '\\uF29B',\n 'RowsChild': '\\uF29C',\n 'Deploy': '\\uF29D',\n 'Redeploy': '\\uF29E',\n 'ServerEnviroment': '\\uF29F',\n 'VisioDiagram': '\\uF2A0',\n 'HighlightMappedShapes': '\\uF2A1',\n 'TextCallout': '\\uF2A2',\n 'IconSetsFlag': '\\uF2A4',\n 'VisioLogo': '\\uF2A7',\n 'VisioLogoFill': '\\uF2A8',\n 'VisioDocument': '\\uF2A9',\n 'TimelineProgress': '\\uF2AA',\n 'TimelineDelivery': '\\uF2AB',\n 'Backlog': '\\uF2AC',\n 'TeamFavorite': '\\uF2AD',\n 'TaskGroup': '\\uF2AE',\n 'TaskGroupMirrored': '\\uF2AF',\n 'ScopeTemplate': '\\uF2B0',\n 'AssessmentGroupTemplate': '\\uF2B1',\n 'NewTeamProject': '\\uF2B2',\n 'CommentAdd': '\\uF2B3',\n 'CommentNext': '\\uF2B4',\n 'CommentPrevious': '\\uF2B5',\n 'ShopServer': '\\uF2B6',\n 'LocaleLanguage': '\\uF2B7',\n 'QueryList': '\\uF2B8',\n 'UserSync': '\\uF2B9',\n 'UserPause': '\\uF2BA',\n 'StreamingOff': '\\uF2BB',\n 'ArrowTallUpLeft': '\\uF2BD',\n 'ArrowTallUpRight': '\\uF2BE',\n 'ArrowTallDownLeft': '\\uF2BF',\n 'ArrowTallDownRight': '\\uF2C0',\n 'FieldEmpty': '\\uF2C1',\n 'FieldFilled': '\\uF2C2',\n 'FieldChanged': '\\uF2C3',\n 'FieldNotChanged': '\\uF2C4',\n 'RingerOff': '\\uF2C5',\n 'PlayResume': '\\uF2C6',\n 'BulletedList2': '\\uF2C7',\n 'BulletedList2Mirrored': '\\uF2C8',\n 'ImageCrosshair': '\\uF2C9',\n 'GitGraph': '\\uF2CA',\n 'Repo': '\\uF2CB',\n 'RepoSolid': '\\uF2CC',\n 'FolderQuery': '\\uF2CD',\n 'FolderList': '\\uF2CE',\n 'FolderListMirrored': '\\uF2CF',\n 'LocationOutline': '\\uF2D0',\n 'POISolid': '\\uF2D1',\n 'CalculatorNotEqualTo': '\\uF2D2',\n 'BoxSubtractSolid': '\\uF2D3'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-10.js.map" - }, - { - "id": "6lyR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "index": null, - "index2": null, - "size": 3373, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "issuerId": "MgI6", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - }, - { - "id": "MgI6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "./SuggestionsItem", - "loc": "8:0-52" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./SuggestionsItem", - "loc": "13:35-50" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Suggestions/SuggestionsItem", - "loc": "3:0-46" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Suggestions/SuggestionsItem", - "loc": "3:0-46" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Pickers", - "loc": "15:44-59" - } - ], - "usedExports": false, - "providedExports": [ - "SuggestionsItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, css, initializeComponentRef } from '../../../Utilities';\nimport { CommandButton, IconButton } from '../../../Button';\nimport * as stylesImport from './Suggestions.scss';\nvar legacyStyles = stylesImport;\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory Pickers}\n */\nvar SuggestionsItem = /** @class */ (function (_super) {\n __extends(SuggestionsItem, _super);\n function SuggestionsItem(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n return _this;\n }\n SuggestionsItem.prototype.render = function () {\n var _a;\n var _b = this.props, suggestionModel = _b.suggestionModel, RenderSuggestion = _b.RenderSuggestion, onClick = _b.onClick, className = _b.className, id = _b.id, onRemoveItem = _b.onRemoveItem, isSelectedOverride = _b.isSelectedOverride, removeButtonAriaLabel = _b.removeButtonAriaLabel, styles = _b.styles, theme = _b.theme;\n // TODO\n // Clean this up by leaving only the first part after removing support for SASS.\n // Currently we can not remove the SASS styles from SuggestionsItem class because it\n // might be used by consumers separately from pickers extending from BasePicker\n // and have not used the new 'styles' prop. Because it's expecting a type parameter,\n // we can not use the 'styled' function without adding some helpers which can break\n // downstream consumers who did not use the new helpers.\n // We check for 'styles' prop which is going to be injected by the 'styled' HOC\n // in Suggestions when the typed SuggestionsItem class is ready to be rendered. If the\n // check passes we can use the CSS-in-JS styles. If the check fails (ex: custom picker),\n // then we just use the old SASS styles instead.\n var classNames = styles\n ? getClassNames(styles, {\n theme: theme,\n className: className,\n suggested: suggestionModel.selected || isSelectedOverride,\n })\n : {\n root: css('ms-Suggestions-item', legacyStyles.suggestionsItem, (_a = {},\n _a['is-suggested ' + legacyStyles.suggestionsItemIsSuggested] = suggestionModel.selected || isSelectedOverride,\n _a), className),\n itemButton: css('ms-Suggestions-itemButton', legacyStyles.itemButton),\n closeButton: css('ms-Suggestions-closeButton', legacyStyles.closeButton),\n };\n return (React.createElement(\"div\", { className: classNames.root, role: \"presentation\" },\n React.createElement(CommandButton, { onClick: onClick, className: classNames.itemButton, id: id, \"aria-selected\": suggestionModel.selected, role: \"option\", \"aria-label\": suggestionModel.ariaLabel }, RenderSuggestion(suggestionModel.item, this.props)),\n this.props.showRemoveButton ? (React.createElement(IconButton, { iconProps: { iconName: 'Cancel', styles: { root: { fontSize: '12px' } } }, title: removeButtonAriaLabel, ariaLabel: removeButtonAriaLabel, onClick: onRemoveItem, className: classNames.closeButton })) : null));\n };\n return SuggestionsItem;\n}(React.Component));\nexport { SuggestionsItem };\n//# sourceMappingURL=SuggestionsItem.js.map" - }, - { - "id": "6oBg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.types.js", - "index": null, - "index2": null, - "size": 808, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "issuerId": "uAzL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js" - }, - { - "id": "II1S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js" - }, - { - "id": "uAzL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./HoverCard.types", - "loc": "3:0-34" - }, - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./HoverCard.types", - "loc": "3:0-34" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./HoverCard.types", - "loc": "4:0-65" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./HoverCard.types", - "loc": "48:62-74" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./HoverCard.types", - "loc": "48:84-96" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./HoverCard.types", - "loc": "93:26-38" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./HoverCard.types", - "loc": "143:22-34" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./HoverCard.types", - "loc": "189:183-195" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./HoverCard.types", - "loc": "195:26-39" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./HoverCard.types", - "loc": "217:14-27" - } - ], - "usedExports": false, - "providedExports": [ - "OpenCardMode", - "HoverCardType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * {@docCategory HoverCard}\n */\nexport var OpenCardMode;\n(function (OpenCardMode) {\n /**\n * Open card by hover\n */\n OpenCardMode[OpenCardMode[\"hover\"] = 0] = \"hover\";\n /**\n * Open card by hot key\n */\n OpenCardMode[OpenCardMode[\"hotKey\"] = 1] = \"hotKey\";\n})(OpenCardMode || (OpenCardMode = {}));\n/**\n * {@docCategory HoverCard}\n */\nexport var HoverCardType;\n(function (HoverCardType) {\n /**\n * Plain card consisting of one part responsive to the size of content.\n */\n HoverCardType[\"plain\"] = \"PlainCard\";\n /**\n * File card consisting of two parts: compact and expanded. Has some default sizes if not specified.\n */\n HoverCardType[\"expanding\"] = \"ExpandingCard\";\n})(HoverCardType || (HoverCardType = {}));\n//# sourceMappingURL=HoverCard.types.js.map" - }, - { - "id": "6sVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isPrototype.js", - "name": "./node_modules/lodash/_isPrototype.js", - "index": 513, - "index2": 503, - "size": 480, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "issuerId": "QcOe", - "issuerName": "./node_modules/lodash/_baseKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "QcOe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "name": "./node_modules/lodash/_baseKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+iFO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "module": "./node_modules/lodash/_initCloneObject.js", - "moduleName": "./node_modules/lodash/_initCloneObject.js", - "type": "cjs require", - "userRequest": "./_isPrototype", - "loc": "3:18-43" - }, - { - "moduleId": "A90E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "module": "./node_modules/lodash/_baseKeys.js", - "moduleName": "./node_modules/lodash/_baseKeys.js", - "type": "cjs require", - "userRequest": "./_isPrototype", - "loc": "1:18-43" - }, - { - "moduleId": "QcOe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "module": "./node_modules/lodash/_baseKeysIn.js", - "moduleName": "./node_modules/lodash/_baseKeysIn.js", - "type": "cjs require", - "userRequest": "./_isPrototype", - "loc": "2:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Checks if `value` is likely a prototype object.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n */\nfunction isPrototype(value) {\n var Ctor = value && value.constructor,\n proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n return value === proto;\n}\n\nmodule.exports = isPrototype;\n" - }, - { - "id": "70R4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dateMath/DateMath.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/dateMath/DateMath.js", - "index": null, - "index2": null, - "size": 105, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "issuerId": "grUF", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "DyGw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/Calendar.js" - }, - { - "id": "uyAb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/index.js" - }, - { - "id": "grUF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "9:0-82" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "7:0-218" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "5:0-143" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "6:0-84" - } - ], - "usedExports": false, - "providedExports": [ - "addDays", - "addWeeks", - "addMonths", - "addYears", - "getMonthStart", - "getMonthEnd", - "getYearStart", - "getYearEnd", - "setMonth", - "compareDates", - "compareDatePart", - "getDateRangeArray", - "isInDateRangeArray", - "getWeekNumbersInMonth", - "getWeekNumber", - "getStartDateOfWeek", - "getEndDateOfWeek", - "getDatePartHashValue" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export * from '@fluentui/date-time-utilities/lib/dateMath/dateMath';\n//# sourceMappingURL=DateMath.js.map" - }, - { - "id": "742z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/spfxcontextinterface.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/spfxcontextinterface.js", - "index": 299, - "index2": 293, - "size": 48, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./spfxcontextinterface", - "loc": "4:0-39" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./spfxcontextinterface", - "loc": "4:0-39" - } - ], - "usedExports": [ - "PnPClientStorage", - "assign", - "combine", - "dateAdd", - "getCtxCallback", - "getGUID", - "hOP", - "isArray", - "isFunc", - "isUrlAbsolute", - "jsS", - "objectDefinedNotNull", - "safeGlobal", - "stringIsNullOrEmpty" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "//# sourceMappingURL=spfxcontextinterface.js.map" - }, - { - "id": "77Zs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackClear.js", - "name": "./node_modules/lodash/_stackClear.js", - "index": 455, - "index2": 447, - "size": 254, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackClear", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var ListCache = require('./_ListCache');\n\n/**\n * Removes all key-value entries from the stack.\n *\n * @private\n * @name clear\n * @memberOf Stack\n */\nfunction stackClear() {\n this.__data__ = new ListCache;\n this.size = 0;\n}\n\nmodule.exports = stackClear;\n" - }, - { - "id": "78K9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "index": null, - "index2": null, - "size": 311, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "issuerId": "ennc", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "fghJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Separator.js", - "name": "./node_modules/office-ui-fabric-react/lib/Separator.js" - }, - { - "id": "ennc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ennc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Separator", - "loc": "2:0-28" - }, - { - "moduleId": "ennc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Separator", - "loc": "2:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "Separator" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { getStyles } from './Separator.styles';\nimport { SeparatorBase } from './Separator.base';\nexport var Separator = styled(SeparatorBase, getStyles, undefined, {\n scope: 'Separator',\n});\nSeparator.displayName = 'Separator';\n//# sourceMappingURL=Separator.js.map" - }, - { - "id": "7Awa", - "identifier": "external \"@microsoft/sp-component-base\"", - "name": "external \"@microsoft/sp-component-base\"", - "index": 904, - "index2": 903, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-component-base", - "loc": "24:0-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-component-base", - "loc": "54:68-81" - } - ], - "usedExports": [ - "ThemeProvider" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "7GkX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "name": "./node_modules/lodash/keys.js", - "index": 496, - "index2": 508, - "size": 884, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./keys", - "loc": "21:11-28" - }, - { - "moduleId": "WwFo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssign.js", - "module": "./node_modules/lodash/_baseAssign.js", - "moduleName": "./node_modules/lodash/_baseAssign.js", - "type": "cjs require", - "userRequest": "./keys", - "loc": "2:11-28" - }, - { - "moduleId": "qZTm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeys.js", - "module": "./node_modules/lodash/_getAllKeys.js", - "moduleName": "./node_modules/lodash/_getAllKeys.js", - "type": "cjs require", - "userRequest": "./keys", - "loc": "3:11-28" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var arrayLikeKeys = require('./_arrayLikeKeys'),\n baseKeys = require('./_baseKeys'),\n isArrayLike = require('./isArrayLike');\n\n/**\n * Creates an array of the own enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects. See the\n * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * for more details.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keys(new Foo);\n * // => ['a', 'b'] (iteration order is not guaranteed)\n *\n * _.keys('hi');\n * // => ['0', '1']\n */\nfunction keys(object) {\n return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\n}\n\nmodule.exports = keys;\n" - }, - { - "id": "7IcM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ICollectionDataItemState.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ICollectionDataItemState.js", - "index": 271, - "index2": 264, - "size": 52, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerId": "kQRI", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionDataItemState", - "loc": "3:0-43" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionDataItemState", - "loc": "3:0-43" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "//# sourceMappingURL=ICollectionDataItemState.js.map" - }, - { - "id": "7Ix3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nativeKeysIn.js", - "name": "./node_modules/lodash/_nativeKeysIn.js", - "index": 520, - "index2": 510, - "size": 490, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "issuerId": "QcOe", - "issuerName": "./node_modules/lodash/_baseKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "QcOe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "name": "./node_modules/lodash/_baseKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QcOe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "module": "./node_modules/lodash/_baseKeysIn.js", - "moduleName": "./node_modules/lodash/_baseKeysIn.js", - "type": "cjs require", - "userRequest": "./_nativeKeysIn", - "loc": "3:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * This function is like\n * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * except that it includes inherited enumerable properties.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction nativeKeysIn(object) {\n var result = [];\n if (object != null) {\n for (var key in Object(object)) {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = nativeKeysIn;\n" - }, - { - "id": "7Rmr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "name": "./node_modules/office-ui-fabric-react/lib/Foundation.js", - "index": null, - "index2": null, - "size": 76, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "issuerId": "MObJ", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - }, - { - "id": "MObJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Foundation", - "loc": "5:0-75" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Foundation", - "loc": "5:0-55" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Foundation", - "loc": "5:0-72" - }, - { - "moduleId": "hR4L", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Foundation", - "loc": "1:0-51" - } - ], - "usedExports": false, - "providedExports": [ - "createComponent", - "withSlots", - "createFactory", - "getSlots", - "ThemeProvider", - "useControlledState", - "getControlledDerivedProps", - "legacyStyled" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export * from '@uifabric/foundation';\n//# sourceMappingURL=Foundation.js.map" - }, - { - "id": "7SqS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Announced.js", - "name": "./node_modules/office-ui-fabric-react/lib/Announced.js", - "index": null, - "index2": null, - "size": 83, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Announced", - "loc": "3:0-28" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Announced", - "loc": "3:0-28" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Announced", - "loc": "6:0-47" - } - ], - "usedExports": false, - "providedExports": [ - "Announced", - "AnnouncedBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Announced/index';\n//# sourceMappingURL=Announced.js.map" - }, - { - "id": "7Uas", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "name": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "index": 245, - "index2": 231, - "size": 9613, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/FacepileButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:153-163" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:160-170" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:188-198" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:193-203" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:212-222" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "335:69-79" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:173-183" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "16:132-142" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseComponent", - "loc": "3:0-32" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./BaseComponent", - "loc": "3:0-32" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "14:113-123" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "20:275-285" - } - ], - "usedExports": [ - "nullRender" - ], - "providedExports": [ - "BaseComponent", - "nullRender" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async } from './Async';\nimport { EventGroup } from './EventGroup';\nimport { warnConditionallyRequiredProps } from './warn/warnConditionallyRequiredProps';\nimport { warnMutuallyExclusive } from './warn/warnMutuallyExclusive';\nimport { warnDeprecations } from './warn/warnDeprecations';\n/**\n * BaseComponent class, which provides basic helpers for all components.\n *\n * @public\n * {@docCategory BaseComponent}\n *\n * @deprecated Do not use. We are moving away from class component.\n */\nvar BaseComponent = /** @class */ (function (_super) {\n __extends(BaseComponent, _super);\n /**\n * BaseComponent constructor\n * @param props - The props for the component.\n * @param context - The context for the component.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n function BaseComponent(props, context) {\n var _this = _super.call(this, props, context) || this;\n // eslint-disable-next-line deprecation/deprecation\n _makeAllSafe(_this, BaseComponent.prototype, [\n 'componentDidMount',\n 'shouldComponentUpdate',\n 'getSnapshotBeforeUpdate',\n 'render',\n 'componentDidUpdate',\n 'componentWillUnmount',\n ]);\n return _this;\n }\n /**\n * When the component receives props, make sure the componentRef is updated.\n */\n BaseComponent.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._updateComponentRef(prevProps, this.props);\n };\n /**\n * When the component has mounted, update the componentRef.\n */\n BaseComponent.prototype.componentDidMount = function () {\n this._setComponentRef(this.props.componentRef, this);\n };\n /**\n * If we have disposables, dispose them automatically on unmount.\n */\n BaseComponent.prototype.componentWillUnmount = function () {\n this._setComponentRef(this.props.componentRef, null);\n if (this.__disposables) {\n for (var i = 0, len = this._disposables.length; i < len; i++) {\n var disposable = this.__disposables[i];\n if (disposable.dispose) {\n disposable.dispose();\n }\n }\n this.__disposables = null;\n }\n };\n Object.defineProperty(BaseComponent.prototype, \"className\", {\n /**\n * Gets the object's class name.\n */\n get: function () {\n if (!this.__className) {\n var funcNameRegex = /function (.{1,})\\(/;\n var results = funcNameRegex.exec(this.constructor.toString());\n this.__className = results && results.length > 1 ? results[1] : '';\n }\n return this.__className;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_disposables\", {\n /**\n * Allows subclasses to push things to this._disposables to be auto disposed.\n */\n get: function () {\n if (!this.__disposables) {\n this.__disposables = [];\n }\n return this.__disposables;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_async\", {\n /**\n * Gets the async instance associated with the component, created on demand. The async instance gives\n * subclasses a way to execute setTimeout/setInterval async calls safely, where the callbacks\n * will be cleared/ignored automatically after unmounting. The helpers within the async object also\n * preserve the this pointer so that you don't need to \"bind\" the callbacks.\n */\n get: function () {\n if (!this.__async) {\n this.__async = new Async(this);\n this._disposables.push(this.__async);\n }\n return this.__async;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(BaseComponent.prototype, \"_events\", {\n /**\n * Gets the event group instance assocaited with the component, created on demand. The event instance\n * provides on/off methods for listening to DOM (or regular javascript object) events. The event callbacks\n * will be automatically disconnected after unmounting. The helpers within the events object also\n * preserve the this reference so that you don't need to \"bind\" the callbacks.\n */\n get: function () {\n if (!this.__events) {\n this.__events = new EventGroup(this);\n this._disposables.push(this.__events);\n }\n return this.__events;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Helper to return a memoized ref resolver function.\n * @param refName - Name of the member to assign the ref to.\n * @returns A function instance keyed from the given refname.\n * @deprecated Use `createRef` from React.createRef.\n */\n BaseComponent.prototype._resolveRef = function (refName) {\n var _this = this;\n if (!this.__resolves) {\n this.__resolves = {};\n }\n if (!this.__resolves[refName]) {\n this.__resolves[refName] = function (ref) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return (_this[refName] = ref);\n };\n }\n return this.__resolves[refName];\n };\n /**\n * Updates the componentRef (by calling it with \"this\" when necessary.)\n */\n BaseComponent.prototype._updateComponentRef = function (currentProps, newProps) {\n if (newProps === void 0) { newProps = {}; }\n // currentProps *should* always be defined, but verify that just in case a subclass is manually\n // calling a lifecycle method with no parameters (which has happened) or other odd usage.\n if (currentProps && newProps && currentProps.componentRef !== newProps.componentRef) {\n this._setComponentRef(currentProps.componentRef, null);\n this._setComponentRef(newProps.componentRef, this);\n }\n };\n /**\n * Warns when a deprecated props are being used.\n *\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\n * either null or a replacement prop name.\n */\n BaseComponent.prototype._warnDeprecations = function (deprecationMap) {\n warnDeprecations(this.className, this.props, deprecationMap);\n };\n /**\n * Warns when props which are mutually exclusive with each other are both used.\n *\n * @param mutuallyExclusiveMap - The map of mutually exclusive props.\n */\n BaseComponent.prototype._warnMutuallyExclusive = function (mutuallyExclusiveMap) {\n warnMutuallyExclusive(this.className, this.props, mutuallyExclusiveMap);\n };\n /**\n * Warns when props are required if a condition is met.\n *\n * @param requiredProps - The name of the props that are required when the condition is met.\n * @param conditionalPropName - The name of the prop that the condition is based on.\n * @param condition - Whether the condition is met.\n */\n BaseComponent.prototype._warnConditionallyRequiredProps = function (requiredProps, conditionalPropName, condition) {\n warnConditionallyRequiredProps(this.className, this.props, requiredProps, conditionalPropName, condition);\n };\n BaseComponent.prototype._setComponentRef = function (ref, value) {\n if (!this._skipComponentRefResolution && ref) {\n if (typeof ref === 'function') {\n ref(value);\n }\n if (typeof ref === 'object') {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n ref.current = value;\n }\n }\n };\n return BaseComponent;\n}(React.Component));\nexport { BaseComponent };\n/**\n * Helper to override a given method with a wrapper method that can try/catch the original, but also\n * ensures that the BaseComponent's methods are called before the subclass's. This ensures that\n * componentWillUnmount in the base is called and that things in the _disposables array are disposed.\n */\n// eslint-disable-next-line deprecation/deprecation\nfunction _makeAllSafe(obj, prototype, methodNames) {\n for (var i = 0, len = methodNames.length; i < len; i++) {\n _makeSafe(obj, prototype, methodNames[i]);\n }\n}\n// eslint-disable-next-line deprecation/deprecation\nfunction _makeSafe(obj, prototype, methodName) {\n /* eslint-disable @typescript-eslint/no-explicit-any */\n var classMethod = obj[methodName];\n var prototypeMethod = prototype[methodName];\n if (classMethod || prototypeMethod) {\n obj[methodName] = function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n /* eslint-enable @typescript-eslint/no-explicit-any */\n var retVal;\n if (prototypeMethod) {\n retVal = prototypeMethod.apply(this, args);\n }\n if (classMethod !== prototypeMethod) {\n retVal = classMethod.apply(this, args);\n }\n return retVal;\n };\n }\n}\n/**\n * Simple constant function for returning null, used to render empty templates in JSX.\n *\n * @public\n */\nexport function nullRender() {\n return null;\n}\n//# sourceMappingURL=BaseComponent.js.map" - }, - { - "id": "7WEz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "index": null, - "index2": null, - "size": 831, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "issuerId": "sLz2", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "v4Pl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pivot.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pivot.js" - }, - { - "id": "hrTv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js" - }, - { - "id": "8X3N", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js" - }, - { - "id": "sLz2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hrTv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PivotItem", - "loc": "3:0-40" - }, - { - "moduleId": "hrTv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PivotItem", - "loc": "3:0-40" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./PivotItem", - "loc": "6:0-40" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "./PivotItem", - "loc": "248:27-36" - } - ], - "usedExports": false, - "providedExports": [ - "PivotItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { getNativeProps, divProperties, initializeComponentRef, warnDeprecations } from '../../Utilities';\nvar COMPONENT_NAME = 'PivotItem';\nvar PivotItem = /** @class */ (function (_super) {\n __extends(PivotItem, _super);\n function PivotItem(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n linkText: 'headerText',\n });\n return _this;\n }\n PivotItem.prototype.render = function () {\n return React.createElement(\"div\", __assign({}, getNativeProps(this.props, divProperties)), this.props.children);\n };\n return PivotItem;\n}(React.Component));\nexport { PivotItem };\n//# sourceMappingURL=PivotItem.js.map" - }, - { - "id": "7XQV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "index": null, - "index2": null, - "size": 304, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "issuerId": "7rHc", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "ccZc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "name": "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js" - }, - { - "id": "7rHc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rHc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TeachingBubble", - "loc": "1:0-33" - }, - { - "moduleId": "7rHc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TeachingBubble", - "loc": "1:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "TeachingBubble" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { TeachingBubbleBase } from './TeachingBubble.base';\nimport { getStyles } from './TeachingBubble.styles';\nexport var TeachingBubble = styled(TeachingBubbleBase, getStyles, undefined, { scope: 'TeachingBubble' });\n//# sourceMappingURL=TeachingBubble.js.map" - }, - { - "id": "7c8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "index": null, - "index2": null, - "size": 297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "issuerId": "YzPW", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "joNx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "lNaB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": "Ypxj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js" - }, - { - "id": "YzPW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent", - "loc": "8:0-48" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent", - "loc": "107:32-45" - }, - { - "moduleId": "lNaB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent", - "loc": "3:0-32" - }, - { - "moduleId": "lNaB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DialogContent", - "loc": "3:0-32" - } - ], - "usedExports": false, - "providedExports": [ - "DialogContent" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { DialogContentBase } from './DialogContent.base';\nimport { getStyles } from './DialogContent.styles';\nexport var DialogContent = styled(DialogContentBase, getStyles, undefined, { scope: 'DialogContent' });\n//# sourceMappingURL=DialogContent.js.map" - }, - { - "id": "7daS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/office-ui-fabric-react/lib/Divider.js", - "index": null, - "index2": null, - "size": 79, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Divider", - "loc": "23:0-26" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Divider", - "loc": "23:0-26" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Divider", - "loc": "8:0-51" - } - ], - "usedExports": false, - "providedExports": [ - "VerticalDivider" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Divider/index';\n//# sourceMappingURL=Divider.js.map" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "index": null, - "index2": null, - "size": 448, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "issuerId": "Tl7j", - "issuerName": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Tl7j", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/DocumentCard/index", - "loc": "1:0-48" - }, - { - "moduleId": "Tl7j", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "type": "harmony export imported specifier", - "userRequest": "./components/DocumentCard/index", - "loc": "1:0-48" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCard", - "DocumentCardType", - "DocumentCardActions", - "DocumentCardActivity", - "DocumentCardDetails", - "DocumentCardLocation", - "DocumentCardPreview", - "DocumentCardImage", - "DocumentCardTitle", - "DocumentCardLogo", - "DocumentCardStatus" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './DocumentCard';\nexport * from './DocumentCard.types';\nexport * from './DocumentCardActions';\nexport * from './DocumentCardActivity';\nexport * from './DocumentCardDetails';\nexport * from './DocumentCardLocation';\nexport * from './DocumentCardPreview';\nexport * from './DocumentCardImage';\nexport * from './DocumentCardTitle';\nexport * from './DocumentCardLogo';\nexport * from './DocumentCardStatus';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "7rHc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "index": null, - "index2": null, - "size": 193, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "issuerId": "ccZc", - "issuerName": "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "ccZc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "name": "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ccZc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "module": "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/TeachingBubble/index", - "loc": "1:0-50" - }, - { - "moduleId": "ccZc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "module": "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "type": "harmony export imported specifier", - "userRequest": "./components/TeachingBubble/index", - "loc": "1:0-50" - } - ], - "usedExports": false, - "providedExports": [ - "TeachingBubble", - "TeachingBubbleBase", - "TeachingBubbleContent", - "TeachingBubbleContentBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './TeachingBubble';\nexport * from './TeachingBubble.base';\nexport * from './TeachingBubbleContent';\nexport * from './TeachingBubbleContent.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "index": 292, - "index2": 295, - "size": 245, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-71" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "1:0-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-98" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "2:0-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "3:0-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "3:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "3:0-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "3:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "3:33-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "4:0-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:4-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:8-27" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:46-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "4:48-61" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@pnp/common", - "loc": "5:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "5:50-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "5:80-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "7:14-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "9:8-11" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "9:11-17" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "10:62-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "11:12-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "11:25-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "14:16-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "14:17-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "19:42-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "20:12-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "20:31-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "20:36-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "20:38-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "21:12-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:25-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "22:33-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "23:24-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "23:24-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "23:31-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "24:20-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "24:24-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "24:27-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "25:24-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "25:42-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "25:50-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "26:16-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "26:37-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:17-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:23-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:25-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "27:29-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "28:42-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "28:50-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "30:17-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "30:31-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "32:16-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "32:16-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "33:28-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "34:22-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "36:25-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "37:13-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "37:31-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "39:11-18" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "39:42-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "40:23-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "41:22-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "41:31-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "41:48-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "43:8-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "47:12-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "47:22-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "48:16-19" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "48:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "52:18-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "53:42-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "55:17-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "56:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "58:8-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "59:18-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "61:28-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "69:23-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "69:49-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "79:23-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "81:31-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "89:46-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "99:16-22" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "102:12-18" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "103:8-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "108:57-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "109:35-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "109:47-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "112:8-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "114:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "115:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "118:34-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "118:77-84" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "120:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "121:13-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "122:28-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "123:36-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "123:63-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "125:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "125:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "126:28-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "128:53-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "130:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "134:28-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "135:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "137:32-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "146:39-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "148:24-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "149:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "149:51-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "152:26-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "159:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "160:27-33" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "160:37-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "162:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "165:12-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "165:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "167:49-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "169:36-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "172:58-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "174:12-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "185:19-39" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "185:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "188:20-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "190:51-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "213:39-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "218:56-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "221:19-25" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "221:31-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "229:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "231:46-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "237:28-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "242:18-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "242:22-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "245:47-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "253:68-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "261:32-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "266:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "266:64-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "268:42-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "274:41-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "287:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "300:49-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "308:28-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "308:57-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "318:54-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "323:12-15" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "323:48-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "326:40-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "327:12-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "328:26-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "328:68-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "330:43-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "348:57-60" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "364:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "365:51-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "394:28-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "406:52-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "410:46-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "432:34-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "432:52-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@pnp/common", - "loc": "449:35-41" - } - ], - "usedExports": [ - "FetchClient", - "PnPClientStorage", - "RuntimeConfig", - "assign", - "combine", - "dateAdd", - "getCtxCallback", - "getGUID", - "hOP", - "isArray", - "isFunc", - "isUrlAbsolute", - "jsS", - "mergeHeaders", - "mergeOptions", - "objectDefinedNotNull", - "safeGlobal", - "stringIsNullOrEmpty" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 4, - "source": "export * from \"./collections\";\r\nexport * from \"./libconfig\";\r\nexport * from \"./net\";\r\nexport * from \"./spfxcontextinterface\";\r\nexport * from \"./storage\";\r\nexport * from \"./util\";\r\nexport * from \"./safe-global\";\r\n//# sourceMappingURL=index.js.map" - }, - { - "id": "7wj7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "index": null, - "index2": null, - "size": 195, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "issuerId": "pEld", - "issuerName": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "pEld", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "pEld", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/SwatchColorPicker/index", - "loc": "1:0-53" - }, - { - "moduleId": "pEld", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "type": "harmony export imported specifier", - "userRequest": "./components/SwatchColorPicker/index", - "loc": "1:0-53" - } - ], - "usedExports": false, - "providedExports": [ - "SwatchColorPicker", - "SwatchColorPickerBase", - "ColorPickerGridCell", - "ColorPickerGridCellBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './SwatchColorPicker';\nexport * from './SwatchColorPicker.base';\nexport * from './ColorPickerGridCell';\nexport * from './ColorPickerGridCell.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "8//X", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "index": 21, - "index2": 14, - "size": 2460, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "issuerId": "sxkt", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "o9eJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js" - }, - { - "id": "sxkt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "sxkt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldCollectionDataHost.module.css", - "loc": "1:14-161" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "exports = module.exports = require(\"../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".collectionData_106fc03d{background-color:#edebe9;padding:10px}.noCollectionData_106fc03d{text-align:center}.panelActions_106fc03d{margin-top:15px;text-align:right}.panelActions_106fc03d button{margin-right:15px}.panelActions_106fc03d button:last-child{margin-right:0}.required_106fc03d{color:#d83b01;font-size:8px;vertical-align:super}.addBtn_106fc03d{color:#0078d4}.inputField_106fc03d{color:inherit}.numberField_106fc03d{box-sizing:border-box;box-shadow:none;margin:0;padding:0;border:1px solid #a19f9d;background:#fff;height:32px;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:stretch;align-items:stretch;position:relative}.numberField_106fc03d:hover{border-color:#201f1e}.numberField_106fc03d input{box-sizing:border-box;box-shadow:none;margin:0;font-size:14px;border-radius:0;border:none;background:0 0;color:#323130;padding:0 12px;width:100%;text-overflow:ellipsis;outline:0}.numberField_106fc03d.invalidField_106fc03d{border-color:#a80000}.iconField_106fc03d{position:relative}.iconField_106fc03d i{font-size:20px;position:absolute;top:0;right:10px;vertical-align:top}.colorField_106fc03d{position:relative}.colorField_106fc03d .colorIndicator_106fc03d{width:30px;height:30px;border:1px solid #a6a6a6}.collectionDataField_106fc03d>span{display:none}.collectionDataField_106fc03d div[class^=invalid_]{border-color:#a80000!important}.table_106fc03d{display:table;width:100%;border-collapse:collapse}.tableRow_106fc03d{display:table-row;line-height:30px}.tableRow_106fc03d:hover{background-color:#f3f2f1;cursor:pointer;outline:1px solid transparent}.tableRow_106fc03d.tableFooter_106fc03d{background-color:#edebe9;border-top:1px solid #a19f9d}.tableCell_106fc03d{display:table-cell;padding:0 10px;vertical-align:middle}.tableCell_106fc03d>div,.tableCell_106fc03d>div.ms-TextField{margin-bottom:8px;margin-top:8px}.errorCallout_106fc03d{padding:0 15px;min-width:200px}.errorCalloutLink_106fc03d:not([disabled]){color:#a80000}.errorMsgs_106fc03d{font-size:14px;font-weight:400}.errorMsgs_106fc03d p{font-size:17px;font-weight:300}.errorMsgs_106fc03d ul{padding-left:15px}.errorMsgs_106fc03d li{color:#a80000}.tableHead_106fc03d{font-weight:300;font-size:12px;color:#605e5c}.tableHead_106fc03d .tableCell_106fc03d{font-weight:400;text-align:left;border-bottom:1px solid #a19f9d}\", \"\"]);\n" - }, - { - "id": "88Gu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_shortOut.js", - "name": "./node_modules/lodash/_shortOut.js", - "index": 579, - "index2": 571, - "size": 941, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "issuerId": "wclG", - "issuerName": "./node_modules/lodash/_setToString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "wclG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "name": "./node_modules/lodash/_setToString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "wclG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_setToString.js", - "module": "./node_modules/lodash/_setToString.js", - "moduleName": "./node_modules/lodash/_setToString.js", - "type": "cjs require", - "userRequest": "./_shortOut", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/** Used to detect hot functions by number of calls within a span of milliseconds. */\nvar HOT_COUNT = 800,\n HOT_SPAN = 16;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeNow = Date.now;\n\n/**\n * Creates a function that'll short out and invoke `identity` instead\n * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n * milliseconds.\n *\n * @private\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new shortable function.\n */\nfunction shortOut(func) {\n var count = 0,\n lastCalled = 0;\n\n return function() {\n var stamp = nativeNow(),\n remaining = HOT_SPAN - (stamp - lastCalled);\n\n lastCalled = stamp;\n if (remaining > 0) {\n if (++count >= HOT_COUNT) {\n return arguments[0];\n }\n } else {\n count = 0;\n }\n return func.apply(undefined, arguments);\n };\n}\n\nmodule.exports = shortOut;\n" - }, - { - "id": "88U0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "index": null, - "index2": null, - "size": 6059, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "issuerId": "JwHi", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "t1PU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Breadcrumb.js", - "name": "./node_modules/office-ui-fabric-react/lib/Breadcrumb.js" - }, - { - "id": "yMIw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js" - }, - { - "id": "JwHi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "JwHi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "type": "harmony side effect evaluation", - "userRequest": "./Breadcrumb.styles", - "loc": "3:0-48" - }, - { - "moduleId": "JwHi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "type": "harmony import specifier", - "userRequest": "./Breadcrumb.styles", - "loc": "4:47-56" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, ScreenWidthMaxMedium, ScreenWidthMaxSmall, ScreenWidthMinMedium, getFocusStyle, getScreenSelector, getGlobalClassNames, FontWeights, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { IsFocusVisibleClassName } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Breadcrumb',\n list: 'ms-Breadcrumb-list',\n listItem: 'ms-Breadcrumb-listItem',\n chevron: 'ms-Breadcrumb-chevron',\n overflow: 'ms-Breadcrumb-overflow',\n overflowButton: 'ms-Breadcrumb-overflowButton',\n itemLink: 'ms-Breadcrumb-itemLink',\n item: 'ms-Breadcrumb-item',\n};\nvar SingleLineTextStyle = {\n whiteSpace: 'nowrap',\n textOverflow: 'ellipsis',\n overflow: 'hidden',\n};\nvar overflowButtonFontSize = 16;\nvar chevronSmallFontSize = 8;\nvar itemLineHeight = 36;\nvar itemFontSize = 18;\nvar MinimumScreenSelector = getScreenSelector(0, ScreenWidthMaxSmall);\nvar MediumScreenSelector = getScreenSelector(ScreenWidthMinMedium, ScreenWidthMaxMedium);\nexport var getStyles = function (props) {\n var _a, _b, _c, _d;\n var className = props.className, theme = props.theme;\n var palette = theme.palette, semanticColors = theme.semanticColors, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n // Tokens\n var itemBackgroundHoveredColor = semanticColors.menuItemBackgroundHovered;\n var itemBackgroundPressedColor = semanticColors.menuItemBackgroundPressed;\n var itemTextColor = palette.neutralSecondary;\n var itemTextFontWeight = FontWeights.regular;\n var itemTextHoveredOrPressedColor = palette.neutralPrimary;\n var itemLastChildTextColor = palette.neutralPrimary;\n var itemLastChildTextFontWeight = FontWeights.semibold;\n var chevronButtonColor = palette.neutralSecondary;\n var overflowButtonColor = palette.neutralSecondary;\n var lastChildItemStyles = {\n fontWeight: itemLastChildTextFontWeight,\n color: itemLastChildTextColor,\n };\n var itemStateSelectors = {\n ':hover': {\n color: itemTextHoveredOrPressedColor,\n backgroundColor: itemBackgroundHoveredColor,\n cursor: 'pointer',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'Highlight',\n },\n _a),\n },\n ':active': {\n backgroundColor: itemBackgroundPressedColor,\n color: itemTextHoveredOrPressedColor,\n },\n '&:active:hover': {\n color: itemTextHoveredOrPressedColor,\n backgroundColor: itemBackgroundPressedColor,\n },\n '&:active, &:hover, &:active:hover': {\n textDecoration: 'none',\n },\n };\n var commonItemStyles = {\n color: itemTextColor,\n padding: '0 8px',\n lineHeight: itemLineHeight,\n fontSize: itemFontSize,\n fontWeight: itemTextFontWeight,\n };\n return {\n root: [\n classNames.root,\n fonts.medium,\n {\n margin: '11px 0 1px',\n },\n className,\n ],\n list: [\n classNames.list,\n {\n whiteSpace: 'nowrap',\n padding: 0,\n margin: 0,\n display: 'flex',\n alignItems: 'stretch',\n },\n ],\n listItem: [\n classNames.listItem,\n {\n listStyleType: 'none',\n margin: '0',\n padding: '0',\n display: 'flex',\n position: 'relative',\n alignItems: 'center',\n selectors: {\n '&:last-child .ms-Breadcrumb-itemLink': lastChildItemStyles,\n '&:last-child .ms-Breadcrumb-item': lastChildItemStyles,\n },\n },\n ],\n chevron: [\n classNames.chevron,\n {\n color: chevronButtonColor,\n fontSize: fonts.small.fontSize,\n selectors: (_b = {},\n _b[HighContrastSelector] = __assign({ color: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _b[MediumScreenSelector] = {\n fontSize: chevronSmallFontSize,\n },\n _b[MinimumScreenSelector] = {\n fontSize: chevronSmallFontSize,\n },\n _b),\n },\n ],\n overflow: [\n classNames.overflow,\n {\n position: 'relative',\n display: 'flex',\n alignItems: 'center',\n },\n ],\n overflowButton: [\n classNames.overflowButton,\n getFocusStyle(theme),\n SingleLineTextStyle,\n {\n fontSize: overflowButtonFontSize,\n color: overflowButtonColor,\n height: '100%',\n cursor: 'pointer',\n selectors: __assign(__assign({}, itemStateSelectors), (_c = {}, _c[MinimumScreenSelector] = {\n padding: '4px 6px',\n }, _c[MediumScreenSelector] = {\n fontSize: fonts.mediumPlus.fontSize,\n }, _c)),\n },\n ],\n itemLink: [\n classNames.itemLink,\n getFocusStyle(theme),\n SingleLineTextStyle,\n __assign(__assign({}, commonItemStyles), { selectors: __assign((_d = { ':focus': {\n color: palette.neutralDark,\n } }, _d[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n outline: \"none\",\n }, _d), itemStateSelectors) }),\n ],\n item: [\n classNames.item,\n __assign(__assign({}, commonItemStyles), { selectors: {\n ':hover': {\n cursor: 'default',\n },\n } }),\n ],\n };\n};\n//# sourceMappingURL=Breadcrumb.styles.js.map" - }, - { - "id": "8G5b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/array.js", - "name": "./node_modules/@uifabric/utilities/lib/array.js", - "index": 210, - "index2": 194, - "size": 3870, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipUtils.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "27:11-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "639:33-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "825:15-24" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "46:19-23" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:37-41" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "405:35-44" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "515:29-33" - }, - { - "moduleId": "8gx0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "42:13-17" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "136:52-63" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "562:12-23" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./array", - "loc": "12:0-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./array", - "loc": "12:0-24" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "1362:24-33" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:15-19" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "192:15-19" - }, - { - "moduleId": "rZia", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/createMergedRef.js", - "module": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "type": "harmony side effect evaluation", - "userRequest": "./array", - "loc": "1:0-38" - }, - { - "moduleId": "rZia", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/createMergedRef.js", - "module": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/createMergedRef.js", - "type": "harmony import specifier", - "userRequest": "./array", - "loc": "30:32-43" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "29:26-34" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "272:24-33" - } - ], - "usedExports": [ - "addElementAtIndex", - "arraysEqual", - "findIndex" - ], - "providedExports": [ - "findIndex", - "find", - "createArray", - "toMatrix", - "removeIndex", - "replaceElement", - "addElementAtIndex", - "flatten", - "arraysEqual" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Helper to find the index of an item within an array, using a callback to\n * determine the match.\n *\n * @public\n * @param array - Array to search.\n * @param cb - Callback which returns true on matches.\n * @param fromIndex - Optional index to start from (defaults to 0)\n */\nexport function findIndex(array, cb, fromIndex) {\n if (fromIndex === void 0) { fromIndex = 0; }\n var index = -1;\n for (var i = fromIndex; array && i < array.length; i++) {\n if (cb(array[i], i)) {\n index = i;\n break;\n }\n }\n return index;\n}\n/**\n * Helper to find the first item within an array that satisfies the callback.\n * @param array - Array to search\n * @param cb - Callback which returns true on matches\n */\nexport function find(array, cb) {\n var index = findIndex(array, cb);\n if (index < 0) {\n return undefined;\n }\n return array[index];\n}\n/**\n * Creates an array of a given size and helper method to populate.\n *\n * @public\n * @param size - Size of array.\n * @param getItem - Callback to populate given cell index.\n */\nexport function createArray(size, getItem) {\n var array = [];\n for (var i = 0; i < size; i++) {\n array.push(getItem(i));\n }\n return array;\n}\n/**\n * Convert the given array to a matrix with columnCount number\n * of columns.\n *\n * @public\n * @param items - The array to convert\n * @param columnCount - The number of columns for the resulting matrix\n * @returns A matrix of items\n */\nexport function toMatrix(items, columnCount) {\n return items.reduce(function (rows, currentValue, index) {\n if (index % columnCount === 0) {\n rows.push([currentValue]);\n }\n else {\n rows[rows.length - 1].push(currentValue);\n }\n return rows;\n }, []);\n}\n/**\n * Given an array, it returns a new array that does not contain the item at the given index.\n * @param array - The array to operate on\n * @param index - The index of the element to remove\n */\nexport function removeIndex(array, index) {\n return array.filter(function (_, i) { return index !== i; });\n}\n/**\n * Given an array, this function returns a new array where the element at a given index has been replaced.\n * @param array - The array to operate on\n * @param newElement - The element that will be placed in the new array\n * @param index - The index of the element that should be replaced\n */\nexport function replaceElement(array, newElement, index) {\n var copy = array.slice();\n copy[index] = newElement;\n return copy;\n}\n/**\n * Given an array, this function returns a new array where an element has been inserted at the given index.\n * @param array - The array to operate on\n * @param index - The index where an element should be inserted\n * @param itemToAdd - The element to insert\n */\nexport function addElementAtIndex(array, index, itemToAdd) {\n var copy = array.slice();\n copy.splice(index, 0, itemToAdd);\n return copy;\n}\n/**\n * Given an array where each element is of type T or T[], flatten it into an array of T\n * @param array - The array where each element can optionally also be an array\n */\nexport function flatten(array) {\n var result = [];\n array.forEach(function (item) { return (result = result.concat(item)); });\n return result;\n}\n/**\n * Returns a boolean indicating if the two given arrays are equal in length and values.\n *\n * @param array1 - First array to compare\n * @param array2 - Second array to compare\n * @returns True if the arrays are the same length and have the same values in the same positions, false otherwise.\n */\nexport function arraysEqual(array1, array2) {\n if (array1.length !== array2.length) {\n return false;\n }\n for (var i = 0; i < array1.length; i++) {\n if (array1[i] !== array2[i]) {\n return false;\n }\n }\n return true;\n}\n//# sourceMappingURL=array.js.map" - }, - { - "id": "8Nzn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "name": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "index": null, - "index2": null, - "size": 16142, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "issuerId": "2iod", - "issuerName": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "2iod", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "261:12-24" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "262:12-24" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "264:12-24" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "276:13-25" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "353:29-44" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "353:82-97" - }, - { - "moduleId": "2iod", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "module": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/date-time-utilities/lib/dateMath/dateMath", - "loc": "3:0-68" - }, - { - "moduleId": "2iod", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "module": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/date-time-utilities/lib/dateMath/dateMath", - "loc": "3:0-68" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "148:28-45" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "160:36-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "170:39-48" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "173:39-48" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "233:14-35" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "236:14-27" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "241:42-57" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "241:67-80" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "242:42-57" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "242:58-69" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "253:84-93" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "259:84-93" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "284:54-66" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "428:25-33" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "431:25-33" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "434:25-32" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "437:25-32" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "441:23-38" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "442:23-38" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "471:28-45" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "487:29-41" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "488:32-50" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "490:43-58" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "491:35-50" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "516:19-31" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "523:80-95" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "526:80-95" - }, - { - "moduleId": "70R4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dateMath/DateMath.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dateMath/DateMath.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dateMath/DateMath.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/date-time-utilities/lib/dateMath/dateMath", - "loc": "1:0-68" - }, - { - "moduleId": "70R4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dateMath/DateMath.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dateMath/DateMath.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dateMath/DateMath.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/date-time-utilities/lib/dateMath/dateMath", - "loc": "1:0-68" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "34:40-48" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "37:40-48" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "73:27-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "82:27-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "98:27-35" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "158:43-58" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "158:68-80" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "159:43-58" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "159:59-69" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "172:97-105" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "178:97-105" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "187:43-51" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "192:52-67" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "192:77-88" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "193:39-54" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "193:55-68" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "105:28-45" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateMath/DateMath", - "loc": "158:64-76" - } - ], - "usedExports": false, - "providedExports": [ - "addDays", - "addWeeks", - "addMonths", - "addYears", - "getMonthStart", - "getMonthEnd", - "getYearStart", - "getYearEnd", - "setMonth", - "compareDates", - "compareDatePart", - "getDateRangeArray", - "isInDateRangeArray", - "getWeekNumbersInMonth", - "getWeekNumber", - "getStartDateOfWeek", - "getEndDateOfWeek", - "getDatePartHashValue" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "import { DayOfWeek, MonthOfYear, FirstWeekOfYear, DateRangeType } from '../dateValues/dateValues';\nimport TimeConstants from '../dateValues/timeConstants';\n/**\n * Returns a date offset from the given date by the specified number of days.\n * @param date - The origin date\n * @param days - The number of days to offset. 'days' can be negative.\n * @returns A new Date object offset from the origin date by the given number of days\n */\nexport function addDays(date, days) {\n var result = new Date(date.getTime());\n result.setDate(result.getDate() + days);\n return result;\n}\n/**\n * Returns a date offset from the given date by the specified number of weeks.\n * @param date - The origin date\n * @param weeks - The number of weeks to offset. 'weeks' can be negative.\n * @returns A new Date object offset from the origin date by the given number of weeks\n */\nexport function addWeeks(date, weeks) {\n return addDays(date, weeks * TimeConstants.DaysInOneWeek);\n}\n/**\n * Returns a date offset from the given date by the specified number of months.\n * The method tries to preserve the day-of-month; however, if the new month does not have enough days\n * to contain the original day-of-month, we'll use the last day of the new month.\n * @param date - The origin date\n * @param months - The number of months to offset. 'months' can be negative.\n * @returns A new Date object offset from the origin date by the given number of months\n */\nexport function addMonths(date, months) {\n var result = new Date(date.getTime());\n var newMonth = result.getMonth() + months;\n result.setMonth(newMonth);\n // We want to maintain the same day-of-month, but that may not be possible if the new month doesn't have enough days.\n // Loop until we back up to a day the new month has.\n // (Weird modulo math is due to Javascript's treatment of negative numbers in modulo)\n if (result.getMonth() !==\n ((newMonth % TimeConstants.MonthInOneYear) + TimeConstants.MonthInOneYear) % TimeConstants.MonthInOneYear) {\n result = addDays(result, -result.getDate());\n }\n return result;\n}\n/**\n * Returns a date offset from the given date by the specified number of years.\n * The method tries to preserve the day-of-month; however, if the new month does not have enough days\n * to contain the original day-of-month, we'll use the last day of the new month.\n * @param date - The origin date\n * @param years - The number of years to offset. 'years' can be negative.\n * @returns A new Date object offset from the origin date by the given number of years\n */\nexport function addYears(date, years) {\n var result = new Date(date.getTime());\n result.setFullYear(date.getFullYear() + years);\n // We want to maintain the same day-of-month, but that may not be possible if the new month doesn't have enough days.\n // Loop until we back up to a day the new month has.\n // (Weird modulo math is due to Javascript's treatment of negative numbers in modulo)\n if (result.getMonth() !==\n ((date.getMonth() % TimeConstants.MonthInOneYear) + TimeConstants.MonthInOneYear) % TimeConstants.MonthInOneYear) {\n result = addDays(result, -result.getDate());\n }\n return result;\n}\n/**\n * Returns a date that is the first day of the month of the provided date.\n * @param date - The origin date\n * @returns A new Date object with the day set to the first day of the month.\n */\nexport function getMonthStart(date) {\n return new Date(date.getFullYear(), date.getMonth(), 1, 0, 0, 0, 0);\n}\n/**\n * Returns a date that is the last day of the month of the provided date.\n * @param date - The origin date\n * @returns A new Date object with the day set to the last day of the month.\n */\nexport function getMonthEnd(date) {\n return new Date(date.getFullYear(), date.getMonth() + 1, 0, 0, 0, 0, 0);\n}\n/**\n * Returns a date that is the first day of the year of the provided date.\n * @param date - The origin date\n * @returns A new Date object with the day set to the first day of the year.\n */\nexport function getYearStart(date) {\n return new Date(date.getFullYear(), 0, 1, 0, 0, 0, 0);\n}\n/**\n * Returns a date that is the last day of the year of the provided date.\n * @param date - The origin date\n * @returns A new Date object with the day set to the last day of the year.\n */\nexport function getYearEnd(date) {\n return new Date(date.getFullYear() + 1, 0, 0, 0, 0, 0, 0);\n}\n/**\n * Returns a date that is a copy of the given date, aside from the month changing to the given month.\n * The method tries to preserve the day-of-month; however, if the new month does not have enough days\n * to contain the original day-of-month, we'll use the last day of the new month.\n * @param date - The origin date\n * @param month - The 0-based index of the month to set on the date.\n * @returns A new Date object with the given month set.\n */\nexport function setMonth(date, month) {\n return addMonths(date, month - date.getMonth());\n}\n/**\n * Compares two dates, and returns true if the two dates (not accounting for time-of-day) are equal.\n * @returns True if the two dates represent the same date (regardless of time-of-day), false otherwise.\n */\nexport function compareDates(date1, date2) {\n if (!date1 && !date2) {\n return true;\n }\n else if (!date1 || !date2) {\n return false;\n }\n else {\n return (date1.getFullYear() === date2.getFullYear() &&\n date1.getMonth() === date2.getMonth() &&\n date1.getDate() === date2.getDate());\n }\n}\n/**\n * Compare the date parts of two dates\n * @param date1 - The first date to compare\n * @param date2 - The second date to compare\n * @returns A negative value if date1 is earlier than date2, 0 if the dates are equal, or a positive value\n * if date1 is later than date2.\n */\nexport function compareDatePart(date1, date2) {\n return getDatePartHashValue(date1) - getDatePartHashValue(date2);\n}\n/**\n * Gets the date range array including the specified date. The date range array is calculated as the list\n * of dates accounting for the specified first day of the week and date range type.\n * @param date - The input date\n * @param dateRangeType - The desired date range type, i.e., day, week, month, etc.\n * @param firstDayOfWeek - The first day of the week.\n * @param workWeekDays - The allowed days in work week. If not provided, assumes all days are allowed.\n * @param daysToSelectInDayView - The number of days to include when using dateRangeType === DateRangeType.Day\n * for multiday view. Defaults to 1\n * @returns An array of dates representing the date range containing the specified date.\n */\nexport function getDateRangeArray(date, dateRangeType, firstDayOfWeek, workWeekDays, daysToSelectInDayView) {\n if (daysToSelectInDayView === void 0) { daysToSelectInDayView = 1; }\n var datesArray = new Array();\n var startDate;\n var endDate = null;\n if (!workWeekDays) {\n workWeekDays = [DayOfWeek.Monday, DayOfWeek.Tuesday, DayOfWeek.Wednesday, DayOfWeek.Thursday, DayOfWeek.Friday];\n }\n daysToSelectInDayView = Math.max(daysToSelectInDayView, 1);\n switch (dateRangeType) {\n case DateRangeType.Day:\n startDate = getDatePart(date);\n endDate = addDays(startDate, daysToSelectInDayView);\n break;\n case DateRangeType.Week:\n case DateRangeType.WorkWeek:\n startDate = getStartDateOfWeek(getDatePart(date), firstDayOfWeek);\n endDate = addDays(startDate, TimeConstants.DaysInOneWeek);\n break;\n case DateRangeType.Month:\n startDate = new Date(date.getFullYear(), date.getMonth(), 1);\n endDate = addMonths(startDate, 1);\n break;\n default:\n throw new Error('Unexpected object: ' + dateRangeType);\n }\n // Populate the dates array with the dates in range\n var nextDate = startDate;\n do {\n if (dateRangeType !== DateRangeType.WorkWeek) {\n // push all days not in work week view\n datesArray.push(nextDate);\n }\n else if (workWeekDays.indexOf(nextDate.getDay()) !== -1) {\n datesArray.push(nextDate);\n }\n nextDate = addDays(nextDate, 1);\n } while (!compareDates(nextDate, endDate));\n return datesArray;\n}\n/**\n * Checks whether the specified date is in the given date range.\n * @param date - The origin date\n * @param dateRange - An array of dates to do the lookup on\n * @returns True if the date matches one of the dates in the specified array, false otherwise.\n */\nexport function isInDateRangeArray(date, dateRange) {\n for (var _i = 0, dateRange_1 = dateRange; _i < dateRange_1.length; _i++) {\n var dateInRange = dateRange_1[_i];\n if (compareDates(date, dateInRange)) {\n return true;\n }\n }\n return false;\n}\n/**\n * Returns the week number for a date.\n * Week numbers are 1 - 52 (53) in a year\n * @param navigatedDate - A date to find the week number for.\n * @param firstDayOfWeek - The first day of the week (0-6, Sunday = 0)\n * @param firstWeekOfYear - The first week of the year (1-2)\n * @returns The weeks number array for the current month.\n */\nexport function getWeekNumbersInMonth(weeksInMonth, firstDayOfWeek, firstWeekOfYear, navigatedDate) {\n var selectedYear = navigatedDate.getFullYear();\n var selectedMonth = navigatedDate.getMonth();\n var dayOfMonth = 1;\n var fistDayOfMonth = new Date(selectedYear, selectedMonth, dayOfMonth);\n var endOfFirstWeek = dayOfMonth +\n (firstDayOfWeek + TimeConstants.DaysInOneWeek - 1) -\n adjustWeekDay(firstDayOfWeek, fistDayOfMonth.getDay());\n var endOfWeekRange = new Date(selectedYear, selectedMonth, endOfFirstWeek);\n dayOfMonth = endOfWeekRange.getDate();\n var weeksArray = [];\n for (var i = 0; i < weeksInMonth; i++) {\n // Get week number for end of week\n weeksArray.push(getWeekNumber(endOfWeekRange, firstDayOfWeek, firstWeekOfYear));\n dayOfMonth += TimeConstants.DaysInOneWeek;\n endOfWeekRange = new Date(selectedYear, selectedMonth, dayOfMonth);\n }\n return weeksArray;\n}\n/**\n * Returns the week number for a date.\n * Week numbers are 1 - 52 (53) in a year\n * @param date - A date to find the week number for.\n * @param firstDayOfWeek - The first day of the week (0-6, Sunday = 0)\n * @param firstWeekOfYear - The first week of the year (1-2)\n * @returns The week's number in the year.\n */\nexport function getWeekNumber(date, firstDayOfWeek, firstWeekOfYear) {\n // First four-day week of the year - minumum days count\n var fourDayWeek = 4;\n switch (firstWeekOfYear) {\n case FirstWeekOfYear.FirstFullWeek:\n return getWeekOfYearFullDays(date, firstDayOfWeek, TimeConstants.DaysInOneWeek);\n case FirstWeekOfYear.FirstFourDayWeek:\n return getWeekOfYearFullDays(date, firstDayOfWeek, fourDayWeek);\n default:\n return getFirstDayWeekOfYear(date, firstDayOfWeek);\n }\n}\n/**\n * Gets the date for the first day of the week based on the given date assuming\n * the specified first day of the week.\n * @param date - The date to find the beginning of the week date for.\n * @returns A new date object representing the first day of the week containing the input date.\n */\nexport function getStartDateOfWeek(date, firstDayOfWeek) {\n var daysOffset = firstDayOfWeek - date.getDay();\n if (daysOffset > 0) {\n // If first day of week is > date, go 1 week back, to ensure resulting date is in the past.\n daysOffset -= TimeConstants.DaysInOneWeek;\n }\n return addDays(date, daysOffset);\n}\n/**\n * Gets the date for the last day of the week based on the given date assuming\n * the specified first day of the week.\n * @param date - The date to find the beginning of the week date for.\n * @returns A new date object representing the first day of the week containing the input date.\n */\nexport function getEndDateOfWeek(date, firstDayOfWeek) {\n var lastDayOfWeek = firstDayOfWeek - 1 >= 0 ? firstDayOfWeek - 1 : TimeConstants.DaysInOneWeek - 1;\n var daysOffset = lastDayOfWeek - date.getDay();\n if (daysOffset < 0) {\n // If last day of week is < date, go 1 week forward, to ensure resulting date is in the future.\n daysOffset += TimeConstants.DaysInOneWeek;\n }\n return addDays(date, daysOffset);\n}\n/**\n * Gets a new date with the time portion zeroed out, i.e., set to midnight\n * @param date - The origin date\n * @returns A new date with the time set to midnight\n */\nfunction getDatePart(date) {\n return new Date(date.getFullYear(), date.getMonth(), date.getDate());\n}\n/**\n * Helper function to assist in date comparisons\n */\nexport function getDatePartHashValue(date) {\n // Generate date hash value created as sum of Date (up to 31 = 5 bits), Month (up to 11 = 4 bits) and Year.\n return date.getDate() + (date.getMonth() << 5) + (date.getFullYear() << 9);\n}\n/**\n * Helper function for getWeekNumber.\n * Returns week number for a date\n * @param date - current selected date.\n * @param firstDayOfWeek - The first day of week (0-6, Sunday = 0)\n * @param numberOfFullDays - week settings.\n * @returns The week's number in the year.\n */\nfunction getWeekOfYearFullDays(date, firstDayOfWeek, numberOfFullDays) {\n var dayOfYear = getDayOfYear(date) - 1;\n var num = date.getDay() - (dayOfYear % TimeConstants.DaysInOneWeek);\n var lastDayOfPrevYear = new Date(date.getFullYear() - 1, MonthOfYear.December, 31);\n var daysInYear = getDayOfYear(lastDayOfPrevYear) - 1;\n var num2 = (firstDayOfWeek - num + 2 * TimeConstants.DaysInOneWeek) % TimeConstants.DaysInOneWeek;\n if (num2 !== 0 && num2 >= numberOfFullDays) {\n num2 -= TimeConstants.DaysInOneWeek;\n }\n var num3 = dayOfYear - num2;\n if (num3 < 0) {\n num -= daysInYear % TimeConstants.DaysInOneWeek;\n num2 = (firstDayOfWeek - num + 2 * TimeConstants.DaysInOneWeek) % TimeConstants.DaysInOneWeek;\n if (num2 !== 0 && num2 + 1 >= numberOfFullDays) {\n num2 -= TimeConstants.DaysInOneWeek;\n }\n num3 = daysInYear - num2;\n }\n return Math.floor(num3 / TimeConstants.DaysInOneWeek + 1);\n}\n/**\n * Helper function for getWeekNumber.\n * Returns week number for a date\n * @param date - current selected date.\n * @param firstDayOfWeek - The first day of week (0-6, Sunday = 0)\n * @returns The week's number in the year.\n */\nfunction getFirstDayWeekOfYear(date, firstDayOfWeek) {\n var num = getDayOfYear(date) - 1;\n var num2 = date.getDay() - (num % TimeConstants.DaysInOneWeek);\n var num3 = (num2 - firstDayOfWeek + 2 * TimeConstants.DaysInOneWeek) % TimeConstants.DaysInOneWeek;\n return Math.floor((num + num3) / TimeConstants.DaysInOneWeek + 1);\n}\n/**\n * Helper function for getWeekNumber.\n * Returns adjusted week day number when firstDayOfWeek is other than Sunday\n * For Week Day Number comparison checks\n * @param firstDayOfWeek - The first day of week (0-6, Sunday = 0)\n * @param dateWeekDay - shifts number forward to 1 week in case passed as true\n * @returns The day of week adjusted to `firstDayOfWeek`; e.g. when `firstDayOfWeek` is Monday (1),\n * Sunday becomes 7.\n */\nfunction adjustWeekDay(firstDayOfWeek, dateWeekDay) {\n return firstDayOfWeek !== DayOfWeek.Sunday && dateWeekDay < firstDayOfWeek\n ? dateWeekDay + TimeConstants.DaysInOneWeek\n : dateWeekDay;\n}\n/**\n * Returns the day number for a date in a year\n * The number of days since January 1st in the particular year.\n * @param date - A date to find the day number for.\n * @returns The day's number in the year.\n */\nfunction getDayOfYear(date) {\n var month = date.getMonth();\n var year = date.getFullYear();\n var daysUntilDate = 0;\n for (var i = 0; i < month; i++) {\n daysUntilDate += daysInMonth(i + 1, year);\n }\n daysUntilDate += date.getDate();\n return daysUntilDate;\n}\n/**\n * Returns the number of days in the month\n * @param month - The month number to target (months 1-12).\n * @param year - The year to target.\n * @returns The number of days in the month.\n */\nfunction daysInMonth(month, year) {\n return new Date(year, month, 0).getDate();\n}\n//# sourceMappingURL=dateMath.js.map" - }, - { - "id": "8P/B", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "index": null, - "index2": null, - "size": 1297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "issuerId": "D2wA", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "txsR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Stack.js", - "name": "./node_modules/office-ui-fabric-react/lib/Stack.js" - }, - { - "id": "lDul", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Stack/index.js" - }, - { - "id": "D2wA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./StackItem.styles", - "loc": "7:0-63" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony import specifier", - "userRequest": "./StackItem.styles", - "loc": "21:12-18" - } - ], - "usedExports": false, - "providedExports": [ - "StackItemStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../../Styling';\nvar GlobalClassNames = {\n root: 'ms-StackItem',\n};\nvar alignMap = {\n start: 'flex-start',\n end: 'flex-end',\n};\nexport var StackItemStyles = function (props, theme, tokens) {\n var grow = props.grow, shrink = props.shrink, disableShrink = props.disableShrink, align = props.align, verticalFill = props.verticalFill, order = props.order, className = props.className;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n theme.fonts.medium,\n classNames.root,\n {\n margin: tokens.margin,\n padding: tokens.padding,\n height: verticalFill ? '100%' : 'auto',\n width: 'auto',\n },\n grow && { flexGrow: grow === true ? 1 : grow },\n (disableShrink || (!grow && !shrink)) && {\n flexShrink: 0,\n },\n shrink &&\n !disableShrink && {\n flexShrink: 1,\n },\n align && {\n alignSelf: alignMap[align] || align,\n },\n order && {\n order: order,\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=StackItem.styles.js.map" - }, - { - "id": "8X3N", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "index": null, - "index2": null, - "size": 518, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "issuerId": "hrTv", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "v4Pl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pivot.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pivot.js" - }, - { - "id": "hrTv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hrTv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Pivot", - "loc": "1:0-24" - }, - { - "moduleId": "hrTv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Pivot", - "loc": "1:0-24" - } - ], - "usedExports": false, - "providedExports": [ - "Pivot" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { PivotBase } from './Pivot.base';\nimport { getStyles } from './Pivot.styles';\n/**\n * The Pivot control and related tabs pattern are used for navigating frequently accessed,\n * distinct content categories. Pivots allow for navigation between two or more content\n * views and relies on text headers to articulate the different sections of content.\n */\nexport var Pivot = styled(PivotBase, getStyles, undefined, {\n scope: 'Pivot',\n});\n//# sourceMappingURL=Pivot.js.map" - }, - { - "id": "8a4/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SelectableOption.js", - "name": "./node_modules/office-ui-fabric-react/lib/SelectableOption.js", - "index": null, - "index2": null, - "size": 96, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SelectableOption", - "loc": "67:0-35" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SelectableOption", - "loc": "67:0-35" - } - ], - "usedExports": false, - "providedExports": [ - "getAllSelectedOptions", - "SelectableOptionMenuItemType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './utilities/selectableOption/index';\n//# sourceMappingURL=SelectableOption.js.map" - }, - { - "id": "8dsf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "index": null, - "index2": null, - "size": 18837, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "issuerId": "Z5Dt", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+FJf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SpinButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/SpinButton.js" - }, - { - "id": "Z5Dt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Z5Dt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SpinButton", - "loc": "1:0-29" - }, - { - "moduleId": "Z5Dt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SpinButton", - "loc": "1:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "KeyboardSpinDirection", - "SpinButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { IconButton } from '../../Button';\nimport { Label } from '../../Label';\nimport { Icon } from '../../Icon';\nimport { initializeComponentRef, warnMutuallyExclusive, Async, getId, KeyCodes, customizable, calculatePrecision, precisionRound, mergeAriaAttributeValues, getNativeProps, divProperties, } from '../../Utilities';\nimport { Position } from '../../utilities/positioning';\nimport { getStyles, getArrowButtonStyles } from './SpinButton.styles';\nimport { getClassNames } from './SpinButton.classNames';\nimport { KeytipData } from '../../KeytipData';\nexport var KeyboardSpinDirection;\n(function (KeyboardSpinDirection) {\n KeyboardSpinDirection[KeyboardSpinDirection[\"down\"] = -1] = \"down\";\n KeyboardSpinDirection[KeyboardSpinDirection[\"notSpinning\"] = 0] = \"notSpinning\";\n KeyboardSpinDirection[KeyboardSpinDirection[\"up\"] = 1] = \"up\";\n})(KeyboardSpinDirection || (KeyboardSpinDirection = {}));\nvar SpinButton = /** @class */ (function (_super) {\n __extends(SpinButton, _super);\n function SpinButton(props) {\n var _this = _super.call(this, props) || this;\n _this._input = React.createRef();\n _this._initialStepDelay = 400;\n _this._stepDelay = 75;\n _this._onFocus = function (ev) {\n // We can't set focus on a non-existing element\n if (!_this._input.current) {\n return;\n }\n if (_this._spinningByMouse || _this.state.keyboardSpinDirection !== KeyboardSpinDirection.notSpinning) {\n _this._stop();\n }\n _this._input.current.select();\n _this.setState({ isFocused: true });\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n };\n _this._onBlur = function (ev) {\n _this._validate(ev);\n _this.setState({ isFocused: false });\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n };\n _this._onValidate = function (value, event) {\n if (_this.props.onValidate) {\n return _this.props.onValidate(value, event);\n }\n else {\n return _this._defaultOnValidate(value);\n }\n };\n _this._calculatePrecision = function (props) {\n var _a = props.precision, precision = _a === void 0 ? Math.max(calculatePrecision(props.step), 0) : _a;\n return precision;\n };\n /**\n * Validate function to use if one is not passed in\n */\n _this._defaultOnValidate = function (value) {\n if (value === null || value.trim().length === 0 || isNaN(Number(value))) {\n return _this._lastValidValue;\n }\n var newValue = Math.min(_this.props.max, Math.max(_this.props.min, Number(value)));\n return String(newValue);\n };\n _this._onIncrement = function (value, event) {\n if (_this.props.onIncrement) {\n return _this.props.onIncrement(value, event);\n }\n else {\n return _this._defaultOnIncrement(value);\n }\n };\n /**\n * Increment function to use if one is not passed in\n */\n _this._defaultOnIncrement = function (value) {\n var _a = _this.props, max = _a.max, step = _a.step;\n var newValue = Math.min(Number(value) + Number(step), max);\n newValue = precisionRound(newValue, _this._precision);\n return String(newValue);\n };\n _this._onDecrement = function (value, event) {\n if (_this.props.onDecrement) {\n return _this.props.onDecrement(value, event);\n }\n else {\n return _this._defaultOnDecrement(value);\n }\n };\n /**\n * Increment function to use if one is not passed in\n */\n _this._defaultOnDecrement = function (value) {\n var _a = _this.props, min = _a.min, step = _a.step;\n var newValue = Math.max(Number(value) - Number(step), min);\n newValue = precisionRound(newValue, _this._precision);\n return String(newValue);\n };\n /**\n * This is used when validating text entry in the input on blur or when enter key is pressed\n * (not when changed via the buttons).\n * @param event - the event that fired\n */\n _this._validate = function (event) {\n if (_this.value !== undefined &&\n _this._valueToValidate !== undefined &&\n _this._valueToValidate !== _this._lastValidValue) {\n var newValue = _this._onValidate(_this._valueToValidate, event);\n // Done validating this value, so clear it\n _this._valueToValidate = undefined;\n if (newValue !== undefined) {\n _this._lastValidValue = newValue;\n _this.setState({ value: newValue });\n }\n else {\n // Value was invalid. Reset state to last valid value.\n _this.setState({ value: _this._lastValidValue });\n }\n }\n };\n /**\n * The method is needed to ensure we are updating the actual input value.\n * without this our value will never change (and validation will not have the correct number)\n * @param event - the event that was fired\n */\n _this._onInputChange = function (event) {\n var element = event.target;\n var value = element.value;\n _this._valueToValidate = value;\n _this.setState({\n value: value,\n });\n };\n /**\n * Update the value with the given stepFunction\n * @param shouldSpin - should we fire off another updateValue when we are done here? This should be true\n * when spinning in response to a mouseDown\n * @param stepFunction - function to use to step by\n * @param event - The event that triggered the updateValue\n */\n _this._updateValue = function (shouldSpin, stepDelay, stepFunction, event) {\n var newValue = stepFunction(_this.value || '', event);\n if (newValue !== undefined) {\n _this._lastValidValue = newValue;\n _this.setState({ value: newValue });\n }\n if (_this._spinningByMouse !== shouldSpin) {\n _this._spinningByMouse = shouldSpin;\n }\n if (shouldSpin) {\n _this._currentStepFunctionHandle = _this._async.setTimeout(function () {\n _this._updateValue(shouldSpin, _this._stepDelay, stepFunction, event);\n }, stepDelay);\n }\n };\n /**\n * Stop spinning (clear any currently pending update and set spinning to false)\n */\n _this._stop = function () {\n if (_this._currentStepFunctionHandle >= 0) {\n _this._async.clearTimeout(_this._currentStepFunctionHandle);\n _this._currentStepFunctionHandle = -1;\n }\n if (_this._spinningByMouse || _this.state.keyboardSpinDirection !== KeyboardSpinDirection.notSpinning) {\n _this._spinningByMouse = false;\n _this.setState({ keyboardSpinDirection: KeyboardSpinDirection.notSpinning });\n }\n };\n /**\n * Handle keydown on the text field. We need to update\n * the value when up or down arrow are depressed\n * @param event - the keyboardEvent that was fired\n */\n _this._handleKeyDown = function (event) {\n // eat the up and down arrow keys to keep focus in the spinButton\n // (especially when a spinButton is inside of a FocusZone)\n if (event.which === KeyCodes.up || event.which === KeyCodes.down || event.which === KeyCodes.enter) {\n event.preventDefault();\n event.stopPropagation();\n }\n if (_this.props.disabled) {\n _this._stop();\n return;\n }\n var spinDirection = KeyboardSpinDirection.notSpinning;\n switch (event.which) {\n case KeyCodes.up:\n spinDirection = KeyboardSpinDirection.up;\n _this._updateValue(false /* shouldSpin */, _this._initialStepDelay, _this._onIncrement, event);\n break;\n case KeyCodes.down:\n spinDirection = KeyboardSpinDirection.down;\n _this._updateValue(false /* shouldSpin */, _this._initialStepDelay, _this._onDecrement, event);\n break;\n case KeyCodes.enter:\n _this._validate(event);\n break;\n case KeyCodes.escape:\n if (_this.value !== _this._lastValidValue) {\n _this.setState({ value: _this._lastValidValue });\n }\n break;\n default:\n break;\n }\n // style the increment/decrement button to look active\n // when the corresponding up/down arrow keys trigger a step\n if (_this.state.keyboardSpinDirection !== spinDirection) {\n _this.setState({ keyboardSpinDirection: spinDirection });\n }\n };\n /**\n * Make sure that we have stopped spinning on keyUp\n * if the up or down arrow fired this event\n * @param event - keyboard event\n */\n _this._handleKeyUp = function (event) {\n if (_this.props.disabled || event.which === KeyCodes.up || event.which === KeyCodes.down) {\n _this._stop();\n return;\n }\n };\n _this._onIncrementMouseDown = function (event) {\n _this._updateValue(true /* shouldSpin */, _this._initialStepDelay, _this._onIncrement, event);\n };\n _this._onDecrementMouseDown = function (event) {\n _this._updateValue(true /* shouldSpin */, _this._initialStepDelay, _this._onDecrement, event);\n };\n initializeComponentRef(_this);\n warnMutuallyExclusive('SpinButton', props, {\n value: 'defaultValue',\n });\n // Don't use || here because it won't handle empty strings properly\n var _a = props.value, value = _a === void 0 ? props.defaultValue : _a;\n if (value === undefined) {\n value = typeof props.min === 'number' ? String(props.min) : '0';\n }\n _this._lastValidValue = value;\n // Ensure that the autocalculated precision is not negative.\n _this._precision = _this._calculatePrecision(props);\n _this.state = {\n isFocused: false,\n value: value,\n keyboardSpinDirection: KeyboardSpinDirection.notSpinning,\n };\n _this._async = new Async(_this);\n _this._currentStepFunctionHandle = -1;\n _this._labelId = getId('Label');\n _this._inputId = getId('input');\n _this._spinningByMouse = false;\n _this._valueToValidate = undefined;\n return _this;\n }\n SpinButton.prototype.componentWillUnmount = function () {\n this._async.dispose();\n };\n /**\n * Invoked when a component is receiving new props. This method is not called for the initial render.\n */\n SpinButton.prototype.UNSAFE_componentWillReceiveProps = function (newProps) {\n if (newProps.value !== undefined) {\n // Value from props is considered pre-validated\n this._lastValidValue = newProps.value;\n this.setState({ value: newProps.value });\n }\n this._precision = this._calculatePrecision(newProps);\n };\n SpinButton.prototype.render = function () {\n var _this = this;\n var _a = this.props, disabled = _a.disabled, label = _a.label, min = _a.min, max = _a.max, labelPosition = _a.labelPosition, iconProps = _a.iconProps, incrementButtonIcon = _a.incrementButtonIcon, incrementButtonAriaLabel = _a.incrementButtonAriaLabel, decrementButtonIcon = _a.decrementButtonIcon, decrementButtonAriaLabel = _a.decrementButtonAriaLabel, ariaLabel = _a.ariaLabel, ariaDescribedBy = _a.ariaDescribedBy, customStyles = _a.styles, customUpArrowButtonStyles = _a.upArrowButtonStyles, customDownArrowButtonStyles = _a.downArrowButtonStyles, theme = _a.theme, ariaPositionInSet = _a.ariaPositionInSet, ariaSetSize = _a.ariaSetSize, ariaValueNow = _a.ariaValueNow, ariaValueText = _a.ariaValueText, keytipProps = _a.keytipProps, className = _a.className, inputProps = _a.inputProps, iconButtonProps = _a.iconButtonProps;\n var _b = this.state, isFocused = _b.isFocused, keyboardSpinDirection = _b.keyboardSpinDirection;\n var value = this.value;\n var classNames = this.props.getClassNames\n ? this.props.getClassNames(theme, disabled, isFocused, keyboardSpinDirection, labelPosition, className)\n : getClassNames(getStyles(theme, customStyles), disabled, isFocused, keyboardSpinDirection, labelPosition, className);\n var nativeProps = getNativeProps(this.props, divProperties, [\n 'onBlur',\n 'onFocus',\n 'className',\n ]);\n return (React.createElement(\"div\", { className: classNames.root },\n labelPosition !== Position.bottom && (iconProps || label) && (React.createElement(\"div\", { className: classNames.labelWrapper },\n iconProps && React.createElement(Icon, __assign({}, iconProps, { className: classNames.icon, \"aria-hidden\": \"true\" })),\n label && (React.createElement(Label, { id: this._labelId, htmlFor: this._inputId, className: classNames.label, disabled: disabled }, label)))),\n React.createElement(KeytipData, { keytipProps: keytipProps, disabled: disabled }, function (keytipAttributes) { return (React.createElement(\"div\", __assign({}, nativeProps, { className: classNames.spinButtonWrapper, \"aria-label\": ariaLabel && ariaLabel, \"aria-posinset\": ariaPositionInSet, \"aria-setsize\": ariaSetSize, \"data-ktp-target\": keytipAttributes['data-ktp-target'] }),\n React.createElement(\"input\", __assign({ value: value, id: _this._inputId, onChange: _this._onChange, onInput: _this._onInputChange, className: classNames.input, type: \"text\", autoComplete: \"off\", role: \"spinbutton\", \"aria-labelledby\": label && _this._labelId, \"aria-valuenow\": typeof ariaValueNow === 'number'\n ? ariaValueNow\n : value && !isNaN(Number(value)) // Number('') is 0 which may not be desirable\n ? Number(value)\n : undefined, \"aria-valuetext\": typeof ariaValueText === 'string'\n ? ariaValueText\n : !value || isNaN(Number(value)) // Number('') is 0 which may not be desirable\n ? value\n : undefined, \"aria-valuemin\": min, \"aria-valuemax\": max, \"aria-describedby\": mergeAriaAttributeValues(ariaDescribedBy, keytipAttributes['aria-describedby']), onBlur: _this._onBlur, ref: _this._input, onFocus: _this._onFocus, onKeyDown: _this._handleKeyDown, onKeyUp: _this._handleKeyUp, disabled: disabled, \"aria-disabled\": disabled, \"data-lpignore\": true, \"data-ktp-execute-target\": keytipAttributes['data-ktp-execute-target'] }, inputProps)),\n React.createElement(\"span\", { className: classNames.arrowBox },\n React.createElement(IconButton, __assign({ styles: getArrowButtonStyles(theme, true, customUpArrowButtonStyles), className: 'ms-UpButton', checked: keyboardSpinDirection === KeyboardSpinDirection.up, disabled: disabled, iconProps: incrementButtonIcon, onMouseDown: _this._onIncrementMouseDown, onMouseLeave: _this._stop, onMouseUp: _this._stop, tabIndex: -1, ariaLabel: incrementButtonAriaLabel, \"data-is-focusable\": false }, iconButtonProps)),\n React.createElement(IconButton, __assign({ styles: getArrowButtonStyles(theme, false, customDownArrowButtonStyles), className: 'ms-DownButton', checked: keyboardSpinDirection === KeyboardSpinDirection.down, disabled: disabled, iconProps: decrementButtonIcon, onMouseDown: _this._onDecrementMouseDown, onMouseLeave: _this._stop, onMouseUp: _this._stop, tabIndex: -1, ariaLabel: decrementButtonAriaLabel, \"data-is-focusable\": false }, iconButtonProps))))); }),\n labelPosition === Position.bottom && (iconProps || label) && (React.createElement(\"div\", { className: classNames.labelWrapper },\n iconProps && React.createElement(Icon, { iconName: iconProps.iconName, className: classNames.icon, \"aria-hidden\": \"true\" }),\n label && (React.createElement(Label, { id: this._labelId, htmlFor: this._inputId, className: classNames.label, disabled: disabled }, label))))));\n };\n SpinButton.prototype.focus = function () {\n if (this._input.current) {\n this._input.current.focus();\n }\n };\n Object.defineProperty(SpinButton.prototype, \"value\", {\n /**\n * Gets the value of the spin button.\n */\n get: function () {\n // TODO (version 8): value from props should ALWAYS override value from state.\n // In a class component the code should be:\n // const { value = this.state.value } = this.props;\n // return value;\n return this.state.value;\n },\n enumerable: true,\n configurable: true\n });\n SpinButton.prototype._onChange = function () {\n /**\n * A noop input change handler. Using onInput instead of onChange was meant to address an issue\n * which apparently has been resolved in React 16 (https://github.com/facebook/react/issues/7027).\n * The no-op onChange handler was still needed because React gives console errors if an input\n * doesn't have onChange.\n *\n * TODO (Fabric 8?) - switch to just calling onChange (this is a breaking change for any tests,\n * ours or 3rd-party, which simulate entering text in a SpinButton)\n */\n };\n SpinButton.defaultProps = {\n step: 1,\n min: 0,\n max: 100,\n disabled: false,\n labelPosition: Position.start,\n label: '',\n incrementButtonIcon: { iconName: 'ChevronUpSmall' },\n decrementButtonIcon: { iconName: 'ChevronDownSmall' },\n };\n SpinButton = __decorate([\n customizable('SpinButton', ['theme', 'styles'], true)\n ], SpinButton);\n return SpinButton;\n}(React.Component));\nexport { SpinButton };\n//# sourceMappingURL=SpinButton.js.map" - }, - { - "id": "8gXh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-4.js", - "index": null, - "index2": null, - "size": 4421, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-4", - "loc": "6:0-57" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-4", - "loc": "30:8-10" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-4\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-4-a656cc0a.woff') format('woff')\"\n },\n icons: {\n 'HelpMirrored': '\\uEA51',\n 'ImportMirrored': '\\uEA52',\n 'ImportAllMirrored': '\\uEA53',\n 'ListMirrored': '\\uEA55',\n 'MailForwardMirrored': '\\uEA56',\n 'MailReplyMirrored': '\\uEA57',\n 'MailReplyAllMirrored': '\\uEA58',\n 'MiniContractMirrored': '\\uEA59',\n 'MiniExpandMirrored': '\\uEA5A',\n 'OpenPaneMirrored': '\\uEA5B',\n 'ParkingLocationMirrored': '\\uEA5E',\n 'SendMirrored': '\\uEA63',\n 'ShowResultsMirrored': '\\uEA65',\n 'ThumbnailViewMirrored': '\\uEA67',\n 'Media': '\\uEA69',\n 'Devices3': '\\uEA6C',\n 'Focus': '\\uEA6F',\n 'VideoLightOff': '\\uEA74',\n 'Lightbulb': '\\uEA80',\n 'StatusTriangle': '\\uEA82',\n 'VolumeDisabled': '\\uEA85',\n 'Puzzle': '\\uEA86',\n 'EmojiNeutral': '\\uEA87',\n 'EmojiDisappointed': '\\uEA88',\n 'HomeSolid': '\\uEA8A',\n 'Ringer': '\\uEA8F',\n 'PDF': '\\uEA90',\n 'HeartBroken': '\\uEA92',\n 'StoreLogo16': '\\uEA96',\n 'MultiSelectMirrored': '\\uEA98',\n 'Broom': '\\uEA99',\n 'AddToShoppingList': '\\uEA9A',\n 'Cocktails': '\\uEA9D',\n 'Wines': '\\uEABF',\n 'Articles': '\\uEAC1',\n 'Cycling': '\\uEAC7',\n 'DietPlanNotebook': '\\uEAC8',\n 'Pill': '\\uEACB',\n 'ExerciseTracker': '\\uEACC',\n 'HandsFree': '\\uEAD0',\n 'Medical': '\\uEAD4',\n 'Running': '\\uEADA',\n 'Weights': '\\uEADB',\n 'Trackers': '\\uEADF',\n 'AddNotes': '\\uEAE3',\n 'AllCurrency': '\\uEAE4',\n 'BarChart4': '\\uEAE7',\n 'CirclePlus': '\\uEAEE',\n 'Coffee': '\\uEAEF',\n 'Cotton': '\\uEAF3',\n 'Market': '\\uEAFC',\n 'Money': '\\uEAFD',\n 'PieDouble': '\\uEB04',\n 'PieSingle': '\\uEB05',\n 'RemoveFilter': '\\uEB08',\n 'Savings': '\\uEB0B',\n 'Sell': '\\uEB0C',\n 'StockDown': '\\uEB0F',\n 'StockUp': '\\uEB11',\n 'Lamp': '\\uEB19',\n 'Source': '\\uEB1B',\n 'MSNVideos': '\\uEB1C',\n 'Cricket': '\\uEB1E',\n 'Golf': '\\uEB1F',\n 'Baseball': '\\uEB20',\n 'Soccer': '\\uEB21',\n 'MoreSports': '\\uEB22',\n 'AutoRacing': '\\uEB24',\n 'CollegeHoops': '\\uEB25',\n 'CollegeFootball': '\\uEB26',\n 'ProFootball': '\\uEB27',\n 'ProHockey': '\\uEB28',\n 'Rugby': '\\uEB2D',\n 'SubstitutionsIn': '\\uEB31',\n 'Tennis': '\\uEB33',\n 'Arrivals': '\\uEB34',\n 'Design': '\\uEB3C',\n 'Website': '\\uEB41',\n 'Drop': '\\uEB42',\n 'HistoricalWeather': '\\uEB43',\n 'SkiResorts': '\\uEB45',\n 'Snowflake': '\\uEB46',\n 'BusSolid': '\\uEB47',\n 'FerrySolid': '\\uEB48',\n 'AirplaneSolid': '\\uEB4C',\n 'TrainSolid': '\\uEB4D',\n 'Ticket': '\\uEB54',\n 'WifiWarning4': '\\uEB63',\n 'Devices4': '\\uEB66',\n 'AzureLogo': '\\uEB6A',\n 'BingLogo': '\\uEB6B',\n 'MSNLogo': '\\uEB6C',\n 'OutlookLogoInverse': '\\uEB6D',\n 'OfficeLogo': '\\uEB6E',\n 'SkypeLogo': '\\uEB6F',\n 'Door': '\\uEB75',\n 'EditMirrored': '\\uEB7E',\n 'GiftCard': '\\uEB8E',\n 'DoubleBookmark': '\\uEB8F',\n 'StatusErrorFull': '\\uEB90'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-4.js.map" - }, - { - "id": "8gx0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "index": null, - "index2": null, - "size": 1342, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "issuerId": "bwCg", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": "bwCg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/keytips/IKeytipTransitionKey", - "loc": "10:0-86" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/IKeytipTransitionKey", - "loc": "271:12-33" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/IKeytipTransitionKey", - "loc": "276:17-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/keytips/IKeytipTransitionKey", - "loc": "299:17-38" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IKeytipTransitionKey", - "loc": "1:0-39" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IKeytipTransitionKey", - "loc": "1:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "transitionKeysAreEqual", - "transitionKeysContain" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { find } from '../../Utilities';\n/**\n * Tests for equality between two IKeytipTransitionKeys.\n *\n * @param key1 - First IKeytipTransitionKey.\n * @param key2 - Second IKeytipTransitionKey.\n * @returns T/F if the transition keys are equal.\n */\nexport function transitionKeysAreEqual(key1, key2) {\n if (key1.key !== key2.key) {\n return false;\n }\n var mod1 = key1.modifierKeys;\n var mod2 = key2.modifierKeys;\n if ((!mod1 && mod2) || (mod1 && !mod2)) {\n // Not equal if one modifier is defined and the other isn't\n return false;\n }\n if (mod1 && mod2) {\n if (mod1.length !== mod2.length) {\n return false;\n }\n // Sort both arrays\n mod1 = mod1.sort();\n mod2 = mod2.sort();\n for (var i = 0; i < mod1.length; i++) {\n if (mod1[i] !== mod2[i]) {\n return false;\n }\n }\n }\n return true;\n}\n/**\n * Tests if 'key' is present in 'keys'.\n *\n * @param keys - Array of IKeytipTransitionKey.\n * @param key - IKeytipTransitionKey to find in 'keys'.\n * @returns T/F if 'keys' contains 'key'.\n */\nexport function transitionKeysContain(keys, key) {\n return !!find(keys, function (transitionKey) {\n return transitionKeysAreEqual(transitionKey, key);\n });\n}\n//# sourceMappingURL=IKeytipTransitionKey.js.map" - }, - { - "id": "8l0F", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "index": null, - "index2": null, - "size": 101, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "issuerId": "957h", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js" - }, - { - "id": "957h", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "957h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "type": "harmony side effect evaluation", - "userRequest": "./positioning/index", - "loc": "1:0-36" - }, - { - "moduleId": "957h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning/index", - "loc": "1:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "Rectangle", - "__positioningTestPackage", - "positionElement", - "positionCallout", - "positionCard", - "getMaxHeight", - "getOppositeEdge", - "RectangleEdge", - "Position" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 16, - "source": "export * from './positioning';\nexport * from './positioning.types';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "8lCt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@uifabric/utilities/lib/scroll.js", - "index": 147, - "index2": 133, - "size": 5649, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:39-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:39-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withViewport.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:36-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:20-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:20-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "43:20-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "46:20-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/List/List.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/List/List.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "263:30-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/selection/SelectionZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "443:27-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "526:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "537:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "584:47-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "835:31-51" - }, - { - "moduleId": "O2QR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony side effect evaluation", - "userRequest": "./scroll", - "loc": "2:0-48" - }, - { - "moduleId": "O2QR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "module": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "type": "harmony import specifier", - "userRequest": "./scroll", - "loc": "19:33-53" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./scroll", - "loc": "53:0-25" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./scroll", - "loc": "53:0-25" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "69:33-53" - } - ], - "usedExports": [ - "allowOverscrollOnElement", - "allowScrollOnElement", - "disableBodyScroll", - "enableBodyScroll", - "findScrollableParent", - "getScrollbarWidth" - ], - "providedExports": [ - "DATA_IS_SCROLLABLE_ATTRIBUTE", - "allowScrollOnElement", - "allowOverscrollOnElement", - "disableBodyScroll", - "enableBodyScroll", - "getScrollbarWidth", - "findScrollableParent" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getDocument } from './dom/getDocument';\nimport { mergeStyles } from '@uifabric/merge-styles';\nimport { getWindow } from './dom/getWindow';\nvar _scrollbarWidth;\nvar _bodyScrollDisabledCount = 0;\nvar DisabledScrollClassName = mergeStyles({\n overflow: 'hidden !important',\n});\n/**\n * Placing this attribute on scrollable divs optimizes detection to know\n * if the div is scrollable or not (given we can avoid expensive operations\n * like getComputedStyle.)\n *\n * @public\n */\nexport var DATA_IS_SCROLLABLE_ATTRIBUTE = 'data-is-scrollable';\n/**\n * Allows the user to scroll within a element,\n * while preventing the user from scrolling the body\n */\nexport var allowScrollOnElement = function (element, events) {\n if (!element) {\n return;\n }\n var _previousClientY = 0;\n var _element = null;\n // remember the clientY for future calls of _preventOverscrolling\n var _saveClientY = function (event) {\n if (event.targetTouches.length === 1) {\n _previousClientY = event.targetTouches[0].clientY;\n }\n };\n // prevent the body from scrolling when the user attempts\n // to scroll past the top or bottom of the element\n var _preventOverscrolling = function (event) {\n // only respond to a single-finger touch\n if (event.targetTouches.length !== 1) {\n return;\n }\n // prevent the body touchmove handler from firing\n // so that scrolling is allowed within the element\n event.stopPropagation();\n if (!_element) {\n return;\n }\n var clientY = event.targetTouches[0].clientY - _previousClientY;\n var scrollableParent = findScrollableParent(event.target);\n if (scrollableParent) {\n _element = scrollableParent;\n }\n // if the element is scrolled to the top,\n // prevent the user from scrolling up\n if (_element.scrollTop === 0 && clientY > 0) {\n event.preventDefault();\n }\n // if the element is scrolled to the bottom,\n // prevent the user from scrolling down\n if (_element.scrollHeight - Math.ceil(_element.scrollTop) <= _element.clientHeight && clientY < 0) {\n event.preventDefault();\n }\n };\n events.on(element, 'touchstart', _saveClientY, { passive: false });\n events.on(element, 'touchmove', _preventOverscrolling, { passive: false });\n _element = element;\n};\n/**\n * Same as allowScrollOnElement but does not prevent overscrolling.\n */\nexport var allowOverscrollOnElement = function (element, events) {\n if (!element) {\n return;\n }\n var _allowElementScroll = function (event) {\n event.stopPropagation();\n };\n events.on(element, 'touchmove', _allowElementScroll, { passive: false });\n};\nvar _disableIosBodyScroll = function (event) {\n event.preventDefault();\n};\n/**\n * Disables the body scrolling.\n *\n * @public\n */\nexport function disableBodyScroll() {\n var doc = getDocument();\n if (doc && doc.body && !_bodyScrollDisabledCount) {\n doc.body.classList.add(DisabledScrollClassName);\n doc.body.addEventListener('touchmove', _disableIosBodyScroll, { passive: false, capture: false });\n }\n _bodyScrollDisabledCount++;\n}\n/**\n * Enables the body scrolling.\n *\n * @public\n */\nexport function enableBodyScroll() {\n if (_bodyScrollDisabledCount > 0) {\n var doc = getDocument();\n if (doc && doc.body && _bodyScrollDisabledCount === 1) {\n doc.body.classList.remove(DisabledScrollClassName);\n doc.body.removeEventListener('touchmove', _disableIosBodyScroll);\n }\n _bodyScrollDisabledCount--;\n }\n}\n/**\n * Calculates the width of a scrollbar for the browser/os.\n *\n * @public\n */\nexport function getScrollbarWidth() {\n if (_scrollbarWidth === undefined) {\n var scrollDiv = document.createElement('div');\n scrollDiv.style.setProperty('width', '100px');\n scrollDiv.style.setProperty('height', '100px');\n scrollDiv.style.setProperty('overflow', 'scroll');\n scrollDiv.style.setProperty('position', 'absolute');\n scrollDiv.style.setProperty('top', '-9999px');\n document.body.appendChild(scrollDiv);\n // Get the scrollbar width\n _scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;\n // Delete the DIV\n document.body.removeChild(scrollDiv);\n }\n return _scrollbarWidth;\n}\n/**\n * Traverses up the DOM for the element with the data-is-scrollable=true attribute, or returns\n * document.body.\n *\n * @public\n */\nexport function findScrollableParent(startingElement) {\n var el = startingElement;\n var doc = getDocument(startingElement);\n // First do a quick scan for the scrollable attribute.\n while (el && el !== doc.body) {\n if (el.getAttribute(DATA_IS_SCROLLABLE_ATTRIBUTE) === 'true') {\n return el;\n }\n el = el.parentElement;\n }\n // If we haven't found it, the use the slower method: compute styles to evaluate if overflow is set.\n el = startingElement;\n while (el && el !== doc.body) {\n if (el.getAttribute(DATA_IS_SCROLLABLE_ATTRIBUTE) !== 'false') {\n var computedStyles = getComputedStyle(el);\n var overflowY = computedStyles ? computedStyles.getPropertyValue('overflow-y') : '';\n if (overflowY && (overflowY === 'scroll' || overflowY === 'auto')) {\n return el;\n }\n }\n el = el.parentElement;\n }\n // Fall back to window scroll.\n if (!el || el === doc.body) {\n el = getWindow(startingElement);\n }\n return el;\n}\n//# sourceMappingURL=scroll.js.map" - }, - { - "id": "8msB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/asAsync.js", - "name": "./node_modules/@uifabric/utilities/lib/asAsync.js", - "index": null, - "index2": null, - "size": 3160, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./asAsync", - "loc": "13:0-26" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./asAsync", - "loc": "13:0-26" - } - ], - "usedExports": false, - "providedExports": [ - "asAsync" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * asAsync - a HOC for async loading components.\n *\n * Usage:\n *\n * const AsyncDialog = asAsync({\n * load: () => import('Dialog').then(result => result.default),\n * });\n *\n * React.render(domElement, } { ...dialogProps } />);\n *\n * Note the `asyncPlaceholder` prop will be respected when rendering the async component and it hasn't\n * been loaded yet.\n */\nimport { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\n/**\n * If possible, use a WeakMap to maintain a cache of loaded components.\n * This can be used to synchronously render components that have already been loaded,\n * rather than having to wait for at least one async tick.\n */\nvar _syncModuleCache = typeof WeakMap !== 'undefined'\n ? // eslint-disable-next-line @typescript-eslint/no-explicit-any\n new WeakMap()\n : undefined;\n/**\n * Produces a component which internally loads the target component before first mount.\n * The component passes all props through to the loaded component.\n *\n * This overload accepts a module with a default export for the component.\n */\nexport function asAsync(options) {\n var Async = /** @class */ (function (_super) {\n __extends(Async, _super);\n function Async() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.state = {\n Component: _syncModuleCache ? _syncModuleCache.get(options.load) : undefined,\n };\n return _this;\n }\n Async.prototype.render = function () {\n // Typescript issue: the rest can't be pulled without the any cast, as TypeScript fails with rest on generics.\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var _a = this.props, forwardedRef = _a.forwardedRef, Placeholder = _a.asyncPlaceholder, rest = __rest(_a, [\"forwardedRef\", \"asyncPlaceholder\"]);\n var Component = this.state.Component;\n return Component ? (React.createElement(Component, __assign(__assign({}, rest), { ref: forwardedRef }))) : Placeholder ? (React.createElement(Placeholder, null)) : null;\n };\n Async.prototype.componentDidMount = function () {\n var _this = this;\n var Component = this.state.Component;\n if (!Component) {\n options\n .load()\n .then(function (LoadedComponent) {\n if (LoadedComponent) {\n // Cache component for future reference.\n _syncModuleCache && _syncModuleCache.set(options.load, LoadedComponent);\n // Set state.\n _this.setState({\n Component: LoadedComponent,\n }, options.onLoad);\n }\n })\n .catch(options.onError);\n }\n };\n return Async;\n }(React.Component));\n return React.forwardRef(function (props, ref) { return React.createElement(Async, __assign({}, props, { forwardedRef: ref })); });\n}\n//# sourceMappingURL=asAsync.js.map" - }, - { - "id": "8sxt", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "index": 26, - "index2": 262, - "size": 39065, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionDataItem", - "loc": "1:0-37" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionDataItem", - "loc": "1:0-37" - } - ], - "usedExports": [ - "CollectionDataItem" - ], - "providedExports": [ - "CollectionDataItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js (<- Module exports are unknown)", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Link/Link.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-core-library\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-lodash-subset\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"PropertyControlStrings\" (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 7, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "index": 26, - "index2": 262, - "size": 29175, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerId": "kQRI", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionDataItem", - "loc": "1:0-37" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionDataItem", - "loc": "1:0-37" - } - ], - "usedExports": [ - "CollectionDataItem" - ], - "providedExports": [ - "CollectionDataItem" - ], - "optimizationBailout": [], - "depth": 7, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { TextField } from 'office-ui-fabric-react/lib/components/TextField';\nimport { Icon } from 'office-ui-fabric-react/lib/components/Icon';\nimport { Link } from 'office-ui-fabric-react/lib/components/Link';\nimport * as strings from 'PropertyControlStrings';\nimport { CustomCollectionFieldType } from '..';\nimport { Dropdown } from 'office-ui-fabric-react/lib/components/Dropdown';\nimport { Callout, DirectionalHint } from 'office-ui-fabric-react/lib/components/Callout';\nimport { CollectionIconField } from '../collectionIconField';\nimport { clone, findIndex, sortBy } from '@microsoft/sp-lodash-subset';\nimport { CollectionNumberField } from '../collectionNumberField';\nimport { CollectionColorField } from '../collectionColorField';\nimport { Guid } from '@microsoft/sp-core-library';\nimport { CollectionDropdownField } from '../collectionDropdownField/CollectionDropdownField';\nimport { CollectionCheckboxField } from '../collectionCheckboxField/CollectionCheckboxField';\nvar CollectionDataItem = /** @class */ (function (_super) {\n __extends(CollectionDataItem, _super);\n function CollectionDataItem(props) {\n var _this = _super.call(this, props) || this;\n _this.emptyItem = null;\n _this.validation = {};\n /**\n * Update the item value on the field change\n */\n _this.onValueChanged = function (fieldId, value) {\n return new Promise(function (resolve) { return _this.setState(function (prevState) {\n var crntItem = prevState.crntItem;\n // Update the changed field\n crntItem[fieldId] = value;\n // Store this in the current state\n return { crntItem: crntItem };\n }, function () { return resolve(); }); });\n };\n /**\n * Add the current row to the collection\n */\n _this.addRow = function () { return __awaiter(_this, void 0, void 0, function () {\n var crntItem, emptyItem;\n return __generator(this, function (_a) {\n if (this.props.fAddItem) {\n crntItem = this.state.crntItem;\n // Check if all the fields are correctly provided\n if (this.checkRowIsValidForSave(crntItem)) {\n this.props.fAddItem(crntItem);\n emptyItem = this.generateEmptyItem();\n this.setState({\n crntItem: __assign({}, emptyItem)\n });\n }\n }\n return [2 /*return*/];\n });\n }); };\n /**\n * Add the current row to the collection\n */\n _this.updateItem = function () { return __awaiter(_this, void 0, void 0, function () {\n var crntItem, isValid;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n crntItem = this.state.crntItem;\n return [4 /*yield*/, this.checkRowIsValidForSave(crntItem)];\n case 1:\n isValid = _a.sent();\n if (this.props.fUpdateItem) {\n // Check if all the fields are correctly provided\n if (isValid) {\n this.props.fUpdateItem(this.props.index, crntItem);\n }\n }\n // Set the validation for the item\n if (this.props.fValidation) {\n this.props.fValidation(this.props.index, isValid);\n }\n return [2 /*return*/];\n }\n });\n }); };\n /**\n * Delete the item from the collection\n */\n _this.deleteRow = function () {\n if (_this.props.fDeleteItem) {\n _this.props.fDeleteItem(_this.props.index);\n }\n };\n /**\n * Allow custom field validation\n *\n * @param field\n * @param value\n */\n _this.fieldValidation = function (field, value) { return __awaiter(_this, void 0, void 0, function () {\n var validation;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n validation = \"\";\n if (!field.onGetErrorMessage) return [3 /*break*/, 2];\n // Set initial field validation\n this.validation[field.id] = false;\n return [4 /*yield*/, field.onGetErrorMessage(value, this.props.index, this.state.crntItem)];\n case 1:\n // Do the validation\n validation = _a.sent();\n _a.label = 2;\n case 2: return [2 /*return*/, this.storeFieldValidation(field.id, validation, true)];\n }\n });\n }); };\n /**\n * Custom field validation\n */\n _this.onCustomFieldValidation = function (fieldId, errorMsg) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n console.log(fieldId, errorMsg);\n if (!fieldId) return [3 /*break*/, 2];\n return [4 /*yield*/, this.storeFieldValidation(fieldId, errorMsg, true)];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2: return [2 /*return*/];\n }\n });\n }); };\n /**\n * URL field validation\n *\n * @param field\n * @param value\n * @param item\n */\n _this.urlFieldValidation = function (field, value, item) { return __awaiter(_this, void 0, void 0, function () {\n var isValid, validation, regEx;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n isValid = true;\n validation = \"\";\n if (!field.onGetErrorMessage) return [3 /*break*/, 2];\n return [4 /*yield*/, field.onGetErrorMessage(value, this.props.index, item)];\n case 1:\n // Using the custom validation\n validation = _a.sent();\n isValid = validation === \"\";\n return [3 /*break*/, 3];\n case 2:\n regEx = /(http|https)?:\\/\\/(www\\.)?[-a-zA-Z0-9@:%._\\+~#=]{2,256}\\.[a-z]{2,6}\\b([-a-zA-Z0-9@:%_\\+.~#?&\\/\\/=]*)/;\n isValid = (value === null || value.length === 0 || regEx.test(value));\n validation = isValid ? \"\" : strings.InvalidUrlError;\n _a.label = 3;\n case 3: return [2 /*return*/, this.storeFieldValidation(field.id, validation, true)];\n }\n });\n }); };\n /**\n * Toggle the error callout\n */\n _this.toggleErrorCallout = function () {\n _this.setState(function (prevState) { return ({\n showCallout: !prevState.showCallout\n }); });\n };\n _this.hideErrorCallout = function () {\n _this.setState({\n showCallout: false\n });\n };\n // Create an empty item with all properties\n var emptyItem = _this.generateEmptyItem();\n _this.state = {\n crntItem: clone(_this.props.item) || __assign({}, emptyItem),\n errorMsgs: [],\n showCallout: false,\n disableAdd: false\n };\n return _this;\n }\n /**\n * componentDidUpdate lifecycle hook\n * @param prevProps\n * @param prevState\n */\n CollectionDataItem.prototype.componentDidUpdate = function (prevProps) {\n if (this.props.item !== prevProps.item) {\n this.setState({\n crntItem: clone(this.props.item)\n });\n }\n };\n /**\n * Perform all required field checks at once\n */\n CollectionDataItem.prototype.doAllFieldChecks = function () {\n return __awaiter(this, void 0, void 0, function () {\n var crntItem, disableAdd;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n crntItem = this.state.crntItem;\n disableAdd = null;\n if (!this.props.fAddInCreation) return [3 /*break*/, 2];\n return [4 /*yield*/, this.checkRowIsValidForSave(crntItem)];\n case 1:\n if (_a.sent()) {\n disableAdd = true;\n this.props.fAddInCreation(crntItem, true);\n }\n else {\n disableAdd = false;\n this.props.fAddInCreation(crntItem, false);\n }\n _a.label = 2;\n case 2:\n this.setState({ disableAdd: disableAdd });\n if (!this.props.fUpdateItem) return [3 /*break*/, 4];\n return [4 /*yield*/, this.updateItem()];\n case 3:\n _a.sent();\n _a.label = 4;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n /**\n * Check if all values of the required fields are provided\n */\n CollectionDataItem.prototype.checkAllRequiredFieldsValid = function (item) {\n // Get all the required fields\n var requiredFields = this.props.fields.filter(function (f) { return f.required; });\n // Check all the required field values\n for (var _i = 0, requiredFields_1 = requiredFields; _i < requiredFields_1.length; _i++) {\n var field = requiredFields_1[_i];\n if (typeof item[field.id] === \"undefined\" || item[field.id] === null || item[field.id] === \"\") {\n return false;\n }\n }\n return true;\n };\n /**\n * Check if any of the fields contain a value\n * @param item\n */\n CollectionDataItem.prototype.checkAnyFieldContainsValue = function (item) {\n var fields = this.props.fields;\n for (var _i = 0, fields_1 = fields; _i < fields_1.length; _i++) {\n var field = fields_1[_i];\n if (typeof item[field.id] !== \"undefined\" && item[field.id] !== null && item[field.id] !== \"\") {\n return true;\n }\n }\n return false;\n };\n /**\n * Check onGetCustomErrorMessage\n * @param item\n */\n CollectionDataItem.prototype.checkAnyFieldCustomErrorMessage = function (item) {\n return __awaiter(this, void 0, void 0, function () {\n var _a, fields, index, validations;\n var _this = this;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = this.props, fields = _a.fields, index = _a.index;\n return [4 /*yield*/, Promise.all(fields.filter(function (f) { return f.onGetErrorMessage; }).map(function (f) { return __awaiter(_this, void 0, void 0, function () {\n var validation;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, f.onGetErrorMessage(item[f.id], index, item)];\n case 1:\n validation = _a.sent();\n return [2 /*return*/, this.storeFieldValidation(f.id, validation)];\n }\n });\n }); }))];\n case 1:\n validations = _b.sent();\n return [2 /*return*/, validations.filter(function (v) { return v && v.length > 0; }).length == 0];\n }\n });\n });\n };\n /**\n * Check if row is ready for save\n */\n CollectionDataItem.prototype.checkRowIsValidForSave = function (item) {\n return __awaiter(this, void 0, void 0, function () {\n var _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _a = this.checkAllRequiredFieldsValid(item) &&\n this.checkAnyFieldContainsValue(item);\n if (!_a) return [3 /*break*/, 2];\n return [4 /*yield*/, this.checkAnyFieldCustomErrorMessage(item)];\n case 1:\n _a = (_b.sent());\n _b.label = 2;\n case 2: return [2 /*return*/, _a &&\n this.checkAllFieldsAreValid()];\n }\n });\n });\n };\n /**\n * Checks if all fields are valid\n */\n CollectionDataItem.prototype.checkAllFieldsAreValid = function () {\n if (this.validation) {\n var keys = Object.keys(this.validation);\n for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {\n var key = keys_1[_i];\n if (!this.validation[key]) {\n return false;\n }\n }\n }\n return true;\n };\n /**\n * Updates callout and validation state\n */\n CollectionDataItem.prototype.storeFieldValidation = function (fieldId, validation, doAllFieldChecks) {\n if (doAllFieldChecks === void 0) { doAllFieldChecks = false; }\n return __awaiter(this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n // Store the field validation\n this.validation[fieldId] = validation === \"\";\n // Add message for the error callout\n this.errorCalloutHandler(fieldId, validation);\n if (!doAllFieldChecks) return [3 /*break*/, 2];\n return [4 /*yield*/, this.doAllFieldChecks()];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2: return [2 /*return*/, validation];\n }\n });\n });\n };\n /**\n * Error callout message handler\n *\n * @param field\n * @param message\n */\n CollectionDataItem.prototype.errorCalloutHandler = function (fieldId, message) {\n var _this = this;\n this.setState(function (prevState) {\n var crntItem = prevState.crntItem, errorMsgs = prevState.errorMsgs;\n // Get the current field\n var fieldIdx = findIndex(_this.props.fields, function (f) { return f.id === fieldId; });\n if (fieldIdx === -1) {\n return;\n }\n var field = _this.props.fields[fieldIdx];\n // Check if there already is a message for the field\n var fieldMsgIdx = findIndex(errorMsgs, function (msg) { return msg.field === field.title; });\n // Add message\n var fieldMsg;\n if (fieldMsgIdx === -1) {\n fieldMsg = {\n field: field.title,\n message: message\n };\n }\n else {\n // Update message\n fieldMsg = errorMsgs[fieldMsgIdx];\n if (fieldMsg) {\n fieldMsg.message = message;\n }\n }\n // Check if field required message needs to be shown\n if (field.required) {\n if (typeof crntItem[field.id] === \"undefined\" || crntItem[field.id] === null || crntItem[field.id] === \"\") {\n fieldMsg.isRequired = true;\n }\n else {\n fieldMsg.isRequired = false;\n }\n }\n // If required and message are false, it doesn't need to be added\n if (!fieldMsg.message && !fieldMsg.isRequired) {\n // Remove the item\n if (fieldMsgIdx !== -1) {\n errorMsgs.splice(fieldMsgIdx, 1);\n }\n }\n else {\n if (fieldMsgIdx === -1) {\n errorMsgs.push(fieldMsg);\n }\n }\n // Sort based on the index\n errorMsgs = sortBy(errorMsgs, [\"field\"]);\n return {\n errorMsgs: errorMsgs\n };\n });\n };\n /**\n * Render the field\n *\n * @param field\n * @param item\n */\n CollectionDataItem.prototype.renderField = function (field, item) {\n var _this = this;\n var disableFieldOnEdit = field.disableEdit && !!this.props.fUpdateItem;\n switch (field.type) {\n case CustomCollectionFieldType.boolean:\n return React.createElement(CollectionCheckboxField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.dropdown:\n return React.createElement(CollectionDropdownField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.number:\n return React.createElement(CollectionNumberField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.fabricIcon:\n return React.createElement(CollectionIconField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.color:\n return React.createElement(CollectionColorField, { field: field, item: item, disableEdit: disableFieldOnEdit, fOnValueChange: this.onValueChanged, fValidation: this.fieldValidation });\n case CustomCollectionFieldType.url:\n return React.createElement(TextField, { placeholder: field.placeholder || field.title, value: item[field.id] ? item[field.id] : \"\", required: field.required, disabled: disableFieldOnEdit, className: styles.collectionDataField, onChange: function (e, value) { return _this.onValueChanged(field.id, value); }, deferredValidationTime: field.deferredValidationTime || field.deferredValidationTime >= 0 ? field.deferredValidationTime : 200, onGetErrorMessage: function (value) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n return [2 /*return*/, this.urlFieldValidation(field, value, item)];\n }); }); }, inputClassName: \"PropertyFieldCollectionData__panel__url-field\" });\n case CustomCollectionFieldType.custom:\n if (field.onCustomRender) {\n return field.onCustomRender(field, item[field.id], function (fieldId, value) {\n _this.onValueChanged(fieldId, value);\n if (field.onGetErrorMessage) {\n _this.fieldValidation(field, value);\n }\n }, item, item.uniqueId, this.onCustomFieldValidation);\n }\n return null;\n case CustomCollectionFieldType.string:\n default:\n return React.createElement(TextField, { placeholder: field.placeholder || field.title, className: styles.collectionDataField, value: item[field.id] ? item[field.id] : \"\", required: field.required, disabled: disableFieldOnEdit, onChange: function (e, value) { return _this.onValueChanged(field.id, value); }, deferredValidationTime: field.deferredValidationTime || field.deferredValidationTime >= 0 ? field.deferredValidationTime : 200, onGetErrorMessage: function (value) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.fieldValidation(field, value)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }, inputClassName: \"PropertyFieldCollectionData__panel__string-field\" });\n }\n };\n /**\n * Retrieve all dropdown options\n */\n CollectionDataItem.prototype.getSortingOptions = function () {\n var opts = [];\n var totalItems = this.props.totalItems;\n for (var i = 1; i <= totalItems; i++) {\n opts.push({\n text: i.toString(),\n key: i\n });\n }\n return opts;\n };\n /**\n * Creates an empty item with a unique id\n */\n CollectionDataItem.prototype.generateEmptyItem = function () {\n // Create an empty item with all properties\n var emptyItem = {};\n emptyItem.uniqueId = Guid.newGuid().toString();\n for (var _i = 0, _a = this.props.fields; _i < _a.length; _i++) {\n var field = _a[_i];\n // Assign default value or null to the emptyItem\n emptyItem[field.id] = field.defaultValue || null;\n }\n return emptyItem;\n };\n /**\n * Default React render\n */\n CollectionDataItem.prototype.render = function () {\n var _this = this;\n var _a = this.state, crntItem = _a.crntItem, disableAdd = _a.disableAdd;\n var opts = this.getSortingOptions();\n return (React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__table-row \" + styles.tableRow + \" \" + (this.props.index === null ? styles.tableFooter : \"\") },\n (this.props.sortingEnabled && this.props.totalItems) && (React.createElement(\"span\", { className: \"PropertyFieldCollectionData__panel__sorting-field \" + styles.tableCell },\n React.createElement(Dropdown, { options: opts, selectedKey: this.props.index + 1, onChanged: function (opt) { return _this.props.fOnSorting(_this.props.index, opt.key); } }))),\n (this.props.sortingEnabled && this.props.totalItems === null) && (React.createElement(\"span\", { className: \"\" + styles.tableCell })),\n this.props.fields.map(function (f) { return (React.createElement(\"span\", { key: \"dataitem-\" + f.id, className: styles.tableCell + \" \" + styles.inputField }, _this.renderField(f, crntItem))); }),\n React.createElement(\"span\", { className: styles.tableCell },\n React.createElement(\"span\", { ref: function (ref) { return _this.calloutCellRef = ref; } },\n React.createElement(Link, { title: strings.CollectionDataItemShowErrorsLabel, className: styles.errorCalloutLink, disabled: !this.state.errorMsgs || this.state.errorMsgs.length === 0, onClick: this.toggleErrorCallout },\n React.createElement(Icon, { iconName: \"Error\" }))),\n this.state.showCallout && (React.createElement(Callout, { className: styles.errorCallout, target: this.calloutCellRef, isBeakVisible: true, directionalHint: DirectionalHint.bottomLeftEdge, directionalHintForRTL: DirectionalHint.rightBottomEdge, onDismiss: this.hideErrorCallout }, (this.state.errorMsgs && this.state.errorMsgs.length > 0) && (React.createElement(\"div\", { className: styles.errorMsgs },\n React.createElement(\"p\", null, \"Field issues:\"),\n React.createElement(\"ul\", null, this.state.errorMsgs.map(function (msg, idx) { return (React.createElement(\"li\", { key: msg.field + \"-\" + idx },\n React.createElement(\"b\", null, msg.field),\n \": \",\n msg.message ? msg.message : msg.isRequired ? strings.CollectionDataItemFieldRequiredLabel : null)); }))))))),\n React.createElement(\"span\", { className: styles.tableCell }, \n /* Check add or delete action */\n this.props.index !== null ? (React.createElement(Link, { title: strings.CollectionDeleteRowButtonLabel, disabled: !this.props.fDeleteItem || this.props.disableItemDeletion, onClick: this.deleteRow },\n React.createElement(Icon, { iconName: \"Clear\" }))) : (React.createElement(Link, { title: strings.CollectionAddRowButtonLabel, className: \"\" + (disableAdd ? \"\" : styles.addBtn), disabled: disableAdd, onClick: function () { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.addRow()];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); } },\n React.createElement(Icon, { iconName: \"Add\" }))))));\n };\n return CollectionDataItem;\n}(React.Component));\nexport { CollectionDataItem };\n//# sourceMappingURL=CollectionDataItem.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDropdownField/CollectionDropdownField.js", - "index": 194, - "index2": 257, - "size": 5088, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../collectionDropdownField/CollectionDropdownField", - "loc": "75:0-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "userRequest": "../collectionDropdownField/CollectionDropdownField", - "loc": "483:43-66" - } - ], - "usedExports": [ - "CollectionDropdownField" - ], - "providedExports": [ - "CollectionDropdownField" - ], - "optimizationBailout": [], - "depth": 8, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport { Dropdown } from 'office-ui-fabric-react/lib/Dropdown';\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nexport var CollectionDropdownField = function (_a) {\n var field = _a.field, item = _a.item, disableEdit = _a.disableEdit, fOnValueChange = _a.fOnValueChange, fValidation = _a.fValidation;\n var _b = React.useState(), options = _b[0], setOptions = _b[1];\n var _c = React.useState(), errorMessage = _c[0], setErrorMessage = _c[1];\n var onValueChange = React.useCallback(function (value) { return __awaiter(void 0, void 0, void 0, function () {\n var error;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!field) {\n return [2 /*return*/];\n }\n if (!fOnValueChange) return [3 /*break*/, 2];\n return [4 /*yield*/, fOnValueChange(field.id, value)];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n if (!fValidation) return [3 /*break*/, 4];\n return [4 /*yield*/, fValidation(field, value)];\n case 3:\n error = _a.sent();\n setErrorMessage(error);\n _a.label = 4;\n case 4: return [2 /*return*/];\n }\n });\n }); }, [field, fOnValueChange, fValidation]);\n React.useEffect(function () {\n if (!field || !field.options) {\n return;\n }\n var newOptions = [];\n if (typeof (field.options) === 'function') {\n if (!item) {\n return;\n }\n newOptions = field.options(field.id, item);\n }\n else {\n newOptions = field.options.slice();\n }\n setOptions(newOptions);\n }, [field, item, field.options]);\n React.useEffect(function () {\n if (item && field) {\n onValueChange(item[field.id]);\n }\n }, []);\n if (!field || !item) {\n return React.createElement(React.Fragment, null);\n }\n return React.createElement(Dropdown, { placeHolder: field.placeholder || field.title, options: options, selectedKey: item[field.id], required: field.required, disabled: disableEdit, onChange: function (e, i) { onValueChange(i.key); }, onRenderOption: field.onRenderOption, className: \"PropertyFieldCollectionData__panel__dropdown-field \" + (errorMessage ? styles.invalidField : '') });\n};\n//# sourceMappingURL=CollectionDropdownField.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionCheckboxField/CollectionCheckboxField.js", - "index": 266, - "index2": 258, - "size": 4722, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../collectionCheckboxField/CollectionCheckboxField", - "loc": "76:0-93" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "userRequest": "../collectionCheckboxField/CollectionCheckboxField", - "loc": "481:43-66" - } - ], - "usedExports": [ - "CollectionCheckboxField" - ], - "providedExports": [ - "CollectionCheckboxField" - ], - "optimizationBailout": [], - "depth": 8, - "source": "var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { Checkbox } from 'office-ui-fabric-react/lib/components/Checkbox';\nexport var CollectionCheckboxField = function (_a) {\n var field = _a.field, item = _a.item, disableEdit = _a.disableEdit, fOnValueChange = _a.fOnValueChange, fValidation = _a.fValidation;\n var _b = React.useState(), errorMessage = _b[0], setErrorMessage = _b[1];\n var onValueChange = React.useCallback(function (value) { return __awaiter(void 0, void 0, void 0, function () {\n var error;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n if (!field) {\n return [2 /*return*/];\n }\n if (!fOnValueChange) return [3 /*break*/, 2];\n return [4 /*yield*/, fOnValueChange(field.id, value)];\n case 1:\n _a.sent();\n _a.label = 2;\n case 2:\n if (!fValidation) return [3 /*break*/, 4];\n return [4 /*yield*/, fValidation(field, value)];\n case 3:\n error = _a.sent();\n setErrorMessage(error);\n _a.label = 4;\n case 4: return [2 /*return*/];\n }\n });\n }); }, [field, fOnValueChange, fValidation]);\n React.useEffect(function () {\n if (item && field) {\n onValueChange(item[field.id]);\n }\n }, []);\n if (!field || !item) {\n return React.createElement(React.Fragment, null);\n }\n return React.createElement(Checkbox, { checked: item[field.id] ? item[field.id] : false, onChange: function (e, v) { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, onValueChange(v)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); }, disabled: disableEdit, className: \"PropertyFieldCollectionData__panel__boolean-field \" + (errorMessage ? styles.invalidField : '') });\n};\n//# sourceMappingURL=CollectionCheckboxField.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "8tWw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Styling.js", - "index": null, - "index2": null, - "size": 90, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "3Htz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-66" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-86" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-88" - }, - { - "moduleId": "jySA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-88" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-99" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-137" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-105" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-109" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "5:0-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "8:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "13:0-47" - } - ], - "usedExports": false, - "providedExports": [ - "AnimationClassNames", - "FontClassNames", - "ColorClassNames", - "AnimationStyles", - "AnimationVariables", - "DefaultPalette", - "DefaultFontStyles", - "registerDefaultFontFaces", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles", - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "hiddenContentStyle", - "PulsingBeaconAnimationStyles", - "getGlobalClassNames", - "getThemedContext", - "ThemeSettingName", - "getTheme", - "loadTheme", - "createTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "normalize", - "noWrap", - "getFadedOverflowStyle", - "getPlaceholderStyles", - "ZIndexes", - "buildClassMap", - "getIcon", - "registerIcons", - "registerIconAlias", - "unregisterIcons", - "setIconOptions", - "getIconClassName", - "InjectionMode", - "Stylesheet", - "concatStyleSets", - "fontFace", - "keyframes", - "mergeStyleSets", - "mergeStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import './version';\nexport * from '@uifabric/styling';\n//# sourceMappingURL=Styling.js.map" - }, - { - "id": "8vd5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateValues/timeConstants.js", - "name": "./node_modules/@fluentui/date-time-utilities/lib/dateValues/timeConstants.js", - "index": null, - "index2": null, - "size": 401, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "issuerId": "2iod", - "issuerName": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "2iod", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "2iod", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "module": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/date-time-utilities/lib/dateValues/timeConstants", - "loc": "5:0-75" - }, - { - "moduleId": "2iod", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "module": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/date-time-utilities/lib/dateValues/timeConstants", - "loc": "5:0-75" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony side effect evaluation", - "userRequest": "../dateValues/timeConstants", - "loc": "2:0-56" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "21:33-46" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "39:21-34" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "39:53-66" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "39:85-98" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "59:28-41" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "59:60-73" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "59:92-105" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "162:41-54" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "214:26-39" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "222:22-35" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "240:63-76" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "257:22-35" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "268:71-84" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "272:22-35" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "301:43-56" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "304:43-56" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "304:74-87" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "306:16-29" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "310:28-41" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "311:43-56" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "311:74-87" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "313:20-33" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "317:29-42" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "328:38-51" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "329:44-57" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "329:75-88" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "330:37-50" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/timeConstants", - "loc": "343:24-37" - } - ], - "usedExports": false, - "providedExports": [ - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "/**\n * Common constants and methods\n */\nvar TimeConstants = {\n MillisecondsInOneDay: 86400000,\n MillisecondsIn1Sec: 1000,\n MillisecondsIn1Min: 60000,\n MillisecondsIn30Mins: 1800000,\n MillisecondsIn1Hour: 3600000,\n MinutesInOneDay: 1440,\n MinutesInOneHour: 60,\n DaysInOneWeek: 7,\n MonthInOneYear: 12,\n};\nexport default TimeConstants;\n//# sourceMappingURL=timeConstants.js.map" - }, - { - "id": "8yeF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/autobind.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/autobind.js", - "index": null, - "index2": null, - "size": 1414, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./autobind", - "loc": "16:0-27" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./autobind", - "loc": "16:0-27" - } - ], - "usedExports": false, - "providedExports": [ - "autobind" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "/**\n * Autobind is a utility for binding methods in a class. This simplifies tagging methods as being \"bound\" to the this pointer\n * so that they can be used in scenarios that simply require a function callback.\n * @deprecated This has been deprecated in favor of using arrow function properties\n */\nexport function autobind(\n// tslint:disable-next-line:no-any\ntarget, key, descriptor) {\n var fn = descriptor.value;\n var defining = false;\n return {\n configurable: true,\n get: function () {\n if (defining || (fn && this === fn.prototype) || this.hasOwnProperty(key)) {\n return fn;\n }\n // Bind method only once, and update the property to return the bound value from now on\n var fnBound = fn && fn.bind(this);\n defining = true;\n Object.defineProperty(this, key, {\n configurable: true,\n writable: true,\n enumerable: true,\n value: fnBound\n });\n defining = false;\n return fnBound;\n },\n // tslint:disable-next-line:no-any\n set: function (newValue) {\n Object.defineProperty(this, key, {\n configurable: true,\n writable: true,\n enumerable: true,\n value: newValue\n });\n }\n };\n}\n//# sourceMappingURL=autobind.js.map" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "index": null, - "index2": null, - "size": 142, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "issuerId": "j3z5", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "j3z5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Callout/index", - "loc": "1:0-43" - }, - { - "moduleId": "j3z5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Callout/index", - "loc": "1:0-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Callout/index", - "loc": "10:0-51" - } - ], - "usedExports": false, - "providedExports": [ - "Callout", - "FocusTrapCallout", - "DirectionalHint" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 11, - "source": "export * from './Callout';\nexport * from './FocusTrapCallout';\nexport * from '../../common/DirectionalHint';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "957h", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "index": null, - "index2": null, - "size": 76, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/positioning", - "loc": "5:0-105" - } - ], - "usedExports": false, - "providedExports": [ - "Rectangle", - "__positioningTestPackage", - "positionElement", - "positionCallout", - "positionCard", - "getMaxHeight", - "getOppositeEdge", - "RectangleEdge", - "Position" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 15, - "source": "export * from './positioning/index';\n//# sourceMappingURL=positioning.js.map" - }, - { - "id": "95qC", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/util.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/util.js", - "index": 294, - "index2": 287, - "size": 7096, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "69gx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "type": "harmony side effect evaluation", - "userRequest": "./util", - "loc": "1:0-32" - }, - { - "moduleId": "69gx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/collections.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "5:20-26" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./util", - "loc": "6:0-23" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./util", - "loc": "6:0-23" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "./util", - "loc": "2:0-76" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "38:13-33" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "157:21-28" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "159:15-18" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "171:23-37" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony side effect evaluation", - "userRequest": "./util", - "loc": "2:0-54" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "5:8-28" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "13:8-28" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "14:22-28" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./util", - "loc": "15:17-23" - } - ], - "usedExports": [ - "assign", - "combine", - "dateAdd", - "getCtxCallback", - "getGUID", - "hOP", - "isArray", - "isFunc", - "isUrlAbsolute", - "jsS", - "objectDefinedNotNull", - "stringIsNullOrEmpty" - ], - "providedExports": [ - "getCtxCallback", - "dateAdd", - "combine", - "getRandomString", - "getGUID", - "isFunc", - "objectDefinedNotNull", - "isArray", - "assign", - "isUrlAbsolute", - "stringIsNullOrEmpty", - "sanitizeGuid", - "jsS", - "hOP", - "getHashCode" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\r\n * Gets a callback function which will maintain context across async calls.\r\n * Allows for the calling pattern getCtxCallback(thisobj, method, methodarg1, methodarg2, ...)\r\n *\r\n * @param context The object that will be the 'this' value in the callback\r\n * @param method The method to which we will apply the context and parameters\r\n * @param params Optional, additional arguments to supply to the wrapped method when it is invoked\r\n */\r\nexport function getCtxCallback(context, method) {\r\n var params = [];\r\n for (var _i = 2; _i < arguments.length; _i++) {\r\n params[_i - 2] = arguments[_i];\r\n }\r\n return function () {\r\n method.apply(context, params);\r\n };\r\n}\r\n/**\r\n * Adds a value to a date\r\n *\r\n * @param date The date to which we will add units, done in local time\r\n * @param interval The name of the interval to add, one of: ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second']\r\n * @param units The amount to add to date of the given interval\r\n *\r\n * http://stackoverflow.com/questions/1197928/how-to-add-30-minutes-to-a-javascript-date-object\r\n */\r\nexport function dateAdd(date, interval, units) {\r\n var ret = new Date(date.toString()); // don't change original date\r\n switch (interval.toLowerCase()) {\r\n case \"year\":\r\n ret.setFullYear(ret.getFullYear() + units);\r\n break;\r\n case \"quarter\":\r\n ret.setMonth(ret.getMonth() + 3 * units);\r\n break;\r\n case \"month\":\r\n ret.setMonth(ret.getMonth() + units);\r\n break;\r\n case \"week\":\r\n ret.setDate(ret.getDate() + 7 * units);\r\n break;\r\n case \"day\":\r\n ret.setDate(ret.getDate() + units);\r\n break;\r\n case \"hour\":\r\n ret.setTime(ret.getTime() + units * 3600000);\r\n break;\r\n case \"minute\":\r\n ret.setTime(ret.getTime() + units * 60000);\r\n break;\r\n case \"second\":\r\n ret.setTime(ret.getTime() + units * 1000);\r\n break;\r\n default:\r\n ret = undefined;\r\n break;\r\n }\r\n return ret;\r\n}\r\n/**\r\n * Combines an arbitrary set of paths ensuring and normalizes the slashes\r\n *\r\n * @param paths 0 to n path parts to combine\r\n */\r\nexport function combine() {\r\n var paths = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n paths[_i] = arguments[_i];\r\n }\r\n return paths\r\n .filter(function (path) { return !stringIsNullOrEmpty(path); })\r\n .map(function (path) { return path.replace(/^[\\\\|\\/]/, \"\").replace(/[\\\\|\\/]$/, \"\"); })\r\n .join(\"/\")\r\n .replace(/\\\\/g, \"/\");\r\n}\r\n/**\r\n * Gets a random string of chars length\r\n *\r\n * https://stackoverflow.com/questions/1349404/generate-random-string-characters-in-javascript\r\n *\r\n * @param chars The length of the random string to generate\r\n */\r\nexport function getRandomString(chars) {\r\n var text = new Array(chars);\r\n for (var i = 0; i < chars; i++) {\r\n text[i] = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\".charAt(Math.floor(Math.random() * 62));\r\n }\r\n return text.join(\"\");\r\n}\r\n/**\r\n * Gets a random GUID value\r\n *\r\n * http://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript\r\n */\r\n/* tslint:disable no-bitwise */\r\nexport function getGUID() {\r\n var d = Date.now();\r\n return \"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g, function (c) {\r\n var r = (d + Math.random() * 16) % 16 | 0;\r\n d = Math.floor(d / 16);\r\n return (c === \"x\" ? r : (r & 0x3 | 0x8)).toString(16);\r\n });\r\n}\r\n/* tslint:enable */\r\n/**\r\n * Determines if a given value is a function\r\n *\r\n * @param cf The thing to test for functionness\r\n */\r\nexport function isFunc(f) {\r\n return typeof f === \"function\";\r\n}\r\n/**\r\n * Determines if an object is both defined and not null\r\n * @param obj Object to test\r\n */\r\nexport function objectDefinedNotNull(obj) {\r\n return typeof obj !== \"undefined\" && obj !== null;\r\n}\r\n/**\r\n * @returns whether the provided parameter is a JavaScript Array or not.\r\n*/\r\nexport function isArray(array) {\r\n return Array.isArray ? Array.isArray(array) : array && typeof array.length === \"number\" && array.constructor === Array;\r\n}\r\n/**\r\n * Provides functionality to extend the given object by doing a shallow copy\r\n *\r\n * @param target The object to which properties will be copied\r\n * @param source The source object from which properties will be copied\r\n * @param noOverwrite If true existing properties on the target are not overwritten from the source\r\n * @param filter If provided allows additional filtering on what properties are copied (propName: string) => boolean\r\n *\r\n */\r\nexport function assign(target, source, noOverwrite, filter) {\r\n if (noOverwrite === void 0) { noOverwrite = false; }\r\n if (filter === void 0) { filter = function () { return true; }; }\r\n if (!objectDefinedNotNull(source)) {\r\n return target;\r\n }\r\n // ensure we don't overwrite things we don't want overwritten\r\n var check = noOverwrite ? function (o, i) { return !(i in o); } : function () { return true; };\r\n // final filter we will use\r\n var f = function (v) { return check(target, v) && filter(v); };\r\n return Object.getOwnPropertyNames(source)\r\n .filter(f)\r\n .reduce(function (t, v) {\r\n t[v] = source[v];\r\n return t;\r\n }, target);\r\n}\r\n/**\r\n * Determines if a given url is absolute\r\n *\r\n * @param url The url to check to see if it is absolute\r\n */\r\nexport function isUrlAbsolute(url) {\r\n return /^https?:\\/\\/|^\\/\\//i.test(url);\r\n}\r\n/**\r\n * Determines if a string is null or empty or undefined\r\n *\r\n * @param s The string to test\r\n */\r\nexport function stringIsNullOrEmpty(s) {\r\n return s === undefined || s === null || s.length < 1;\r\n}\r\n/**\r\n * Ensures guid values are represented consistently as \"ea123463-137d-4ae3-89b8-cf3fc578ca05\"\r\n *\r\n * @param guid The candidate guid\r\n */\r\nexport function sanitizeGuid(guid) {\r\n if (stringIsNullOrEmpty(guid)) {\r\n return guid;\r\n }\r\n var matches = /([0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12})/i.exec(guid);\r\n return matches === null ? guid : matches[1];\r\n}\r\n/**\r\n * Shorthand for JSON.stringify\r\n *\r\n * @param o Any type of object\r\n */\r\nexport function jsS(o) {\r\n return JSON.stringify(o);\r\n}\r\n/**\r\n * Shorthand for Object.hasOwnProperty\r\n *\r\n * @param o Object to check for\r\n * @param p Name of the property\r\n */\r\nexport function hOP(o, p) {\r\n return Object.hasOwnProperty.call(o, p);\r\n}\r\n/**\r\n * Generates a ~unique hash code\r\n *\r\n * From: https://stackoverflow.com/questions/6122571/simple-non-secure-hash-function-for-javascript\r\n */\r\n// tslint:disable:no-bitwise\r\nexport function getHashCode(s) {\r\n var hash = 0;\r\n if (s.length === 0) {\r\n return hash;\r\n }\r\n for (var i = 0; i < s.length; i++) {\r\n var chr = s.charCodeAt(i);\r\n hash = ((hash << 5) - hash) + chr;\r\n hash |= 0; // Convert to 32bit integer\r\n }\r\n return hash;\r\n}\r\n// tslint:enable:no-bitwise\r\n//# sourceMappingURL=util.js.map" - }, - { - "id": "9BiO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "index": null, - "index2": null, - "size": 585, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "issuerId": "i41p", - "issuerName": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i41p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "name": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "i41p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "module": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/MarqueeSelection/MarqueeSelection", - "loc": "1:0-63" - }, - { - "moduleId": "i41p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "module": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "type": "harmony export imported specifier", - "userRequest": "./components/MarqueeSelection/MarqueeSelection", - "loc": "1:0-63" - } - ], - "usedExports": false, - "providedExports": [ - "MarqueeSelection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { MarqueeSelectionBase } from './MarqueeSelection.base';\nimport { getStyles } from './MarqueeSelection.styles';\nexport var MarqueeSelection = \n// TODO: MarqueeSelectionBase defaultProps are not lining up with IMarqueeSelectionProps, so we have to be explicit\n// with styled here. defaultProps.rootTagName doesn't appear to be used anywhere and defaultProps.rootProps is not\n// in IMarqueeSelectionProps.\nstyled(MarqueeSelectionBase, getStyles, undefined, {\n scope: 'MarqueeSelection',\n});\n//# sourceMappingURL=MarqueeSelection.js.map" - }, - { - "id": "9DMD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "index": null, - "index2": null, - "size": 234, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "issuerId": "ebgD", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "7SqS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Announced.js", - "name": "./node_modules/office-ui-fabric-react/lib/Announced.js" - }, - { - "id": "ebgD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Announced/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Announced", - "loc": "219:32-41" - }, - { - "moduleId": "ebgD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Announced", - "loc": "1:0-28" - }, - { - "moduleId": "ebgD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Announced", - "loc": "1:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "Announced" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { AnnouncedBase } from './Announced.base';\nimport { getStyles } from './Announced.styles';\nexport var Announced = styled(AnnouncedBase, getStyles);\n//# sourceMappingURL=Announced.js.map" - }, - { - "id": "9MBR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/warn.js", - "index": null, - "index2": null, - "size": 203, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "52:0-23" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./warn", - "loc": "52:0-23" - } - ], - "usedExports": false, - "providedExports": [ - "warn", - "setWarningCallback", - "warnConditionallyRequiredProps", - "warnDeprecations", - "warnMutuallyExclusive" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "export * from './warn/warn';\nexport * from './warn/warnConditionallyRequiredProps';\nexport * from './warn/warnDeprecations';\nexport * from './warn/warnMutuallyExclusive';\n//# sourceMappingURL=warn.js.map" - }, - { - "id": "9Nap", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_toKey.js", - "name": "./node_modules/lodash/_toKey.js", - "index": 565, - "index2": 556, - "size": 523, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "issuerId": "S7Xf", - "issuerName": "./node_modules/lodash/_baseUnset.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S7Xf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "module": "./node_modules/lodash/_baseUnset.js", - "moduleName": "./node_modules/lodash/_baseUnset.js", - "type": "cjs require", - "userRequest": "./_toKey", - "loc": "4:12-31" - }, - { - "moduleId": "ZWtO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGet.js", - "module": "./node_modules/lodash/_baseGet.js", - "moduleName": "./node_modules/lodash/_baseGet.js", - "type": "cjs require", - "userRequest": "./_toKey", - "loc": "2:12-31" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var isSymbol = require('./isSymbol');\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/**\n * Converts `value` to a string key if it's not a string or symbol.\n *\n * @private\n * @param {*} value The value to inspect.\n * @returns {string|symbol} Returns the key.\n */\nfunction toKey(value) {\n if (typeof value == 'string' || isSymbol(value)) {\n return value;\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\nmodule.exports = toKey;\n" - }, - { - "id": "9QtL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFadedOverflowStyle.js", - "name": "./node_modules/@uifabric/styling/lib/styles/getFadedOverflowStyle.js", - "index": null, - "index2": null, - "size": 4740, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./getFadedOverflowStyle", - "loc": "14:0-40" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony export imported specifier", - "userRequest": "./getFadedOverflowStyle", - "loc": "14:0-40" - } - ], - "usedExports": false, - "providedExports": [ - "getFadedOverflowStyle" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "var DEFAULT_HEIGHT = '50%';\nvar DEFAULT_WIDTH = 20;\n/**\n * - Generates a style used to fade out an overflowing content by defining a style for an :after pseudo element.\n * - Apply it to the :after selector for all combination of states the parent of content might have (normal, hover,\n * selected, focus).\n * - Requires the target to have position set to relative and overflow set to hidden.\n *\n * @example\n * ```tsx\n * // Assuming the following DOM structure and the different background colors coming from\n * // the parent holding the content.\n *
\n * Overflown Content\n *
\n * ```\n * ```ts\n * // This is how the style set would look in Component.styles.ts\n * const { bodyBackground } = theme.semanticColors;\n * const { neutralLighter } = theme.palette;\n *\n * // The second argument of getFadedOverflowStyle function is a string representing a key of\n * // ISemanticColors or IPalette.\n *\n * const styles = {\n * parent: [\n * backgroundColor: bodyBackground,\n * selectors: {\n * '&:hover: {\n * backgroundColor: neutralLighter\n * },\n * '$content:after': {\n * ...getFadedOverflowStyle(theme, 'bodyBackground')\n * },\n * '&:hover $content:after': {\n * ...getFadedOverflowStyle(theme, 'neutralLighter')\n * }\n * }\n * ],\n * content: [\n * width: '100%',\n * display: 'inline-block',\n * position: 'relative',\n * overflow: 'hidden'\n * ]\n * }\n * ```\n * @param theme - The theme object to use.\n * @param color - The background color to fade out to. Accepts only keys of ISemanticColors or IPalette.\n * Defaults to 'bodyBackground'.\n * @param direction - The direction of the overflow. Defaults to horizontal.\n * @param width - The width of the fading overflow. Vertical direction defaults it to 100% vs 20px when horizontal.\n * @param height - The Height of the fading overflow. Vertical direction defaults it to 50% vs 100% when horizontal.\n * @returns The style object.\n */\nexport function getFadedOverflowStyle(theme, color, direction, width, height) {\n if (color === void 0) { color = 'bodyBackground'; }\n if (direction === void 0) { direction = 'horizontal'; }\n if (width === void 0) { width = getDefaultValue('width', direction); }\n if (height === void 0) { height = getDefaultValue('height', direction); }\n // Get the color value string from the theme semanticColors or palette.\n var colorValue = theme.semanticColors[color] || theme.palette[color];\n // Get the red, green, blue values of the colorValue.\n var rgbColor = color2rgb(colorValue);\n // Apply opacity 0 to serve as a start color of the gradient.\n var rgba = \"rgba(\" + rgbColor.r + \", \" + rgbColor.g + \", \" + rgbColor.b + \", 0)\";\n // Get the direction of the gradient. (mergeStyles takes care of RTL direction)\n var gradientDirection = direction === 'vertical' ? 'to bottom' : 'to right';\n return {\n content: '\"\"',\n position: 'absolute',\n right: 0,\n bottom: 0,\n width: width,\n height: height,\n pointerEvents: 'none',\n backgroundImage: \"linear-gradient(\" + gradientDirection + \", \" + rgba + \" 0%, \" + colorValue + \" 100%)\",\n };\n}\n// TODO consider moving this to a separate module along with some more color functions from OUFR/utilities.\n/**\n * Helper function to convert a string hex color to an RGB object.\n *\n * @param colorValue - Color to be converted from hex to rgba.\n */\nfunction color2rgb(colorValue) {\n if (colorValue[0] === '#') {\n // If it's a hex code\n return {\n r: parseInt(colorValue.slice(1, 3), 16),\n g: parseInt(colorValue.slice(3, 5), 16),\n b: parseInt(colorValue.slice(5, 7), 16),\n };\n }\n else if (colorValue.indexOf('rgba(') === 0) {\n // If it's an rgba color string\n colorValue = colorValue.match(/rgba\\(([^)]+)\\)/)[1];\n var parts = colorValue.split(/ *, */).map(Number);\n return {\n r: parts[0],\n g: parts[1],\n b: parts[2],\n };\n }\n // The only remaining possibility is transparent.\n return {\n r: 255,\n g: 255,\n b: 255,\n };\n}\n/**\n * Helper function to get the default values for parameters of main function.\n *\n * @param style - Which style to get the default value for.\n * @param direction - What direction to take into consideration.\n */\nfunction getDefaultValue(style, direction) {\n if (style === 'width') {\n return direction === 'horizontal' ? DEFAULT_WIDTH : '100%';\n }\n else {\n return direction === 'vertical' ? DEFAULT_HEIGHT : '100%';\n }\n}\n//# sourceMappingURL=getFadedOverflowStyle.js.map" - }, - { - "id": "9Rke", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "name": "./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js", - "index": null, - "index2": null, - "size": 101, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "itTX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../styles/DefaultPalette", - "loc": "2:0-58" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./DefaultPalette", - "loc": "2:0-50" - } - ], - "usedExports": false, - "providedExports": [ - "DefaultPalette" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export * from '@fluentui/theme/lib/colors/DefaultPalette';\n//# sourceMappingURL=DefaultPalette.js.map" - }, - { - "id": "9TXK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "index": null, - "index2": null, - "size": 7946, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "issuerId": "LDcz", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "q3RN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Nav.js", - "name": "./node_modules/office-ui-fabric-react/lib/Nav.js" - }, - { - "id": "w7f7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js" - }, - { - "id": "LDcz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Nav.styles", - "loc": "4:0-44" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "userRequest": "./Nav.styles", - "loc": "127:82-94" - }, - { - "moduleId": "LDcz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "type": "harmony side effect evaluation", - "userRequest": "./Nav.styles", - "loc": "3:0-41" - }, - { - "moduleId": "LDcz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "type": "harmony import specifier", - "userRequest": "./Nav.styles", - "loc": "4:33-42" - } - ], - "usedExports": false, - "providedExports": [ - "buttonStyles", - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { AnimationClassNames, getFocusStyle, ZIndexes, getGlobalClassNames, HighContrastSelector, FontWeights, } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Nav',\n linkText: 'ms-Nav-linkText',\n compositeLink: 'ms-Nav-compositeLink',\n link: 'ms-Nav-link',\n chevronButton: 'ms-Nav-chevronButton',\n chevronIcon: 'ms-Nav-chevron',\n navItem: 'ms-Nav-navItem',\n navItems: 'ms-Nav-navItems',\n group: 'ms-Nav-group',\n groupContent: 'ms-Nav-groupContent',\n};\nexport var buttonStyles = {\n textContainer: {\n overflow: 'hidden',\n },\n label: {\n whiteSpace: 'nowrap',\n textOverflow: 'ellipsis',\n overflow: 'hidden',\n },\n};\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, theme = props.theme, isOnTop = props.isOnTop, isExpanded = props.isExpanded, isGroup = props.isGroup, isLink = props.isLink, isSelected = props.isSelected, isDisabled = props.isDisabled, isButtonEntry = props.isButtonEntry, _b = props.navHeight, navHeight = _b === void 0 ? 44 : _b, position = props.position, _c = props.leftPadding, leftPadding = _c === void 0 ? 20 : _c, _d = props.leftPaddingExpanded, leftPaddingExpanded = _d === void 0 ? 28 : _d, _e = props.rightPadding, rightPadding = _e === void 0 ? 20 : _e;\n var palette = theme.palette, semanticColors = theme.semanticColors, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n className,\n fonts.medium,\n {\n overflowY: 'auto',\n userSelect: 'none',\n WebkitOverflowScrolling: 'touch',\n },\n isOnTop && [\n {\n position: 'absolute',\n },\n AnimationClassNames.slideRightIn40,\n ],\n ],\n linkText: [\n classNames.linkText,\n {\n margin: '0 4px',\n overflow: 'hidden',\n verticalAlign: 'middle',\n textAlign: 'left',\n textOverflow: 'ellipsis',\n },\n ],\n compositeLink: [\n classNames.compositeLink,\n {\n display: 'block',\n position: 'relative',\n color: semanticColors.bodyText,\n },\n isExpanded && 'is-expanded',\n isSelected && 'is-selected',\n isDisabled && 'is-disabled',\n isDisabled && {\n color: semanticColors.disabledText,\n },\n ],\n link: [\n classNames.link,\n getFocusStyle(theme),\n {\n display: 'block',\n position: 'relative',\n height: navHeight,\n width: '100%',\n lineHeight: navHeight + \"px\",\n textDecoration: 'none',\n cursor: 'pointer',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n paddingLeft: leftPadding,\n paddingRight: rightPadding,\n color: semanticColors.bodyText,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n border: 0,\n selectors: {\n ':focus': {\n border: '1px solid WindowText',\n },\n },\n },\n _a),\n },\n !isDisabled && {\n selectors: {\n '.ms-Nav-compositeLink:hover &': {\n backgroundColor: semanticColors.bodyBackgroundHovered,\n },\n },\n },\n isSelected && {\n color: semanticColors.bodyTextChecked,\n fontWeight: FontWeights.semibold,\n backgroundColor: semanticColors.bodyBackgroundChecked,\n selectors: {\n '&:after': {\n borderLeft: \"2px solid \" + palette.themePrimary,\n content: '\"\"',\n position: 'absolute',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n pointerEvents: 'none',\n },\n },\n },\n isDisabled && {\n color: semanticColors.disabledText,\n },\n isButtonEntry && {\n color: palette.themePrimary,\n },\n ],\n chevronButton: [\n classNames.chevronButton,\n getFocusStyle(theme),\n fonts.small,\n {\n display: 'block',\n textAlign: 'left',\n lineHeight: navHeight + \"px\",\n margin: '5px 0',\n padding: \"0px, \" + rightPadding + \"px, 0px, \" + leftPaddingExpanded + \"px\",\n border: 'none',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n cursor: 'pointer',\n color: semanticColors.bodyText,\n backgroundColor: 'transparent',\n selectors: {\n '&:visited': {\n color: semanticColors.bodyText,\n },\n },\n },\n isGroup && {\n fontSize: fonts.large.fontSize,\n width: '100%',\n height: navHeight,\n borderBottom: \"1px solid \" + semanticColors.bodyDivider,\n },\n isLink && {\n display: 'block',\n width: leftPaddingExpanded - 2,\n height: navHeight - 2,\n position: 'absolute',\n top: '1px',\n left: position + \"px\",\n zIndex: ZIndexes.Nav,\n padding: 0,\n margin: 0,\n },\n isSelected && {\n color: palette.themePrimary,\n backgroundColor: palette.neutralLighterAlt,\n selectors: {\n '&:after': {\n borderLeft: \"2px solid \" + palette.themePrimary,\n content: '\"\"',\n position: 'absolute',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n pointerEvents: 'none',\n },\n },\n },\n ],\n chevronIcon: [\n classNames.chevronIcon,\n {\n position: 'absolute',\n left: '8px',\n height: navHeight,\n lineHeight: navHeight + \"px\",\n fontSize: fonts.small.fontSize,\n transition: 'transform .1s linear',\n },\n isExpanded && {\n transform: 'rotate(-180deg)',\n },\n isLink && {\n top: 0,\n },\n ],\n navItem: [\n classNames.navItem,\n {\n padding: 0,\n },\n ],\n navItems: [\n classNames.navItems,\n {\n listStyleType: 'none',\n padding: 0,\n margin: 0,\n },\n ],\n group: [classNames.group, isExpanded && 'is-expanded'],\n groupContent: [\n classNames.groupContent,\n {\n display: 'none',\n marginBottom: '40px',\n },\n AnimationClassNames.slideDownIn20,\n isExpanded && {\n display: 'block',\n },\n ],\n };\n};\n//# sourceMappingURL=Nav.styles.js.map" - }, - { - "id": "9ggG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isKey.js", - "name": "./node_modules/lodash/_isKey.js", - "index": 555, - "index2": 548, - "size": 880, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "issuerId": "4uTw", - "issuerName": "./node_modules/lodash/_castPath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4uTw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "module": "./node_modules/lodash/_castPath.js", - "moduleName": "./node_modules/lodash/_castPath.js", - "type": "cjs require", - "userRequest": "./_isKey", - "loc": "2:12-31" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var isArray = require('./isArray'),\n isSymbol = require('./isSymbol');\n\n/** Used to match property names within property paths. */\nvar reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,\n reIsPlainProp = /^\\w*$/;\n\n/**\n * Checks if `value` is a property name and not a property path.\n *\n * @private\n * @param {*} value The value to check.\n * @param {Object} [object] The object to query keys on.\n * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n */\nfunction isKey(value, object) {\n if (isArray(value)) {\n return false;\n }\n var type = typeof value;\n if (type == 'number' || type == 'symbol' || type == 'boolean' ||\n value == null || isSymbol(value)) {\n return true;\n }\n return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||\n (object != null && value in Object(object));\n}\n\nmodule.exports = isKey;\n" - }, - { - "id": "9h5o", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "name": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "index": 43, - "index2": 45, - "size": 6177, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Divider/VerticalDivider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerCircle/ShimmerCircle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerGap/ShimmerGap.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerLine/ShimmerLine.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupFooter.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupShowAll.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/Persona.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRowCheck.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "11:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "11:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "12:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:38-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "17:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "18:20-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "21:20-38" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:20-38" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:20-38" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:20-38" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "23:20-38" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "3:20-38" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "15:28-46" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "12:20-38" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:20-38" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "12:20-38" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./classNamesFunction", - "loc": "15:0-37" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./classNamesFunction", - "loc": "15:0-37" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../../Utilities", - "loc": "65:28-46" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "58:28-46" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:20-38" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:20-38" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "5:20-38" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:20-38" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "4:20-38" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "7:20-38" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "6:20-38" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:20-38" - } - ], - "usedExports": [ - "classNamesFunction" - ], - "providedExports": [ - "classNamesFunction" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { mergeCssSets, Stylesheet, } from '@uifabric/merge-styles';\nimport { getRTL } from './rtl';\nimport { getWindow } from './dom';\nvar MAX_CACHE_COUNT = 50;\nvar DEFAULT_SPECIFICITY_MULTIPLIER = 5;\nvar _memoizedClassNames = 0;\nvar stylesheet = Stylesheet.getInstance();\nif (stylesheet && stylesheet.onReset) {\n stylesheet.onReset(function () { return _memoizedClassNames++; });\n}\n// Note that because of the caching nature within the classNames memoization,\n// I've disabled this rule to simply be able to work with any types.\n/* eslint-disable @typescript-eslint/no-explicit-any */\n// This represents a prop we attach to each Map to indicate the cached return value\n// associated with the graph node.\nvar retVal = '__retval__';\n/**\n * Creates a getClassNames function which calls getStyles given the props, and injects them\n * into mergeStyleSets.\n *\n * Note that the props you pass in on every render should be in the same order and\n * immutable (numbers, strings, and booleans). This will allow the results to be memoized. Violating\n * these will cause extra recalcs to occur.\n */\nexport function classNamesFunction(options) {\n // We build a trie where each node is a Map. The map entry key represents an argument\n // value, and the entry value is another node (Map). Each node has a `__retval__`\n // property which is used to hold the cached response.\n if (options === void 0) { options = {}; }\n // To derive the response, we can simply ensure the arguments are added or already\n // exist in the trie. At the last node, if there is a `__retval__` we return that. Otherwise\n // we call the `getStyles` api to evaluate, cache on the property, and return that.\n var map = new Map();\n var styleCalcCount = 0;\n var getClassNamesCount = 0;\n var currentMemoizedClassNames = _memoizedClassNames;\n var getClassNames = function (styleFunctionOrObject, styleProps) {\n if (styleProps === void 0) { styleProps = {}; }\n var _a, _b;\n // If useStaticStyles is true, styleFunctionOrObject returns slot to classname mappings.\n // If there is also no style overrides, we can skip merge styles completely and\n // simply return the result from the style funcion.\n if (options.useStaticStyles &&\n typeof styleFunctionOrObject === 'function' &&\n styleFunctionOrObject.__noStyleOverride__) {\n return styleFunctionOrObject(styleProps);\n }\n getClassNamesCount++;\n var current = map;\n var theme = styleProps.theme;\n var rtl = theme && theme.rtl !== undefined ? theme.rtl : getRTL();\n var disableCaching = options.disableCaching;\n // On reset of our stylesheet, reset memoized cache.\n if (currentMemoizedClassNames !== _memoizedClassNames) {\n currentMemoizedClassNames = _memoizedClassNames;\n map = new Map();\n styleCalcCount = 0;\n }\n if (!options.disableCaching) {\n current = _traverseMap(map, styleFunctionOrObject);\n current = _traverseMap(current, styleProps);\n }\n if (disableCaching || !current[retVal]) {\n if (styleFunctionOrObject === undefined) {\n current[retVal] = {};\n }\n else {\n current[retVal] = mergeCssSets([\n (typeof styleFunctionOrObject === 'function'\n ? styleFunctionOrObject(styleProps)\n : styleFunctionOrObject),\n ], { rtl: !!rtl, specificityMultiplier: options.useStaticStyles ? DEFAULT_SPECIFICITY_MULTIPLIER : undefined });\n }\n if (!disableCaching) {\n styleCalcCount++;\n }\n }\n if (styleCalcCount > (options.cacheSize || MAX_CACHE_COUNT)) {\n var win = getWindow();\n if ((_b = (_a = win) === null || _a === void 0 ? void 0 : _a.FabricConfig) === null || _b === void 0 ? void 0 : _b.enableClassNameCacheFullWarning) {\n // eslint-disable-next-line no-console\n console.warn(\"Styles are being recalculated too frequently. Cache miss rate is \" + styleCalcCount + \"/\" + getClassNamesCount + \".\");\n // eslint-disable-next-line no-console\n console.trace();\n }\n map.clear();\n styleCalcCount = 0;\n // Mutate the options passed in, that's all we can do.\n options.disableCaching = true;\n }\n // Note: the retVal is an attached property on the Map; not a key in the Map. We use this attached property to\n // cache the return value for this branch of the graph.\n return current[retVal];\n };\n return getClassNames;\n}\nfunction _traverseEdge(current, value) {\n value = _normalizeValue(value);\n if (!current.has(value)) {\n current.set(value, new Map());\n }\n return current.get(value);\n}\nfunction _traverseMap(current, inputs) {\n if (typeof inputs === 'function') {\n var cachedInputsFromStyled = inputs.__cachedInputs__;\n if (cachedInputsFromStyled) {\n // The styled helper will generate the styles function and will attach the cached\n // inputs (consisting of the default styles, customzied styles, and user provided styles.)\n // These should be used as cache keys for deriving the memoized value.\n for (var _i = 0, _a = inputs.__cachedInputs__; _i < _a.length; _i++) {\n var input = _a[_i];\n current = _traverseEdge(current, input);\n }\n }\n else {\n current = _traverseEdge(current, inputs);\n }\n }\n else if (typeof inputs === 'object') {\n for (var propName in inputs) {\n if (inputs.hasOwnProperty(propName)) {\n current = _traverseEdge(current, inputs[propName]);\n }\n }\n }\n return current;\n}\nfunction _normalizeValue(value) {\n switch (value) {\n case undefined:\n return '__undefined__';\n case null:\n return '__null__';\n default:\n return value;\n }\n}\n//# sourceMappingURL=classNamesFunction.js.map" - }, - { - "id": "9szA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Divider/index.js", - "index": null, - "index2": null, - "size": 68, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "issuerId": "0YjV", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "qMUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js" - }, - { - "id": "0YjV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0YjV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Divider/index", - "loc": "1:0-43" - }, - { - "moduleId": "0YjV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Divider.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Divider/index", - "loc": "1:0-43" - } - ], - "usedExports": false, - "providedExports": [ - "VerticalDivider" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 13, - "source": "export * from './VerticalDivider';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "9tXn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Positioning.js", - "name": "./node_modules/office-ui-fabric-react/lib/Positioning.js", - "index": null, - "index2": null, - "size": 86, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Positioning", - "loc": "60:0-30" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Positioning", - "loc": "60:0-30" - } - ], - "usedExports": false, - "providedExports": [ - "getBoundsFromTargetWindow", - "getMaxHeight", - "getOppositeEdge", - "positionCallout", - "positionCard", - "positionElement", - "RectangleEdge", - "Position" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './utilities/positioning/index';\n//# sourceMappingURL=Positioning.js.map" - }, - { - "id": "A90E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "name": "./node_modules/lodash/_baseKeys.js", - "index": 512, - "index2": 506, - "size": 776, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "issuerId": "7GkX", - "issuerName": "./node_modules/lodash/keys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "7GkX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "name": "./node_modules/lodash/keys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7GkX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "module": "./node_modules/lodash/keys.js", - "moduleName": "./node_modules/lodash/keys.js", - "type": "cjs require", - "userRequest": "./_baseKeys", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var isPrototype = require('./_isPrototype'),\n nativeKeys = require('./_nativeKeys');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeys(object) {\n if (!isPrototype(object)) {\n return nativeKeys(object);\n }\n var result = [];\n for (var key in Object(object)) {\n if (hasOwnProperty.call(object, key) && key != 'constructor') {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = baseKeys;\n" - }, - { - "id": "AL8m", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "index": null, - "index2": null, - "size": 14852, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "issuerId": "JPnG", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "DyGw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/Calendar.js" - }, - { - "id": "uyAb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/index.js" - }, - { - "id": "grUF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js" - }, - { - "id": "JPnG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalendarYear", - "loc": "8:0-46" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "userRequest": "./CalendarYear", - "loc": "144:40-52" - } - ], - "usedExports": false, - "providedExports": [ - "CalendarYear" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { KeyCodes, css, getRTL, format } from '../../Utilities';\nimport { FocusZone } from '../../FocusZone';\nimport * as stylesImport from './Calendar.scss';\nimport { Icon } from '../../Icon';\nvar styles = stylesImport;\nvar CELL_COUNT = 12;\nvar DefaultCalendarYearStrings = {\n prevRangeAriaLabel: undefined,\n nextRangeAriaLabel: undefined,\n};\nvar DefaultNavigationIcons = {\n leftNavigation: 'Up',\n rightNavigation: 'Down',\n closeIcon: 'CalculatorMultiply',\n};\nvar CalendarYearGridCell = /** @class */ (function (_super) {\n __extends(CalendarYearGridCell, _super);\n function CalendarYearGridCell() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._buttonRef = React.createRef();\n _this._onRenderYear = function () {\n var _a = _this.props, year = _a.year, onRenderYear = _a.onRenderYear;\n if (onRenderYear) {\n return onRenderYear(year);\n }\n return year;\n };\n _this._onClick = function () {\n if (_this.props.onSelectYear) {\n _this.props.onSelectYear(_this.props.year);\n }\n };\n _this._onKeyDown = function (ev) {\n if (_this.props.onSelectYear && ev.which === KeyCodes.enter) {\n _this.props.onSelectYear(_this.props.year);\n }\n };\n return _this;\n }\n CalendarYearGridCell.prototype.focus = function () {\n if (this._buttonRef.current) {\n this._buttonRef.current.focus();\n }\n };\n CalendarYearGridCell.prototype.render = function () {\n var _a;\n var _b = this.props, year = _b.year, selected = _b.selected, disabled = _b.disabled, onSelectYear = _b.onSelectYear;\n return (React.createElement(\"button\", { className: css('ms-DatePicker-yearOption', styles.yearOption, (_a = {},\n _a['ms-DatePicker-day--highlighted ' + styles.yearIsHighlighted] = selected,\n _a['ms-DatePicker-yearOption--disabled ' + styles.yearOptionIsDisabled] = disabled,\n _a)), type: \"button\", role: \"gridcell\", onClick: !disabled && onSelectYear ? this._onClick : undefined, onKeyDown: !disabled && onSelectYear ? this._onKeyDown : undefined, disabled: disabled, \"aria-label\": String(year), \"aria-selected\": selected, ref: this._buttonRef }, this._onRenderYear()));\n };\n return CalendarYearGridCell;\n}(React.Component));\nvar CalendarYearGrid = /** @class */ (function (_super) {\n __extends(CalendarYearGrid, _super);\n function CalendarYearGrid() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._selectedCellRef = React.createRef();\n _this._currentCellRef = React.createRef();\n _this._renderCell = function (year) {\n var selected = year === _this.props.selectedYear;\n var _a = _this.props, minYear = _a.minYear, maxYear = _a.maxYear, onSelectYear = _a.onSelectYear;\n var disabled = (minYear !== undefined && year < minYear) || (maxYear !== undefined && year > maxYear);\n var current = year === new Date().getFullYear();\n return (React.createElement(CalendarYearGridCell, { key: year, year: year, selected: selected, current: current, disabled: disabled, onSelectYear: onSelectYear, ref: selected ? _this._selectedCellRef : current ? _this._currentCellRef : undefined }));\n };\n return _this;\n }\n CalendarYearGrid.prototype.focus = function () {\n if (this._selectedCellRef.current) {\n this._selectedCellRef.current.focus();\n }\n else if (this._currentCellRef.current) {\n this._currentCellRef.current.focus();\n }\n };\n CalendarYearGrid.prototype.render = function () {\n var _a = this.props, fromYear = _a.fromYear, toYear = _a.toYear;\n var year = fromYear;\n var cells = [];\n while (year <= toYear) {\n cells.push(this._renderCell(year));\n year++;\n }\n return (React.createElement(FocusZone, null,\n React.createElement(\"div\", { className: css('ms-DatePicker-optionGrid', styles.optionGrid), role: \"grid\" },\n React.createElement(\"div\", { role: \"row\" }, cells))));\n };\n return CalendarYearGrid;\n}(React.Component));\nvar CalendarYearNavPrev = /** @class */ (function (_super) {\n __extends(CalendarYearNavPrev, _super);\n function CalendarYearNavPrev() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onSelectPrev = function () {\n if (!_this.isDisabled && _this.props.onSelectPrev) {\n _this.props.onSelectPrev();\n }\n };\n _this._onKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter) {\n _this._onSelectPrev();\n }\n };\n return _this;\n }\n CalendarYearNavPrev.prototype.render = function () {\n var _a;\n var iconStrings = this.props.navigationIcons || DefaultNavigationIcons;\n var strings = this.props.strings || DefaultCalendarYearStrings;\n var prevRangeAriaLabel = strings.prevRangeAriaLabel;\n var prevRange = { fromYear: this.props.fromYear - CELL_COUNT, toYear: this.props.toYear - CELL_COUNT };\n var prevAriaLabel = prevRangeAriaLabel\n ? typeof prevRangeAriaLabel === 'string'\n ? prevRangeAriaLabel\n : prevRangeAriaLabel(prevRange)\n : undefined;\n var disabled = this.isDisabled;\n var onSelectPrev = this.props.onSelectPrev;\n return (React.createElement(\"button\", { className: css('ms-DatePicker-prevDecade', styles.prevDecade, (_a = {},\n _a['ms-DatePicker-prevDecade--disabled ' + styles.prevDecadeIsDisabled] = disabled,\n _a)), onClick: !disabled && onSelectPrev ? this._onSelectPrev : undefined, onKeyDown: !disabled && onSelectPrev ? this._onKeyDown : undefined, type: \"button\", tabIndex: 0, title: prevAriaLabel, disabled: disabled },\n React.createElement(Icon, { iconName: getRTL() ? iconStrings.rightNavigation : iconStrings.leftNavigation })));\n };\n Object.defineProperty(CalendarYearNavPrev.prototype, \"isDisabled\", {\n get: function () {\n var minYear = this.props.minYear;\n return minYear !== undefined && this.props.fromYear < minYear;\n },\n enumerable: true,\n configurable: true\n });\n return CalendarYearNavPrev;\n}(React.Component));\nvar CalendarYearNavNext = /** @class */ (function (_super) {\n __extends(CalendarYearNavNext, _super);\n function CalendarYearNavNext() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onSelectNext = function () {\n if (!_this.isDisabled && _this.props.onSelectNext) {\n _this.props.onSelectNext();\n }\n };\n _this._onKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter) {\n _this._onSelectNext();\n }\n };\n return _this;\n }\n CalendarYearNavNext.prototype.render = function () {\n var _a;\n var iconStrings = this.props.navigationIcons || DefaultNavigationIcons;\n var strings = this.props.strings || DefaultCalendarYearStrings;\n var nextRangeAriaLabel = strings.nextRangeAriaLabel;\n var nextRange = { fromYear: this.props.fromYear + CELL_COUNT, toYear: this.props.toYear + CELL_COUNT };\n var nextAriaLabel = nextRangeAriaLabel\n ? typeof nextRangeAriaLabel === 'string'\n ? nextRangeAriaLabel\n : nextRangeAriaLabel(nextRange)\n : undefined;\n var onSelectNext = this.props.onSelectNext;\n var disabled = this.isDisabled;\n return (React.createElement(\"button\", { className: css('ms-DatePicker-nextDecade', styles.nextDecade, (_a = {},\n _a['ms-DatePicker-nextDecade--disabled ' + styles.nextDecadeIsDisabled] = disabled,\n _a)), onClick: !disabled && onSelectNext ? this._onSelectNext : undefined, onKeyDown: !disabled && onSelectNext ? this._onKeyDown : undefined, type: \"button\", tabIndex: 0, title: nextAriaLabel, disabled: this.isDisabled },\n React.createElement(Icon, { iconName: getRTL() ? iconStrings.leftNavigation : iconStrings.rightNavigation })));\n };\n Object.defineProperty(CalendarYearNavNext.prototype, \"isDisabled\", {\n get: function () {\n var maxYear = this.props.maxYear;\n return maxYear !== undefined && this.props.fromYear + CELL_COUNT > maxYear;\n },\n enumerable: true,\n configurable: true\n });\n return CalendarYearNavNext;\n}(React.Component));\nvar CalendarYearNav = /** @class */ (function (_super) {\n __extends(CalendarYearNav, _super);\n function CalendarYearNav() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n CalendarYearNav.prototype.render = function () {\n return (React.createElement(\"div\", { className: css('ms-DatePicker-decadeComponents', styles.decadeComponents) },\n React.createElement(\"div\", { className: css('ms-DatePicker-navContainer', styles.navContainer) },\n React.createElement(CalendarYearNavPrev, __assign({}, this.props)),\n React.createElement(CalendarYearNavNext, __assign({}, this.props)))));\n };\n return CalendarYearNav;\n}(React.Component));\nvar CalendarYearTitle = /** @class */ (function (_super) {\n __extends(CalendarYearTitle, _super);\n function CalendarYearTitle() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onHeaderSelect = function () {\n if (_this.props.onHeaderSelect) {\n _this.props.onHeaderSelect(true);\n }\n };\n _this._onHeaderKeyDown = function (ev) {\n if (_this.props.onHeaderSelect && (ev.which === KeyCodes.enter || ev.which === KeyCodes.space)) {\n _this.props.onHeaderSelect(true);\n }\n };\n _this._onRenderYear = function (year) {\n if (_this.props.onRenderYear) {\n return _this.props.onRenderYear(year);\n }\n return year;\n };\n return _this;\n }\n CalendarYearTitle.prototype.render = function () {\n var _a = this.props, fromYear = _a.fromYear, toYear = _a.toYear, onHeaderSelect = _a.onHeaderSelect;\n if (onHeaderSelect) {\n var strings = this.props.strings || DefaultCalendarYearStrings;\n var rangeAriaLabel = strings.rangeAriaLabel;\n var currentDateRange = rangeAriaLabel\n ? typeof rangeAriaLabel === 'string'\n ? rangeAriaLabel\n : rangeAriaLabel(this.props)\n : undefined;\n var ariaLabel = strings.headerAriaLabelFormatString\n ? format(strings.headerAriaLabelFormatString, currentDateRange)\n : currentDateRange;\n return (React.createElement(\"div\", { className: css('ms-DatePicker-currentDecade js-showYearPicker', styles.currentDecade, styles.headerToggleView), onClick: this._onHeaderSelect, onKeyDown: this._onHeaderKeyDown, \"aria-label\": ariaLabel, role: \"button\", \"aria-atomic\": true, \"aria-live\": \"polite\", tabIndex: 0 },\n this._onRenderYear(fromYear),\n \" - \",\n this._onRenderYear(toYear)));\n }\n return (React.createElement(\"div\", { className: css('ms-DatePicker-currentDecade js-showYearPicker', styles.currentDecade) },\n this._onRenderYear(fromYear),\n \" - \",\n this._onRenderYear(toYear)));\n };\n return CalendarYearTitle;\n}(React.Component));\nvar CalendarYearHeader = /** @class */ (function (_super) {\n __extends(CalendarYearHeader, _super);\n function CalendarYearHeader() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onRenderTitle = function () {\n if (_this.props.onRenderTitle) {\n return _this.props.onRenderTitle(_this.props);\n }\n return React.createElement(CalendarYearTitle, __assign({}, _this.props));\n };\n _this._onRenderNav = function () {\n return React.createElement(CalendarYearNav, __assign({}, _this.props));\n };\n return _this;\n }\n CalendarYearHeader.prototype.render = function () {\n return (React.createElement(\"div\", { className: css('ms-DatePicker-header', styles.header) },\n this._onRenderTitle(),\n this._onRenderNav()));\n };\n return CalendarYearHeader;\n}(React.Component));\nvar CalendarYear = /** @class */ (function (_super) {\n __extends(CalendarYear, _super);\n function CalendarYear(props) {\n var _this = _super.call(this, props) || this;\n _this._gridRef = React.createRef();\n _this._onNavNext = function () {\n _this.setState({ fromYear: _this.state.fromYear + CELL_COUNT });\n };\n _this._onNavPrev = function () {\n _this.setState({ fromYear: _this.state.fromYear - CELL_COUNT });\n };\n _this._renderHeader = function () {\n return (React.createElement(CalendarYearHeader, __assign({}, _this.props, { fromYear: _this.state.fromYear, toYear: _this.state.fromYear + CELL_COUNT - 1, onSelectPrev: _this._onNavPrev, onSelectNext: _this._onNavNext })));\n };\n _this._renderGrid = function () {\n return (React.createElement(CalendarYearGrid, __assign({}, _this.props, { fromYear: _this.state.fromYear, toYear: _this.state.fromYear + CELL_COUNT - 1, ref: _this._gridRef })));\n };\n _this.state = _this._calculateInitialStateFromProps(props);\n return _this;\n }\n CalendarYear.prototype.focus = function () {\n if (this._gridRef.current) {\n this._gridRef.current.focus();\n }\n };\n CalendarYear.prototype.render = function () {\n return (React.createElement(\"div\", { className: css('ms-DatePicker-yearPicker', styles.yearPicker) },\n this._renderHeader(),\n this._renderGrid()));\n };\n CalendarYear.prototype._calculateInitialStateFromProps = function (props) {\n var selectedYear = props.selectedYear, navigatedYear = props.navigatedYear;\n var rangeYear = selectedYear || navigatedYear || new Date().getFullYear();\n var fromYear = Math.floor(rangeYear / 10) * 10;\n return {\n fromYear: fromYear,\n navigatedYear: navigatedYear,\n selectedYear: selectedYear,\n };\n };\n return CalendarYear;\n}(React.Component));\nexport { CalendarYear };\n//# sourceMappingURL=CalendarYear.js.map" - }, - { - "id": "AP2z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getRawTag.js", - "name": "./node_modules/lodash/_getRawTag.js", - "index": 468, - "index2": 454, - "size": 1139, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "issuerId": "NykK", - "issuerName": "./node_modules/lodash/_baseGetTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NykK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "module": "./node_modules/lodash/_baseGetTag.js", - "moduleName": "./node_modules/lodash/_baseGetTag.js", - "type": "cjs require", - "userRequest": "./_getRawTag", - "loc": "2:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var Symbol = require('./_Symbol');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/** Built-in value references. */\nvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n/**\n * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the raw `toStringTag`.\n */\nfunction getRawTag(value) {\n var isOwn = hasOwnProperty.call(value, symToStringTag),\n tag = value[symToStringTag];\n\n try {\n value[symToStringTag] = undefined;\n var unmasked = true;\n } catch (e) {}\n\n var result = nativeObjectToString.call(value);\n if (unmasked) {\n if (isOwn) {\n value[symToStringTag] = tag;\n } else {\n delete value[symToStringTag];\n }\n }\n return result;\n}\n\nmodule.exports = getRawTag;\n" - }, - { - "id": "AnrA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Slider.js", - "name": "./node_modules/office-ui-fabric-react/lib/Slider.js", - "index": null, - "index2": null, - "size": 77, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Slider", - "loc": "73:0-25" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Slider", - "loc": "73:0-25" - } - ], - "usedExports": false, - "providedExports": [ - "Slider", - "ONKEYDOWN_TIMEOUT_DURATION", - "SliderBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Slider/index';\n//# sourceMappingURL=Slider.js.map" - }, - { - "id": "AsHc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "index": null, - "index2": null, - "size": 58, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Popup.js", - "issuerId": "JiuB", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Popup.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "JiuB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Popup.js", - "name": "./node_modules/office-ui-fabric-react/lib/Popup.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "JiuB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Popup.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Popup/index", - "loc": "1:0-41" - }, - { - "moduleId": "JiuB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Popup.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Popup/index", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Popup/index", - "loc": "8:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "Popup" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './Popup';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Ata1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "index": 250, - "index2": 235, - "size": 7235, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "5:0-86" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "11:28-48" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "4:0-86" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "8:28-48" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "5:0-86" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "10:32-52" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "4:0-86" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../SplitButton/SplitButton.styles", - "loc": "10:28-48" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, concatStyleSets, getFocusStyle, getHighContrastNoAdjustStyle, } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;\n var effects = theme.effects, palette = theme.palette, semanticColors = theme.semanticColors;\n var buttonHighContrastFocus = {\n left: -2,\n top: -2,\n bottom: -2,\n right: -2,\n border: 'none',\n };\n var splitButtonDividerBaseStyles = {\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8,\n };\n var splitButtonStyles = {\n splitButtonContainer: [\n getFocusStyle(theme, { highContrastStyle: buttonHighContrastFocus, inset: 2 }),\n {\n display: 'inline-flex',\n selectors: {\n '.ms-Button--default': {\n borderTopRightRadius: '0',\n borderBottomRightRadius: '0',\n borderRight: 'none',\n },\n '.ms-Button--primary': {\n borderTopRightRadius: '0',\n borderBottomRightRadius: '0',\n border: 'none',\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'WindowText', backgroundColor: 'Window', border: '1px solid WindowText', borderRightWidth: '0' }, getHighContrastNoAdjustStyle()),\n _a),\n },\n '.ms-Button--primary + .ms-Button': {\n border: 'none',\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n border: '1px solid WindowText',\n borderLeftWidth: '0',\n },\n _b),\n },\n },\n },\n ],\n splitButtonContainerHovered: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'Highlight',\n },\n _c),\n },\n '.ms-Button.is-disabled': {\n color: semanticColors.buttonTextDisabled,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _d),\n },\n },\n },\n splitButtonContainerChecked: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_e = {},\n _e[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _e),\n },\n },\n },\n splitButtonContainerCheckedHovered: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_f = {},\n _f[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _f),\n },\n },\n },\n splitButtonContainerFocused: {\n outline: 'none!important',\n },\n splitButtonMenuButton: (_g = {\n padding: 6,\n height: 'auto',\n boxSizing: 'border-box',\n borderRadius: 0,\n borderTopRightRadius: effects.roundedCorner2,\n borderBottomRightRadius: effects.roundedCorner2,\n border: \"1px solid \" + palette.neutralSecondaryAlt,\n borderLeft: 'none',\n outline: 'transparent',\n userSelect: 'none',\n display: 'inline-block',\n textDecoration: 'none',\n textAlign: 'center',\n cursor: 'pointer',\n verticalAlign: 'top',\n width: 32,\n marginLeft: -1,\n marginTop: 0,\n marginRight: 0,\n marginBottom: 0\n },\n _g[HighContrastSelector] = {\n '.ms-Button-menuIcon': {\n color: 'WindowText',\n },\n },\n _g),\n splitButtonDivider: __assign(__assign({}, splitButtonDividerBaseStyles), { selectors: (_h = {},\n _h[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n },\n _h) }),\n splitButtonDividerDisabled: __assign(__assign({}, splitButtonDividerBaseStyles), { selectors: (_j = {},\n _j[HighContrastSelector] = {\n backgroundColor: 'GrayText',\n },\n _j) }),\n splitButtonMenuButtonDisabled: {\n pointerEvents: 'none',\n border: 'none',\n selectors: (_k = {\n ':hover': {\n cursor: 'default',\n },\n '.ms-Button--primary': {\n selectors: (_l = {},\n _l[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _l),\n },\n '.ms-Button-menuIcon': {\n selectors: (_m = {},\n _m[HighContrastSelector] = {\n color: 'GrayText',\n },\n _m),\n }\n },\n _k[HighContrastSelector] = {\n color: 'GrayText',\n border: '1px solid GrayText',\n backgroundColor: 'Window',\n },\n _k),\n },\n splitButtonFlexContainer: {\n display: 'flex',\n height: '100%',\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'center',\n },\n splitButtonContainerDisabled: {\n outline: 'none',\n border: 'none',\n selectors: (_o = {},\n _o[HighContrastSelector] = __assign({ color: 'GrayText', borderColor: 'GrayText', backgroundColor: 'Window' }, getHighContrastNoAdjustStyle()),\n _o),\n },\n splitButtonMenuFocused: __assign({}, getFocusStyle(theme, { highContrastStyle: buttonHighContrastFocus, inset: 2 })),\n };\n return concatStyleSets(splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=SplitButton.styles.js.map" - }, - { - "id": "AudO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "index": null, - "index2": null, - "size": 346, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerId": "7hkT", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardActivity", - "loc": "4:0-39" - }, - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DocumentCardActivity", - "loc": "4:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardActivity" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { DocumentCardActivityBase } from './DocumentCardActivity.base';\nimport { getStyles } from './DocumentCardActivity.styles';\nexport var DocumentCardActivity = styled(DocumentCardActivityBase, getStyles, undefined, { scope: 'DocumentCardActivity' });\n//# sourceMappingURL=DocumentCardActivity.js.map" - }, - { - "id": "AzAN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "name": "./node_modules/@uifabric/foundation/lib/ThemeProvider.js", - "index": null, - "index2": null, - "size": 1173, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "issuerId": "1ptM", - "issuerName": "./node_modules/@uifabric/foundation/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - }, - { - "id": "MObJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js" - }, - { - "id": "7Rmr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "name": "./node_modules/office-ui-fabric-react/lib/Foundation.js" - }, - { - "id": "1ptM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "name": "./node_modules/@uifabric/foundation/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1ptM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "module": "./node_modules/@uifabric/foundation/lib/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ThemeProvider", - "loc": "3:0-32" - }, - { - "moduleId": "1ptM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "module": "./node_modules/@uifabric/foundation/lib/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ThemeProvider", - "loc": "3:0-32" - } - ], - "usedExports": false, - "providedExports": [ - "ThemeProvider" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "import { __assign, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { getThemedContext } from '@uifabric/styling';\nimport { Customizer } from '@uifabric/utilities';\n/**\n * Theme provider is a simplified version of Customizer that activates the appropriate theme data\n * for a given scheme name.\n *\n * @param providers - Injected providers for accessing theme data and providing it via a Customizer component.\n */\nexport var ThemeProvider = function (props) {\n var scheme = props.scheme, theme = props.theme, rest = __rest(props, [\"scheme\", \"theme\"]);\n // TODO: consider merging implementation with theme-proto, which only stores a reference / scheme name to theme\n // in context and uses quick global store accessor to trigger change by passing in theme object as child and\n // triggering re-render. (perf benefits need verification)\n var contextTransform = function (context) {\n return getThemedContext(context, scheme, theme);\n };\n // eslint-disable-next-line react/jsx-no-bind\n return React.createElement(Customizer, __assign({}, rest, { contextTransform: contextTransform }));\n};\n//# sourceMappingURL=ThemeProvider.js.map" - }, - { - "id": "B/Op", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js", - "index": 133, - "index2": 120, - "size": 627, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerId": "mI+f", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "yI02", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/Coachmark.js" - }, - { - "id": "bATe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js" - }, - { - "id": "y19T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js" - }, - { - "id": "Sbs+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js" - }, - { - "id": "wuZE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning.js" - }, - { - "id": "mI+f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "11:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "12:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "13:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "14:7-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "143:54-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "146:56-69" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "284:30-38" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "300:30-38" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "339:23-31" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "./positioning.types", - "loc": "5:0-53" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "16:58-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "16:77-90" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "17:56-69" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "18:59-72" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "18:78-91" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "19:58-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "20:61-74" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "20:83-96" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "21:59-72" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "22:62-75" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "22:84-97" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "23:61-74" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "24:58-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "24:78-91" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "25:57-70" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "26:61-74" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "26:81-94" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "27:59-72" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "27:80-93" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "28:58-71" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "29:62-75" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "29:83-96" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "53:25-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "56:25-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "59:25-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "62:25-38" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "67:16-29" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "70:9-22" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "149:8-21" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "150:8-21" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "151:8-21" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "152:8-21" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "292:17-30" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "292:47-60" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "294:26-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "295:26-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "300:26-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "301:26-39" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "328:28-41" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "334:16-29" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "412:16-29" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "413:16-29" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "476:32-45" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "476:67-80" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "497:19-32" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./positioning.types", - "loc": "500:24-37" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "17:7-20" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "18:7-20" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "19:7-20" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "20:7-20" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "68:21-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "69:21-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "77:48-61" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "87:49-62" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "97:21-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "98:21-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "106:48-61" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "116:49-62" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "193:23-36" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "5:52-60" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "39:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "41:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "43:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "45:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "54:13-21" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "55:13-21" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./positioning.types", - "loc": "2:0-36" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning.types", - "loc": "2:0-36" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "16:162-175" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "19:26-39" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "19:61-74" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "32:17-30" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "39:17-30" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "45:17-30" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "51:17-30" - } - ], - "usedExports": [ - "RectangleEdge" - ], - "providedExports": [ - "RectangleEdge", - "Position" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var RectangleEdge;\n(function (RectangleEdge) {\n RectangleEdge[RectangleEdge[\"top\"] = 1] = \"top\";\n RectangleEdge[RectangleEdge[\"bottom\"] = -1] = \"bottom\";\n RectangleEdge[RectangleEdge[\"left\"] = 2] = \"left\";\n RectangleEdge[RectangleEdge[\"right\"] = -2] = \"right\";\n})(RectangleEdge || (RectangleEdge = {}));\nexport var Position;\n(function (Position) {\n Position[Position[\"top\"] = 0] = \"top\";\n Position[Position[\"bottom\"] = 1] = \"bottom\";\n Position[Position[\"start\"] = 2] = \"start\";\n Position[Position[\"end\"] = 3] = \"end\";\n})(Position || (Position = {}));\n//# sourceMappingURL=positioning.types.js.map" - }, - { - "id": "B2jj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "index": 127, - "index2": 185, - "size": 119, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../collectionColorField", - "loc": "73:0-63" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../collectionColorField", - "loc": "489:43-63" - } - ], - "usedExports": [ - "CollectionColorField" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 8, - "source": "export * from \"./ICollectionColorFieldProps\";\nexport * from \"./CollectionColorField\";\n//# sourceMappingURL=index.js.map" - }, - { - "id": "B3ms", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DatePicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/DatePicker.js", - "index": null, - "index2": null, - "size": 85, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DatePicker", - "loc": "19:0-29" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DatePicker", - "loc": "19:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "DatePicker", - "DatePickerBase", - "DayOfWeek", - "DateRangeType", - "FirstWeekOfYear" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/DatePicker/index';\n//# sourceMappingURL=DatePicker.js.map" - }, - { - "id": "B6sm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "index": null, - "index2": null, - "size": 1200, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "issuerId": "cSUL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "cSUL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "cSUL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardLocation.base", - "loc": "2:0-71" - }, - { - "moduleId": "cSUL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardLocation.base", - "loc": "4:41-65" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardLocationBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef } from '../../Utilities';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory DocumentCard}\n */\nvar DocumentCardLocationBase = /** @class */ (function (_super) {\n __extends(DocumentCardLocationBase, _super);\n function DocumentCardLocationBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n return _this;\n }\n DocumentCardLocationBase.prototype.render = function () {\n var _a = this.props, location = _a.location, locationHref = _a.locationHref, ariaLabel = _a.ariaLabel, onClick = _a.onClick, styles = _a.styles, theme = _a.theme, className = _a.className;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n });\n return (React.createElement(\"a\", { className: this._classNames.root, href: locationHref, onClick: onClick, \"aria-label\": ariaLabel }, location));\n };\n return DocumentCardLocationBase;\n}(React.Component));\nexport { DocumentCardLocationBase };\n//# sourceMappingURL=DocumentCardLocation.base.js.map" - }, - { - "id": "B8du", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/stubFalse.js", - "name": "./node_modules/lodash/stubFalse.js", - "index": 505, - "index2": 494, - "size": 280, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "issuerId": "DSRE", - "issuerName": "./node_modules/lodash/isBuffer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - }, - { - "id": "DSRE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "name": "./node_modules/lodash/isBuffer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "DSRE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "module": "./node_modules/lodash/isBuffer.js", - "moduleName": "./node_modules/lodash/isBuffer.js", - "type": "cjs require", - "userRequest": "./stubFalse", - "loc": "2:16-38" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * This method returns `false`.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {boolean} Returns `false`.\n * @example\n *\n * _.times(2, _.stubFalse);\n * // => [false, false]\n */\nfunction stubFalse() {\n return false;\n}\n\nmodule.exports = stubFalse;\n" - }, - { - "id": "BZ1n", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "index": null, - "index2": null, - "size": 147, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "63:0-76" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "52:0-76" - }, - { - "moduleId": "hG+n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/TextField.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/TextField/index", - "loc": "1:0-45" - }, - { - "moduleId": "hG+n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/TextField.js", - "type": "harmony export imported specifier", - "userRequest": "./components/TextField/index", - "loc": "1:0-45" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "3:0-76" - } - ], - "usedExports": false, - "providedExports": [ - "TextField", - "TextFieldBase", - "DEFAULT_MASK_CHAR", - "MaskedTextField" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 2, - "source": "export * from './TextField';\nexport * from './TextField.base';\nexport * from './MaskedTextField/MaskedTextField';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "index": 847, - "index2": 884, - "size": 215, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "issuerId": "4f4p", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4f4p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/sitePicker/index", - "loc": "1:0-50" - }, - { - "moduleId": "4f4p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/sitePicker/index", - "loc": "1:0-50" - } - ], - "usedExports": [ - "PropertyFieldSitePicker" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './PropertyFieldSitePicker';\nexport * from './IPropertyFieldSitePicker';\nexport * from './PropertyFieldSitePickerHost';\nexport * from './IPropertyFieldSitePickerHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "BiGR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isFlattenable.js", - "name": "./node_modules/lodash/_isFlattenable.js", - "index": 572, - "index2": 563, - "size": 608, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "issuerId": "XGnz", - "issuerName": "./node_modules/lodash/_baseFlatten.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - }, - { - "id": "TYy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/flatten.js", - "name": "./node_modules/lodash/flatten.js" - }, - { - "id": "XGnz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "name": "./node_modules/lodash/_baseFlatten.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "XGnz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "module": "./node_modules/lodash/_baseFlatten.js", - "moduleName": "./node_modules/lodash/_baseFlatten.js", - "type": "cjs require", - "userRequest": "./_isFlattenable", - "loc": "2:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var Symbol = require('./_Symbol'),\n isArguments = require('./isArguments'),\n isArray = require('./isArray');\n\n/** Built-in value references. */\nvar spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined;\n\n/**\n * Checks if `value` is a flattenable `arguments` object or array.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.\n */\nfunction isFlattenable(value) {\n return isArray(value) || isArguments(value) ||\n !!(spreadableSymbol && value && value[spreadableSymbol]);\n}\n\nmodule.exports = isFlattenable;\n" - }, - { - "id": "BlmN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/office-ui-fabric-react/lib/Spinner.js", - "index": null, - "index2": null, - "size": 79, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Spinner", - "loc": "75:0-26" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Spinner", - "loc": "75:0-26" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Spinner", - "loc": "5:0-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Spinner", - "loc": "8:0-40" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Spinner", - "loc": "64:0-74" - } - ], - "usedExports": false, - "providedExports": [ - "Spinner", - "SpinnerBase", - "SpinnerSize", - "SpinnerType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Spinner/index';\n//# sourceMappingURL=Spinner.js.map" - }, - { - "id": "Bmj4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "index": null, - "index2": null, - "size": 2033, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useTarget", - "loc": "15:0-28" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useTarget", - "loc": "15:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "useTarget" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getDocument } from '@uifabric/utilities';\nimport * as React from 'react';\nimport { useWindow } from '@fluentui/react-window-provider';\n/**\n * Hook to calculate and cache the target element specified by the given target attribute,\n * as well as the target element's (or host element's) parent window\n * @param target- Target selector passed to the component as a property, describing the element that\n * the callout should target\n * @param hostElement- The callout's host element, used for determining the parent window.\n */\nexport function useTarget(target, hostElement) {\n var _a;\n var previousTargetProp = React.useRef();\n var targetRef = React.useRef(null);\n /**\n * Stores an instance of Window, used to check\n * for server side rendering and if focus was lost.\n */\n var targetWindow = useWindow();\n // If the target element changed, find the new one. If we are tracking\n // target with class name, always find element because we do not know if\n // fabric has rendered a new element and disposed the old element.\n if (!target || target !== previousTargetProp.current || typeof target === 'string') {\n var currentElement = (_a = hostElement) === null || _a === void 0 ? void 0 : _a.current;\n if (target) {\n if (typeof target === 'string') {\n var currentDoc = getDocument(currentElement);\n targetRef.current = currentDoc ? currentDoc.querySelector(target) : null;\n }\n else if ('stopPropagation' in target) {\n targetRef.current = target;\n }\n else if ('getBoundingClientRect' in target) {\n targetRef.current = target;\n }\n else if ('current' in target) {\n targetRef.current = target.current;\n }\n else {\n targetRef.current = target;\n }\n }\n previousTargetProp.current = target;\n }\n return [targetRef, targetWindow];\n}\n//# sourceMappingURL=useTarget.js.map" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "index": null, - "index2": null, - "size": 93, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../ContextualMenu", - "loc": "6:0-54" - } - ], - "usedExports": false, - "providedExports": [ - "ContextualMenu", - "getSubmenuItems", - "canAnyMenuItemsCheck", - "ContextualMenuBase", - "DirectionalHint", - "ContextualMenuItemType", - "ContextualMenuItem", - "ContextualMenuItemBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "export * from './components/ContextualMenu/index';\n//# sourceMappingURL=ContextualMenu.js.map" - }, - { - "id": "CBcM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "index": 222, - "index2": 207, - "size": 51302, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "156:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "181:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "294:687-696" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "467:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "564:65-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "766:32-41" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "85:36-45" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "264:32-41" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "88:36-45" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "104:36-45" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "181:32-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "499:32-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "783:36-45" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "198:32-41" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-focus", - "loc": "85:18-27" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "138:36-45" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "37:78-87" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "18:40-49" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "87:32-41" - } - ], - "usedExports": [ - "FocusZone" - ], - "providedExports": [ - "FocusZone" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/elementContains.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/getParent.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/merge-styles/lib/mergeStyles.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/createMergedRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/css.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/focus.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/scroll.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 7, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/raiseClick.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/raiseClick.js", - "index": 223, - "index2": 205, - "size": 543, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "603:16-26" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/raiseClick", - "loc": "13:0-33" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/raiseClick", - "loc": "13:0-33" - } - ], - "usedExports": [ - "raiseClick" - ], - "providedExports": [ - "raiseClick" - ], - "optimizationBailout": [], - "depth": 6, - "source": "/** Raises a click event. */\nexport function raiseClick(target) {\n var event = createNewEvent('MouseEvents');\n event.initEvent('click', true, true);\n target.dispatchEvent(event);\n}\nfunction createNewEvent(eventName) {\n var event;\n if (typeof Event === 'function') {\n // Chrome, Opera, Firefox\n event = new Event(eventName);\n }\n else {\n // IE\n event = document.createEvent('Event');\n event.initEvent(eventName, true, true);\n }\n return event;\n}\n//# sourceMappingURL=raiseClick.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "index": 222, - "index2": 207, - "size": 50664, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "issuerId": "ZdmW", - "issuerName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "156:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "181:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "294:687-696" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "467:36-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "564:65-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "766:32-41" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "85:36-45" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "264:32-41" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "88:36-45" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "104:36-45" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "181:32-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "499:32-41" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "783:36-45" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone", - "loc": "1:0-28" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "198:32-41" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-focus", - "loc": "85:18-27" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "138:36-45" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "37:78-87" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "18:40-49" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "87:32-41" - } - ], - "usedExports": [ - "FocusZone" - ], - "providedExports": [ - "FocusZone" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { mergeStyles } from '@uifabric/merge-styles';\nimport { getTheme } from '@uifabric/styling';\nimport { KeyCodes, css, elementContains, getDocument, getElementIndexPath, getFocusableByIndexPath, getId, getNativeProps, getNextElement, getParent, getPreviousElement, getRTL, htmlElementProperties, initializeComponentRef, isElementFocusSubZone, isElementFocusZone, isElementTabbable, raiseClick, shouldWrapFocus, warnDeprecations, portalContainsElement, getWindow, findScrollableParent, createMergedRef, } from '@uifabric/utilities';\nimport { FocusZoneDirection, FocusZoneTabbableElements } from './FocusZone.types';\nvar IS_FOCUSABLE_ATTRIBUTE = 'data-is-focusable';\nvar IS_ENTER_DISABLED_ATTRIBUTE = 'data-disable-click-on-enter';\nvar FOCUSZONE_ID_ATTRIBUTE = 'data-focuszone-id';\nvar TABINDEX = 'tabindex';\nvar NO_VERTICAL_WRAP = 'data-no-vertical-wrap';\nvar NO_HORIZONTAL_WRAP = 'data-no-horizontal-wrap';\nvar LARGE_DISTANCE_FROM_CENTER = 999999999;\nvar LARGE_NEGATIVE_DISTANCE_FROM_CENTER = -999999999;\nvar focusZoneStyles;\nvar focusZoneClass = 'ms-FocusZone';\n// Helper function that will return a class for when the root is focused\nfunction getRootClass() {\n if (!focusZoneStyles) {\n focusZoneStyles = mergeStyles({\n selectors: {\n ':focus': {\n outline: 'none',\n },\n },\n }, focusZoneClass);\n }\n return focusZoneStyles;\n}\nvar _allInstances = {};\nvar _outerZones = new Set();\nvar ALLOWED_INPUT_TYPES = ['text', 'number', 'password', 'email', 'tel', 'url', 'search'];\nvar ALLOW_VIRTUAL_ELEMENTS = false;\nvar FocusZone = /** @class */ (function (_super) {\n __extends(FocusZone, _super);\n function FocusZone(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._mergedRef = createMergedRef();\n _this._onFocus = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var _a = _this.props, onActiveElementChanged = _a.onActiveElementChanged, \n // eslint-disable-next-line deprecation/deprecation\n doNotAllowFocusEventToPropagate = _a.doNotAllowFocusEventToPropagate, stopFocusPropagation = _a.stopFocusPropagation, \n // eslint-disable-next-line deprecation/deprecation\n onFocusNotification = _a.onFocusNotification, onFocus = _a.onFocus, shouldFocusInnerElementWhenReceivedFocus = _a.shouldFocusInnerElementWhenReceivedFocus, defaultTabbableElement = _a.defaultTabbableElement;\n var isImmediateDescendant = _this._isImmediateDescendantOfZone(ev.target);\n var newActiveElement;\n if (isImmediateDescendant) {\n newActiveElement = ev.target;\n }\n else {\n var parentElement = ev.target;\n while (parentElement && parentElement !== _this._root.current) {\n if (isElementTabbable(parentElement) && _this._isImmediateDescendantOfZone(parentElement)) {\n newActiveElement = parentElement;\n break;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n }\n // If an inner focusable element should be focused when FocusZone container receives focus\n if (shouldFocusInnerElementWhenReceivedFocus && ev.target === _this._root.current) {\n var maybeElementToFocus = defaultTabbableElement &&\n typeof defaultTabbableElement === 'function' &&\n defaultTabbableElement(_this._root.current);\n // try to focus defaultTabbable element\n if (maybeElementToFocus && isElementTabbable(maybeElementToFocus)) {\n newActiveElement = maybeElementToFocus;\n maybeElementToFocus.focus();\n }\n else {\n // force focus on first focusable element\n _this.focus(true);\n if (_this._activeElement) {\n // set to null as new active element was handled in method above\n newActiveElement = null;\n }\n }\n }\n var initialElementFocused = !_this._activeElement;\n // If the new active element is a child of this zone and received focus,\n // update alignment an immediate descendant\n if (newActiveElement && newActiveElement !== _this._activeElement) {\n if (isImmediateDescendant || initialElementFocused) {\n _this._setFocusAlignment(newActiveElement, true, true);\n }\n _this._activeElement = newActiveElement;\n if (initialElementFocused) {\n _this._updateTabIndexes();\n }\n }\n if (onActiveElementChanged) {\n onActiveElementChanged(_this._activeElement, ev);\n }\n if (stopFocusPropagation || doNotAllowFocusEventToPropagate) {\n ev.stopPropagation();\n }\n if (onFocus) {\n onFocus(ev);\n }\n else if (onFocusNotification) {\n onFocusNotification();\n }\n };\n _this._onBlur = function () {\n _this._setParkedFocus(false);\n };\n _this._onMouseDown = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var disabled = _this.props.disabled;\n if (disabled) {\n return;\n }\n var target = ev.target;\n var path = [];\n while (target && target !== _this._root.current) {\n path.push(target);\n target = getParent(target, ALLOW_VIRTUAL_ELEMENTS);\n }\n while (path.length) {\n target = path.pop();\n if (target && isElementTabbable(target)) {\n _this._setActiveElement(target, true);\n }\n if (isElementFocusZone(target)) {\n // Stop here since the focus zone will take care of its own children.\n break;\n }\n }\n };\n /**\n * Handle the keystrokes.\n */\n _this._onKeyDown = function (ev, theme) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, direction = _a.direction, disabled = _a.disabled, isInnerZoneKeystroke = _a.isInnerZoneKeystroke, pagingSupportDisabled = _a.pagingSupportDisabled, shouldEnterInnerZone = _a.shouldEnterInnerZone;\n if (disabled) {\n return;\n }\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n }\n // If the default has been prevented, do not process keyboard events.\n if (ev.isDefaultPrevented()) {\n return;\n }\n if (_this._getDocument().activeElement === _this._root.current && _this._isInnerZone) {\n // If this element has focus, it is being controlled by a parent.\n // Ignore the keystroke.\n return;\n }\n if (((shouldEnterInnerZone && shouldEnterInnerZone(ev)) || (isInnerZoneKeystroke && isInnerZoneKeystroke(ev))) &&\n _this._isImmediateDescendantOfZone(ev.target)) {\n // Try to focus\n var innerZone = _this._getFirstInnerZone();\n if (innerZone) {\n if (!innerZone.focus(true)) {\n return;\n }\n }\n else if (isElementFocusSubZone(ev.target)) {\n if (!_this.focusElement(getNextElement(ev.target, ev.target.firstChild, true))) {\n return;\n }\n }\n else {\n return;\n }\n }\n else if (ev.altKey) {\n return;\n }\n else {\n // eslint-disable-next-line @fluentui/deprecated-keyboard-event-props\n switch (ev.which) {\n case KeyCodes.space:\n if (_this._tryInvokeClickForFocusable(ev.target)) {\n break;\n }\n return;\n case KeyCodes.left:\n if (direction !== FocusZoneDirection.vertical) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusLeft(theme)) {\n break;\n }\n }\n return;\n case KeyCodes.right:\n if (direction !== FocusZoneDirection.vertical) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusRight(theme)) {\n break;\n }\n }\n return;\n case KeyCodes.up:\n if (direction !== FocusZoneDirection.horizontal) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusUp()) {\n break;\n }\n }\n return;\n case KeyCodes.down:\n if (direction !== FocusZoneDirection.horizontal) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusDown()) {\n break;\n }\n }\n return;\n case KeyCodes.pageDown:\n if (!pagingSupportDisabled && _this._moveFocusPaging(true)) {\n break;\n }\n return;\n case KeyCodes.pageUp:\n if (!pagingSupportDisabled && _this._moveFocusPaging(false)) {\n break;\n }\n return;\n case KeyCodes.tab:\n if (\n // eslint-disable-next-line deprecation/deprecation\n _this.props.allowTabKey ||\n _this.props.handleTabKey === FocusZoneTabbableElements.all ||\n (_this.props.handleTabKey === FocusZoneTabbableElements.inputOnly &&\n _this._isElementInput(ev.target))) {\n var focusChanged = false;\n _this._processingTabKey = true;\n if (direction === FocusZoneDirection.vertical ||\n !_this._shouldWrapFocus(_this._activeElement, NO_HORIZONTAL_WRAP)) {\n focusChanged = ev.shiftKey ? _this._moveFocusUp() : _this._moveFocusDown();\n }\n else {\n var tabWithDirection = getRTL(theme) ? !ev.shiftKey : ev.shiftKey;\n focusChanged = tabWithDirection ? _this._moveFocusLeft(theme) : _this._moveFocusRight(theme);\n }\n _this._processingTabKey = false;\n if (focusChanged) {\n break;\n }\n else if (_this.props.shouldResetActiveElementWhenTabFromZone) {\n _this._activeElement = null;\n }\n }\n return;\n case KeyCodes.home:\n if (_this._isContentEditableElement(ev.target) ||\n (_this._isElementInput(ev.target) &&\n !_this._shouldInputLoseFocus(ev.target, false))) {\n return false;\n }\n var firstChild = _this._root.current && _this._root.current.firstChild;\n if (_this._root.current &&\n firstChild &&\n _this.focusElement(getNextElement(_this._root.current, firstChild, true))) {\n break;\n }\n return;\n case KeyCodes.end:\n if (_this._isContentEditableElement(ev.target) ||\n (_this._isElementInput(ev.target) &&\n !_this._shouldInputLoseFocus(ev.target, true))) {\n return false;\n }\n var lastChild = _this._root.current && _this._root.current.lastChild;\n if (_this._root.current &&\n _this.focusElement(getPreviousElement(_this._root.current, lastChild, true, true, true))) {\n break;\n }\n return;\n case KeyCodes.enter:\n if (_this._tryInvokeClickForFocusable(ev.target)) {\n break;\n }\n return;\n default:\n return;\n }\n }\n ev.preventDefault();\n ev.stopPropagation();\n };\n _this._getHorizontalDistanceFromCenter = function (isForward, activeRect, targetRect) {\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = _this._focusAlignment.left || _this._focusAlignment.x || 0;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n var targetRectBottom = Math.floor(targetRect.bottom);\n var activeRectTop = Math.floor(activeRect.top);\n var isValidCandidateOnpagingDown = isForward && targetRectTop > activeRectBottom;\n var isValidCandidateOnpagingUp = !isForward && targetRectBottom < activeRectTop;\n if (isValidCandidateOnpagingDown || isValidCandidateOnpagingUp) {\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n return 0;\n }\n return Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n };\n // Manage componentRef resolution.\n initializeComponentRef(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('FocusZone', props, {\n rootProps: undefined,\n allowTabKey: 'handleTabKey',\n elementType: 'as',\n ariaDescribedBy: 'aria-describedby',\n ariaLabelledBy: 'aria-labelledby',\n });\n }\n _this._id = getId('FocusZone');\n _this._focusAlignment = {\n left: 0,\n top: 0,\n };\n _this._processingTabKey = false;\n return _this;\n }\n /** Used for testing purposes only. */\n FocusZone.getOuterZones = function () {\n return _outerZones.size;\n };\n /**\n * Handle global tab presses so that we can patch tabindexes on the fly.\n * HEADS UP: This must not be an arrow function in order to be referentially equal among instances\n * for ref counting to work correctly!\n */\n FocusZone._onKeyDownCapture = function (ev) {\n // eslint-disable-next-line deprecation/deprecation, @fluentui/deprecated-keyboard-event-props\n if (ev.which === KeyCodes.tab) {\n _outerZones.forEach(function (zone) { return zone._updateTabIndexes(); });\n }\n };\n FocusZone.prototype.componentDidMount = function () {\n var root = this._root.current;\n _allInstances[this._id] = this;\n if (root) {\n this._windowElement = getWindow(root);\n var parentElement = getParent(root, ALLOW_VIRTUAL_ELEMENTS);\n while (parentElement && parentElement !== this._getDocument().body && parentElement.nodeType === 1) {\n if (isElementFocusZone(parentElement)) {\n this._isInnerZone = true;\n break;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n if (!this._isInnerZone) {\n _outerZones.add(this);\n if (this._windowElement && _outerZones.size === 1) {\n this._windowElement.addEventListener('keydown', FocusZone._onKeyDownCapture, true);\n }\n }\n this._root.current && this._root.current.addEventListener('blur', this._onBlur, true);\n // Assign initial tab indexes so that we can set initial focus as appropriate.\n this._updateTabIndexes();\n if (this.props.defaultTabbableElement && typeof this.props.defaultTabbableElement === 'string') {\n this._activeElement = this._getDocument().querySelector(this.props.defaultTabbableElement);\n // eslint-disable-next-line deprecation/deprecation\n }\n else if (this.props.defaultActiveElement) {\n // eslint-disable-next-line deprecation/deprecation\n this._activeElement = this._getDocument().querySelector(this.props.defaultActiveElement);\n }\n if (this.props.shouldFocusOnMount) {\n this.focus();\n }\n }\n };\n FocusZone.prototype.componentDidUpdate = function () {\n var root = this._root.current;\n var doc = this._getDocument();\n if (doc &&\n this._lastIndexPath &&\n (doc.activeElement === doc.body ||\n doc.activeElement === null ||\n (!this.props.preventFocusRestoration && doc.activeElement === root))) {\n // The element has been removed after the render, attempt to restore focus.\n var elementToFocus = getFocusableByIndexPath(root, this._lastIndexPath);\n if (elementToFocus) {\n this._setActiveElement(elementToFocus, true);\n elementToFocus.focus();\n this._setParkedFocus(false);\n }\n else {\n // We had a focus path to restore, but now that path is unresolvable. Park focus\n // on the container until we can try again.\n this._setParkedFocus(true);\n }\n }\n };\n FocusZone.prototype.componentWillUnmount = function () {\n delete _allInstances[this._id];\n if (!this._isInnerZone) {\n _outerZones.delete(this);\n // If this is the last outer zone, remove the keydown listener.\n if (this._windowElement && _outerZones.size === 0) {\n this._windowElement.removeEventListener('keydown', FocusZone._onKeyDownCapture, true);\n }\n }\n if (this._root.current) {\n this._root.current.removeEventListener('blur', this._onBlur, true);\n }\n this._activeElement = null;\n this._defaultFocusElement = null;\n };\n FocusZone.prototype.render = function () {\n var _this = this;\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, tag = _a.as, elementType = _a.elementType, rootProps = _a.rootProps, ariaDescribedBy = _a.ariaDescribedBy, ariaLabelledBy = _a.ariaLabelledBy, className = _a.className;\n var divProps = getNativeProps(this.props, htmlElementProperties);\n var Tag = tag || elementType || 'div';\n // Note, right before rendering/reconciling proceeds, we need to record if focus\n // was in the zone before the update. This helper will track this and, if focus\n // was actually in the zone, what the index path to the element is at this time.\n // Then, later in componentDidUpdate, we can evaluate if we need to restore it in\n // the case the element was removed.\n this._evaluateFocusBeforeRender();\n // Only support RTL defined in global theme, not contextual theme/RTL.\n var theme = getTheme();\n return (React.createElement(Tag, __assign({ \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy }, divProps, rootProps, { \n // Once the getClassName correctly memoizes inputs this should\n // be replaced so that className is passed to getRootClass and is included there so\n // the class names will always be in the same order.\n className: css(getRootClass(), className), \n // eslint-disable-next-line deprecation/deprecation\n ref: this._mergedRef(this.props.elementRef, this._root), \"data-focuszone-id\": this._id, \n // eslint-disable-next-line react/jsx-no-bind\n onKeyDown: function (ev) { return _this._onKeyDown(ev, theme); }, onFocus: this._onFocus, onMouseDownCapture: this._onMouseDown }), this.props.children));\n };\n /**\n * Sets focus to the first tabbable item in the zone.\n * @param forceIntoFirstElement - If true, focus will be forced into the first element, even\n * if focus is already in the focus zone.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focus = function (forceIntoFirstElement) {\n if (forceIntoFirstElement === void 0) { forceIntoFirstElement = false; }\n if (this._root.current) {\n if (!forceIntoFirstElement &&\n this._root.current.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true' &&\n this._isInnerZone) {\n var ownerZoneElement = this._getOwnerZone(this._root.current);\n if (ownerZoneElement !== this._root.current) {\n var ownerZone = _allInstances[ownerZoneElement.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n return !!ownerZone && ownerZone.focusElement(this._root.current);\n }\n return false;\n }\n else if (!forceIntoFirstElement &&\n this._activeElement &&\n elementContains(this._root.current, this._activeElement) &&\n isElementTabbable(this._activeElement)) {\n this._activeElement.focus();\n return true;\n }\n else {\n var firstChild = this._root.current.firstChild;\n return this.focusElement(getNextElement(this._root.current, firstChild, true));\n }\n }\n return false;\n };\n /**\n * Sets focus to the last tabbable item in the zone.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focusLast = function () {\n if (this._root.current) {\n var lastChild = this._root.current && this._root.current.lastChild;\n return this.focusElement(getPreviousElement(this._root.current, lastChild, true, true, true));\n }\n return false;\n };\n /**\n * Sets focus to a specific child element within the zone. This can be used in conjunction with\n * shouldReceiveFocus to create delayed focus scenarios (like animate the scroll position to the correct\n * location and then focus.)\n * @param element - The child element within the zone to focus.\n * @param forceAlignment - If true, focus alignment will be set according to the element provided.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focusElement = function (element, forceAlignment) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, onBeforeFocus = _a.onBeforeFocus, shouldReceiveFocus = _a.shouldReceiveFocus;\n if ((shouldReceiveFocus && !shouldReceiveFocus(element)) || (onBeforeFocus && !onBeforeFocus(element))) {\n return false;\n }\n if (element) {\n // when we set focus to a specific child, we should recalculate the alignment depending on its position.\n this._setActiveElement(element, forceAlignment);\n if (this._activeElement) {\n this._activeElement.focus();\n }\n return true;\n }\n return false;\n };\n /**\n * Forces horizontal alignment in the context of vertical arrowing to use specific point as the reference,\n * rather than a center based on the last horizontal motion.\n * @param point - the new reference point.\n */\n FocusZone.prototype.setFocusAlignment = function (point) {\n this._focusAlignment = point;\n };\n FocusZone.prototype._evaluateFocusBeforeRender = function () {\n var root = this._root.current;\n var doc = this._getDocument();\n if (doc) {\n var focusedElement = doc.activeElement;\n // Only update the index path if we are not parked on the root.\n if (focusedElement !== root) {\n var shouldRestoreFocus = elementContains(root, focusedElement, false);\n this._lastIndexPath = shouldRestoreFocus ? getElementIndexPath(root, focusedElement) : undefined;\n }\n }\n };\n /**\n * When focus is in the zone at render time but then all focusable elements are removed,\n * we \"park\" focus temporarily on the root. Once we update with focusable children, we restore\n * focus to the closest path from previous. If the user tabs away from the parked container,\n * we restore focusability to the pre-parked state.\n */\n FocusZone.prototype._setParkedFocus = function (isParked) {\n var root = this._root.current;\n if (root && this._isParked !== isParked) {\n this._isParked = isParked;\n if (isParked) {\n if (!this.props.allowFocusRoot) {\n this._parkedTabIndex = root.getAttribute('tabindex');\n root.setAttribute('tabindex', '-1');\n }\n root.focus();\n }\n else if (!this.props.allowFocusRoot) {\n if (this._parkedTabIndex) {\n root.setAttribute('tabindex', this._parkedTabIndex);\n this._parkedTabIndex = undefined;\n }\n else {\n root.removeAttribute('tabindex');\n }\n }\n }\n };\n FocusZone.prototype._setActiveElement = function (element, forceAlignment) {\n var previousActiveElement = this._activeElement;\n this._activeElement = element;\n if (previousActiveElement) {\n if (isElementFocusZone(previousActiveElement)) {\n this._updateTabIndexes(previousActiveElement);\n }\n previousActiveElement.tabIndex = -1;\n }\n if (this._activeElement) {\n if (!this._focusAlignment || forceAlignment) {\n this._setFocusAlignment(element, true, true);\n }\n this._activeElement.tabIndex = 0;\n }\n };\n FocusZone.prototype._preventDefaultWhenHandled = function (ev) {\n this.props.preventDefaultWhenHandled && ev.preventDefault();\n };\n /**\n * Walk up the dom try to find a focusable element.\n */\n FocusZone.prototype._tryInvokeClickForFocusable = function (target) {\n if (target === this._root.current || !this.props.shouldRaiseClicks) {\n return false;\n }\n do {\n if (target.tagName === 'BUTTON' ||\n target.tagName === 'A' ||\n target.tagName === 'INPUT' ||\n target.tagName === 'TEXTAREA') {\n return false;\n }\n if (this._isImmediateDescendantOfZone(target) &&\n target.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true' &&\n target.getAttribute(IS_ENTER_DISABLED_ATTRIBUTE) !== 'true') {\n raiseClick(target);\n return true;\n }\n target = getParent(target, ALLOW_VIRTUAL_ELEMENTS);\n } while (target !== this._root.current);\n return false;\n };\n /**\n * Traverse to find first child zone.\n */\n FocusZone.prototype._getFirstInnerZone = function (rootElement) {\n rootElement = rootElement || this._activeElement || this._root.current;\n if (!rootElement) {\n return null;\n }\n if (isElementFocusZone(rootElement)) {\n return _allInstances[rootElement.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n }\n var child = rootElement.firstElementChild;\n while (child) {\n if (isElementFocusZone(child)) {\n return _allInstances[child.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n }\n var match = this._getFirstInnerZone(child);\n if (match) {\n return match;\n }\n child = child.nextElementSibling;\n }\n return null;\n };\n FocusZone.prototype._moveFocus = function (isForward, getDistanceFromCenter, ev, useDefaultWrap) {\n if (useDefaultWrap === void 0) { useDefaultWrap = true; }\n var element = this._activeElement;\n var candidateDistance = -1;\n var candidateElement = undefined;\n var changedFocus = false;\n var isBidirectional = this.props.direction === FocusZoneDirection.bidirectional;\n if (!element || !this._root.current) {\n return false;\n }\n if (this._isElementInput(element)) {\n if (!this._shouldInputLoseFocus(element, isForward)) {\n return false;\n }\n }\n var activeRect = isBidirectional ? element.getBoundingClientRect() : null;\n do {\n element = (isForward\n ? getNextElement(this._root.current, element)\n : getPreviousElement(this._root.current, element));\n if (isBidirectional) {\n if (element) {\n var targetRect = element.getBoundingClientRect();\n var elementDistance = getDistanceFromCenter(activeRect, targetRect);\n if (elementDistance === -1 && candidateDistance === -1) {\n candidateElement = element;\n break;\n }\n if (elementDistance > -1 && (candidateDistance === -1 || elementDistance < candidateDistance)) {\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n if (candidateDistance >= 0 && elementDistance < 0) {\n break;\n }\n }\n }\n else {\n candidateElement = element;\n break;\n }\n } while (element);\n // Focus the closest candidate\n if (candidateElement && candidateElement !== this._activeElement) {\n changedFocus = true;\n this.focusElement(candidateElement);\n }\n else if (this.props.isCircularNavigation && useDefaultWrap) {\n if (isForward) {\n return this.focusElement(getNextElement(this._root.current, this._root.current.firstElementChild, true));\n }\n else {\n return this.focusElement(getPreviousElement(this._root.current, this._root.current.lastElementChild, true, true, true));\n }\n }\n return changedFocus;\n };\n FocusZone.prototype._moveFocusDown = function () {\n var _this = this;\n var targetTop = -1;\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = this._focusAlignment.left || this._focusAlignment.x || 0;\n if (this._moveFocus(true, function (activeRect, targetRect) {\n var distance = -1;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n if (targetRectTop < activeRectBottom) {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n if ((targetTop === -1 && targetRectTop >= activeRectBottom) || targetRectTop === targetTop) {\n targetTop = targetRectTop;\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n distance = 0;\n }\n else {\n distance = Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n }\n return distance;\n })) {\n this._setFocusAlignment(this._activeElement, false, true);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusUp = function () {\n var _this = this;\n var targetTop = -1;\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = this._focusAlignment.left || this._focusAlignment.x || 0;\n if (this._moveFocus(false, function (activeRect, targetRect) {\n var distance = -1;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectBottom = Math.floor(targetRect.bottom);\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectTop = Math.floor(activeRect.top);\n if (targetRectBottom > activeRectTop) {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n if ((targetTop === -1 && targetRectBottom <= activeRectTop) || targetRectTop === targetTop) {\n targetTop = targetRectTop;\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n distance = 0;\n }\n else {\n distance = Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n }\n return distance;\n })) {\n this._setFocusAlignment(this._activeElement, false, true);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusLeft = function (theme) {\n var _this = this;\n var shouldWrap = this._shouldWrapFocus(this._activeElement, NO_HORIZONTAL_WRAP);\n if (this._moveFocus(getRTL(theme), function (activeRect, targetRect) {\n var distance = -1;\n var topBottomComparison;\n if (getRTL(theme)) {\n // When in RTL, this comparison should be the same as the one in _moveFocusRight for LTR.\n // Going left at a leftmost rectangle will go down a line instead of up a line like in LTR.\n // This is important, because we want to be comparing the top of the target rect\n // with the bottom of the active rect.\n topBottomComparison = parseFloat(targetRect.top.toFixed(3)) < parseFloat(activeRect.bottom.toFixed(3));\n }\n else {\n topBottomComparison = parseFloat(targetRect.bottom.toFixed(3)) > parseFloat(activeRect.top.toFixed(3));\n }\n if (topBottomComparison &&\n targetRect.right <= activeRect.right &&\n _this.props.direction !== FocusZoneDirection.vertical) {\n distance = activeRect.right - targetRect.right;\n }\n else if (!shouldWrap) {\n distance = LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return distance;\n }, undefined /*ev*/, shouldWrap)) {\n this._setFocusAlignment(this._activeElement, true, false);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusRight = function (theme) {\n var _this = this;\n var shouldWrap = this._shouldWrapFocus(this._activeElement, NO_HORIZONTAL_WRAP);\n if (this._moveFocus(!getRTL(theme), function (activeRect, targetRect) {\n var distance = -1;\n var topBottomComparison;\n if (getRTL(theme)) {\n // When in RTL, this comparison should be the same as the one in _moveFocusLeft for LTR.\n // Going right at a rightmost rectangle will go up a line instead of down a line like in LTR.\n // This is important, because we want to be comparing the bottom of the target rect\n // with the top of the active rect.\n topBottomComparison = parseFloat(targetRect.bottom.toFixed(3)) > parseFloat(activeRect.top.toFixed(3));\n }\n else {\n topBottomComparison = parseFloat(targetRect.top.toFixed(3)) < parseFloat(activeRect.bottom.toFixed(3));\n }\n if (topBottomComparison &&\n targetRect.left >= activeRect.left &&\n _this.props.direction !== FocusZoneDirection.vertical) {\n distance = targetRect.left - activeRect.left;\n }\n else if (!shouldWrap) {\n distance = LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return distance;\n }, undefined /*ev*/, shouldWrap)) {\n this._setFocusAlignment(this._activeElement, true, false);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusPaging = function (isForward, useDefaultWrap) {\n if (useDefaultWrap === void 0) { useDefaultWrap = true; }\n var element = this._activeElement;\n if (!element || !this._root.current) {\n return false;\n }\n if (this._isElementInput(element)) {\n if (!this._shouldInputLoseFocus(element, isForward)) {\n return false;\n }\n }\n var scrollableParent = findScrollableParent(element);\n if (!scrollableParent) {\n return false;\n }\n var candidateDistance = -1;\n var candidateElement = undefined;\n var targetTop = -1;\n var targetBottom = -1;\n var pagesize = scrollableParent.clientHeight;\n var activeRect = element.getBoundingClientRect();\n do {\n element = isForward\n ? getNextElement(this._root.current, element)\n : getPreviousElement(this._root.current, element);\n if (element) {\n var targetRect = element.getBoundingClientRect();\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n var targetRectBottom = Math.floor(targetRect.bottom);\n var activeRectTop = Math.floor(activeRect.top);\n var elementDistance = this._getHorizontalDistanceFromCenter(isForward, activeRect, targetRect);\n var isElementPassedPageSizeOnPagingDown = isForward && targetRectTop > activeRectBottom + pagesize;\n var isElementPassedPageSizeOnPagingUp = !isForward && targetRectBottom < activeRectTop - pagesize;\n if (isElementPassedPageSizeOnPagingDown || isElementPassedPageSizeOnPagingUp) {\n break;\n }\n if (elementDistance > -1) {\n // for paging down\n if (isForward && targetRectTop > targetTop) {\n targetTop = targetRectTop;\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n else if (!isForward && targetRectBottom < targetBottom) {\n // for paging up\n targetBottom = targetRectBottom;\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n else if (candidateDistance === -1 || elementDistance <= candidateDistance) {\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n }\n }\n } while (element);\n var changedFocus = false;\n // Focus the closest candidate\n if (candidateElement && candidateElement !== this._activeElement) {\n changedFocus = true;\n this.focusElement(candidateElement);\n this._setFocusAlignment(candidateElement, false, true);\n }\n else if (this.props.isCircularNavigation && useDefaultWrap) {\n if (isForward) {\n return this.focusElement(getNextElement(this._root.current, this._root.current.firstElementChild, true));\n }\n return this.focusElement(getPreviousElement(this._root.current, this._root.current.lastElementChild, true, true, true));\n }\n return changedFocus;\n };\n FocusZone.prototype._setFocusAlignment = function (element, isHorizontal, isVertical) {\n if (this.props.direction === FocusZoneDirection.bidirectional &&\n (!this._focusAlignment || isHorizontal || isVertical)) {\n var rect = element.getBoundingClientRect();\n var left = rect.left + rect.width / 2;\n var top_1 = rect.top + rect.height / 2;\n if (!this._focusAlignment) {\n this._focusAlignment = { left: left, top: top_1 };\n }\n if (isHorizontal) {\n this._focusAlignment.left = left;\n }\n if (isVertical) {\n this._focusAlignment.top = top_1;\n }\n }\n };\n FocusZone.prototype._isImmediateDescendantOfZone = function (element) {\n return this._getOwnerZone(element) === this._root.current;\n };\n FocusZone.prototype._getOwnerZone = function (element) {\n var parentElement = getParent(element, ALLOW_VIRTUAL_ELEMENTS);\n while (parentElement && parentElement !== this._root.current && parentElement !== this._getDocument().body) {\n if (isElementFocusZone(parentElement)) {\n return parentElement;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n return parentElement;\n };\n FocusZone.prototype._updateTabIndexes = function (element) {\n if (!this._activeElement &&\n this.props.defaultTabbableElement &&\n typeof this.props.defaultTabbableElement === 'function') {\n this._activeElement = this.props.defaultTabbableElement(this._root.current);\n }\n if (!element && this._root.current) {\n this._defaultFocusElement = null;\n element = this._root.current;\n if (this._activeElement && !elementContains(element, this._activeElement)) {\n this._activeElement = null;\n }\n }\n // If active element changes state to disabled, set it to null.\n // Otherwise, we lose keyboard accessibility to other elements in focus zone.\n if (this._activeElement && !isElementTabbable(this._activeElement)) {\n this._activeElement = null;\n }\n var childNodes = element && element.children;\n for (var childIndex = 0; childNodes && childIndex < childNodes.length; childIndex++) {\n var child = childNodes[childIndex];\n if (!isElementFocusZone(child)) {\n // If the item is explicitly set to not be focusable then TABINDEX needs to be set to -1.\n if (child.getAttribute && child.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'false') {\n child.setAttribute(TABINDEX, '-1');\n }\n if (isElementTabbable(child)) {\n if (this.props.disabled) {\n child.setAttribute(TABINDEX, '-1');\n }\n else if (!this._isInnerZone &&\n ((!this._activeElement && !this._defaultFocusElement) || this._activeElement === child)) {\n this._defaultFocusElement = child;\n if (child.getAttribute(TABINDEX) !== '0') {\n child.setAttribute(TABINDEX, '0');\n }\n }\n else if (child.getAttribute(TABINDEX) !== '-1') {\n child.setAttribute(TABINDEX, '-1');\n }\n }\n else if (child.tagName === 'svg' && child.getAttribute('focusable') !== 'false') {\n // Disgusting IE hack. Sad face.\n child.setAttribute('focusable', 'false');\n }\n }\n else if (child.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true') {\n if (!this._isInnerZone &&\n ((!this._activeElement && !this._defaultFocusElement) || this._activeElement === child)) {\n this._defaultFocusElement = child;\n if (child.getAttribute(TABINDEX) !== '0') {\n child.setAttribute(TABINDEX, '0');\n }\n }\n else if (child.getAttribute(TABINDEX) !== '-1') {\n child.setAttribute(TABINDEX, '-1');\n }\n }\n this._updateTabIndexes(child);\n }\n };\n FocusZone.prototype._isContentEditableElement = function (element) {\n return element && element.getAttribute('contenteditable') === 'true';\n };\n FocusZone.prototype._isElementInput = function (element) {\n if (element &&\n element.tagName &&\n (element.tagName.toLowerCase() === 'input' || element.tagName.toLowerCase() === 'textarea')) {\n return true;\n }\n return false;\n };\n FocusZone.prototype._shouldInputLoseFocus = function (element, isForward) {\n // If a tab was used, we want to focus on the next element.\n if (!this._processingTabKey &&\n element &&\n element.type &&\n ALLOWED_INPUT_TYPES.indexOf(element.type.toLowerCase()) > -1) {\n var selectionStart = element.selectionStart;\n var selectionEnd = element.selectionEnd;\n var isRangeSelected = selectionStart !== selectionEnd;\n var inputValue = element.value;\n var isReadonly = element.readOnly;\n // We shouldn't lose focus in the following cases:\n // 1. There is range selected.\n // 2. When selection start is larger than 0 and it is backward and not readOnly.\n // 3. when selection start is not the end of length, it is forward and not readOnly.\n // 4. We press any of the arrow keys when our handleTabKey isn't none or undefined (only losing focus if we hit\n // tab) and if shouldInputLoseFocusOnArrowKey is defined, if scenario prefers to not loose the focus which is\n // determined by calling the callback shouldInputLoseFocusOnArrowKey\n if (isRangeSelected ||\n (selectionStart > 0 && !isForward && !isReadonly) ||\n (selectionStart !== inputValue.length && isForward && !isReadonly) ||\n (!!this.props.handleTabKey &&\n !(this.props.shouldInputLoseFocusOnArrowKey && this.props.shouldInputLoseFocusOnArrowKey(element)))) {\n return false;\n }\n }\n return true;\n };\n FocusZone.prototype._shouldWrapFocus = function (element, noWrapDataAttribute) {\n return this.props.checkForNoWrap ? shouldWrapFocus(element, noWrapDataAttribute) : true;\n };\n /**\n * Returns true if the element is a descendant of the FocusZone through a React portal.\n */\n FocusZone.prototype._portalContainsElement = function (element) {\n return element && !!this._root.current && portalContainsElement(element, this._root.current);\n };\n FocusZone.prototype._getDocument = function () {\n return getDocument(this._root.current);\n };\n FocusZone.defaultProps = {\n isCircularNavigation: false,\n direction: FocusZoneDirection.bidirectional,\n shouldRaiseClicks: true,\n };\n return FocusZone;\n}(React.Component));\nexport { FocusZone };\n//# sourceMappingURL=FocusZone.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "CH3K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayPush.js", - "name": "./node_modules/lodash/_arrayPush.js", - "index": 529, - "index2": 520, - "size": 437, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetAllKeys.js", - "issuerId": "fR/l", - "issuerName": "./node_modules/lodash/_baseGetAllKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "fR/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetAllKeys.js", - "name": "./node_modules/lodash/_baseGetAllKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "XGnz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseFlatten.js", - "module": "./node_modules/lodash/_baseFlatten.js", - "moduleName": "./node_modules/lodash/_baseFlatten.js", - "type": "cjs require", - "userRequest": "./_arrayPush", - "loc": "1:16-39" - }, - { - "moduleId": "fR/l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetAllKeys.js", - "module": "./node_modules/lodash/_baseGetAllKeys.js", - "moduleName": "./node_modules/lodash/_baseGetAllKeys.js", - "type": "cjs require", - "userRequest": "./_arrayPush", - "loc": "1:16-39" - }, - { - "moduleId": "oCl/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "module": "./node_modules/lodash/_getSymbolsIn.js", - "moduleName": "./node_modules/lodash/_getSymbolsIn.js", - "type": "cjs require", - "userRequest": "./_arrayPush", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Appends the elements of `values` to `array`.\n *\n * @private\n * @param {Array} array The array to modify.\n * @param {Array} values The values to append.\n * @returns {Array} Returns `array`.\n */\nfunction arrayPush(array, values) {\n var index = -1,\n length = values.length,\n offset = array.length;\n\n while (++index < length) {\n array[offset + index] = values[index];\n }\n return array;\n}\n\nmodule.exports = arrayPush;\n" - }, - { - "id": "CcL7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "index": 31, - "index2": 111, - "size": 42686, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "53:35-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../TextField", - "loc": "177:52-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "491:43-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "506:43-52" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../TextField", - "loc": "307:36-45" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField", - "loc": "1:0-28" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TextField", - "loc": "1:0-28" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/TextField", - "loc": "126:32-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony side effect evaluation", - "userRequest": "../TextField", - "loc": "3:0-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "../TextField", - "loc": "210:36-45" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "63:32-41" - } - ], - "usedExports": [ - "TextField" - ], - "providedExports": [ - "TextField" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/DelayedRender.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warn.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Label/Label.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 3, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "index": 42, - "index2": 109, - "size": 22310, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "BZ1n", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField.base", - "loc": "2:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony import specifier", - "userRequest": "./TextField.base", - "loc": "4:30-43" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField.base", - "loc": "2:0-33" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TextField.base", - "loc": "2:0-33" - } - ], - "usedExports": [ - "TextFieldBase" - ], - "providedExports": [ - "TextFieldBase" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Label } from '../../Label';\nimport { Icon } from '../../Icon';\nimport { Async, DelayedRender, classNamesFunction, getId, getNativeProps, getWindow, initializeComponentRef, inputProperties, isControlled, isIE11, textAreaProperties, warn, warnControlledUsage, warnMutuallyExclusive, } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar DEFAULT_STATE_VALUE = '';\nvar COMPONENT_NAME = 'TextField';\nvar REVEAL_ICON_NAME = 'RedEye';\nvar HIDE_ICON_NAME = 'Hide';\nvar TextFieldBase = /** @class */ (function (_super) {\n __extends(TextFieldBase, _super);\n function TextFieldBase(props) {\n var _this = _super.call(this, props) || this;\n _this._textElement = React.createRef();\n _this._onFocus = function (ev) {\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n _this.setState({ isFocused: true }, function () {\n if (_this.props.validateOnFocusIn) {\n _this._validate(_this.value);\n }\n });\n };\n _this._onBlur = function (ev) {\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n _this.setState({ isFocused: false }, function () {\n if (_this.props.validateOnFocusOut) {\n _this._validate(_this.value);\n }\n });\n };\n _this._onRenderLabel = function (props) {\n var label = props.label, required = props.required;\n // IProcessedStyleSet definition requires casting for what Label expects as its styles prop\n var labelStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.label\n : undefined;\n if (label) {\n return (React.createElement(Label, { required: required, htmlFor: _this._id, styles: labelStyles, disabled: props.disabled, id: _this._labelId }, props.label));\n }\n return null;\n };\n _this._onRenderDescription = function (props) {\n if (props.description) {\n return React.createElement(\"span\", { className: _this._classNames.description }, props.description);\n }\n return null;\n };\n _this._onRevealButtonClick = function (event) {\n _this.setState(function (prevState) { return ({ isRevealingPassword: !prevState.isRevealingPassword }); });\n };\n _this._onInputChange = function (event) {\n // Previously, we needed to call both onInput and onChange due to some weird IE/React issues,\n // which have *probably* been fixed now:\n // - https://github.com/microsoft/fluentui/issues/744 (likely fixed)\n // - https://github.com/microsoft/fluentui/issues/824 (confirmed fixed)\n // TODO (Fabric 8?) - Switch to calling only onChange. This switch is pretty disruptive for\n // tests (ours and maybe consumers' too), so it seemed best to do the switch in a major bump.\n var element = event.target;\n var value = element.value;\n // Ignore this event if the value is undefined (in case one of the IE bugs comes back)\n if (value === undefined || value === _this._lastChangeValue) {\n return;\n }\n _this._lastChangeValue = value;\n // This is so developers can access the event properties in asynchronous callbacks\n // https://reactjs.org/docs/events.html#event-pooling\n event.persist();\n var isSameValue;\n _this.setState(function (prevState, props) {\n var prevValue = _getValue(props, prevState) || '';\n isSameValue = value === prevValue;\n // Avoid doing unnecessary work when the value has not changed.\n if (isSameValue) {\n return null;\n }\n // ONLY if this is an uncontrolled component, update the displayed value.\n // (Controlled components must update the `value` prop from `onChange`.)\n return _this._isControlled ? null : { uncontrolledValue: value };\n }, function () {\n // If the value actually changed, call onChange (for either controlled or uncontrolled)\n var onChange = _this.props.onChange;\n if (!isSameValue && onChange) {\n onChange(event, value);\n }\n });\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnMutuallyExclusive(COMPONENT_NAME, props, {\n errorMessage: 'onGetErrorMessage',\n });\n }\n _this._fallbackId = getId(COMPONENT_NAME);\n _this._descriptionId = getId(COMPONENT_NAME + 'Description');\n _this._labelId = getId(COMPONENT_NAME + 'Label');\n _this._warnControlledUsage();\n var _a = props.defaultValue, defaultValue = _a === void 0 ? DEFAULT_STATE_VALUE : _a;\n if (typeof defaultValue === 'number') {\n // This isn't allowed per the props, but happens anyway.\n defaultValue = String(defaultValue);\n }\n _this.state = {\n uncontrolledValue: _this._isControlled ? undefined : defaultValue,\n isFocused: false,\n errorMessage: '',\n };\n _this._delayedValidate = _this._async.debounce(_this._validate, _this.props.deferredValidationTime);\n _this._lastValidation = 0;\n return _this;\n }\n Object.defineProperty(TextFieldBase.prototype, \"value\", {\n /**\n * Gets the current value of the text field.\n */\n get: function () {\n return _getValue(this.props, this.state);\n },\n enumerable: true,\n configurable: true\n });\n TextFieldBase.prototype.componentDidMount = function () {\n this._adjustInputHeight();\n if (this.props.validateOnLoad) {\n this._validate(this.value);\n }\n };\n TextFieldBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n };\n TextFieldBase.prototype.getSnapshotBeforeUpdate = function (prevProps, prevState) {\n return {\n selection: [this.selectionStart, this.selectionEnd],\n };\n };\n TextFieldBase.prototype.componentDidUpdate = function (prevProps, prevState, snapshot) {\n var props = this.props;\n var _a = (snapshot || {}).selection, selection = _a === void 0 ? [null, null] : _a;\n var start = selection[0], end = selection[1];\n if (!!prevProps.multiline !== !!props.multiline && prevState.isFocused) {\n // The text field has just changed between single- and multi-line, so we need to reset focus\n // and selection/cursor.\n this.focus();\n if (start !== null && end !== null && start >= 0 && end >= 0) {\n this.setSelectionRange(start, end);\n }\n }\n var prevValue = _getValue(prevProps, prevState);\n var value = this.value;\n if (prevValue !== value) {\n // Handle controlled/uncontrolled warnings and status\n this._warnControlledUsage(prevProps);\n // Clear error message if needed\n // TODO: is there any way to do this without an extra render?\n if (this.state.errorMessage && !props.errorMessage) {\n this.setState({ errorMessage: '' });\n }\n // Adjust height if needed based on new value\n this._adjustInputHeight();\n // Reset the record of the last value seen by a change/input event\n this._lastChangeValue = undefined;\n // TODO: #5875 added logic to trigger validation in componentWillReceiveProps and other places.\n // This seems a bit odd and hard to integrate with the new approach.\n // (Starting to think we should just put the validation logic in a separate wrapper component...?)\n if (_shouldValidateAllChanges(props)) {\n this._delayedValidate(value);\n }\n }\n };\n TextFieldBase.prototype.render = function () {\n var _a = this.props, borderless = _a.borderless, className = _a.className, disabled = _a.disabled, iconProps = _a.iconProps, inputClassName = _a.inputClassName, label = _a.label, multiline = _a.multiline, required = _a.required, underlined = _a.underlined, prefix = _a.prefix, resizable = _a.resizable, suffix = _a.suffix, theme = _a.theme, styles = _a.styles, autoAdjustHeight = _a.autoAdjustHeight, canRevealPassword = _a.canRevealPassword, type = _a.type, _b = _a.onRenderPrefix, onRenderPrefix = _b === void 0 ? this._onRenderPrefix : _b, _c = _a.onRenderSuffix, onRenderSuffix = _c === void 0 ? this._onRenderSuffix : _c, _d = _a.onRenderLabel, onRenderLabel = _d === void 0 ? this._onRenderLabel : _d, _e = _a.onRenderDescription, onRenderDescription = _e === void 0 ? this._onRenderDescription : _e;\n var _f = this.state, isFocused = _f.isFocused, isRevealingPassword = _f.isRevealingPassword;\n var errorMessage = this._errorMessage;\n var hasRevealButton = !!canRevealPassword && type === 'password' && _browserNeedsRevealButton();\n var classNames = (this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n disabled: disabled,\n focused: isFocused,\n required: required,\n multiline: multiline,\n hasLabel: !!label,\n hasErrorMessage: !!errorMessage,\n borderless: borderless,\n resizable: resizable,\n hasIcon: !!iconProps,\n underlined: underlined,\n inputClassName: inputClassName,\n autoAdjustHeight: autoAdjustHeight,\n hasRevealButton: hasRevealButton,\n }));\n return (React.createElement(\"div\", { className: classNames.root },\n React.createElement(\"div\", { className: classNames.wrapper },\n onRenderLabel(this.props, this._onRenderLabel),\n React.createElement(\"div\", { className: classNames.fieldGroup },\n (prefix !== undefined || this.props.onRenderPrefix) && (React.createElement(\"div\", { className: classNames.prefix }, onRenderPrefix(this.props, this._onRenderPrefix))),\n multiline ? this._renderTextArea() : this._renderInput(),\n iconProps && React.createElement(Icon, __assign({ className: classNames.icon }, iconProps)),\n hasRevealButton && (\n // Explicitly set type=\"button\" since the default button type within a form is \"submit\"\n React.createElement(\"button\", { className: classNames.revealButton, onClick: this._onRevealButtonClick, type: \"button\" },\n React.createElement(\"span\", { className: classNames.revealSpan },\n React.createElement(Icon, { className: classNames.revealIcon, iconName: isRevealingPassword ? HIDE_ICON_NAME : REVEAL_ICON_NAME })))),\n (suffix !== undefined || this.props.onRenderSuffix) && (React.createElement(\"div\", { className: classNames.suffix }, onRenderSuffix(this.props, this._onRenderSuffix))))),\n this._isDescriptionAvailable && (React.createElement(\"span\", { id: this._descriptionId },\n onRenderDescription(this.props, this._onRenderDescription),\n errorMessage && (React.createElement(\"div\", { role: \"alert\" },\n React.createElement(DelayedRender, null,\n React.createElement(\"p\", { className: classNames.errorMessage },\n React.createElement(\"span\", { \"data-automation-id\": \"error-message\" }, errorMessage)))))))));\n };\n /**\n * Sets focus on the text field\n */\n TextFieldBase.prototype.focus = function () {\n if (this._textElement.current) {\n this._textElement.current.focus();\n }\n };\n /**\n * Blurs the text field.\n */\n TextFieldBase.prototype.blur = function () {\n if (this._textElement.current) {\n this._textElement.current.blur();\n }\n };\n /**\n * Selects the text field\n */\n TextFieldBase.prototype.select = function () {\n if (this._textElement.current) {\n this._textElement.current.select();\n }\n };\n /**\n * Sets the selection start of the text field to a specified value\n */\n TextFieldBase.prototype.setSelectionStart = function (value) {\n if (this._textElement.current) {\n this._textElement.current.selectionStart = value;\n }\n };\n /**\n * Sets the selection end of the text field to a specified value\n */\n TextFieldBase.prototype.setSelectionEnd = function (value) {\n if (this._textElement.current) {\n this._textElement.current.selectionEnd = value;\n }\n };\n Object.defineProperty(TextFieldBase.prototype, \"selectionStart\", {\n /**\n * Gets the selection start of the text field\n */\n get: function () {\n return this._textElement.current ? this._textElement.current.selectionStart : -1;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TextFieldBase.prototype, \"selectionEnd\", {\n /**\n * Gets the selection end of the text field\n */\n get: function () {\n return this._textElement.current ? this._textElement.current.selectionEnd : -1;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Sets the start and end positions of a selection in a text field.\n * @param start - Index of the start of the selection.\n * @param end - Index of the end of the selection.\n */\n TextFieldBase.prototype.setSelectionRange = function (start, end) {\n if (this._textElement.current) {\n this._textElement.current.setSelectionRange(start, end);\n }\n };\n TextFieldBase.prototype._warnControlledUsage = function (prevProps) {\n // Show warnings if props are being used in an invalid way\n warnControlledUsage({\n componentId: this._id,\n componentName: COMPONENT_NAME,\n props: this.props,\n oldProps: prevProps,\n valueProp: 'value',\n defaultValueProp: 'defaultValue',\n onChangeProp: 'onChange',\n readOnlyProp: 'readOnly',\n });\n if (this.props.value === null && !this._hasWarnedNullValue) {\n this._hasWarnedNullValue = true;\n warn(\"Warning: 'value' prop on '\" + COMPONENT_NAME + \"' should not be null. Consider using an \" +\n 'empty string to clear the component or undefined to indicate an uncontrolled component.');\n }\n };\n Object.defineProperty(TextFieldBase.prototype, \"_id\", {\n /** Returns `props.id` if available, or a fallback if not. */\n get: function () {\n return this.props.id || this._fallbackId;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TextFieldBase.prototype, \"_isControlled\", {\n get: function () {\n return isControlled(this.props, 'value');\n },\n enumerable: true,\n configurable: true\n });\n TextFieldBase.prototype._onRenderPrefix = function (props) {\n var prefix = props.prefix;\n return React.createElement(\"span\", { style: { paddingBottom: '1px' } }, prefix);\n };\n TextFieldBase.prototype._onRenderSuffix = function (props) {\n var suffix = props.suffix;\n return React.createElement(\"span\", { style: { paddingBottom: '1px' } }, suffix);\n };\n Object.defineProperty(TextFieldBase.prototype, \"_errorMessage\", {\n /**\n * Current error message from either `props.errorMessage` or the result of `props.onGetErrorMessage`.\n *\n * - If there is no validation error or we have not validated the input value, errorMessage is an empty string.\n * - If we have done the validation and there is validation error, errorMessage is the validation error message.\n */\n get: function () {\n var _a = this.props.errorMessage, errorMessage = _a === void 0 ? this.state.errorMessage : _a;\n return errorMessage || '';\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(TextFieldBase.prototype, \"_isDescriptionAvailable\", {\n /**\n * If a custom description render function is supplied then treat description as always available.\n * Otherwise defer to the presence of description or error message text.\n */\n get: function () {\n var props = this.props;\n return !!(props.onRenderDescription || props.description || this._errorMessage);\n },\n enumerable: true,\n configurable: true\n });\n TextFieldBase.prototype._renderTextArea = function () {\n var textAreaProps = getNativeProps(this.props, textAreaProperties, ['defaultValue']);\n var ariaLabelledBy = this.props['aria-labelledby'] || (this.props.label ? this._labelId : undefined);\n return (React.createElement(\"textarea\", __assign({ id: this._id }, textAreaProps, { ref: this._textElement, value: this.value || '', onInput: this._onInputChange, onChange: this._onInputChange, className: this._classNames.field, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": this._isDescriptionAvailable ? this._descriptionId : this.props['aria-describedby'], \"aria-invalid\": !!this._errorMessage, \"aria-label\": this.props.ariaLabel, readOnly: this.props.readOnly, onFocus: this._onFocus, onBlur: this._onBlur })));\n };\n TextFieldBase.prototype._renderInput = function () {\n var _a;\n var inputProps = getNativeProps(this.props, inputProperties, [\n 'defaultValue',\n 'type',\n ]);\n var ariaLabelledBy = this.props['aria-labelledby'] || (this.props.label ? this._labelId : undefined);\n var type = this.state.isRevealingPassword ? 'text' : (_a = this.props.type, (_a !== null && _a !== void 0 ? _a : 'text'));\n return (React.createElement(\"input\", __assign({ type: type, id: this._id, \"aria-labelledby\": ariaLabelledBy }, inputProps, { ref: this._textElement, value: this.value || '', onInput: this._onInputChange, onChange: this._onInputChange, className: this._classNames.field, \"aria-label\": this.props.ariaLabel, \"aria-describedby\": this._isDescriptionAvailable ? this._descriptionId : this.props['aria-describedby'], \"aria-invalid\": !!this._errorMessage, readOnly: this.props.readOnly, onFocus: this._onFocus, onBlur: this._onBlur })));\n };\n TextFieldBase.prototype._validate = function (value) {\n var _this = this;\n // In case _validate is called again while validation promise is executing\n if (this._latestValidateValue === value && _shouldValidateAllChanges(this.props)) {\n return;\n }\n this._latestValidateValue = value;\n var onGetErrorMessage = this.props.onGetErrorMessage;\n var result = onGetErrorMessage && onGetErrorMessage(value || '');\n if (result !== undefined) {\n if (typeof result === 'string' || !('then' in result)) {\n this.setState({ errorMessage: result });\n this._notifyAfterValidate(value, result);\n }\n else {\n var currentValidation_1 = ++this._lastValidation;\n result.then(function (errorMessage) {\n if (currentValidation_1 === _this._lastValidation) {\n _this.setState({ errorMessage: errorMessage });\n }\n _this._notifyAfterValidate(value, errorMessage);\n });\n }\n }\n else {\n this._notifyAfterValidate(value, '');\n }\n };\n TextFieldBase.prototype._notifyAfterValidate = function (value, errorMessage) {\n if (value === this.value && this.props.onNotifyValidationResult) {\n this.props.onNotifyValidationResult(errorMessage, value);\n }\n };\n TextFieldBase.prototype._adjustInputHeight = function () {\n if (this._textElement.current && this.props.autoAdjustHeight && this.props.multiline) {\n var textField = this._textElement.current;\n textField.style.height = '';\n textField.style.height = textField.scrollHeight + 'px';\n }\n };\n TextFieldBase.defaultProps = {\n resizable: true,\n deferredValidationTime: 200,\n validateOnLoad: true,\n canRevealPassword: false,\n };\n return TextFieldBase;\n}(React.Component));\nexport { TextFieldBase };\n/** Get the value from the given state and props (converting from number to string if needed) */\nfunction _getValue(props, state) {\n var _a = props.value, value = _a === void 0 ? state.uncontrolledValue : _a;\n if (typeof value === 'number') {\n // not allowed per typings, but happens anyway\n return String(value);\n }\n return value;\n}\n/**\n * If `validateOnFocusIn` or `validateOnFocusOut` is true, validation should run **only** on that event.\n * Otherwise, validation should run on every change.\n */\nfunction _shouldValidateAllChanges(props) {\n return !(props.validateOnFocusIn || props.validateOnFocusOut);\n}\n// Only calculate this once across all TextFields, since will stay the same\nvar __browserNeedsRevealButton;\nfunction _browserNeedsRevealButton() {\n var _a;\n if (typeof __browserNeedsRevealButton !== 'boolean') {\n var win = getWindow();\n if ((_a = win) === null || _a === void 0 ? void 0 : _a.navigator) {\n // Edge, Chromium Edge\n var isEdge = /Edg/.test(win.navigator.userAgent || '');\n __browserNeedsRevealButton = !(isIE11() || isEdge);\n }\n else {\n __browserNeedsRevealButton = true;\n }\n }\n return __browserNeedsRevealButton;\n}\n//# sourceMappingURL=TextField.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "index": 31, - "index2": 111, - "size": 274, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "issuerId": "BZ1n", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "BZ1n", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "module": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "moduleName": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "53:35-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../TextField", - "loc": "177:52-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "491:43-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "506:43-52" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../TextField", - "loc": "307:36-45" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField", - "loc": "1:0-28" - }, - { - "moduleId": "BZ1n", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TextField", - "loc": "1:0-28" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/TextField", - "loc": "126:32-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony side effect evaluation", - "userRequest": "../TextField", - "loc": "3:0-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony import specifier", - "userRequest": "../TextField", - "loc": "210:36-45" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/TextField", - "loc": "63:32-41" - } - ], - "usedExports": [ - "TextField" - ], - "providedExports": [ - "TextField" - ], - "optimizationBailout": [], - "depth": 3, - "source": "import { styled } from '../../Utilities';\nimport { TextFieldBase } from './TextField.base';\nimport { getStyles } from './TextField.styles';\nexport var TextField = styled(TextFieldBase, getStyles, undefined, {\n scope: 'TextField',\n});\n//# sourceMappingURL=TextField.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.styles.js", - "index": 121, - "index2": 110, - "size": 14507, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "BZ1n", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony side effect evaluation", - "userRequest": "./TextField.styles", - "loc": "3:0-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js", - "type": "harmony import specifier", - "userRequest": "./TextField.styles", - "loc": "4:45-54" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign } from \"tslib\";\nimport { AnimationClassNames, getGlobalClassNames, getInputFocusStyle, HighContrastSelector, normalize, getPlaceholderStyles, IconFontSizes, getHighContrastNoAdjustStyle, } from '../../Styling';\nvar globalClassNames = {\n root: 'ms-TextField',\n description: 'ms-TextField-description',\n errorMessage: 'ms-TextField-errorMessage',\n field: 'ms-TextField-field',\n fieldGroup: 'ms-TextField-fieldGroup',\n prefix: 'ms-TextField-prefix',\n suffix: 'ms-TextField-suffix',\n wrapper: 'ms-TextField-wrapper',\n revealButton: 'ms-TextField-reveal',\n multiline: 'ms-TextField--multiline',\n borderless: 'ms-TextField--borderless',\n underlined: 'ms-TextField--underlined',\n unresizable: 'ms-TextField--unresizable',\n required: 'is-required',\n disabled: 'is-disabled',\n active: 'is-active',\n};\nfunction getLabelStyles(props) {\n var underlined = props.underlined, disabled = props.disabled, focused = props.focused, theme = props.theme;\n var palette = theme.palette, fonts = theme.fonts;\n return function () {\n var _a;\n return ({\n root: [\n underlined &&\n disabled && {\n color: palette.neutralTertiary,\n },\n underlined && {\n fontSize: fonts.medium.fontSize,\n marginRight: 8,\n paddingLeft: 12,\n paddingRight: 0,\n lineHeight: '22px',\n height: 32,\n },\n underlined &&\n focused && {\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n height: 31,\n },\n _a),\n },\n ],\n });\n };\n}\nexport function getStyles(props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;\n var theme = props.theme, className = props.className, disabled = props.disabled, focused = props.focused, required = props.required, multiline = props.multiline, hasLabel = props.hasLabel, borderless = props.borderless, underlined = props.underlined, hasIcon = props.hasIcon, resizable = props.resizable, hasErrorMessage = props.hasErrorMessage, inputClassName = props.inputClassName, autoAdjustHeight = props.autoAdjustHeight, hasRevealButton = props.hasRevealButton;\n var semanticColors = theme.semanticColors, effects = theme.effects, fonts = theme.fonts;\n var classNames = getGlobalClassNames(globalClassNames, theme);\n var fieldPrefixSuffix = {\n // Suffix/Prefix are not editable so the disabled slot perfectly fits.\n background: semanticColors.disabledBackground,\n color: !disabled ? semanticColors.inputPlaceholderText : semanticColors.disabledText,\n display: 'flex',\n alignItems: 'center',\n padding: '0 10px',\n lineHeight: 1,\n whiteSpace: 'nowrap',\n flexShrink: 0,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n background: 'Window',\n color: disabled ? 'GrayText' : 'WindowText',\n },\n _a),\n };\n // placeholder style constants\n var placeholderStyles = [\n fonts.medium,\n {\n color: semanticColors.inputPlaceholderText,\n opacity: 1,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'GrayText',\n },\n _b),\n },\n ];\n var disabledPlaceholderStyles = {\n color: semanticColors.disabledText,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'GrayText',\n },\n _c),\n };\n return {\n root: [\n classNames.root,\n fonts.medium,\n required && classNames.required,\n disabled && classNames.disabled,\n focused && classNames.active,\n multiline && classNames.multiline,\n borderless && classNames.borderless,\n underlined && classNames.underlined,\n normalize,\n {\n position: 'relative',\n },\n className,\n ],\n wrapper: [\n classNames.wrapper,\n underlined && [\n {\n display: 'flex',\n borderBottom: \"1px solid \" + (!hasErrorMessage ? semanticColors.inputBorder : semanticColors.errorText),\n width: '100%',\n },\n disabled && {\n borderBottomColor: semanticColors.disabledBackground,\n selectors: (_d = {},\n _d[HighContrastSelector] = __assign({ borderColor: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _d),\n },\n !disabled && {\n selectors: {\n ':hover': {\n borderBottomColor: !hasErrorMessage ? semanticColors.inputBorderHovered : semanticColors.errorText,\n selectors: (_e = {},\n _e[HighContrastSelector] = __assign({ borderBottomColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _e),\n },\n },\n },\n focused && [\n {\n position: 'relative',\n },\n getInputFocusStyle(!hasErrorMessage ? semanticColors.inputFocusBorderAlt : semanticColors.errorText, 0, 'borderBottom'),\n ],\n ],\n ],\n fieldGroup: [\n classNames.fieldGroup,\n normalize,\n {\n border: \"1px solid \" + semanticColors.inputBorder,\n borderRadius: effects.roundedCorner2,\n background: semanticColors.inputBackground,\n cursor: 'text',\n height: 32,\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'stretch',\n position: 'relative',\n },\n multiline && {\n minHeight: '60px',\n height: 'auto',\n display: 'flex',\n },\n !focused &&\n !disabled && {\n selectors: {\n ':hover': {\n borderColor: semanticColors.inputBorderHovered,\n selectors: (_f = {},\n _f[HighContrastSelector] = __assign({ borderColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _f),\n },\n },\n },\n focused &&\n !underlined &&\n getInputFocusStyle(!hasErrorMessage ? semanticColors.inputFocusBorderAlt : semanticColors.errorText, effects.roundedCorner2),\n disabled && {\n borderColor: semanticColors.disabledBackground,\n selectors: (_g = {},\n _g[HighContrastSelector] = __assign({ borderColor: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _g),\n cursor: 'default',\n },\n borderless && {\n border: 'none',\n },\n borderless &&\n focused && {\n border: 'none',\n selectors: {\n ':after': {\n border: 'none',\n },\n },\n },\n underlined && {\n flex: '1 1 0px',\n border: 'none',\n textAlign: 'left',\n },\n underlined &&\n disabled && {\n backgroundColor: 'transparent',\n },\n hasErrorMessage &&\n !underlined && {\n borderColor: semanticColors.errorText,\n selectors: {\n '&:hover': {\n borderColor: semanticColors.errorText,\n },\n },\n },\n !hasLabel &&\n required && {\n selectors: (_h = {\n ':before': {\n content: \"'*'\",\n color: semanticColors.errorText,\n position: 'absolute',\n top: -5,\n right: -10,\n }\n },\n _h[HighContrastSelector] = {\n selectors: {\n ':before': {\n color: 'WindowText',\n right: -14,\n },\n },\n },\n _h),\n },\n ],\n field: [\n fonts.medium,\n classNames.field,\n normalize,\n {\n borderRadius: 0,\n border: 'none',\n background: 'none',\n backgroundColor: 'transparent',\n color: semanticColors.inputText,\n padding: '0 8px',\n width: '100%',\n minWidth: 0,\n textOverflow: 'ellipsis',\n outline: 0,\n selectors: (_j = {\n '&:active, &:focus, &:hover': { outline: 0 },\n '::-ms-clear': {\n display: 'none',\n }\n },\n _j[HighContrastSelector] = {\n background: 'Window',\n color: disabled ? 'GrayText' : 'WindowText',\n },\n _j),\n },\n getPlaceholderStyles(placeholderStyles),\n multiline &&\n !resizable && [\n classNames.unresizable,\n {\n resize: 'none',\n },\n ],\n multiline && {\n minHeight: 'inherit',\n lineHeight: 17,\n flexGrow: 1,\n paddingTop: 6,\n paddingBottom: 6,\n overflow: 'auto',\n width: '100%',\n },\n multiline &&\n autoAdjustHeight && {\n overflow: 'hidden',\n },\n hasIcon &&\n !hasRevealButton && {\n paddingRight: 24,\n },\n multiline &&\n hasIcon && {\n paddingRight: 40,\n },\n disabled && [\n {\n backgroundColor: semanticColors.disabledBackground,\n color: semanticColors.disabledText,\n borderColor: semanticColors.disabledBackground,\n },\n getPlaceholderStyles(disabledPlaceholderStyles),\n ],\n underlined && {\n textAlign: 'left',\n },\n focused &&\n !borderless && {\n selectors: (_k = {},\n _k[HighContrastSelector] = {\n paddingLeft: 11,\n paddingRight: 11,\n },\n _k),\n },\n focused &&\n multiline &&\n !borderless && {\n selectors: (_l = {},\n _l[HighContrastSelector] = {\n paddingTop: 4,\n },\n _l),\n },\n inputClassName,\n ],\n icon: [\n multiline && {\n paddingRight: 24,\n alignItems: 'flex-end',\n },\n {\n pointerEvents: 'none',\n position: 'absolute',\n bottom: 6,\n right: 8,\n top: 'auto',\n fontSize: IconFontSizes.medium,\n lineHeight: 18,\n },\n disabled && {\n color: semanticColors.disabledText,\n },\n ],\n description: [\n classNames.description,\n {\n color: semanticColors.bodySubtext,\n fontSize: fonts.xSmall.fontSize,\n },\n ],\n errorMessage: [\n classNames.errorMessage,\n AnimationClassNames.slideDownIn20,\n fonts.small,\n {\n color: semanticColors.errorText,\n margin: 0,\n paddingTop: 5,\n display: 'flex',\n alignItems: 'center',\n },\n ],\n prefix: [classNames.prefix, fieldPrefixSuffix],\n suffix: [classNames.suffix, fieldPrefixSuffix],\n revealButton: [\n classNames.revealButton,\n 'ms-Button',\n 'ms-Button--icon',\n {\n height: 30,\n width: 32,\n border: 'none',\n padding: '0px 4px',\n backgroundColor: 'transparent',\n color: semanticColors.link,\n selectors: {\n ':hover': {\n outline: 0,\n color: semanticColors.primaryButtonBackgroundHovered,\n backgroundColor: semanticColors.buttonBackgroundHovered,\n selectors: (_m = {},\n _m[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _m),\n },\n ':focus': { outline: 0 },\n },\n },\n hasIcon && {\n marginRight: 28,\n },\n ],\n revealSpan: {\n display: 'flex',\n height: '100%',\n alignItems: 'center',\n },\n revealIcon: {\n margin: '0px 4px',\n pointerEvents: 'none',\n bottom: 6,\n right: 8,\n top: 'auto',\n fontSize: IconFontSizes.medium,\n lineHeight: 18,\n },\n subComponentStyles: {\n label: getLabelStyles(props),\n },\n };\n}\n//# sourceMappingURL=TextField.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/controlled.js", - "name": "./node_modules/@uifabric/utilities/lib/controlled.js", - "index": 119, - "index2": 107, - "size": 541, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "module": "./node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "type": "harmony side effect evaluation", - "userRequest": "../controlled", - "loc": "2:0-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "315:19-31" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "160:11-23" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./controlled", - "loc": "17:0-29" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./controlled", - "loc": "17:0-29" - } - ], - "usedExports": [ - "isControlled" - ], - "providedExports": [ - "isControlled" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Determines whether a component is controlled.\n * @param props - Component props\n * @param valueProp - Prop containing the controlled value\n * @returns true if controlled, false if uncontrolled\n */\nexport function isControlled(props, valueProp) {\n // React's built-in considers a prop to be provided if its value is non-null/undefined.\n // Mirror that behavior here (rather than checking for just undefined).\n return props[valueProp] !== undefined && props[valueProp] !== null;\n}\n//# sourceMappingURL=controlled.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/ie11Detector.js", - "name": "./node_modules/@uifabric/utilities/lib/ie11Detector.js", - "index": 120, - "index2": 108, - "size": 385, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "443:43-49" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "27:16-22" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "85:18-24" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ie11Detector", - "loc": "58:0-31" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ie11Detector", - "loc": "58:0-31" - } - ], - "usedExports": [ - "isIE11" - ], - "providedExports": [ - "isIE11" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\nexport var isIE11 = function () {\n var _a, _b;\n var win = getWindow();\n if (!((_b = (_a = win) === null || _a === void 0 ? void 0 : _a.navigator) === null || _b === void 0 ? void 0 : _b.userAgent)) {\n return false;\n }\n return win.navigator.userAgent.indexOf('rv:11.0') > -1;\n};\n//# sourceMappingURL=ie11Detector.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warnControlledUsage.js", - "index": 118, - "index2": 106, - "size": 4599, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "289:8-27" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnControlledUsage", - "loc": "3:0-43" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnControlledUsage", - "loc": "3:0-43" - } - ], - "usedExports": [ - "warnControlledUsage" - ], - "providedExports": [ - "resetControlledWarnings", - "warnControlledUsage" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { warn } from './warn';\nimport { isControlled as checkIsControlled } from '../controlled';\nvar warningsMap;\nif (process.env.NODE_ENV !== 'production') {\n warningsMap = {\n valueOnChange: {},\n valueDefaultValue: {},\n controlledToUncontrolled: {},\n uncontrolledToControlled: {},\n };\n}\n/** Reset controlled usage warnings for testing purposes. */\nexport function resetControlledWarnings() {\n if (process.env.NODE_ENV !== 'production') {\n warningsMap.valueOnChange = {};\n warningsMap.valueDefaultValue = {};\n warningsMap.controlledToUncontrolled = {};\n warningsMap.uncontrolledToControlled = {};\n }\n}\n/**\n * Check for and warn on the following error conditions with a form component:\n * - A value prop is provided (indicated it's being used as controlled) without a change handler,\n * and the component is not read-only\n * - Both the value and defaultValue props are provided\n * - The component is attempting to switch between controlled and uncontrolled\n *\n * The messages mimic the warnings React gives for these error conditions on input elements.\n * The warning will only be displayed once per component ID.\n */\nexport function warnControlledUsage(params) {\n if (process.env.NODE_ENV !== 'production') {\n var componentId = params.componentId, componentName = params.componentName, defaultValueProp = params.defaultValueProp, props = params.props, oldProps = params.oldProps, onChangeProp = params.onChangeProp, readOnlyProp = params.readOnlyProp, valueProp = params.valueProp;\n // This warning logic closely follows what React does for native elements.\n var oldIsControlled = oldProps ? checkIsControlled(oldProps, valueProp) : undefined;\n var newIsControlled = checkIsControlled(props, valueProp);\n if (newIsControlled) {\n // onChange (or readOnly) must be provided if value is provided\n var hasOnChange = !!props[onChangeProp];\n var isReadOnly = !!(readOnlyProp && props[readOnlyProp]);\n if (!(hasOnChange || isReadOnly) && !warningsMap.valueOnChange[componentId]) {\n warningsMap.valueOnChange[componentId] = true;\n warn(\"Warning: You provided a '\" + valueProp + \"' prop to a \" + componentName + \" without an '\" + onChangeProp + \"' handler. \" +\n (\"This will render a read-only field. If the field should be mutable use '\" + defaultValueProp + \"'. \") +\n (\"Otherwise, set '\" + onChangeProp + \"'\" + (readOnlyProp ? \" or '\" + readOnlyProp + \"'\" : '') + \".\"));\n }\n // value and defaultValue are mutually exclusive\n var defaultValue = props[defaultValueProp];\n if (defaultValue !== undefined && defaultValue !== null && !warningsMap.valueDefaultValue[componentId]) {\n warningsMap.valueDefaultValue[componentId] = true;\n warn(\"Warning: You provided both '\" + valueProp + \"' and '\" + defaultValueProp + \"' to a \" + componentName + \". \" +\n (\"Form fields must be either controlled or uncontrolled (specify either the '\" + valueProp + \"' prop, \") +\n (\"or the '\" + defaultValueProp + \"' prop, but not both). Decide between using a controlled or uncontrolled \") +\n (componentName + \" and remove one of these props. More info: https://fb.me/react-controlled-components\"));\n }\n }\n // Warn if switching between uncontrolled and controlled. (One difference between this implementation\n // and React's is that if oldIsControlled is indeterminate and newIsControlled true, we don't warn.)\n if (oldProps && newIsControlled !== oldIsControlled) {\n var oldType = oldIsControlled ? 'a controlled' : 'an uncontrolled';\n var newType = oldIsControlled ? 'uncontrolled' : 'controlled';\n var warnMap = oldIsControlled ? warningsMap.controlledToUncontrolled : warningsMap.uncontrolledToControlled;\n if (!warnMap[componentId]) {\n warnMap[componentId] = true;\n warn(\"Warning: A component is changing \" + oldType + \" \" + componentName + \" to be \" + newType + \". \" +\n (componentName + \"s should not switch from controlled to uncontrolled (or vice versa). \") +\n \"Decide between using controlled or uncontrolled for the lifetime of the component. \" +\n \"More info: https://fb.me/react-controlled-components\");\n }\n }\n }\n}\n//# sourceMappingURL=warnControlledUsage.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "Cv5W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "index": null, - "index2": null, - "size": 1103, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CompoundButton/CompoundButton", - "loc": "7:0-48" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CompoundButton/CompoundButton", - "loc": "7:0-48" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./CompoundButton/CompoundButton", - "loc": "7:0-65" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./CompoundButton/CompoundButton", - "loc": "30:43-57" - } - ], - "usedExports": false, - "providedExports": [ - "CompoundButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable } from '../../../Utilities';\nimport { getStyles } from './CompoundButton.styles';\n/**\n * {@docCategory Button}\n */\nvar CompoundButton = /** @class */ (function (_super) {\n __extends(CompoundButton, _super);\n function CompoundButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n CompoundButton.prototype.render = function () {\n var _a = this.props, _b = _a.primary, primary = _b === void 0 ? false : _b, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: primary ? 'ms-Button--compoundPrimary' : 'ms-Button--compound', styles: getStyles(theme, styles, primary) })));\n };\n CompoundButton = __decorate([\n customizable('CompoundButton', ['theme', 'styles'], true)\n ], CompoundButton);\n return CompoundButton;\n}(React.Component));\nexport { CompoundButton };\n//# sourceMappingURL=CompoundButton.js.map" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js", - "index": 461, - "index2": 464, - "size": 483, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "issuerId": "O0oS", - "issuerName": "./node_modules/lodash/_defineProperty.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HOxn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Promise.js", - "module": "./node_modules/lodash/_Promise.js", - "moduleName": "./node_modules/lodash/_Promise.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "O0oS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "module": "./node_modules/lodash/_defineProperty.js", - "moduleName": "./node_modules/lodash/_defineProperty.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "Of+w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_WeakMap.js", - "module": "./node_modules/lodash/_WeakMap.js", - "moduleName": "./node_modules/lodash/_WeakMap.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "YESw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nativeCreate.js", - "module": "./node_modules/lodash/_nativeCreate.js", - "moduleName": "./node_modules/lodash/_nativeCreate.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "ebwN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Map.js", - "module": "./node_modules/lodash/_Map.js", - "moduleName": "./node_modules/lodash/_Map.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "tadb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_DataView.js", - "module": "./node_modules/lodash/_DataView.js", - "moduleName": "./node_modules/lodash/_DataView.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - }, - { - "moduleId": "yGk4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Set.js", - "module": "./node_modules/lodash/_Set.js", - "moduleName": "./node_modules/lodash/_Set.js", - "type": "cjs require", - "userRequest": "./_getNative", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var baseIsNative = require('./_baseIsNative'),\n getValue = require('./_getValue');\n\n/**\n * Gets the native function at `key` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the method to get.\n * @returns {*} Returns the function if it's native, else `undefined`.\n */\nfunction getNative(object, key) {\n var value = getValue(object, key);\n return baseIsNative(value) ? value : undefined;\n}\n\nmodule.exports = getNative;\n" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "index": null, - "index2": null, - "size": 557, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "issuerId": "Fx5H", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Button.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Fx5H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Button/index", - "loc": "1:0-42" - }, - { - "moduleId": "Fx5H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Button.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Button/index", - "loc": "1:0-42" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/components/Button", - "loc": "24:0-92" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/components/Button", - "loc": "27:0-77" - } - ], - "usedExports": false, - "providedExports": [ - "BaseButton", - "ElementType", - "ButtonType", - "Button", - "ActionButton", - "CommandBarButton", - "CommandButton", - "CompoundButton", - "DefaultButton", - "MessageBarButton", - "PrimaryButton", - "IconButton", - "getSplitButtonClassNames" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './BaseButton';\nexport * from './Button.types';\nexport * from './Button';\nexport * from './ActionButton/ActionButton';\nexport * from './CommandBarButton/CommandBarButton';\nexport * from './CommandButton/CommandButton';\nexport * from './CompoundButton/CompoundButton';\nexport * from './DefaultButton/DefaultButton';\nexport * from './MessageBarButton/MessageBarButton';\nexport * from './PrimaryButton/PrimaryButton';\nexport * from './IconButton/IconButton';\nexport * from './SplitButton/SplitButton.classNames';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "D2C2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "index": null, - "index2": null, - "size": 59, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "issuerId": "ZUV6", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "ZUV6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "name": "./node_modules/office-ui-fabric-react/lib/Keytips.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Hl3h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Keytip.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Keytip/index", - "loc": "1:0-42" - }, - { - "moduleId": "Hl3h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Keytip.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Keytip/index", - "loc": "1:0-42" - }, - { - "moduleId": "ZUV6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "module": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Keytip/index", - "loc": "1:0-42" - }, - { - "moduleId": "ZUV6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "module": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Keytip/index", - "loc": "1:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "Keytip" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './Keytip';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "D2wA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "index": null, - "index2": null, - "size": 856, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "issuerId": "lDul", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "txsR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Stack.js", - "name": "./node_modules/office-ui-fabric-react/lib/Stack.js" - }, - { - "id": "lDul", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Stack/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony side effect evaluation", - "userRequest": "./StackItem/StackItem", - "loc": "8:0-50" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "./StackItem/StackItem", - "loc": "48:34-43" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "userRequest": "./StackItem/StackItem", - "loc": "51:10-19" - }, - { - "moduleId": "lDul", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./StackItem/StackItem", - "loc": "1:0-38" - }, - { - "moduleId": "lDul", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/index.js", - "type": "harmony export imported specifier", - "userRequest": "./StackItem/StackItem", - "loc": "1:0-38" - } - ], - "usedExports": false, - "providedExports": [ - "StackItem", - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign } from \"tslib\";\n/** @jsxRuntime classic */\n/** @jsx withSlots */\nimport * as React from 'react';\nimport { withSlots, createComponent, getSlots } from '../../../Foundation';\nimport { getNativeProps, htmlElementProperties } from '../../../Utilities';\nimport { StackItemStyles as styles } from './StackItem.styles';\nvar StackItemView = function (props) {\n var children = props.children;\n var nativeProps = getNativeProps(props, htmlElementProperties);\n if (React.Children.count(children) < 1) {\n return null;\n }\n var Slots = getSlots(props, {\n root: 'div',\n });\n return withSlots(Slots.root, __assign({}, nativeProps), children);\n};\nexport var StackItem = createComponent(StackItemView, {\n displayName: 'StackItem',\n styles: styles,\n});\nexport default StackItem;\n//# sourceMappingURL=StackItem.js.map" - }, - { - "id": "D5CM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "index": null, - "index2": null, - "size": 325, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "issuerId": "7wj7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "pEld", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js" - }, - { - "id": "7wj7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7wj7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SwatchColorPicker", - "loc": "1:0-36" - }, - { - "moduleId": "7wj7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SwatchColorPicker", - "loc": "1:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "SwatchColorPicker" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { SwatchColorPickerBase } from './SwatchColorPicker.base';\nimport { getStyles } from './SwatchColorPicker.styles';\nexport var SwatchColorPicker = styled(SwatchColorPickerBase, getStyles, undefined, { scope: 'SwatchColorPicker' });\n//# sourceMappingURL=SwatchColorPicker.js.map" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "index": null, - "index2": null, - "size": 314, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "issuerId": "Hc8E", - "issuerName": "./node_modules/office-ui-fabric-react/lib/GroupedList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Hc8E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "module": "./node_modules/office-ui-fabric-react/lib/GroupedList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/GroupedList.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/GroupedList/index", - "loc": "1:0-47" - }, - { - "moduleId": "Hc8E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "module": "./node_modules/office-ui-fabric-react/lib/GroupedList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/GroupedList.js", - "type": "harmony export imported specifier", - "userRequest": "./components/GroupedList/index", - "loc": "1:0-47" - } - ], - "usedExports": false, - "providedExports": [ - "GroupedList", - "GroupedListBase", - "CollapseAllVisibility", - "GroupHeader", - "GroupFooter", - "GroupShowAll", - "GroupSpacer", - "GroupedListSection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './GroupedList';\nexport * from './GroupedList.base';\nexport * from './GroupedList.types';\nexport * from './GroupHeader';\nexport * from './GroupFooter';\nexport * from './GroupShowAll';\nexport { GroupSpacer } from './GroupSpacer';\nexport * from './GroupedListSection';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "DN5P", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "index": null, - "index2": null, - "size": 4504, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "issuerId": "oOJb", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "6LVT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ProgressIndicator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ProgressIndicator.js" - }, - { - "id": "oOJb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "oOJb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ProgressIndicator.base", - "loc": "2:0-41" - }, - { - "moduleId": "oOJb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ProgressIndicator.base", - "loc": "2:0-41" - }, - { - "moduleId": "ypaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "type": "harmony side effect evaluation", - "userRequest": "./ProgressIndicator.base", - "loc": "2:0-65" - }, - { - "moduleId": "ypaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "type": "harmony import specifier", - "userRequest": "./ProgressIndicator.base", - "loc": "7:38-59" - } - ], - "usedExports": false, - "providedExports": [ - "ProgressIndicatorBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getId } from '../../Utilities';\nvar getClassNames = classNamesFunction();\n// if the percentComplete is near 0, don't animate it.\n// This prevents animations on reset to 0 scenarios\nvar ZERO_THRESHOLD = 0.01;\n/**\n * ProgressIndicator with no default styles.\n * [Use the `styles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Styling)\n */\nvar ProgressIndicatorBase = /** @class */ (function (_super) {\n __extends(ProgressIndicatorBase, _super);\n function ProgressIndicatorBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onRenderProgress = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, ariaValueText = _a.ariaValueText, barHeight = _a.barHeight, className = _a.className, description = _a.description, _b = _a.label, label = _b === void 0 ? _this.props.title : _b, styles = _a.styles, theme = _a.theme;\n var percentComplete = typeof _this.props.percentComplete === 'number'\n ? Math.min(100, Math.max(0, _this.props.percentComplete * 100))\n : undefined;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n barHeight: barHeight,\n indeterminate: percentComplete === undefined ? true : false,\n });\n var progressBarStyles = {\n width: percentComplete !== undefined ? percentComplete + '%' : undefined,\n transition: percentComplete !== undefined && percentComplete < ZERO_THRESHOLD ? 'none' : undefined,\n };\n var ariaValueMin = percentComplete !== undefined ? 0 : undefined;\n var ariaValueMax = percentComplete !== undefined ? 100 : undefined;\n var ariaValueNow = percentComplete !== undefined ? Math.floor(percentComplete) : undefined;\n return (React.createElement(\"div\", { className: classNames.itemProgress },\n React.createElement(\"div\", { className: classNames.progressTrack }),\n React.createElement(\"div\", { className: classNames.progressBar, style: progressBarStyles, role: \"progressbar\", \"aria-describedby\": description ? _this._descriptionId : undefined, \"aria-labelledby\": label ? _this._labelId : undefined, \"aria-valuemin\": ariaValueMin, \"aria-valuemax\": ariaValueMax, \"aria-valuenow\": ariaValueNow, \"aria-valuetext\": ariaValueText })));\n };\n var id = getId('progress-indicator');\n _this._labelId = id + '-label';\n _this._descriptionId = id + '-description';\n return _this;\n }\n ProgressIndicatorBase.prototype.render = function () {\n var _a = this.props, barHeight = _a.barHeight, className = _a.className, \n // eslint-disable-next-line deprecation/deprecation\n _b = _a.label, \n // eslint-disable-next-line deprecation/deprecation\n label = _b === void 0 ? this.props.title : _b, // Fall back to deprecated value.\n description = _a.description, styles = _a.styles, theme = _a.theme, progressHidden = _a.progressHidden, _c = _a.onRenderProgress, onRenderProgress = _c === void 0 ? this._onRenderProgress : _c;\n var percentComplete = typeof this.props.percentComplete === 'number'\n ? Math.min(100, Math.max(0, this.props.percentComplete * 100))\n : undefined;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n barHeight: barHeight,\n indeterminate: percentComplete === undefined ? true : false,\n });\n return (React.createElement(\"div\", { className: classNames.root },\n label ? (React.createElement(\"div\", { id: this._labelId, className: classNames.itemName }, label)) : null,\n !progressHidden\n ? onRenderProgress(__assign(__assign({}, this.props), { percentComplete: percentComplete }), this._onRenderProgress)\n : null,\n description ? (React.createElement(\"div\", { id: this._descriptionId, className: classNames.itemDescription }, description)) : null));\n };\n ProgressIndicatorBase.defaultProps = {\n label: '',\n description: '',\n width: 180,\n };\n return ProgressIndicatorBase;\n}(React.Component));\nexport { ProgressIndicatorBase };\n//# sourceMappingURL=ProgressIndicator.base.js.map" - }, - { - "id": "DRN8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "name": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "index": null, - "index2": null, - "size": 93, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ScrollablePane", - "loc": "65:0-33" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ScrollablePane", - "loc": "65:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "ScrollablePane", - "ScrollablePaneBase", - "ScrollbarVisibility", - "ScrollablePaneContext" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/ScrollablePane/index';\n//# sourceMappingURL=ScrollablePane.js.map" - }, - { - "id": "DSRE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "name": "./node_modules/lodash/isBuffer.js", - "index": 503, - "index2": 495, - "size": 1114, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "issuerId": "b80T", - "issuerName": "./node_modules/lodash/_arrayLikeKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./isBuffer", - "loc": "17:15-36" - }, - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./isBuffer", - "loc": "4:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var root = require('./_root'),\n stubFalse = require('./stubFalse');\n\n/** Detect free variable `exports`. */\nvar freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Built-in value references. */\nvar Buffer = moduleExports ? root.Buffer : undefined;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;\n\n/**\n * Checks if `value` is a buffer.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n * @example\n *\n * _.isBuffer(new Buffer(2));\n * // => true\n *\n * _.isBuffer(new Uint8Array(2));\n * // => false\n */\nvar isBuffer = nativeIsBuffer || stubFalse;\n\nmodule.exports = isBuffer;\n" - }, - { - "id": "DU53", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/osDetector.js", - "name": "./node_modules/@uifabric/utilities/lib/osDetector.js", - "index": 219, - "index2": 202, - "size": 527, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "157:67-72" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "186:62-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "855:47-52" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "14:9-14" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./osDetector", - "loc": "45:0-29" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./osDetector", - "loc": "45:0-29" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "605:64-69" - } - ], - "usedExports": [ - "isMac" - ], - "providedExports": [ - "isMac" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\nvar isMacResult;\n/**\n * Returns true if the user is on a Mac. Caches the result value.\n * @param reset - Reset the cached result value (mainly for testing).\n */\nexport function isMac(reset) {\n if (typeof isMacResult === 'undefined' || reset) {\n var win = getWindow();\n var userAgent = win && win.navigator.userAgent;\n isMacResult = !!userAgent && userAgent.indexOf('Macintosh') !== -1;\n }\n return !!isMacResult;\n}\n//# sourceMappingURL=osDetector.js.map" - }, - { - "id": "DeEv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "index": 107, - "index2": 104, - "size": 4729, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "8:50-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "15:31-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "24:88-92" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "25:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Icon", - "loc": "29:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "33:47-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "34:119-123" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "48:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "49:43-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "53:113-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "74:154-158" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "74:293-297" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "81:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "122:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "123:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "124:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "127:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "128:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "154:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "203:53-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "208:48-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "284:189-193" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "284:268-272" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "465:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "557:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "567:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "573:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "578:65-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:160-164" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:268-272" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:377-381" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:479-483" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:32-36" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "65:36-40" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "156:36-40" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "255:48-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "261:48-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "263:48-52" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "285:49-53" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "301:49-53" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "126:32-36" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "170:32-36" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "68:108-112" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "49:44-48" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "174:48-52" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "180:48-52" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "221:58-62" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "31:36-40" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "69:36-40" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "74:32-36" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "59:40-44" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "29:46-50" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "11:28-32" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "12:48-52" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "31:32-36" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "35:35-39" - } - ], - "usedExports": [ - "Icon" - ], - "providedExports": [ - "Icon" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.types.js", - "index": 110, - "index2": 96, - "size": 906, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.types", - "loc": "3:0-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "./Icon.types", - "loc": "36:59-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "type": "harmony import specifier", - "userRequest": "./Icon.types", - "loc": "36:101-109" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.types", - "loc": "3:0-29" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon.types", - "loc": "3:0-29" - } - ], - "usedExports": [ - "IconType" - ], - "providedExports": [ - "IconType" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n * {@docCategory Icon}\n */\nexport var IconType;\n(function (IconType) {\n /**\n * Render using the fabric icon font.\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"default\"] = 0] = \"default\";\n /**\n * Render using an image, where imageProps would be used.\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"image\"] = 1] = \"image\";\n /**\n * Deprecated, use `default`.\n * @deprecated Use `default`.\n */\n IconType[IconType[\"Default\"] = 100000] = \"Default\";\n /**\n * Deprecated, use `image`.\n * @deprecated Use `image`.\n */\n IconType[IconType[\"Image\"] = 100001] = \"Image\";\n})(IconType || (IconType = {}));\n//# sourceMappingURL=Icon.types.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.base.js", - "index": 108, - "index2": 103, - "size": 3282, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.base", - "loc": "2:0-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "type": "harmony import specifier", - "userRequest": "./Icon.base", - "loc": "9:25-33" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon.base", - "loc": "2:0-28" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon.base", - "loc": "2:0-28" - } - ], - "usedExports": [ - "IconBase" - ], - "providedExports": [ - "IconBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { IconType } from './Icon.types';\nimport { Image } from '../Image/Image';\nimport { ImageLoadState } from '../Image/Image.types';\nimport { getNativeProps, htmlElementProperties, classNamesFunction } from '../../Utilities';\nimport { getIconContent } from './FontIcon';\nvar getClassNames = classNamesFunction({\n // Icon is used a lot by other components.\n // It's likely to see expected cases which pass different className to the Icon.\n // Therefore setting a larger cache size.\n cacheSize: 100,\n});\nvar IconBase = /** @class */ (function (_super) {\n __extends(IconBase, _super);\n function IconBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onImageLoadingStateChange = function (state) {\n if (_this.props.imageProps && _this.props.imageProps.onLoadingStateChange) {\n _this.props.imageProps.onLoadingStateChange(state);\n }\n if (state === ImageLoadState.error) {\n _this.setState({ imageLoadError: true });\n }\n };\n _this.state = {\n imageLoadError: false,\n };\n return _this;\n }\n IconBase.prototype.render = function () {\n var _a = this.props, children = _a.children, className = _a.className, styles = _a.styles, iconName = _a.iconName, imageErrorAs = _a.imageErrorAs, theme = _a.theme;\n var isPlaceholder = typeof iconName === 'string' && iconName.length === 0;\n var isImage = \n // eslint-disable-next-line deprecation/deprecation\n !!this.props.imageProps || this.props.iconType === IconType.image || this.props.iconType === IconType.Image;\n var iconContent = getIconContent(iconName) || {};\n var iconClassName = iconContent.iconClassName, iconContentChildren = iconContent.children;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n iconClassName: iconClassName,\n isImage: isImage,\n isPlaceholder: isPlaceholder,\n });\n var RootType = isImage ? 'span' : 'i';\n var nativeProps = getNativeProps(this.props, htmlElementProperties, [\n 'aria-label',\n ]);\n var imageLoadError = this.state.imageLoadError;\n var imageProps = __assign(__assign({}, this.props.imageProps), { onLoadingStateChange: this._onImageLoadingStateChange });\n var ImageType = (imageLoadError && imageErrorAs) || Image;\n // eslint-disable-next-line deprecation/deprecation\n var ariaLabel = this.props['aria-label'] || this.props.ariaLabel;\n var containerProps = ariaLabel\n ? {\n 'aria-label': ariaLabel,\n }\n : {\n 'aria-hidden': this.props['aria-labelledby'] || imageProps['aria-labelledby'] ? false : true,\n };\n return (React.createElement(RootType, __assign({ \"data-icon-name\": iconName }, containerProps, nativeProps, { className: classNames.root }), isImage ? React.createElement(ImageType, __assign({}, imageProps)) : children || iconContentChildren));\n };\n return IconBase;\n}(React.Component));\nexport { IconBase };\n//# sourceMappingURL=Icon.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js", - "index": 107, - "index2": 104, - "size": 496, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerId": "d6Sr", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zudV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icon.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icon.js" - }, - { - "id": "d6Sr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "8:50-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "15:31-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/PersonaPresence.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "24:88-92" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "25:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Icon", - "loc": "29:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "33:47-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "34:119-123" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "48:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "49:43-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "53:113-117" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "74:154-158" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/MessageBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "74:293-297" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "81:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsColumn.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "122:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "123:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "124:40-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "127:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "128:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Facepile/Facepile.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "154:39-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "203:53-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "208:48-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "284:189-193" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Icon/index", - "loc": "284:268-272" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "465:54-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "557:44-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "567:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "573:36-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "578:65-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:160-164" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:268-272" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:377-381" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react", - "loc": "944:479-483" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "23:32-36" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "65:36-40" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "156:36-40" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "255:48-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "261:48-52" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "263:48-52" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "285:49-53" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "301:49-53" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "126:32-36" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "170:32-36" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "68:108-112" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Icon", - "loc": "49:44-48" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "174:48-52" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "180:48-52" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "221:58-62" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "31:36-40" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "69:36-40" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "d6Sr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Icon", - "loc": "1:0-23" - }, - { - "moduleId": "fJrQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/CollectionIconField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Icon", - "loc": "74:32-36" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "59:40-44" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "29:46-50" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "11:28-32" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "12:48-52" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "31:32-36" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Icon", - "loc": "35:35-39" - } - ], - "usedExports": [ - "Icon" - ], - "providedExports": [ - "Icon" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { IconBase } from './Icon.base';\nimport { getStyles } from './Icon.styles';\n/**\n * Legacy Icon component which can be targeted by customization. It's recommended to use `FontIcon`\n * or `ImageIcon` instead, especially in scenarios where rendering performance is important.\n * {@docCategory Icon}\n */\nexport var Icon = styled(IconBase, getStyles, undefined, {\n scope: 'Icon',\n}, true);\nIcon.displayName = 'Icon';\n//# sourceMappingURL=Icon.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "Dha1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "index": null, - "index2": null, - "size": 545, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "issuerId": "3Wi1", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusTrapCallout", - "loc": "4:0-35" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusTrapCallout", - "loc": "4:0-35" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Callout", - "loc": "9:87-103" - } - ], - "usedExports": false, - "providedExports": [ - "FocusTrapCallout" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { Callout } from './Callout';\nimport { FocusTrapZone } from '../../FocusTrapZone';\n/**\n * A special Callout that uses FocusTrapZone to trap focus\n * @param props - Props for the component\n */\nexport var FocusTrapCallout = function (props) {\n return (React.createElement(Callout, __assign({}, props),\n React.createElement(FocusTrapZone, __assign({ disabled: props.hidden }, props.focusTrapProps), props.children)));\n};\n//# sourceMappingURL=FocusTrapCallout.js.map" - }, - { - "id": "DlPT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "index": null, - "index2": null, - "size": 100, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "issuerId": "Hgfh", - "issuerName": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hgfh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Hgfh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "module": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/OverflowSet/index", - "loc": "1:0-47" - }, - { - "moduleId": "Hgfh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "module": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "type": "harmony export imported specifier", - "userRequest": "./components/OverflowSet/index", - "loc": "1:0-47" - } - ], - "usedExports": false, - "providedExports": [ - "OverflowSet", - "OverflowSetBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './OverflowSet';\nexport * from './OverflowSet.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Dw+G", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignIn.js", - "name": "./node_modules/lodash/_baseAssignIn.js", - "index": 517, - "index2": 513, - "size": 482, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_baseAssignIn", - "loc": "5:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var copyObject = require('./_copyObject'),\n keysIn = require('./keysIn');\n\n/**\n * The base implementation of `_.assignIn` without support for multiple sources\n * or `customizer` functions.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @returns {Object} Returns `object`.\n */\nfunction baseAssignIn(object, source) {\n return object && copyObject(source, keysIn(source), object);\n}\n\nmodule.exports = baseAssignIn;\n" - }, - { - "id": "Dx+s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "index": null, - "index2": null, - "size": 97, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "issuerId": "eWqB", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "eWqB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "eWqB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/FocusZone/index", - "loc": "1:0-45" - }, - { - "moduleId": "eWqB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "type": "harmony export imported specifier", - "userRequest": "./components/FocusZone/index", - "loc": "1:0-45" - } - ], - "usedExports": false, - "providedExports": [ - "FocusZone", - "FocusZoneTabbableElements", - "FocusZoneDirection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 11, - "source": "export * from './FocusZone';\nexport * from './FocusZone.types';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "DyGw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/Calendar.js", - "index": null, - "index2": null, - "size": 81, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Calendar", - "loc": "4:0-53" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Calendar", - "loc": "7:0-27" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Calendar", - "loc": "7:0-27" - } - ], - "usedExports": false, - "providedExports": [ - "Calendar", - "DayOfWeek", - "DateRangeType", - "FirstWeekOfYear" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Calendar/index';\n//# sourceMappingURL=Calendar.js.map" - }, - { - "id": "E/aL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePicker.scss.js", - "index": null, - "index2": null, - "size": 1007, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "issuerId": "TY1D", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+WGp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js" - }, - { - "id": "HhSh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js" - }, - { - "id": "TY1D", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony side effect evaluation", - "userRequest": "../PeoplePicker.scss", - "loc": "5:0-53" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "userRequest": "../PeoplePicker.scss", - "loc": "7:90-129" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony import specifier", - "userRequest": "../PeoplePicker.scss", - "loc": "8:210-242" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./PeoplePicker.scss", - "loc": "5:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "resultContent", - "resultItem", - "peoplePickerPersona", - "peoplePicker", - "peoplePickerPersonaContent" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "/* eslint-disable */\nimport { loadStyles } from '@microsoft/load-themed-styles';\nloadStyles([{ \"rawString\": \".resultContent_05bff9b3{display:table-row}.resultContent_05bff9b3 .resultItem_05bff9b3{display:table-cell;vertical-align:bottom}.peoplePickerPersona_05bff9b3{width:180px}.peoplePickerPersona_05bff9b3 .ms-Persona-details{width:100%}.peoplePicker_05bff9b3 .ms-BasePicker-text{min-height:40px}.peoplePickerPersonaContent_05bff9b3{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:7px 12px}\" }]);\nexport var resultContent = \"resultContent_05bff9b3\";\nexport var resultItem = \"resultItem_05bff9b3\";\nexport var peoplePickerPersona = \"peoplePickerPersona_05bff9b3\";\nexport var peoplePicker = \"peoplePicker_05bff9b3\";\nexport var peoplePickerPersonaContent = \"peoplePickerPersonaContent_05bff9b3\";\n//# sourceMappingURL=PeoplePicker.scss.js.map" - }, - { - "id": "E2jh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isMasked.js", - "name": "./node_modules/lodash/_isMasked.js", - "index": 471, - "index2": 460, - "size": 564, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "issuerId": "NKxu", - "issuerName": "./node_modules/lodash/_baseIsNative.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js" - }, - { - "id": "NKxu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "name": "./node_modules/lodash/_baseIsNative.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NKxu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "module": "./node_modules/lodash/_baseIsNative.js", - "moduleName": "./node_modules/lodash/_baseIsNative.js", - "type": "cjs require", - "userRequest": "./_isMasked", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 10, - "source": "var coreJsData = require('./_coreJsData');\n\n/** Used to detect methods masquerading as native. */\nvar maskSrcKey = (function() {\n var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n return uid ? ('Symbol(src)_1.' + uid) : '';\n}());\n\n/**\n * Checks if `func` has its source masked.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n */\nfunction isMasked(func) {\n return !!maskSrcKey && (maskSrcKey in func);\n}\n\nmodule.exports = isMasked;\n" - }, - { - "id": "E4OT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.types.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.types.js", - "index": null, - "index2": null, - "size": 696, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "issuerId": "ajgi", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "ajgi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ajgi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Selection.types", - "loc": "1:0-34" - }, - { - "moduleId": "ajgi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Selection.types", - "loc": "1:0-34" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony side effect evaluation", - "userRequest": "./Selection.types", - "loc": "1:0-68" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "9:245-258" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "172:26-39" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "187:43-56" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "210:26-39" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "223:44-57" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "248:26-39" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "251:26-39" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "277:26-39" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "282:26-39" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "304:43-56" - }, - { - "moduleId": "qqZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/selection/Selection.js", - "type": "harmony import specifier", - "userRequest": "./Selection.types", - "loc": "324:35-51" - } - ], - "usedExports": false, - "providedExports": [ - "SELECTION_CHANGE", - "SelectionMode", - "SelectionDirection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 9, - "source": "export var SELECTION_CHANGE = 'change';\n/**\n * {@docCategory Selection}\n */\nexport var SelectionMode;\n(function (SelectionMode) {\n SelectionMode[SelectionMode[\"none\"] = 0] = \"none\";\n SelectionMode[SelectionMode[\"single\"] = 1] = \"single\";\n SelectionMode[SelectionMode[\"multiple\"] = 2] = \"multiple\";\n})(SelectionMode || (SelectionMode = {}));\n/**\n * {@docCategory Selection}\n */\nexport var SelectionDirection;\n(function (SelectionDirection) {\n SelectionDirection[SelectionDirection[\"horizontal\"] = 0] = \"horizontal\";\n SelectionDirection[SelectionDirection[\"vertical\"] = 1] = \"vertical\";\n})(SelectionDirection || (SelectionDirection = {}));\n//# sourceMappingURL=Selection.types.js.map" - }, - { - "id": "E5ZJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "index": null, - "index2": null, - "size": 1550, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "issuerId": "OQ9B", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js" - }, - { - "id": "II1S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js" - }, - { - "id": "uAzL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js" - }, - { - "id": "aXXY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js" - }, - { - "id": "OQ9B", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./CardCallout/CardCallout", - "loc": "5:0-56" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "./CardCallout/CardCallout", - "loc": "71:36-47" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../CardCallout/CardCallout", - "loc": "4:0-57" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony import specifier", - "userRequest": "../CardCallout/CardCallout", - "loc": "25:35-46" - } - ], - "usedExports": false, - "providedExports": [ - "CardCallout" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { divProperties, getNativeProps } from '../../../Utilities';\nimport { DirectionalHint } from '../../../common/DirectionalHint';\nimport { Callout, FocusTrapCallout } from '../../../Callout';\nexport var CardCallout = function (props) {\n var _a = props.gapSpace, gapSpace = _a === void 0 ? 0 : _a, _b = props.directionalHint, directionalHint = _b === void 0 ? DirectionalHint.bottomLeftEdge : _b, directionalHintFixed = props.directionalHintFixed, targetElement = props.targetElement, firstFocus = props.firstFocus, trapFocus = props.trapFocus, onLeave = props.onLeave, className = props.className, finalHeight = props.finalHeight, content = props.content, calloutProps = props.calloutProps;\n var mergedCalloutProps = __assign(__assign(__assign({}, getNativeProps(props, divProperties)), { className: className, target: targetElement, isBeakVisible: false, directionalHint: directionalHint, directionalHintFixed: directionalHintFixed, finalHeight: finalHeight, minPagePadding: 24, onDismiss: onLeave, gapSpace: gapSpace }), calloutProps);\n return (React.createElement(React.Fragment, null, trapFocus ? (React.createElement(FocusTrapCallout, __assign({}, mergedCalloutProps, { focusTrapProps: {\n forceFocusInsideTrap: false,\n isClickableOutsideFocusTrap: true,\n disableFirstFocus: !firstFocus,\n } }), content)) : (React.createElement(Callout, __assign({}, mergedCalloutProps), content))));\n};\n//# sourceMappingURL=CardCallout.js.map" - }, - { - "id": "EEGq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbolsIn.js", - "name": "./node_modules/lodash/_copySymbolsIn.js", - "index": 527, - "index2": 523, - "size": 470, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_copySymbolsIn", - "loc": "9:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var copyObject = require('./_copyObject'),\n getSymbolsIn = require('./_getSymbolsIn');\n\n/**\n * Copies own and inherited symbols of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy symbols from.\n * @param {Object} [object={}] The object to copy symbols to.\n * @returns {Object} Returns `object`.\n */\nfunction copySymbolsIn(source, object) {\n return copyObject(source, getSymbolsIn(source), object);\n}\n\nmodule.exports = copySymbolsIn;\n" - }, - { - "id": "EEdu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePicker.js", - "index": 848, - "index2": 881, - "size": 4036, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerId": "Bd+z", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldSitePicker", - "loc": "1:0-42" - }, - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldSitePicker", - "loc": "1:0-42" - } - ], - "usedExports": [ - "PropertyFieldSitePicker" - ], - "providedExports": [ - "PropertyFieldSitePicker" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as ReactDom from 'react-dom';\nimport { PropertyPaneFieldType } from '@microsoft/sp-property-pane';\nimport PropertyFieldSitePickerHost from './PropertyFieldSitePickerHost';\n/**\n * Represents a PropertyFieldSitePicker object\n */\nvar PropertyFieldSitePickerBuilder = /** @class */ (function () {\n /**\n * Constructor method\n */\n function PropertyFieldSitePickerBuilder(_targetProperty, _properties) {\n // Properties defined by IPropertyPaneField\n this.type = PropertyPaneFieldType.Custom;\n this.disabled = false;\n this.multiSelect = false;\n this.deferredValidationTime = 200;\n this.render = this.render.bind(this);\n this.label = _properties.label;\n this.targetProperty = _properties.targetProperty;\n this.properties = _properties;\n this.properties.onDispose = this.dispose;\n this.properties.onRender = this.render;\n this.onPropertyChange = _properties.onPropertyChange;\n this.context = _properties.context;\n this.initialSites = _properties.initialSites;\n this.customProperties = _properties.properties;\n this.key = _properties.key;\n this.onGetErrorMessage = _properties.onGetErrorMessage;\n this.trimDuplicates = _properties.trimDuplicates;\n this.additionalQuery = _properties.additionalQuery;\n if (typeof _properties.disabled !== 'undefined') {\n this.disabled = _properties.disabled;\n }\n if (_properties.deferredValidationTime) {\n this.deferredValidationTime = _properties.deferredValidationTime;\n }\n if (typeof _properties.multiSelect !== \"undefined\") {\n this.multiSelect = _properties.multiSelect;\n }\n }\n /**\n * Renders the PeoplePicker field content\n */\n PropertyFieldSitePickerBuilder.prototype.render = function (elem, ctx, changeCallback) {\n // Construct the JSX properties\n var element = React.createElement(PropertyFieldSitePickerHost, {\n label: this.label,\n disabled: this.disabled,\n targetProperty: this.targetProperty,\n initialSites: this.initialSites,\n multiSelect: this.multiSelect,\n onDispose: this.dispose,\n onRender: this.render,\n onChange: changeCallback,\n onPropertyChange: this.onPropertyChange,\n context: this.context,\n properties: this.customProperties,\n key: this.key,\n onGetErrorMessage: this.onGetErrorMessage,\n deferredValidationTime: this.deferredValidationTime,\n trimDuplicates: this.trimDuplicates,\n additionalQuery: this.additionalQuery\n });\n // Calls the REACT content generator\n ReactDom.render(element, elem);\n };\n /**\n * Disposes the current object\n */\n PropertyFieldSitePickerBuilder.prototype.dispose = function (elem) { };\n return PropertyFieldSitePickerBuilder;\n}());\n/**\n * Helper method to create a Site Picker on the PropertyPane.\n * @param targetProperty - Target property the site picker is associated to.\n * @param properties - Strongly typed site Picker properties.\n */\nexport function PropertyFieldSitePicker(targetProperty, properties) {\n // Calls the PropertyFieldSitePicker builder object\n // This object will simulate a PropertyFieldCustom to manage his rendering process\n return new PropertyFieldSitePickerBuilder(targetProperty, __assign(__assign({}, properties), { targetProperty: targetProperty, onDispose: null, onRender: null }));\n}\n//# sourceMappingURL=PropertyFieldSitePicker.js.map" - }, - { - "id": "EJsv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Autofill.js", - "name": "./node_modules/office-ui-fabric-react/lib/Autofill.js", - "index": null, - "index2": null, - "size": 81, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Autofill", - "loc": "2:0-27" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Autofill", - "loc": "2:0-27" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Autofill", - "loc": "4:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "Autofill", - "BaseAutoFill" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Autofill/index';\n//# sourceMappingURL=Autofill.js.map" - }, - { - "id": "Edjz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "index": 200, - "index2": 193, - "size": 5898, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "3:0-26" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "7:0-83" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "74:8-26" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "6:0-83" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "113:8-26" - }, - { - "moduleId": "ZZCj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": "ZZCj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "2:0-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "9:0-99" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "292:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "357:8-26" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "8:0-99" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "525:83-97" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "880:8-26" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "15:0-99" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "65:44-58" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "870:8-26" - } - ], - "usedExports": [ - "ResponsiveMode", - "withResponsiveMode" - ], - "providedExports": [ - "ResponsiveMode", - "setResponsiveMode", - "initializeResponsiveMode", - "getInitialResponsiveMode", - "withResponsiveMode", - "getResponsiveMode" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/EventGroup.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/hoistStatics.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "index": 200, - "index2": 193, - "size": 4773, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js", - "name": "./lib/webparts/listSearch/custompropertyPane/CustomCollectionDataField.js" - }, - { - "id": "cmLf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": "49Xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "3:0-26" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "7:0-83" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "74:8-26" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "6:0-83" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "113:8-26" - }, - { - "moduleId": "ZZCj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "1:0-79" - }, - { - "moduleId": "ZZCj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.types.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "2:0-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "9:0-99" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "292:30-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "357:8-26" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "8:0-99" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "525:83-97" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "880:8-26" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "15:0-99" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "65:44-58" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony import specifier", - "userRequest": "../../utilities/decorators/withResponsiveMode", - "loc": "870:8-26" - } - ], - "usedExports": [ - "ResponsiveMode", - "withResponsiveMode" - ], - "providedExports": [ - "ResponsiveMode", - "setResponsiveMode", - "initializeResponsiveMode", - "getInitialResponsiveMode", - "withResponsiveMode", - "getResponsiveMode" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseDecorator } from './BaseDecorator';\nimport { getWindow, hoistStatics, EventGroup } from '../../Utilities';\nimport { WindowContext } from '../../WindowProvider';\nexport var ResponsiveMode;\n(function (ResponsiveMode) {\n ResponsiveMode[ResponsiveMode[\"small\"] = 0] = \"small\";\n ResponsiveMode[ResponsiveMode[\"medium\"] = 1] = \"medium\";\n ResponsiveMode[ResponsiveMode[\"large\"] = 2] = \"large\";\n ResponsiveMode[ResponsiveMode[\"xLarge\"] = 3] = \"xLarge\";\n ResponsiveMode[ResponsiveMode[\"xxLarge\"] = 4] = \"xxLarge\";\n ResponsiveMode[ResponsiveMode[\"xxxLarge\"] = 5] = \"xxxLarge\";\n ResponsiveMode[ResponsiveMode[\"unknown\"] = 999] = \"unknown\";\n})(ResponsiveMode || (ResponsiveMode = {}));\nvar RESPONSIVE_MAX_CONSTRAINT = [479, 639, 1023, 1365, 1919, 99999999];\n/**\n * User specified mode to default to, useful for server side rendering scenarios.\n */\nvar _defaultMode;\n/**\n * Tracking the last mode we successfully rendered, which allows us to\n * paint initial renders with the correct size.\n */\nvar _lastMode;\n/**\n * Allows a server rendered scenario to provide a default responsive mode.\n */\nexport function setResponsiveMode(responsiveMode) {\n _defaultMode = responsiveMode;\n}\n/**\n * Initializes the responsive mode to the current window size. This can be used to avoid\n * a re-render during first component mount since the window would otherwise not be measured\n * until after mounting.\n */\nexport function initializeResponsiveMode(element) {\n if (typeof window !== 'undefined') {\n var currentWindow = (element && getWindow(element)) || window;\n getResponsiveMode(currentWindow);\n }\n}\nexport function getInitialResponsiveMode() {\n return _defaultMode || _lastMode || ResponsiveMode.large;\n}\nexport function withResponsiveMode(ComposedComponent) {\n var _a;\n var resultClass = (_a = /** @class */ (function (_super) {\n __extends(WithResponsiveMode, _super);\n function WithResponsiveMode(props) {\n var _this = _super.call(this, props) || this;\n _this._onResize = function () {\n var responsiveMode = getResponsiveMode(_this.context.window);\n if (responsiveMode !== _this.state.responsiveMode) {\n _this.setState({\n responsiveMode: responsiveMode,\n });\n }\n };\n _this._events = new EventGroup(_this);\n _this._updateComposedComponentRef = _this._updateComposedComponentRef.bind(_this);\n _this.state = {\n responsiveMode: getInitialResponsiveMode(),\n };\n return _this;\n }\n WithResponsiveMode.prototype.componentDidMount = function () {\n this._events.on(this.context.window, 'resize', this._onResize);\n this._onResize();\n };\n WithResponsiveMode.prototype.componentWillUnmount = function () {\n this._events.dispose();\n };\n WithResponsiveMode.prototype.render = function () {\n var responsiveMode = this.state.responsiveMode;\n return responsiveMode === ResponsiveMode.unknown ? null : (React.createElement(ComposedComponent, __assign({ ref: this._updateComposedComponentRef, responsiveMode: responsiveMode }, this.props)));\n };\n return WithResponsiveMode;\n }(BaseDecorator)),\n _a.contextType = WindowContext,\n _a);\n return hoistStatics(ComposedComponent, resultClass);\n}\nexport function getResponsiveMode(currentWindow) {\n var responsiveMode = ResponsiveMode.small;\n if (currentWindow) {\n try {\n while (currentWindow.innerWidth > RESPONSIVE_MAX_CONSTRAINT[responsiveMode]) {\n responsiveMode++;\n }\n }\n catch (e) {\n // Return a best effort result in cases where we're in the browser but it throws on getting innerWidth.\n responsiveMode = getInitialResponsiveMode();\n }\n // Tracking last mode just gives us a better default in future renders,\n // which avoids starting with the wrong value if we've measured once.\n _lastMode = responsiveMode;\n }\n else {\n if (_defaultMode !== undefined) {\n responsiveMode = _defaultMode;\n }\n else {\n throw new Error('Content was rendered in a server environment without providing a default responsive mode. ' +\n 'Call setResponsiveMode to define what the responsive mode is.');\n }\n }\n return responsiveMode;\n}\n//# sourceMappingURL=withResponsiveMode.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/WindowProvider.js", - "name": "./node_modules/@fluentui/react-window-provider/lib/WindowProvider.js", - "index": 204, - "index2": 192, - "size": 1095, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/index.js", - "issuerId": "kCx7", - "issuerName": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "jL7u", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/WindowProvider.js", - "name": "./node_modules/office-ui-fabric-react/lib/WindowProvider.js" - }, - { - "id": "kCx7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/index.js", - "name": "./node_modules/@fluentui/react-window-provider/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../WindowProvider", - "loc": "80:25-38" - }, - { - "moduleId": "Bmj4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useTarget.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useTarget.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-window-provider", - "loc": "19:23-32" - }, - { - "moduleId": "kCx7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/index.js", - "module": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "moduleName": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./WindowProvider", - "loc": "1:0-33" - }, - { - "moduleId": "kCx7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-window-provider/lib/index.js", - "module": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "moduleName": "./node_modules/@fluentui/react-window-provider/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./WindowProvider", - "loc": "1:0-33" - } - ], - "usedExports": [ - "WindowContext" - ], - "providedExports": [ - "WindowContext", - "useWindow", - "useDocument", - "WindowProvider" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import * as React from 'react';\n/**\n * Context for providing the window.\n */\nexport var WindowContext = React.createContext({\n window: typeof window === 'object' ? window : undefined,\n});\n/**\n * Hook to access the window object. This can be overridden contextually using the `WindowProvider`.\n */\nexport var useWindow = function () { return React.useContext(WindowContext).window; };\n/**\n * Hook to access the document object. This can be overridden contextually using the `WindowProvider`.\n */\nexport var useDocument = function () { var _a; return (_a = React.useContext(WindowContext).window) === null || _a === void 0 ? void 0 : _a.document; };\n/**\n * Component to provide the window object contextually. This is useful when rendering content to an element\n * contained within a child window or iframe element, where event handlers and styling must be projected\n * to an alternative window or document.\n */\nexport var WindowProvider = function (props) {\n return React.createElement(WindowContext.Provider, { value: props }, props.children);\n};\n//# sourceMappingURL=WindowProvider.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "EmNV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ErrorMsg.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/ErrorMsg.js", - "index": 272, - "index2": 265, - "size": 36, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerId": "kQRI", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ErrorMsg", - "loc": "4:0-27" - }, - { - "moduleId": "kQRI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ErrorMsg", - "loc": "4:0-27" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "//# sourceMappingURL=ErrorMsg.js.map" - }, - { - "id": "EpBk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_isKeyable.js", - "name": "./node_modules/lodash/_isKeyable.js", - "index": 486, - "index2": 474, - "size": 430, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getMapData.js", - "issuerId": "QkVE", - "issuerName": "./node_modules/lodash/_getMapData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "H8j4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "name": "./node_modules/lodash/_mapCacheSet.js" - }, - { - "id": "QkVE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getMapData.js", - "name": "./node_modules/lodash/_getMapData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QkVE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getMapData.js", - "module": "./node_modules/lodash/_getMapData.js", - "moduleName": "./node_modules/lodash/_getMapData.js", - "type": "cjs require", - "userRequest": "./_isKeyable", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "/**\n * Checks if `value` is suitable for use as unique object key.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n */\nfunction isKeyable(value) {\n var type = typeof value;\n return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n ? (value !== '__proto__')\n : (value === null);\n}\n\nmodule.exports = isKeyable;\n" - }, - { - "id": "EpPS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-5.js", - "index": null, - "index2": null, - "size": 4416, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-5", - "loc": "7:0-57" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-5", - "loc": "31:8-10" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-5\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-5-f95ba260.woff') format('woff')\"\n },\n icons: {\n 'Certificate': '\\uEB95',\n 'FastForward': '\\uEB9D',\n 'Rewind': '\\uEB9E',\n 'Photo2': '\\uEB9F',\n 'OpenSource': '\\uEBC2',\n 'Movers': '\\uEBCD',\n 'CloudDownload': '\\uEBD3',\n 'Family': '\\uEBDA',\n 'WindDirection': '\\uEBE6',\n 'Bug': '\\uEBE8',\n 'SiteScan': '\\uEBEC',\n 'BrowserScreenShot': '\\uEBED',\n 'F12DevTools': '\\uEBEE',\n 'CSS': '\\uEBEF',\n 'JS': '\\uEBF0',\n 'DeliveryTruck': '\\uEBF4',\n 'ReminderPerson': '\\uEBF7',\n 'ReminderGroup': '\\uEBF8',\n 'ReminderTime': '\\uEBF9',\n 'TabletMode': '\\uEBFC',\n 'Umbrella': '\\uEC04',\n 'NetworkTower': '\\uEC05',\n 'CityNext': '\\uEC06',\n 'CityNext2': '\\uEC07',\n 'Section': '\\uEC0C',\n 'OneNoteLogoInverse': '\\uEC0D',\n 'ToggleFilled': '\\uEC11',\n 'ToggleBorder': '\\uEC12',\n 'SliderThumb': '\\uEC13',\n 'ToggleThumb': '\\uEC14',\n 'Documentation': '\\uEC17',\n 'Badge': '\\uEC1B',\n 'Giftbox': '\\uEC1F',\n 'VisualStudioLogo': '\\uEC22',\n 'HomeGroup': '\\uEC26',\n 'ExcelLogoInverse': '\\uEC28',\n 'WordLogoInverse': '\\uEC29',\n 'PowerPointLogoInverse': '\\uEC2A',\n 'Cafe': '\\uEC32',\n 'SpeedHigh': '\\uEC4A',\n 'Commitments': '\\uEC4D',\n 'ThisPC': '\\uEC4E',\n 'MusicNote': '\\uEC4F',\n 'MicOff': '\\uEC54',\n 'PlaybackRate1x': '\\uEC57',\n 'EdgeLogo': '\\uEC60',\n 'CompletedSolid': '\\uEC61',\n 'AlbumRemove': '\\uEC62',\n 'MessageFill': '\\uEC70',\n 'TabletSelected': '\\uEC74',\n 'MobileSelected': '\\uEC75',\n 'LaptopSelected': '\\uEC76',\n 'TVMonitorSelected': '\\uEC77',\n 'DeveloperTools': '\\uEC7A',\n 'Shapes': '\\uEC7C',\n 'InsertTextBox': '\\uEC7D',\n 'LowerBrightness': '\\uEC8A',\n 'WebComponents': '\\uEC8B',\n 'OfflineStorage': '\\uEC8C',\n 'DOM': '\\uEC8D',\n 'CloudUpload': '\\uEC8E',\n 'ScrollUpDown': '\\uEC8F',\n 'DateTime': '\\uEC92',\n 'Event': '\\uECA3',\n 'Cake': '\\uECA4',\n 'Org': '\\uECA6',\n 'PartyLeader': '\\uECA7',\n 'DRM': '\\uECA8',\n 'CloudAdd': '\\uECA9',\n 'AppIconDefault': '\\uECAA',\n 'Photo2Add': '\\uECAB',\n 'Photo2Remove': '\\uECAC',\n 'Calories': '\\uECAD',\n 'POI': '\\uECAF',\n 'AddTo': '\\uECC8',\n 'RadioBtnOff': '\\uECCA',\n 'RadioBtnOn': '\\uECCB',\n 'ExploreContent': '\\uECCD',\n 'Product': '\\uECDC',\n 'ProgressLoopInner': '\\uECDE',\n 'ProgressLoopOuter': '\\uECDF',\n 'Blocked2': '\\uECE4',\n 'FangBody': '\\uECEB',\n 'Toolbox': '\\uECED',\n 'PageHeader': '\\uECEE',\n 'ChatInviteFriend': '\\uECFE',\n 'Brush': '\\uECFF',\n 'Shirt': '\\uED00',\n 'Crown': '\\uED01',\n 'Diamond': '\\uED02',\n 'ScaleUp': '\\uED09',\n 'QRCode': '\\uED14',\n 'Feedback': '\\uED15',\n 'SharepointLogoInverse': '\\uED18',\n 'YammerLogo': '\\uED19',\n 'Hide': '\\uED1A',\n 'Uneditable': '\\uED1D',\n 'ReturnToSession': '\\uED24',\n 'OpenFolderHorizontal': '\\uED25',\n 'CalendarMirrored': '\\uED28'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-5.js.map" - }, - { - "id": "EwAw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "index": null, - "index2": null, - "size": 4839, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "issuerId": "7c8E", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "joNx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "lNaB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": "Ypxj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js" - }, - { - "id": "YzPW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "7c8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7c8E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogContent.styles", - "loc": "3:0-51" - }, - { - "moduleId": "7c8E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony import specifier", - "userRequest": "./DialogContent.styles", - "loc": "4:53-62" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { FontWeights, getGlobalClassNames, IconFontSizes, ScreenWidthMinSmall, ScreenWidthMaxSmall, } from '../../Styling';\nvar GlobalClassNames = {\n contentLgHeader: 'ms-Dialog-lgHeader',\n close: 'ms-Dialog--close',\n subText: 'ms-Dialog-subText',\n header: 'ms-Dialog-header',\n headerLg: 'ms-Dialog--lgHeader',\n button: 'ms-Dialog-button ms-Dialog-button--close',\n inner: 'ms-Dialog-inner',\n content: 'ms-Dialog-content',\n title: 'ms-Dialog-title',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c;\n var className = props.className, theme = props.theme, isLargeHeader = props.isLargeHeader, isClose = props.isClose, hidden = props.hidden, isMultiline = props.isMultiline, draggableHeaderClassName = props.draggableHeaderClassName;\n var palette = theme.palette, fonts = theme.fonts, effects = theme.effects, semanticColors = theme.semanticColors;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n content: [\n isLargeHeader && [\n classNames.contentLgHeader,\n {\n borderTop: \"4px solid \" + palette.themePrimary,\n },\n ],\n isClose && classNames.close,\n {\n flexGrow: 1,\n overflowY: 'hidden',\n },\n className,\n ],\n subText: [\n classNames.subText,\n fonts.medium,\n {\n margin: '0 0 24px 0',\n color: semanticColors.bodySubtext,\n lineHeight: '1.5',\n wordWrap: 'break-word',\n fontWeight: FontWeights.regular,\n },\n ],\n header: [\n classNames.header,\n {\n position: 'relative',\n width: '100%',\n boxSizing: 'border-box',\n },\n isClose && classNames.close,\n draggableHeaderClassName && [\n draggableHeaderClassName,\n {\n cursor: 'move',\n },\n ],\n ],\n button: [\n classNames.button,\n hidden && {\n selectors: {\n '.ms-Icon.ms-Icon--Cancel': {\n color: semanticColors.buttonText,\n fontSize: IconFontSizes.medium,\n },\n },\n },\n ],\n inner: [\n classNames.inner,\n {\n padding: '0 24px 24px',\n selectors: (_a = {},\n _a[\"@media (min-width: \" + ScreenWidthMinSmall + \"px) and (max-width: \" + ScreenWidthMaxSmall + \"px)\"] = {\n padding: '0 16px 16px',\n },\n _a),\n },\n ],\n innerContent: [\n classNames.content,\n {\n position: 'relative',\n width: '100%',\n },\n ],\n title: [\n classNames.title,\n fonts.xLarge,\n {\n color: semanticColors.bodyText,\n margin: '0',\n minHeight: fonts.xLarge.fontSize,\n padding: '16px 46px 20px 24px',\n lineHeight: 'normal',\n selectors: (_b = {},\n _b[\"@media (min-width: \" + ScreenWidthMinSmall + \"px) and (max-width: \" + ScreenWidthMaxSmall + \"px)\"] = {\n padding: '16px 46px 16px 16px',\n },\n _b),\n },\n isLargeHeader && {\n color: semanticColors.menuHeader,\n },\n isMultiline && { fontSize: fonts.xxLarge.fontSize },\n ],\n topButton: [\n {\n display: 'flex',\n flexDirection: 'row',\n flexWrap: 'nowrap',\n position: 'absolute',\n top: '0',\n right: '0',\n padding: '15px 15px 0 0',\n selectors: (_c = {\n '> *': {\n flex: '0 0 auto',\n },\n '.ms-Dialog-button': {\n color: semanticColors.buttonText,\n },\n '.ms-Dialog-button:hover': {\n color: semanticColors.buttonTextHovered,\n borderRadius: effects.roundedCorner2,\n }\n },\n _c[\"@media (min-width: \" + ScreenWidthMinSmall + \"px) and (max-width: \" + ScreenWidthMaxSmall + \"px)\"] = {\n padding: '15px 8px 0 0',\n },\n _c),\n },\n ],\n };\n};\n//# sourceMappingURL=DialogContent.styles.js.map" - }, - { - "id": "ExA7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isObjectLike.js", - "name": "./node_modules/lodash/isObjectLike.js", - "index": 501, - "index2": 489, - "size": 614, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "issuerId": "YO3V", - "issuerName": "./node_modules/lodash/isPlainObject.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/9aa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSymbol.js", - "module": "./node_modules/lodash/isSymbol.js", - "moduleName": "./node_modules/lodash/isSymbol.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - }, - { - "moduleId": "03A+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "module": "./node_modules/lodash/isArguments.js", - "moduleName": "./node_modules/lodash/isArguments.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - }, - { - "moduleId": "Gi0A", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsMap.js", - "module": "./node_modules/lodash/_baseIsMap.js", - "moduleName": "./node_modules/lodash/_baseIsMap.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - }, - { - "moduleId": "JTzB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsArguments.js", - "module": "./node_modules/lodash/_baseIsArguments.js", - "moduleName": "./node_modules/lodash/_baseIsArguments.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - }, - { - "moduleId": "YO3V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "module": "./node_modules/lodash/isPlainObject.js", - "moduleName": "./node_modules/lodash/isPlainObject.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "3:19-44" - }, - { - "moduleId": "dD9F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsTypedArray.js", - "module": "./node_modules/lodash/_baseIsTypedArray.js", - "moduleName": "./node_modules/lodash/_baseIsTypedArray.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "3:19-44" - }, - { - "moduleId": "w/wX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsSet.js", - "module": "./node_modules/lodash/_baseIsSet.js", - "moduleName": "./node_modules/lodash/_baseIsSet.js", - "type": "cjs require", - "userRequest": "./isObjectLike", - "loc": "2:19-44" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return value != null && typeof value == 'object';\n}\n\nmodule.exports = isObjectLike;\n" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js", - "index": null, - "index2": null, - "size": 99, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "issuerId": "5RY+", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "5RY+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/react-focus", - "loc": "1:0-38" - }, - { - "moduleId": "5RY+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/react-focus", - "loc": "1:0-38" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/react-focus", - "loc": "3:0-70" - } - ], - "usedExports": false, - "providedExports": [ - "FocusZone", - "FocusZoneTabbableElements", - "FocusZoneDirection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import './version';\nexport * from './components/FocusZone/index';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "F3V5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/assertNever.js", - "name": "./node_modules/@uifabric/utilities/lib/assertNever.js", - "index": null, - "index2": null, - "size": 246, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./assertNever", - "loc": "14:0-30" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./assertNever", - "loc": "14:0-30" - } - ], - "usedExports": false, - "providedExports": [ - "assertNever" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * AssertNever is a utility function that can be used for exhaustiveness checks in switch statements.\n *\n * @public\n */\nexport function assertNever(x) {\n throw new Error('Unexpected object: ' + x);\n}\n//# sourceMappingURL=assertNever.js.map" - }, - { - "id": "FLjh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useSetTimeout.js", - "index": null, - "index2": null, - "size": 1070, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useSetTimeout", - "loc": "14:0-32" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useSetTimeout", - "loc": "14:0-32" - } - ], - "usedExports": false, - "providedExports": [ - "useSetTimeout" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import * as React from 'react';\nimport { useConst } from './useConst';\n/**\n * Returns a wrapper function for `setTimeout` which automatically handles disposal.\n */\nexport var useSetTimeout = function () {\n var timeoutIds = useConst({});\n // Cleanup function.\n React.useEffect(function () { return function () {\n for (var _i = 0, _a = Object.keys(timeoutIds); _i < _a.length; _i++) {\n var id = _a[_i];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n clearTimeout(id);\n }\n }; }, \n // useConst ensures this will never change, but react-hooks/exhaustive-deps doesn't know that\n [timeoutIds]);\n // Return wrapper which will auto cleanup.\n return useConst({\n setTimeout: function (func, duration) {\n var id = setTimeout(func, duration);\n timeoutIds[id] = 1;\n return id;\n },\n clearTimeout: function (id) {\n delete timeoutIds[id];\n clearTimeout(id);\n },\n });\n};\n//# sourceMappingURL=useSetTimeout.js.map" - }, - { - "id": "FOaT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateValues/dateValues.js", - "name": "./node_modules/@fluentui/date-time-utilities/lib/dateValues/dateValues.js", - "index": null, - "index2": null, - "size": 2202, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "issuerId": "8Nzn", - "issuerName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "2iod", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js" - }, - { - "id": "8Nzn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "name": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Calendar", - "loc": "376:24-33" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "387:25-40" - }, - { - "moduleId": "2iod", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "module": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/date-time-utilities/lib/dateValues/dateValues", - "loc": "4:0-72" - }, - { - "moduleId": "2iod", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "module": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DateTimeUtilities.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/date-time-utilities/lib/dateValues/dateValues", - "loc": "4:0-72" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "35:38-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "59:38-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "79:38-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "99:38-51" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "149:34-47" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "270:83-96" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "270:169-182" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "287:63-76" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "287:103-116" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "288:118-131" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "289:142-155" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "292:84-97" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "293:85-98" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "293:125-138" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "294:86-99" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "295:166-179" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "297:85-98" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "299:84-97" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "301:82-95" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "330:17-30" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "402:17-30" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "403:17-30" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "470:54-67" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "470:79-92" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "472:30-43" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony side effect evaluation", - "userRequest": "../dateValues/dateValues", - "loc": "1:0-98" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "151:24-33" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "151:42-51" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "151:61-70" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "151:82-91" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "151:102-111" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "155:13-26" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "159:13-26" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "160:13-26" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "164:13-26" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "174:30-43" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "239:13-28" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "241:13-28" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "302:61-72" - }, - { - "moduleId": "8Nzn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "module": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "moduleName": "./node_modules/@fluentui/date-time-utilities/lib/dateMath/dateMath.js", - "type": "harmony import specifier", - "userRequest": "../dateValues/dateValues", - "loc": "342:30-39" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "19:4-13" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "20:4-13" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "21:4-13" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "22:4-13" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "23:4-13" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "222:24-33" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "223:23-36" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "231:25-40" - }, - { - "moduleId": "lati", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dateValues/DateValues.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dateValues/DateValues.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dateValues/DateValues.js", - "type": "harmony side effect evaluation", - "userRequest": "@fluentui/date-time-utilities/lib/dateValues/dateValues", - "loc": "1:0-72" - }, - { - "moduleId": "lati", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dateValues/DateValues.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/dateValues/DateValues.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/dateValues/DateValues.js", - "type": "harmony export imported specifier", - "userRequest": "@fluentui/date-time-utilities/lib/dateValues/dateValues", - "loc": "1:0-72" - }, - { - "moduleId": "lt7D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "2:0-53" - }, - { - "moduleId": "lt7D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "2:0-53" - }, - { - "moduleId": "lt7D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.types.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/dateValues/DateValues", - "loc": "2:0-53" - } - ], - "usedExports": false, - "providedExports": [ - "DayOfWeek", - "MonthOfYear", - "FirstWeekOfYear", - "DateRangeType", - "DAYS_IN_WEEK" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "/**\n * The days of the week\n * {@docCategory DayOfWeek}\n */\nexport var DayOfWeek;\n(function (DayOfWeek) {\n DayOfWeek[DayOfWeek[\"Sunday\"] = 0] = \"Sunday\";\n DayOfWeek[DayOfWeek[\"Monday\"] = 1] = \"Monday\";\n DayOfWeek[DayOfWeek[\"Tuesday\"] = 2] = \"Tuesday\";\n DayOfWeek[DayOfWeek[\"Wednesday\"] = 3] = \"Wednesday\";\n DayOfWeek[DayOfWeek[\"Thursday\"] = 4] = \"Thursday\";\n DayOfWeek[DayOfWeek[\"Friday\"] = 5] = \"Friday\";\n DayOfWeek[DayOfWeek[\"Saturday\"] = 6] = \"Saturday\";\n})(DayOfWeek || (DayOfWeek = {}));\n/**\n * The months\n * {@docCategory MonthOfYear}\n */\nexport var MonthOfYear;\n(function (MonthOfYear) {\n MonthOfYear[MonthOfYear[\"January\"] = 0] = \"January\";\n MonthOfYear[MonthOfYear[\"February\"] = 1] = \"February\";\n MonthOfYear[MonthOfYear[\"March\"] = 2] = \"March\";\n MonthOfYear[MonthOfYear[\"April\"] = 3] = \"April\";\n MonthOfYear[MonthOfYear[\"May\"] = 4] = \"May\";\n MonthOfYear[MonthOfYear[\"June\"] = 5] = \"June\";\n MonthOfYear[MonthOfYear[\"July\"] = 6] = \"July\";\n MonthOfYear[MonthOfYear[\"August\"] = 7] = \"August\";\n MonthOfYear[MonthOfYear[\"September\"] = 8] = \"September\";\n MonthOfYear[MonthOfYear[\"October\"] = 9] = \"October\";\n MonthOfYear[MonthOfYear[\"November\"] = 10] = \"November\";\n MonthOfYear[MonthOfYear[\"December\"] = 11] = \"December\";\n})(MonthOfYear || (MonthOfYear = {}));\n/**\n * First week of the year settings types\n * {@docCategory FirstWeekOfYear}\n */\nexport var FirstWeekOfYear;\n(function (FirstWeekOfYear) {\n FirstWeekOfYear[FirstWeekOfYear[\"FirstDay\"] = 0] = \"FirstDay\";\n FirstWeekOfYear[FirstWeekOfYear[\"FirstFullWeek\"] = 1] = \"FirstFullWeek\";\n FirstWeekOfYear[FirstWeekOfYear[\"FirstFourDayWeek\"] = 2] = \"FirstFourDayWeek\";\n})(FirstWeekOfYear || (FirstWeekOfYear = {}));\n/**\n * The supported date range types\n * {@docCategory DateRangeType}\n */\nexport var DateRangeType;\n(function (DateRangeType) {\n DateRangeType[DateRangeType[\"Day\"] = 0] = \"Day\";\n DateRangeType[DateRangeType[\"Week\"] = 1] = \"Week\";\n DateRangeType[DateRangeType[\"Month\"] = 2] = \"Month\";\n DateRangeType[DateRangeType[\"WorkWeek\"] = 3] = \"WorkWeek\";\n})(DateRangeType || (DateRangeType = {}));\nexport var DAYS_IN_WEEK = 7;\n//# sourceMappingURL=dateValues.js.map" - }, - { - "id": "FaLo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js", - "index": null, - "index2": null, - "size": 204, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ComboBox.js", - "issuerId": "nqDX", - "issuerName": "./node_modules/office-ui-fabric-react/lib/ComboBox.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "nqDX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ComboBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/ComboBox.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "nqDX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/ComboBox/index", - "loc": "1:0-44" - }, - { - "moduleId": "nqDX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ComboBox.js", - "type": "harmony export imported specifier", - "userRequest": "./components/ComboBox/index", - "loc": "1:0-44" - } - ], - "usedExports": false, - "providedExports": [ - "SelectableOptionMenuItemType", - "ComboBox", - "VirtualizedComboBox" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export { SelectableOptionMenuItemType } from '../../utilities/selectableOption/SelectableOption.types';\nexport * from './ComboBox';\nexport * from './VirtualizedComboBox';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "FbcY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "name": "./node_modules/@uifabric/utilities/lib/rtl.js", - "index": 45, - "index2": 36, - "size": 1984, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "8:21-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Fabric/Fabric.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "9:18-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Check/Check.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:73-90" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:75-92" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Shimmer/Shimmer.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "36:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "48:63-69" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "51:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "76:32-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "137:24-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "155:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "161:38-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "168:31-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "188:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "212:34-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "226:31-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "248:55-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "281:32-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "283:31-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "285:32-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "327:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "361:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "370:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "466:20-26" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "765:28-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "768:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "796:29-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "799:16-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "802:33-39" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:27-33" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:21-38" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "129:21-38" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "324:46-52" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "171:31-37" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "285:31-37" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "166:72-78" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "34:16-22" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "245:17-23" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "367:36-42" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "372:36-42" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "377:36-42" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "382:36-42" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "413:68-74" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "414:68-74" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "433:48-65" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "436:63-80" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony side effect evaluation", - "userRequest": "./rtl", - "loc": "2:0-31" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "userRequest": "./rtl", - "loc": "51:65-71" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:50-56" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "170:50-56" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "88:182-188" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "98:143-149" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "174:66-72" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "180:66-72" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "171:58-64" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "117:28-34" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "126:28-34" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "39:59-65" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rtl", - "loc": "50:0-22" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rtl", - "loc": "50:0-22" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "150:27-33" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "107:16-22" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "97:30-36" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "96:59-65" - } - ], - "usedExports": [ - "getRTL", - "getRTLSafeKeyCode" - ], - "providedExports": [ - "getRTL", - "setRTL", - "getRTLSafeKeyCode" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { KeyCodes } from './KeyCodes';\nimport { getDocument } from './dom/getDocument';\nimport { getItem, setItem } from './sessionStorage';\nimport { setRTL as mergeStylesSetRTL } from '@uifabric/merge-styles';\nvar RTL_LOCAL_STORAGE_KEY = 'isRTL';\n// Default to undefined so that we initialize on first read.\nvar _isRTL;\n/**\n * Gets the rtl state of the page (returns true if in rtl.)\n */\nexport function getRTL(theme) {\n if (theme === void 0) { theme = {}; }\n if (theme.rtl !== undefined) {\n return theme.rtl;\n }\n if (_isRTL === undefined) {\n // Fabric supports persisting the RTL setting between page refreshes via session storage\n var savedRTL = getItem(RTL_LOCAL_STORAGE_KEY);\n if (savedRTL !== null) {\n _isRTL = savedRTL === '1';\n setRTL(_isRTL);\n }\n var doc = getDocument();\n if (_isRTL === undefined && doc) {\n _isRTL = ((doc.body && doc.body.getAttribute('dir')) || doc.documentElement.getAttribute('dir')) === 'rtl';\n mergeStylesSetRTL(_isRTL);\n }\n }\n return !!_isRTL;\n}\n/**\n * Sets the rtl state of the page (by adjusting the dir attribute of the html element.)\n */\nexport function setRTL(isRTL, persistSetting) {\n if (persistSetting === void 0) { persistSetting = false; }\n var doc = getDocument();\n if (doc) {\n doc.documentElement.setAttribute('dir', isRTL ? 'rtl' : 'ltr');\n }\n if (persistSetting) {\n setItem(RTL_LOCAL_STORAGE_KEY, isRTL ? '1' : '0');\n }\n _isRTL = isRTL;\n mergeStylesSetRTL(_isRTL);\n}\n/**\n * Returns the given key, but flips right/left arrows if necessary.\n */\nexport function getRTLSafeKeyCode(key, theme) {\n if (theme === void 0) { theme = {}; }\n if (getRTL(theme)) {\n if (key === KeyCodes.left) {\n key = KeyCodes.right;\n }\n else if (key === KeyCodes.right) {\n key = KeyCodes.left;\n }\n }\n return key;\n}\n//# sourceMappingURL=rtl.js.map" - }, - { - "id": "Fuo3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "index": null, - "index2": null, - "size": 10129, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "issuerId": "JwHi", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "t1PU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Breadcrumb.js", - "name": "./node_modules/office-ui-fabric-react/lib/Breadcrumb.js" - }, - { - "id": "yMIw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js" - }, - { - "id": "JwHi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "JwHi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "type": "harmony side effect evaluation", - "userRequest": "./Breadcrumb.base", - "loc": "2:0-51" - }, - { - "moduleId": "JwHi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "type": "harmony import specifier", - "userRequest": "./Breadcrumb.base", - "loc": "4:31-45" - }, - { - "moduleId": "yMIw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Breadcrumb.base", - "loc": "2:0-34" - }, - { - "moduleId": "yMIw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Breadcrumb.base", - "loc": "2:0-34" - } - ], - "usedExports": false, - "providedExports": [ - "BreadcrumbBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends, __rest, __spreadArrays } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, getRTL, classNamesFunction, getNativeProps, htmlElementProperties, } from '../../Utilities';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nimport { Link } from '../../Link';\nimport { Icon } from '../../Icon';\nimport { IconButton } from '../../Button';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { ResizeGroup } from '../../ResizeGroup';\nimport { TooltipHost, TooltipOverflowMode } from '../../Tooltip';\nvar getClassNames = classNamesFunction();\nvar OVERFLOW_KEY = 'overflow';\nvar nullFunction = function () { return null; };\nvar nonActionableItemProps = {\n styles: function (props) {\n var theme = props.theme;\n return {\n root: {\n selectors: {\n '&.is-disabled': {\n color: theme.semanticColors.bodyText,\n },\n },\n },\n };\n },\n};\n/**\n * {@docCategory Breadcrumb}\n */\nvar BreadcrumbBase = /** @class */ (function (_super) {\n __extends(BreadcrumbBase, _super);\n function BreadcrumbBase(props) {\n var _this = _super.call(this, props) || this;\n _this._focusZone = React.createRef();\n /**\n * Remove the first rendered item past the overlow point and put it and the end the overflow set.\n */\n _this._onReduceData = function (data) {\n var renderedItems = data.renderedItems, renderedOverflowItems = data.renderedOverflowItems;\n var overflowIndex = data.props.overflowIndex;\n var movedItem = renderedItems[overflowIndex];\n if (!movedItem) {\n return undefined;\n }\n renderedItems = __spreadArrays(renderedItems);\n renderedItems.splice(overflowIndex, 1);\n renderedOverflowItems = __spreadArrays(renderedOverflowItems, [movedItem]);\n return __assign(__assign({}, data), { renderedItems: renderedItems, renderedOverflowItems: renderedOverflowItems });\n };\n /**\n * Remove the last item of the overflow set and insert the item as the start of the rendered set past the overflow\n * point.\n */\n _this._onGrowData = function (data) {\n var renderedItems = data.renderedItems, renderedOverflowItems = data.renderedOverflowItems;\n var _a = data.props, overflowIndex = _a.overflowIndex, maxDisplayedItems = _a.maxDisplayedItems;\n renderedOverflowItems = __spreadArrays(renderedOverflowItems);\n var movedItem = renderedOverflowItems.pop();\n if (!movedItem || renderedItems.length >= maxDisplayedItems) {\n return undefined;\n }\n renderedItems = __spreadArrays(renderedItems);\n renderedItems.splice(overflowIndex, 0, movedItem);\n return __assign(__assign({}, data), { renderedItems: renderedItems, renderedOverflowItems: renderedOverflowItems });\n };\n _this._onRenderBreadcrumb = function (data) {\n var _a = data.props, ariaLabel = _a.ariaLabel, _b = _a.dividerAs, DividerType = _b === void 0 ? Icon : _b, _c = _a.onRenderItem, onRenderItem = _c === void 0 ? _this._onRenderItem : _c, overflowAriaLabel = _a.overflowAriaLabel, overflowIndex = _a.overflowIndex, onRenderOverflowIcon = _a.onRenderOverflowIcon, overflowButtonAs = _a.overflowButtonAs;\n var renderedOverflowItems = data.renderedOverflowItems, renderedItems = data.renderedItems;\n var contextualItems = renderedOverflowItems.map(function (item) {\n var isActionable = !!(item.onClick || item.href);\n return {\n text: item.text,\n name: item.text,\n key: item.key,\n onClick: item.onClick ? _this._onBreadcrumbClicked.bind(_this, item) : null,\n href: item.href,\n disabled: !isActionable,\n itemProps: isActionable ? undefined : nonActionableItemProps,\n };\n });\n // Find index of last rendered item so the divider icon\n // knows not to render on that item\n var lastItemIndex = renderedItems.length - 1;\n var hasOverflowItems = renderedOverflowItems && renderedOverflowItems.length !== 0;\n var itemElements = renderedItems.map(function (item, index) { return (React.createElement(\"li\", { className: _this._classNames.listItem, key: item.key || String(index) },\n onRenderItem(item, _this._onRenderItem),\n (index !== lastItemIndex || (hasOverflowItems && index === overflowIndex - 1)) && (React.createElement(DividerType, { className: _this._classNames.chevron, iconName: getRTL(_this.props.theme) ? 'ChevronLeft' : 'ChevronRight', item: item })))); });\n if (hasOverflowItems) {\n var iconProps = !onRenderOverflowIcon ? { iconName: 'More' } : {};\n var onRenderMenuIcon = onRenderOverflowIcon ? onRenderOverflowIcon : nullFunction;\n var OverflowButton = overflowButtonAs ? overflowButtonAs : IconButton;\n itemElements.splice(overflowIndex, 0, React.createElement(\"li\", { className: _this._classNames.overflow, key: OVERFLOW_KEY },\n React.createElement(OverflowButton, { className: _this._classNames.overflowButton, iconProps: iconProps, role: \"button\", \"aria-haspopup\": \"true\", ariaLabel: overflowAriaLabel, onRenderMenuIcon: onRenderMenuIcon, menuProps: {\n items: contextualItems,\n directionalHint: DirectionalHint.bottomLeftEdge,\n } }),\n overflowIndex !== lastItemIndex + 1 && (React.createElement(DividerType, { className: _this._classNames.chevron, iconName: getRTL(_this.props.theme) ? 'ChevronLeft' : 'ChevronRight', item: renderedOverflowItems[renderedOverflowItems.length - 1] }))));\n }\n var nativeProps = getNativeProps(_this.props, htmlElementProperties, [\n 'className',\n ]);\n return (React.createElement(\"div\", __assign({ className: _this._classNames.root, role: \"navigation\", \"aria-label\": ariaLabel }, nativeProps),\n React.createElement(FocusZone, __assign({ componentRef: _this._focusZone, direction: FocusZoneDirection.horizontal }, _this.props.focusZoneProps),\n React.createElement(\"ol\", { className: _this._classNames.list }, itemElements))));\n };\n _this._onRenderItem = function (item) {\n var as = item.as, href = item.href, onClick = item.onClick, isCurrentItem = item.isCurrentItem, text = item.text, additionalProps = __rest(item, [\"as\", \"href\", \"onClick\", \"isCurrentItem\", \"text\"]);\n if (onClick || href) {\n return (React.createElement(Link, __assign({}, additionalProps, { as: as, className: _this._classNames.itemLink, href: href, \"aria-current\": isCurrentItem ? 'page' : undefined, \n // eslint-disable-next-line react/jsx-no-bind\n onClick: _this._onBreadcrumbClicked.bind(_this, item) }),\n React.createElement(TooltipHost, __assign({ content: text, overflowMode: TooltipOverflowMode.Parent }, _this.props.tooltipHostProps), text)));\n }\n else {\n var Tag = as || 'span';\n return (React.createElement(Tag, __assign({}, additionalProps, { className: _this._classNames.item }),\n React.createElement(TooltipHost, __assign({ content: text, overflowMode: TooltipOverflowMode.Parent }, _this.props.tooltipHostProps), text)));\n }\n };\n _this._onBreadcrumbClicked = function (item, ev) {\n if (item.onClick) {\n item.onClick(ev, item);\n }\n };\n initializeComponentRef(_this);\n _this._validateProps(props);\n return _this;\n }\n /**\n * Sets focus to the first breadcrumb link.\n */\n BreadcrumbBase.prototype.focus = function () {\n if (this._focusZone.current) {\n this._focusZone.current.focus();\n }\n };\n BreadcrumbBase.prototype.render = function () {\n this._validateProps(this.props);\n var _a = this.props, _b = _a.onReduceData, onReduceData = _b === void 0 ? this._onReduceData : _b, _c = _a.onGrowData, onGrowData = _c === void 0 ? this._onGrowData : _c, overflowIndex = _a.overflowIndex, maxDisplayedItems = _a.maxDisplayedItems, items = _a.items, className = _a.className, theme = _a.theme, styles = _a.styles;\n var renderedItems = __spreadArrays(items);\n var renderedOverflowItems = renderedItems.splice(overflowIndex, renderedItems.length - maxDisplayedItems);\n var breadcrumbData = {\n props: this.props,\n renderedItems: renderedItems,\n renderedOverflowItems: renderedOverflowItems,\n };\n this._classNames = getClassNames(styles, {\n className: className,\n theme: theme,\n });\n return (React.createElement(ResizeGroup, { onRenderData: this._onRenderBreadcrumb, onReduceData: onReduceData, onGrowData: onGrowData, data: breadcrumbData }));\n };\n /**\n * Validate incoming props\n * @param props - Props to validate\n */\n BreadcrumbBase.prototype._validateProps = function (props) {\n var maxDisplayedItems = props.maxDisplayedItems, overflowIndex = props.overflowIndex, items = props.items;\n if (overflowIndex < 0 ||\n (maxDisplayedItems > 1 && overflowIndex > maxDisplayedItems - 1) ||\n (items.length > 0 && overflowIndex > items.length - 1)) {\n throw new Error('Breadcrumb: overflowIndex out of range');\n }\n };\n BreadcrumbBase.defaultProps = {\n items: [],\n maxDisplayedItems: 999,\n overflowIndex: 0,\n };\n return BreadcrumbBase;\n}(React.Component));\nexport { BreadcrumbBase };\n//# sourceMappingURL=Breadcrumb.base.js.map" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js", - "index": null, - "index2": null, - "size": 77, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Button", - "loc": "5:0-25" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Button", - "loc": "5:0-25" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "3:0-44" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Button", - "loc": "4:0-60" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "3:0-42" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "7:0-42" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Button", - "loc": "5:0-48" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Button", - "loc": "4:0-48" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "4:0-45" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "5:0-42" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "5:0-42" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "4:0-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "3:0-42" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Button", - "loc": "3:0-45" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Button", - "loc": "5:0-48" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "7:0-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "3:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "4:0-42" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "4:0-45" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "6:0-45" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "7:0-48" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "4:0-72" - } - ], - "usedExports": false, - "providedExports": [ - "BaseButton", - "ElementType", - "ButtonType", - "Button", - "ActionButton", - "CommandBarButton", - "CommandButton", - "CompoundButton", - "DefaultButton", - "MessageBarButton", - "PrimaryButton", - "IconButton", - "getSplitButtonClassNames" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Button/index';\n//# sourceMappingURL=Button.js.map" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js", - "index": 533, - "index2": 526, - "size": 488, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_getAllKeysIn", - "loc": "11:19-45" - }, - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_getAllKeysIn", - "loc": "8:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var baseGetAllKeys = require('./_baseGetAllKeys'),\n getSymbolsIn = require('./_getSymbolsIn'),\n keysIn = require('./keysIn');\n\n/**\n * Creates an array of own and inherited enumerable property names and\n * symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names and symbols.\n */\nfunction getAllKeysIn(object) {\n return baseGetAllKeys(object, keysIn, getSymbolsIn);\n}\n\nmodule.exports = getAllKeysIn;\n" - }, - { - "id": "G95C", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.types.js", - "index": null, - "index2": null, - "size": 762, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "issuerId": "sLz2", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "v4Pl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pivot.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pivot.js" - }, - { - "id": "hrTv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js" - }, - { - "id": "8X3N", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js" - }, - { - "id": "sLz2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hrTv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Pivot.types", - "loc": "4:0-30" - }, - { - "moduleId": "hrTv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Pivot.types", - "loc": "4:0-30" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Pivot.types", - "loc": "7:0-48" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./Pivot.types", - "loc": "8:0-46" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "./Pivot.types", - "loc": "229:45-58" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "userRequest": "./Pivot.types", - "loc": "230:46-61" - } - ], - "usedExports": false, - "providedExports": [ - "PivotLinkFormat", - "PivotLinkSize" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * {@docCategory Pivot}\n */\nexport var PivotLinkFormat;\n(function (PivotLinkFormat) {\n /**\n * Display Pivot Links as links\n */\n PivotLinkFormat[PivotLinkFormat[\"links\"] = 0] = \"links\";\n /**\n * Display Pivot Links as Tabs\n */\n PivotLinkFormat[PivotLinkFormat[\"tabs\"] = 1] = \"tabs\";\n})(PivotLinkFormat || (PivotLinkFormat = {}));\n/**\n * {@docCategory Pivot}\n */\nexport var PivotLinkSize;\n(function (PivotLinkSize) {\n /**\n * Display Link using normal font size\n */\n PivotLinkSize[PivotLinkSize[\"normal\"] = 0] = \"normal\";\n /**\n * Display links using large font size\n */\n PivotLinkSize[PivotLinkSize[\"large\"] = 1] = \"large\";\n})(PivotLinkSize || (PivotLinkSize = {}));\n//# sourceMappingURL=Pivot.types.js.map" - }, - { - "id": "GBV5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/IPropertyFieldNumberHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/IPropertyFieldNumberHost.js", - "index": 892, - "index2": 889, - "size": 52, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerId": "LatS", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldNumberHost", - "loc": "3:0-43" - }, - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldNumberHost", - "loc": "3:0-43" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldNumberHost.js.map" - }, - { - "id": "GCTM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warnConditionallyRequiredProps.js", - "index": 243, - "index2": 228, - "size": 1071, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "283:8-38" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "5:0-87" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "182:8-38" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "2:0-54" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnConditionallyRequiredProps", - "loc": "2:0-54" - } - ], - "usedExports": [ - "warnConditionallyRequiredProps" - ], - "providedExports": [ - "warnConditionallyRequiredProps" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { warn } from './warn';\n/**\n * Warns when props are required if a condition is met.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param requiredProps - The name of the props that are required when the condition is met.\n * @param conditionalPropName - The name of the prop that the condition is based on.\n * @param condition - Whether the condition is met.\n */\nexport function warnConditionallyRequiredProps(componentName, props, requiredProps, conditionalPropName, condition) {\n if (condition === true && process.env.NODE_ENV !== 'production') {\n for (var _i = 0, requiredProps_1 = requiredProps; _i < requiredProps_1.length; _i++) {\n var requiredPropName = requiredProps_1[_i];\n if (!(requiredPropName in props)) {\n warn(componentName + \" property '\" + requiredPropName + \"' is required when '\" + conditionalPropName + \"' is used.'\");\n }\n }\n }\n}\n//# sourceMappingURL=warnConditionallyRequiredProps.js.map" - }, - { - "id": "GEqb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js", - "index": null, - "index2": null, - "size": 66, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "issuerId": "zK24", - "issuerName": "./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zK24", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../FocusTrapZone/index", - "loc": "8:0-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../FocusTrapZone/index", - "loc": "4:0-55" - }, - { - "moduleId": "zK24", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/FocusTrapZone/index", - "loc": "1:0-49" - }, - { - "moduleId": "zK24", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "module": "./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "type": "harmony export imported specifier", - "userRequest": "./components/FocusTrapZone/index", - "loc": "1:0-49" - } - ], - "usedExports": false, - "providedExports": [ - "FocusTrapZone" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './FocusTrapZone';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "GJbv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-13.js", - "index": null, - "index2": null, - "size": 4869, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-13", - "loc": "15:0-59" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-13", - "loc": "39:8-11" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-13\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-13-c3989a02.woff') format('woff')\"\n },\n icons: {\n 'RectangularClipping': '\\uF407',\n 'TeamsLogo16': '\\uF40A',\n 'TeamsLogoFill16': '\\uF40B',\n 'Spacer': '\\uF40D',\n 'SkypeLogo16': '\\uF40E',\n 'SkypeForBusinessLogo16': '\\uF40F',\n 'SkypeForBusinessLogoFill16': '\\uF410',\n 'FilterSolid': '\\uF412',\n 'MailUndelivered': '\\uF415',\n 'MailTentative': '\\uF416',\n 'MailTentativeMirrored': '\\uF417',\n 'MailReminder': '\\uF418',\n 'ReceiptUndelivered': '\\uF419',\n 'ReceiptTentative': '\\uF41A',\n 'ReceiptTentativeMirrored': '\\uF41B',\n 'Inbox': '\\uF41C',\n 'IRMReply': '\\uF41D',\n 'IRMReplyMirrored': '\\uF41E',\n 'IRMForward': '\\uF41F',\n 'IRMForwardMirrored': '\\uF420',\n 'VoicemailIRM': '\\uF421',\n 'EventAccepted': '\\uF422',\n 'EventTentative': '\\uF423',\n 'EventTentativeMirrored': '\\uF424',\n 'EventDeclined': '\\uF425',\n 'IDBadge': '\\uF427',\n 'BackgroundColor': '\\uF42B',\n 'OfficeFormsLogoInverse16': '\\uF433',\n 'OfficeFormsLogo': '\\uF434',\n 'OfficeFormsLogoFill': '\\uF435',\n 'OfficeFormsLogo16': '\\uF436',\n 'OfficeFormsLogoFill16': '\\uF437',\n 'OfficeFormsLogoInverse24': '\\uF43A',\n 'OfficeFormsLogo24': '\\uF43B',\n 'OfficeFormsLogoFill24': '\\uF43C',\n 'PageLock': '\\uF43F',\n 'NotExecuted': '\\uF440',\n 'NotImpactedSolid': '\\uF441',\n 'FieldReadOnly': '\\uF442',\n 'FieldRequired': '\\uF443',\n 'BacklogBoard': '\\uF444',\n 'ExternalBuild': '\\uF445',\n 'ExternalTFVC': '\\uF446',\n 'ExternalXAML': '\\uF447',\n 'IssueSolid': '\\uF448',\n 'DefectSolid': '\\uF449',\n 'LadybugSolid': '\\uF44A',\n 'NugetLogo': '\\uF44C',\n 'TFVCLogo': '\\uF44D',\n 'ProjectLogo32': '\\uF47E',\n 'ProjectLogoFill32': '\\uF47F',\n 'ProjectLogo16': '\\uF480',\n 'ProjectLogoFill16': '\\uF481',\n 'SwayLogo32': '\\uF482',\n 'SwayLogoFill32': '\\uF483',\n 'SwayLogo16': '\\uF484',\n 'SwayLogoFill16': '\\uF485',\n 'ClassNotebookLogo32': '\\uF486',\n 'ClassNotebookLogoFill32': '\\uF487',\n 'ClassNotebookLogo16': '\\uF488',\n 'ClassNotebookLogoFill16': '\\uF489',\n 'ClassNotebookLogoInverse32': '\\uF48A',\n 'ClassNotebookLogoInverse16': '\\uF48B',\n 'StaffNotebookLogo32': '\\uF48C',\n 'StaffNotebookLogoFill32': '\\uF48D',\n 'StaffNotebookLogo16': '\\uF48E',\n 'StaffNotebookLogoFill16': '\\uF48F',\n 'StaffNotebookLogoInverted32': '\\uF490',\n 'StaffNotebookLogoInverted16': '\\uF491',\n 'KaizalaLogo': '\\uF492',\n 'TaskLogo': '\\uF493',\n 'ProtectionCenterLogo32': '\\uF494',\n 'GallatinLogo': '\\uF496',\n 'Globe2': '\\uF49A',\n 'Guitar': '\\uF49B',\n 'Breakfast': '\\uF49C',\n 'Brunch': '\\uF49D',\n 'BeerMug': '\\uF49E',\n 'Vacation': '\\uF49F',\n 'Teeth': '\\uF4A0',\n 'Taxi': '\\uF4A1',\n 'Chopsticks': '\\uF4A2',\n 'SyncOccurence': '\\uF4A3',\n 'UnsyncOccurence': '\\uF4A4',\n 'GIF': '\\uF4A9',\n 'PrimaryCalendar': '\\uF4AE',\n 'SearchCalendar': '\\uF4AF',\n 'VideoOff': '\\uF4B0',\n 'MicrosoftFlowLogo': '\\uF4B1',\n 'BusinessCenterLogo': '\\uF4B2',\n 'ToDoLogoBottom': '\\uF4B3',\n 'ToDoLogoTop': '\\uF4B4',\n 'EditSolid12': '\\uF4B5',\n 'EditSolidMirrored12': '\\uF4B6',\n 'UneditableSolid12': '\\uF4B7',\n 'UneditableSolidMirrored12': '\\uF4B8',\n 'UneditableMirrored': '\\uF4B9',\n 'AdminALogo32': '\\uF4BA',\n 'AdminALogoFill32': '\\uF4BB',\n 'ToDoLogoInverse': '\\uF4BC'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-13.js.map" - }, - { - "id": "GNiM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "name": "./node_modules/lodash/_stringToPath.js", - "index": 557, - "index2": 551, - "size": 840, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "issuerId": "4uTw", - "issuerName": "./node_modules/lodash/_castPath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4uTw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "module": "./node_modules/lodash/_castPath.js", - "moduleName": "./node_modules/lodash/_castPath.js", - "type": "cjs require", - "userRequest": "./_stringToPath", - "loc": "3:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var memoizeCapped = require('./_memoizeCapped');\n\n/** Used to match property names within property paths. */\nvar rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g;\n\n/** Used to match backslashes in property paths. */\nvar reEscapeChar = /\\\\(\\\\)?/g;\n\n/**\n * Converts `string` to a property path array.\n *\n * @private\n * @param {string} string The string to convert.\n * @returns {Array} Returns the property path array.\n */\nvar stringToPath = memoizeCapped(function(string) {\n var result = [];\n if (string.charCodeAt(0) === 46 /* . */) {\n result.push('');\n }\n string.replace(rePropName, function(match, number, quote, subString) {\n result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));\n });\n return result;\n});\n\nmodule.exports = stringToPath;\n" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js", - "index": null, - "index2": null, - "size": 2607, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons", - "loc": "1:0-54" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons", - "loc": "25:8-9" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none',\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-a13498cf.woff') format('woff')\",\n },\n icons: {\n GlobalNavButton: '\\uE700',\n ChevronDown: '\\uE70D',\n ChevronUp: '\\uE70E',\n Edit: '\\uE70F',\n Add: '\\uE710',\n Cancel: '\\uE711',\n More: '\\uE712',\n Settings: '\\uE713',\n Mail: '\\uE715',\n Filter: '\\uE71C',\n Search: '\\uE721',\n Share: '\\uE72D',\n BlockedSite: '\\uE72F',\n FavoriteStar: '\\uE734',\n FavoriteStarFill: '\\uE735',\n CheckMark: '\\uE73E',\n Delete: '\\uE74D',\n ChevronLeft: '\\uE76B',\n ChevronRight: '\\uE76C',\n Calendar: '\\uE787',\n Megaphone: '\\uE789',\n Undo: '\\uE7A7',\n Flag: '\\uE7C1',\n Page: '\\uE7C3',\n Pinned: '\\uE840',\n View: '\\uE890',\n Clear: '\\uE894',\n Download: '\\uE896',\n Upload: '\\uE898',\n Folder: '\\uE8B7',\n Sort: '\\uE8CB',\n AlignRight: '\\uE8E2',\n AlignLeft: '\\uE8E4',\n Tag: '\\uE8EC',\n AddFriend: '\\uE8FA',\n Info: '\\uE946',\n SortLines: '\\uE9D0',\n List: '\\uEA37',\n CircleRing: '\\uEA3A',\n Heart: '\\uEB51',\n HeartFill: '\\uEB52',\n Tiles: '\\uECA5',\n Embed: '\\uECCE',\n Glimmer: '\\uECF4',\n Ascending: '\\uEDC0',\n Descending: '\\uEDC1',\n SortUp: '\\uEE68',\n SortDown: '\\uEE69',\n SyncToPC: '\\uEE6E',\n LargeGrid: '\\uEECB',\n SkypeCheck: '\\uEF80',\n SkypeClock: '\\uEF81',\n SkypeMinus: '\\uEF82',\n ClearFilter: '\\uEF8F',\n Flow: '\\uEF90',\n StatusCircleCheckmark: '\\uF13E',\n MoreVertical: '\\uF2BC',\n },\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons.js.map" - }, - { - "id": "GR0N", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "index": null, - "index2": null, - "size": 27810, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "issuerId": "oave", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "xZy3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipLayer.js" - }, - { - "id": "J64e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js" - }, - { - "id": "oave", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "J64e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipLayer.base", - "loc": "2:0-35" - }, - { - "moduleId": "J64e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeytipLayer.base", - "loc": "2:0-35" - }, - { - "moduleId": "oave", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipLayer.base", - "loc": "2:0-53" - }, - { - "moduleId": "oave", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "type": "harmony import specifier", - "userRequest": "./KeytipLayer.base", - "loc": "4:32-47" - } - ], - "usedExports": false, - "providedExports": [ - "KeytipLayerBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends, __spreadArrays } from \"tslib\";\nimport * as React from 'react';\nimport { getLayerStyles } from './KeytipLayer.styles';\nimport { Keytip } from '../../Keytip';\nimport { Layer } from '../../Layer';\nimport { classNamesFunction, getDocument, arraysEqual, warn, isMac, EventGroup, Async, initializeComponentRef, KeyCodes, } from '../../Utilities';\nimport { KeytipManager } from '../../utilities/keytips/KeytipManager';\nimport { KeytipTree } from './KeytipTree';\nimport { ktpTargetFromId, ktpTargetFromSequences, sequencesToID, mergeOverflows, } from '../../utilities/keytips/KeytipUtils';\nimport { transitionKeysContain, } from '../../utilities/keytips/IKeytipTransitionKey';\nimport { KeytipEvents, KTP_LAYER_ID, KTP_ARIA_SEPARATOR } from '../../utilities/keytips/KeytipConstants';\n// Default sequence is Alt-Windows (Alt-Meta) in Windows, Option-Control (Alt-Control) in Mac\nvar defaultStartSequence = {\n key: isMac() ? 'Control' : 'Meta',\n modifierKeys: [KeyCodes.alt],\n};\n// Default exit sequence is the same as the start sequence\nvar defaultExitSequence = defaultStartSequence;\n// Default return sequence is Escape\nvar defaultReturnSequence = {\n key: 'Escape',\n};\nvar getClassNames = classNamesFunction();\n/**\n * A layer that holds all keytip items\n * {@docCategory Keytips}\n */\nvar KeytipLayerBase = /** @class */ (function (_super) {\n __extends(KeytipLayerBase, _super);\n function KeytipLayerBase(props, context) {\n var _this = _super.call(this, props, context) || this;\n _this._keytipManager = KeytipManager.getInstance();\n _this._delayedKeytipQueue = [];\n _this._keyHandled = false;\n _this._onDismiss = function (ev) {\n // if we are in keytip mode, then exit keytip mode\n if (_this.state.inKeytipMode) {\n _this._exitKeytipMode(ev);\n }\n };\n _this._onKeyDown = function (ev) {\n _this._keyHandled = false;\n // using key since which has been deprecated and key is now widely suporrted.\n // See: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/which\n var key = ev.key;\n switch (key) {\n case 'Tab':\n case 'Enter':\n case 'Spacebar':\n case ' ':\n case 'ArrowUp':\n case 'Up':\n case 'ArrowDown':\n case 'Down':\n case 'ArrowLeft':\n case 'Left':\n case 'ArrowRight':\n case 'Right':\n if (_this.state.inKeytipMode) {\n _this._keyHandled = true;\n _this._exitKeytipMode(ev);\n }\n break;\n default:\n // Special cases for browser-specific keys that are not at standard\n // (according to http://www.w3.org/TR/uievents-key/#keys-navigation)\n if (key === 'Esc') {\n // Edge: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/5290772/\n key = 'Escape';\n }\n else if (key === 'OS' || key === 'Win') {\n // Firefox: https://bugzilla.mozilla.org/show_bug.cgi?id=1232918\n // Edge: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/8860571/\n // and https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/16424492/\n key = 'Meta';\n }\n var transitionKey = { key: key };\n transitionKey.modifierKeys = _this._getModifierKey(key, ev);\n _this.processTransitionInput(transitionKey, ev);\n break;\n }\n };\n _this._onKeyPress = function (ev) {\n if (_this.state.inKeytipMode && !_this._keyHandled) {\n // Call processInput\n _this.processInput(ev.key.toLocaleLowerCase(), ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n };\n _this._onKeytipAdded = function (eventArgs) {\n var _a;\n var keytipProps = eventArgs.keytip;\n var uniqueID = eventArgs.uniqueID;\n _this._keytipTree.addNode(keytipProps, uniqueID);\n _this._setKeytips();\n // Add the keytip to the queue to show later\n if (_this._keytipTree.isCurrentKeytipParent(keytipProps)) {\n // Ensure existing children are still shown.\n _this._delayedKeytipQueue = _this._delayedKeytipQueue.concat(((_a = _this._keytipTree.currentKeytip) === null || _a === void 0 ? void 0 : _a.children) || []);\n _this._addKeytipToQueue(sequencesToID(keytipProps.keySequences));\n // Ensure the child of currentKeytip is successfully added to currentKeytip's children and update it if not.\n // Note: Added this condition because KeytipTree.addNode was not always reflecting updates made to a parent node\n // in currentKeytip when that parent is the currentKeytip.\n if (_this._keytipTree.currentKeytip &&\n _this._keytipTree.currentKeytip.hasDynamicChildren &&\n _this._keytipTree.currentKeytip.children.indexOf(keytipProps.id) < 0) {\n var currNode = _this._keytipTree.getNode(_this._keytipTree.currentKeytip.id);\n if (currNode) {\n _this._keytipTree.currentKeytip = currNode;\n }\n }\n }\n _this._persistedKeytipChecks(keytipProps);\n };\n _this._onKeytipUpdated = function (eventArgs) {\n var _a;\n var keytipProps = eventArgs.keytip;\n var uniqueID = eventArgs.uniqueID;\n _this._keytipTree.updateNode(keytipProps, uniqueID);\n _this._setKeytips();\n if (_this._keytipTree.isCurrentKeytipParent(keytipProps)) {\n // Ensure existing children are still shown.\n _this._delayedKeytipQueue = _this._delayedKeytipQueue.concat(((_a = _this._keytipTree.currentKeytip) === null || _a === void 0 ? void 0 : _a.children) || []);\n _this._addKeytipToQueue(sequencesToID(keytipProps.keySequences));\n }\n _this._persistedKeytipChecks(keytipProps);\n };\n /**\n * Helper function to do checks related to persisted/overflow keytips\n * Done on keytip added and keytip updated\n *\n * @param keytipProps - Keytip props\n */\n _this._persistedKeytipChecks = function (keytipProps) {\n if (_this._newCurrentKeytipSequences && arraysEqual(keytipProps.keySequences, _this._newCurrentKeytipSequences)) {\n _this._triggerKeytipImmediately(keytipProps);\n }\n if (_this._isCurrentKeytipAnAlias(keytipProps)) {\n var keytipSequence = keytipProps.keySequences;\n if (keytipProps.overflowSetSequence) {\n keytipSequence = mergeOverflows(keytipSequence, keytipProps.overflowSetSequence);\n }\n _this._keytipTree.currentKeytip = _this._keytipTree.getNode(sequencesToID(keytipSequence));\n }\n };\n _this._onKeytipRemoved = function (eventArgs) {\n var keytipProps = eventArgs.keytip;\n var uniqueID = eventArgs.uniqueID;\n // Remove keytip from the delayed queue\n _this._removeKeytipFromQueue(sequencesToID(keytipProps.keySequences));\n // Remove the node from the Tree\n _this._keytipTree.removeNode(keytipProps, uniqueID);\n _this._setKeytips();\n };\n _this._onPersistedKeytipAdded = function (eventArgs) {\n var keytipProps = eventArgs.keytip;\n var uniqueID = eventArgs.uniqueID;\n _this._keytipTree.addNode(keytipProps, uniqueID, true);\n };\n _this._onPersistedKeytipRemoved = function (eventArgs) {\n var keytipProps = eventArgs.keytip;\n var uniqueID = eventArgs.uniqueID;\n _this._keytipTree.removeNode(keytipProps, uniqueID);\n };\n _this._onPersistedKeytipExecute = function (eventArgs) {\n _this._persistedKeytipExecute(eventArgs.overflowButtonSequences, eventArgs.keytipSequences);\n };\n /**\n * Sets if we are in keytip mode.\n * Note, this sets both the state for the layer as well as\n * the value that the manager will expose externally.\n * @param inKeytipMode - Boolean so set whether we are in keytip mode or not\n */\n _this._setInKeytipMode = function (inKeytipMode) {\n _this.setState({ inKeytipMode: inKeytipMode });\n _this._keytipManager.inKeytipMode = inKeytipMode;\n };\n /**\n * Emits a warning if duplicate keytips are found for the children of the current keytip\n */\n _this._warnIfDuplicateKeytips = function () {\n var duplicateKeytips = _this._getDuplicateIds(_this._keytipTree.getChildren());\n if (duplicateKeytips.length) {\n warn('Duplicate keytips found for ' + duplicateKeytips.join(', '));\n }\n };\n /**\n * Returns duplicates among keytip IDs.\n * If the returned array is empty, no duplicates were found.\n *\n * @param keytipIds - Array of keytip IDs to find duplicates for\n * @returns - Array of duplicates that were found. Each duplicate will only be added once to this array.\n */\n _this._getDuplicateIds = function (keytipIds) {\n var seenIds = {};\n return keytipIds.filter(function (keytipId) {\n seenIds[keytipId] = seenIds[keytipId] ? seenIds[keytipId] + 1 : 1;\n // Only add the first duplicate keytip seen\n return seenIds[keytipId] === 2;\n });\n };\n initializeComponentRef(_this);\n _this._events = new EventGroup(_this);\n _this._async = new Async(_this);\n var managerKeytips = __spreadArrays(_this._keytipManager.getKeytips());\n _this.state = {\n inKeytipMode: false,\n // Get the initial set of keytips\n keytips: managerKeytips,\n visibleKeytips: _this._getVisibleKeytips(managerKeytips),\n };\n _this._buildTree();\n _this._currentSequence = '';\n // Add keytip listeners\n _this._events.on(_this._keytipManager, KeytipEvents.KEYTIP_ADDED, _this._onKeytipAdded);\n _this._events.on(_this._keytipManager, KeytipEvents.KEYTIP_UPDATED, _this._onKeytipUpdated);\n _this._events.on(_this._keytipManager, KeytipEvents.KEYTIP_REMOVED, _this._onKeytipRemoved);\n _this._events.on(_this._keytipManager, KeytipEvents.PERSISTED_KEYTIP_ADDED, _this._onPersistedKeytipAdded);\n _this._events.on(_this._keytipManager, KeytipEvents.PERSISTED_KEYTIP_REMOVED, _this._onPersistedKeytipRemoved);\n _this._events.on(_this._keytipManager, KeytipEvents.PERSISTED_KEYTIP_EXECUTE, _this._onPersistedKeytipExecute);\n return _this;\n }\n KeytipLayerBase.prototype.render = function () {\n var _this = this;\n var _a = this.props, content = _a.content, styles = _a.styles;\n var _b = this.state, keytips = _b.keytips, visibleKeytips = _b.visibleKeytips;\n this._classNames = getClassNames(styles, {});\n return (React.createElement(Layer, { styles: getLayerStyles },\n React.createElement(\"span\", { id: KTP_LAYER_ID, className: this._classNames.innerContent }, \"\" + content + KTP_ARIA_SEPARATOR),\n keytips &&\n keytips.map(function (keytipProps, index) {\n return (React.createElement(\"span\", { key: index, id: sequencesToID(keytipProps.keySequences), className: _this._classNames.innerContent }, keytipProps.keySequences.join(KTP_ARIA_SEPARATOR)));\n }),\n visibleKeytips &&\n visibleKeytips.map(function (visibleKeytipProps) {\n return React.createElement(Keytip, __assign({ key: sequencesToID(visibleKeytipProps.keySequences) }, visibleKeytipProps));\n })));\n };\n KeytipLayerBase.prototype.componentDidMount = function () {\n // Add window listeners\n this._events.on(window, 'mouseup', this._onDismiss, true /* useCapture */);\n this._events.on(window, 'pointerup', this._onDismiss, true /* useCapture */);\n this._events.on(window, 'resize', this._onDismiss);\n this._events.on(window, 'keydown', this._onKeyDown, true /* useCapture */);\n this._events.on(window, 'keypress', this._onKeyPress, true /* useCapture */);\n this._events.on(window, 'scroll', this._onDismiss, true /* useCapture */);\n // Add keytip listeners\n this._events.on(this._keytipManager, KeytipEvents.ENTER_KEYTIP_MODE, this._enterKeytipMode);\n this._events.on(this._keytipManager, KeytipEvents.EXIT_KEYTIP_MODE, this._exitKeytipMode);\n };\n KeytipLayerBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n // The below public functions are only public for testing purposes\n // They are not intended to be used in app code by using a KeytipLayer reference\n KeytipLayerBase.prototype.getCurrentSequence = function () {\n return this._currentSequence;\n };\n KeytipLayerBase.prototype.getKeytipTree = function () {\n return this._keytipTree;\n };\n /**\n * Processes an IKeytipTransitionKey entered by the user\n *\n * @param transitionKey - IKeytipTransitionKey received by the layer to process\n */\n KeytipLayerBase.prototype.processTransitionInput = function (transitionKey, ev) {\n var currKtp = this._keytipTree.currentKeytip;\n if (transitionKeysContain(this.props.keytipExitSequences, transitionKey) && currKtp) {\n // If key sequence is in 'exit sequences', exit keytip mode\n this._keyHandled = true;\n this._exitKeytipMode(ev);\n }\n else if (transitionKeysContain(this.props.keytipReturnSequences, transitionKey)) {\n // If key sequence is in return sequences, move currentKeytip to parent (or if currentKeytip is the root, exit)\n if (currKtp) {\n this._keyHandled = true;\n if (currKtp.id === this._keytipTree.root.id) {\n // We are at the root, exit keytip mode\n this._exitKeytipMode(ev);\n }\n else {\n // If this keytip has a onReturn prop, we execute the func.\n if (currKtp.onReturn) {\n currKtp.onReturn(this._getKtpExecuteTarget(currKtp), this._getKtpTarget(currKtp));\n }\n // Reset currentSequence\n this._currentSequence = '';\n // Return pointer to its parent\n this._keytipTree.currentKeytip = this._keytipTree.getNode(currKtp.parent);\n // Show children keytips of the new currentKeytip\n this.showKeytips(this._keytipTree.getChildren());\n this._warnIfDuplicateKeytips();\n }\n }\n }\n else if (transitionKeysContain(this.props.keytipStartSequences, transitionKey) && !currKtp) {\n // If key sequence is in 'entry sequences' and currentKeytip is null, we enter keytip mode\n this._keyHandled = true;\n this._enterKeytipMode();\n this._warnIfDuplicateKeytips();\n }\n };\n /**\n * Processes inputs from the document listener and traverse the keytip tree\n *\n * @param key - Key pressed by the user\n */\n KeytipLayerBase.prototype.processInput = function (key, ev) {\n // Concat the input key with the current sequence\n var currSequence = this._currentSequence + key;\n var currKtp = this._keytipTree.currentKeytip;\n // currentKeytip must be defined, otherwise we haven't entered keytip mode yet\n if (currKtp) {\n var node = this._keytipTree.getExactMatchedNode(currSequence, currKtp);\n if (node) {\n this._keytipTree.currentKeytip = currKtp = node;\n var currKtpChildren = this._keytipTree.getChildren();\n // Execute this node's onExecute if defined\n if (currKtp.onExecute) {\n currKtp.onExecute(this._getKtpExecuteTarget(currKtp), this._getKtpTarget(currKtp));\n // Reset currKtp, this might have changed from the onExecute\n currKtp = this._keytipTree.currentKeytip;\n }\n // To exit keytipMode after executing the keytip it must not have a menu or have dynamic children\n if (currKtpChildren.length === 0 && !(currKtp.hasDynamicChildren || currKtp.hasMenu)) {\n this._exitKeytipMode(ev);\n }\n else {\n // Show all children keytips\n this.showKeytips(currKtpChildren);\n this._warnIfDuplicateKeytips();\n }\n // Clear currentSequence\n this._currentSequence = '';\n return;\n }\n var partialNodes = this._keytipTree.getPartiallyMatchedNodes(currSequence, currKtp);\n if (partialNodes.length > 0) {\n // We found nodes that partially match the sequence, so we show only those\n // Omit showing persisted nodes here\n var ids = partialNodes\n .filter(function (partialNode) {\n return !partialNode.persisted;\n })\n .map(function (partialNode) {\n return partialNode.id;\n });\n this.showKeytips(ids);\n // Save currentSequence\n this._currentSequence = currSequence;\n }\n }\n };\n /**\n * Show the given keytips and hide all others\n *\n * @param ids - Keytip IDs to show\n */\n KeytipLayerBase.prototype.showKeytips = function (ids) {\n // Update the visible prop in the manager\n for (var _i = 0, _a = this._keytipManager.getKeytips(); _i < _a.length; _i++) {\n var keytip = _a[_i];\n var keytipId = sequencesToID(keytip.keySequences);\n if (keytip.overflowSetSequence) {\n // Check if the ID with the overflow is the keytip we're looking for\n keytipId = sequencesToID(mergeOverflows(keytip.keySequences, keytip.overflowSetSequence));\n }\n if (ids.indexOf(keytipId) >= 0) {\n keytip.visible = true;\n }\n else {\n keytip.visible = false;\n }\n }\n // Apply the manager changes to the Layer state\n this._setKeytips();\n };\n /**\n * Enters keytip mode for this layer\n */\n KeytipLayerBase.prototype._enterKeytipMode = function () {\n if (this._keytipManager.shouldEnterKeytipMode) {\n if (this._keytipManager.delayUpdatingKeytipChange) {\n this._buildTree();\n this._setKeytips();\n }\n this._keytipTree.currentKeytip = this._keytipTree.root;\n // Show children of root\n this.showKeytips(this._keytipTree.getChildren());\n this._setInKeytipMode(true /* inKeytipMode */);\n if (this.props.onEnterKeytipMode) {\n this.props.onEnterKeytipMode();\n }\n }\n };\n KeytipLayerBase.prototype._buildTree = function () {\n this._keytipTree = new KeytipTree();\n // Add regular and persisted keytips to the tree\n for (var _i = 0, _a = Object.keys(this._keytipManager.keytips); _i < _a.length; _i++) {\n var id = _a[_i];\n var uniqueKeytip = this._keytipManager.keytips[id];\n this._keytipTree.addNode(uniqueKeytip.keytip, uniqueKeytip.uniqueID);\n }\n for (var _b = 0, _c = Object.keys(this._keytipManager.persistedKeytips); _b < _c.length; _b++) {\n var id = _c[_b];\n var uniqueKeytip = this._keytipManager.persistedKeytips[id];\n this._keytipTree.addNode(uniqueKeytip.keytip, uniqueKeytip.uniqueID);\n }\n };\n /**\n * Exits keytip mode for this layer\n */\n KeytipLayerBase.prototype._exitKeytipMode = function (ev) {\n this._keytipTree.currentKeytip = undefined;\n this._currentSequence = '';\n // Hide all keytips\n this.showKeytips([]);\n // Reset the delayed keytips if any\n this._delayedQueueTimeout && this._async.clearTimeout(this._delayedQueueTimeout);\n this._delayedKeytipQueue = [];\n this._setInKeytipMode(false /* inKeytipMode */);\n if (this.props.onExitKeytipMode) {\n this.props.onExitKeytipMode(ev);\n }\n };\n /**\n * Sets the keytips state property\n *\n * @param keytipProps - Keytips to set in this layer\n */\n KeytipLayerBase.prototype._setKeytips = function (keytipProps) {\n if (keytipProps === void 0) { keytipProps = this._keytipManager.getKeytips(); }\n this.setState({ keytips: keytipProps, visibleKeytips: this._getVisibleKeytips(keytipProps) });\n };\n /**\n * Callback function to use for persisted keytips\n *\n * @param overflowButtonSequences - The overflow button sequence to execute\n * @param keytipSequences - The keytip that should become the 'currentKeytip' when it is registered\n */\n KeytipLayerBase.prototype._persistedKeytipExecute = function (overflowButtonSequences, keytipSequences) {\n // Save newCurrentKeytip for later\n this._newCurrentKeytipSequences = keytipSequences;\n // Execute the overflow button's onExecute\n var overflowKeytipNode = this._keytipTree.getNode(sequencesToID(overflowButtonSequences));\n if (overflowKeytipNode && overflowKeytipNode.onExecute) {\n overflowKeytipNode.onExecute(this._getKtpExecuteTarget(overflowKeytipNode), this._getKtpTarget(overflowKeytipNode));\n }\n };\n KeytipLayerBase.prototype._getVisibleKeytips = function (keytips) {\n // Filter out non-visible keytips and duplicates\n var seenIds = {};\n return keytips.filter(function (keytip) {\n var keytipId = sequencesToID(keytip.keySequences);\n if (keytip.overflowSetSequence) {\n // Account for overflow set sequences when checking for duplicates\n keytipId = sequencesToID(mergeOverflows(keytip.keySequences, keytip.overflowSetSequence));\n }\n seenIds[keytipId] = seenIds[keytipId] ? seenIds[keytipId] + 1 : 1;\n return keytip.visible && seenIds[keytipId] === 1;\n });\n };\n /**\n * Gets the ModifierKeyCodes based on the keyboard event\n *\n * @param ev - React.KeyboardEvent\n * @returns List of ModifierKeyCodes that were pressed\n */\n KeytipLayerBase.prototype._getModifierKey = function (key, ev) {\n var modifierKeys = [];\n if (ev.altKey && key !== 'Alt') {\n modifierKeys.push(KeyCodes.alt);\n }\n if (ev.ctrlKey && key !== 'Control') {\n modifierKeys.push(KeyCodes.ctrl);\n }\n if (ev.shiftKey && key !== 'Shift') {\n modifierKeys.push(KeyCodes.shift);\n }\n if (ev.metaKey && key !== 'Meta') {\n modifierKeys.push(KeyCodes.leftWindow);\n }\n return modifierKeys.length ? modifierKeys : undefined;\n };\n /**\n * Trigger a keytip immediately and set it as the current keytip\n *\n * @param keytipProps - Keytip to trigger immediately\n */\n KeytipLayerBase.prototype._triggerKeytipImmediately = function (keytipProps) {\n // This keytip should become the currentKeytip and should execute right away\n var keytipSequence = __spreadArrays(keytipProps.keySequences);\n if (keytipProps.overflowSetSequence) {\n keytipSequence = mergeOverflows(keytipSequence, keytipProps.overflowSetSequence);\n }\n // Set currentKeytip\n this._keytipTree.currentKeytip = this._keytipTree.getNode(sequencesToID(keytipSequence));\n if (this._keytipTree.currentKeytip) {\n // Show all children keytips if any\n var children = this._keytipTree.getChildren();\n if (children.length) {\n this.showKeytips(children);\n }\n if (this._keytipTree.currentKeytip.onExecute) {\n this._keytipTree.currentKeytip.onExecute(this._getKtpExecuteTarget(this._keytipTree.currentKeytip), this._getKtpTarget(this._keytipTree.currentKeytip));\n }\n }\n // Unset _newCurrKtpSequences\n this._newCurrentKeytipSequences = undefined;\n };\n KeytipLayerBase.prototype._addKeytipToQueue = function (keytipID) {\n var _this = this;\n // Add keytip\n this._delayedKeytipQueue.push(keytipID);\n // Clear timeout\n this._delayedQueueTimeout && this._async.clearTimeout(this._delayedQueueTimeout);\n // Reset timeout\n this._delayedQueueTimeout = this._async.setTimeout(function () {\n if (_this._delayedKeytipQueue.length) {\n _this.showKeytips(_this._delayedKeytipQueue);\n _this._delayedKeytipQueue = [];\n }\n }, 300);\n };\n KeytipLayerBase.prototype._removeKeytipFromQueue = function (keytipID) {\n var _this = this;\n var index = this._delayedKeytipQueue.indexOf(keytipID);\n if (index >= 0) {\n // Remove keytip\n this._delayedKeytipQueue.splice(index, 1);\n // Clear timeout\n this._delayedQueueTimeout && this._async.clearTimeout(this._delayedQueueTimeout);\n // Reset timeout\n this._delayedQueueTimeout = this._async.setTimeout(function () {\n if (_this._delayedKeytipQueue.length) {\n _this.showKeytips(_this._delayedKeytipQueue);\n _this._delayedKeytipQueue = [];\n }\n }, 300);\n }\n };\n KeytipLayerBase.prototype._getKtpExecuteTarget = function (currKtp) {\n return getDocument().querySelector(ktpTargetFromId(currKtp.id));\n };\n KeytipLayerBase.prototype._getKtpTarget = function (currKtp) {\n return getDocument().querySelector(ktpTargetFromSequences(currKtp.keySequences));\n };\n /**\n * Returns T/F if the keytipProps keySequences match the currentKeytip, and the currentKeytip is in an overflow well\n * This will make 'keytipProps' the new currentKeytip\n *\n * @param keytipProps - Keytip props to check\n * @returns - T/F if this keytip should become the currentKeytip\n */\n KeytipLayerBase.prototype._isCurrentKeytipAnAlias = function (keytipProps) {\n var currKtp = this._keytipTree.currentKeytip;\n if (currKtp &&\n (currKtp.overflowSetSequence || currKtp.persisted) &&\n arraysEqual(keytipProps.keySequences, currKtp.keySequences)) {\n return true;\n }\n return false;\n };\n KeytipLayerBase.defaultProps = {\n keytipStartSequences: [defaultStartSequence],\n keytipExitSequences: [defaultExitSequence],\n keytipReturnSequences: [defaultReturnSequence],\n content: '',\n };\n return KeytipLayerBase;\n}(React.Component));\nexport { KeytipLayerBase };\n//# sourceMappingURL=KeytipLayer.base.js.map" - }, - { - "id": "GTpg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "index": null, - "index2": null, - "size": 3249, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./AutoScroll", - "loc": "2:0-29" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./AutoScroll", - "loc": "2:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "AutoScroll" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "import { EventGroup } from './EventGroup';\nimport { findScrollableParent } from './scroll';\nimport { getRect } from './dom/getRect';\nvar SCROLL_ITERATION_DELAY = 16;\nvar SCROLL_GUTTER_HEIGHT = 100;\nvar MAX_SCROLL_VELOCITY = 15;\n/**\n * AutoScroll simply hooks up mouse events given a parent element, and scrolls the container\n * up/down depending on how close the mouse is to the top/bottom of the container.\n *\n * Once you don't want autoscroll any more, just dispose the helper and it will unhook events.\n *\n * @public\n * {@docCategory AutoScroll}\n */\nvar AutoScroll = /** @class */ (function () {\n function AutoScroll(element) {\n this._events = new EventGroup(this);\n this._scrollableParent = findScrollableParent(element);\n this._incrementScroll = this._incrementScroll.bind(this);\n this._scrollRect = getRect(this._scrollableParent);\n // tslint:disable-next-line:no-any\n if (this._scrollableParent === window) {\n this._scrollableParent = document.body;\n }\n if (this._scrollableParent) {\n this._events.on(window, 'mousemove', this._onMouseMove, true);\n this._events.on(window, 'touchmove', this._onTouchMove, true);\n }\n }\n AutoScroll.prototype.dispose = function () {\n this._events.dispose();\n this._stopScroll();\n };\n AutoScroll.prototype._onMouseMove = function (ev) {\n this._computeScrollVelocity(ev.clientY);\n };\n AutoScroll.prototype._onTouchMove = function (ev) {\n if (ev.touches.length > 0) {\n this._computeScrollVelocity(ev.touches[0].clientY);\n }\n };\n AutoScroll.prototype._computeScrollVelocity = function (clientY) {\n if (!this._scrollRect) {\n return;\n }\n var scrollRectTop = this._scrollRect.top;\n var scrollClientBottom = scrollRectTop + this._scrollRect.height - SCROLL_GUTTER_HEIGHT;\n if (clientY < scrollRectTop + SCROLL_GUTTER_HEIGHT) {\n this._scrollVelocity = Math.max(-MAX_SCROLL_VELOCITY, -MAX_SCROLL_VELOCITY * ((SCROLL_GUTTER_HEIGHT - (clientY - scrollRectTop)) / SCROLL_GUTTER_HEIGHT));\n }\n else if (clientY > scrollClientBottom) {\n this._scrollVelocity = Math.min(MAX_SCROLL_VELOCITY, MAX_SCROLL_VELOCITY * ((clientY - scrollClientBottom) / SCROLL_GUTTER_HEIGHT));\n }\n else {\n this._scrollVelocity = 0;\n }\n if (this._scrollVelocity) {\n this._startScroll();\n }\n else {\n this._stopScroll();\n }\n };\n AutoScroll.prototype._startScroll = function () {\n if (!this._timeoutId) {\n this._incrementScroll();\n }\n };\n AutoScroll.prototype._incrementScroll = function () {\n if (this._scrollableParent) {\n this._scrollableParent.scrollTop += Math.round(this._scrollVelocity);\n }\n this._timeoutId = setTimeout(this._incrementScroll, SCROLL_ITERATION_DELAY);\n };\n AutoScroll.prototype._stopScroll = function () {\n if (this._timeoutId) {\n clearTimeout(this._timeoutId);\n delete this._timeoutId;\n }\n };\n return AutoScroll;\n}());\nexport { AutoScroll };\n//# sourceMappingURL=AutoScroll.js.map" - }, - { - "id": "GYoQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.types.js", - "index": null, - "index2": null, - "size": 462, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "issuerId": "uAzL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js" - }, - { - "id": "II1S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js" - }, - { - "id": "uAzL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ExpandingCard.types", - "loc": "6:0-38" - }, - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ExpandingCard.types", - "loc": "6:0-38" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ExpandingCard.types", - "loc": "4:0-59" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony import specifier", - "userRequest": "./ExpandingCard.types", - "loc": "66:53-70" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ExpandingCard.types", - "loc": "6:0-58" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./ExpandingCard.types", - "loc": "47:34-51" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./ExpandingCard.types", - "loc": "92:22-39" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./ExpandingCard.types", - "loc": "102:30-47" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./ExpandingCard.types", - "loc": "142:18-35" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./ExpandingCard.types", - "loc": "164:30-47" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony import specifier", - "userRequest": "./ExpandingCard.types", - "loc": "173:26-43" - } - ], - "usedExports": false, - "providedExports": [ - "ExpandingCardMode" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * {@docCategory HoverCard}\n */\nexport var ExpandingCardMode;\n(function (ExpandingCardMode) {\n /**\n * To have top compact card only\n */\n ExpandingCardMode[ExpandingCardMode[\"compact\"] = 0] = \"compact\";\n /**\n * To have both top compact and bottom expanded card\n */\n ExpandingCardMode[ExpandingCardMode[\"expanded\"] = 1] = \"expanded\";\n})(ExpandingCardMode || (ExpandingCardMode = {}));\n//# sourceMappingURL=ExpandingCard.types.js.map" - }, - { - "id": "GaQG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "index": null, - "index2": null, - "size": 5197, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "issuerId": "1R2D", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "wYsl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ChoiceGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/ChoiceGroup.js" - }, - { - "id": "siR0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js" - }, - { - "id": "hrfb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js" - }, - { - "id": "/LPW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js" - }, - { - "id": "175d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js" - }, - { - "id": "1R2D", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1R2D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "type": "harmony side effect evaluation", - "userRequest": "./ChoiceGroupOption.base", - "loc": "2:0-65" - }, - { - "moduleId": "1R2D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "type": "harmony import specifier", - "userRequest": "./ChoiceGroupOption.base", - "loc": "4:38-59" - } - ], - "usedExports": false, - "providedExports": [ - "ChoiceGroupOptionBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { Image } from '../../../Image';\nimport { Icon } from '../../../Icon';\nimport { classNamesFunction, getNativeProps, inputProperties, css, initializeComponentRef } from '../../../Utilities';\nimport { composeRenderFunction } from '@uifabric/utilities';\nvar getClassNames = classNamesFunction();\nvar LARGE_IMAGE_SIZE = 71;\n/**\n * {@docCategory ChoiceGroup}\n */\nvar ChoiceGroupOptionBase = /** @class */ (function (_super) {\n __extends(ChoiceGroupOptionBase, _super);\n function ChoiceGroupOptionBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onChange = function (evt) {\n var onChange = _this.props.onChange;\n if (onChange) {\n onChange(evt, _this.props);\n }\n };\n _this._onBlur = function (evt) {\n var onBlur = _this.props.onBlur;\n if (onBlur) {\n onBlur(evt, _this.props);\n }\n };\n _this._onFocus = function (evt) {\n var onFocus = _this.props.onFocus;\n if (onFocus) {\n onFocus(evt, _this.props);\n }\n };\n _this._onRenderField = function (props) {\n var id = props.id, imageSrc = props.imageSrc, _a = props.imageAlt, imageAlt = _a === void 0 ? '' : _a, selectedImageSrc = props.selectedImageSrc, iconProps = props.iconProps;\n var imageSize = props.imageSize ? props.imageSize : { width: 32, height: 32 };\n var onRenderLabel = props.onRenderLabel\n ? composeRenderFunction(props.onRenderLabel, _this._onRenderLabel)\n : _this._onRenderLabel;\n var label = onRenderLabel(props);\n return (React.createElement(\"label\", { htmlFor: id, className: _this._classNames.field },\n imageSrc && (React.createElement(\"div\", { className: _this._classNames.innerField },\n React.createElement(\"div\", { className: _this._classNames.imageWrapper },\n React.createElement(Image, { src: imageSrc, alt: imageAlt, width: imageSize.width, height: imageSize.height })),\n React.createElement(\"div\", { className: _this._classNames.selectedImageWrapper },\n React.createElement(Image, { src: selectedImageSrc, alt: imageAlt, width: imageSize.width, height: imageSize.height })))),\n iconProps && (React.createElement(\"div\", { className: _this._classNames.innerField },\n React.createElement(\"div\", { className: _this._classNames.iconWrapper },\n React.createElement(Icon, __assign({}, iconProps))))),\n imageSrc || iconProps ? React.createElement(\"div\", { className: _this._classNames.labelWrapper }, label) : label));\n };\n _this._onRenderLabel = function (props) {\n return (React.createElement(\"span\", { id: props.labelId, className: \"ms-ChoiceFieldLabel\" }, props.text));\n };\n initializeComponentRef(_this);\n return _this;\n }\n ChoiceGroupOptionBase.prototype.render = function () {\n var _a = this.props, ariaLabel = _a.ariaLabel, focused = _a.focused, required = _a.required, theme = _a.theme, iconProps = _a.iconProps, imageSrc = _a.imageSrc, imageSize = _a.imageSize, disabled = _a.disabled, \n // eslint-disable-next-line deprecation/deprecation\n checked = _a.checked, id = _a.id, styles = _a.styles, name = _a.name, _b = _a.onRenderField, onRenderField = _b === void 0 ? this._onRenderField : _b, rest = __rest(_a, [\"ariaLabel\", \"focused\", \"required\", \"theme\", \"iconProps\", \"imageSrc\", \"imageSize\", \"disabled\", \"checked\", \"id\", \"styles\", \"name\", \"onRenderField\"]);\n this._classNames = getClassNames(styles, {\n theme: theme,\n hasIcon: !!iconProps,\n hasImage: !!imageSrc,\n checked: checked,\n disabled: disabled,\n imageIsLarge: !!imageSrc && (imageSize.width > LARGE_IMAGE_SIZE || imageSize.height > LARGE_IMAGE_SIZE),\n imageSize: imageSize,\n focused: focused,\n });\n var _c = getNativeProps(rest, inputProperties), className = _c.className, nativeProps = __rest(_c, [\"className\"]);\n return (React.createElement(\"div\", { className: this._classNames.root },\n React.createElement(\"div\", { className: this._classNames.choiceFieldWrapper },\n React.createElement(\"input\", __assign({ \"aria-label\": ariaLabel, id: id, className: css(this._classNames.input, className), type: \"radio\", name: name, disabled: disabled, checked: checked, required: required }, nativeProps, { onChange: this._onChange, onFocus: this._onFocus, onBlur: this._onBlur })),\n onRenderField(this.props, this._onRenderField))));\n };\n ChoiceGroupOptionBase.defaultProps = {\n // This ensures default imageSize value doesn't mutate. Mutation can cause style re-calcuation.\n imageSize: { width: 32, height: 32 },\n };\n return ChoiceGroupOptionBase;\n}(React.Component));\nexport { ChoiceGroupOptionBase };\n//# sourceMappingURL=ChoiceGroupOption.base.js.map" - }, - { - "id": "Gi0A", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsMap.js", - "name": "./node_modules/lodash/_baseIsMap.js", - "index": 550, - "index2": 542, - "size": 478, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "issuerId": "zEVN", - "issuerName": "./node_modules/lodash/isMap.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "zEVN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "name": "./node_modules/lodash/isMap.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "zEVN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isMap.js", - "module": "./node_modules/lodash/isMap.js", - "moduleName": "./node_modules/lodash/isMap.js", - "type": "cjs require", - "userRequest": "./_baseIsMap", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getTag = require('./_getTag'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar mapTag = '[object Map]';\n\n/**\n * The base implementation of `_.isMap` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a map, else `false`.\n */\nfunction baseIsMap(value) {\n return isObjectLike(value) && getTag(value) == mapTag;\n}\n\nmodule.exports = baseIsMap;\n" - }, - { - "id": "GiGj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "index": null, - "index2": null, - "size": 89, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ActivityItem", - "loc": "1:0-31" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ActivityItem", - "loc": "1:0-31" - } - ], - "usedExports": false, - "providedExports": [ - "ActivityItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/ActivityItem/index';\n//# sourceMappingURL=ActivityItem.js.map" - }, - { - "id": "GoyQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isObject.js", - "name": "./node_modules/lodash/isObject.js", - "index": 470, - "index2": 457, - "size": 733, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "issuerId": "QcOe", - "issuerName": "./node_modules/lodash/_baseKeysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "QcOe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "name": "./node_modules/lodash/_baseKeysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NKxu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "module": "./node_modules/lodash/_baseIsNative.js", - "moduleName": "./node_modules/lodash/_baseIsNative.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "3:15-36" - }, - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "19:15-36" - }, - { - "moduleId": "QcOe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "module": "./node_modules/lodash/_baseKeysIn.js", - "moduleName": "./node_modules/lodash/_baseKeysIn.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "1:15-36" - }, - { - "moduleId": "dTAl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseCreate.js", - "module": "./node_modules/lodash/_baseCreate.js", - "moduleName": "./node_modules/lodash/_baseCreate.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "1:15-36" - }, - { - "moduleId": "lSCD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isFunction.js", - "module": "./node_modules/lodash/isFunction.js", - "moduleName": "./node_modules/lodash/isFunction.js", - "type": "cjs require", - "userRequest": "./isObject", - "loc": "2:15-36" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\nfunction isObject(value) {\n var type = typeof value;\n return value != null && (type == 'object' || type == 'function');\n}\n\nmodule.exports = isObject;\n" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "index": null, - "index2": null, - "size": 105, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "issuerId": "sCxi", - "issuerName": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "sCxi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "module": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/ThemeGenerator/index", - "loc": "1:0-50" - }, - { - "moduleId": "sCxi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "module": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "type": "harmony export imported specifier", - "userRequest": "./components/ThemeGenerator/index", - "loc": "1:0-50" - } - ], - "usedExports": false, - "providedExports": [ - "ThemeGenerator", - "BaseSlots", - "FabricSlots", - "SemanticColorSlots", - "themeRulesStandardCreator" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './ThemeGenerator';\nexport * from './ThemeRulesStandard';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Gz+d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.js", - "index": null, - "index2": null, - "size": 135, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "issuerId": "ZEVL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "k+iy", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/CommandBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/CommandBar.js" - }, - { - "id": "vX7Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js" - }, - { - "id": "62r0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js" - }, - { - "id": "vu/h", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js" - }, - { - "id": "rPQp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ResizeGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/ResizeGroup.js" - }, - { - "id": "ZEVL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../ResizeGroup", - "loc": "152:36-47" - }, - { - "moduleId": "ZEVL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ResizeGroup", - "loc": "1:0-30" - }, - { - "moduleId": "ZEVL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ResizeGroup", - "loc": "1:0-30" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../ResizeGroup", - "loc": "119:36-47" - } - ], - "usedExports": false, - "providedExports": [ - "ResizeGroup" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { ResizeGroupBase } from './ResizeGroup.base';\nexport var ResizeGroup = ResizeGroupBase;\n//# sourceMappingURL=ResizeGroup.js.map" - }, - { - "id": "H+CU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "index": null, - "index2": null, - "size": 799, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "issuerId": "TY1D", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+WGp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js" - }, - { - "id": "HhSh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js" - }, - { - "id": "TY1D", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./PeoplePickerItems/SuggestionItemDefault", - "loc": "4:0-81" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "./PeoplePickerItems/SuggestionItemDefault", - "loc": "24:19-39" - } - ], - "usedExports": false, - "providedExports": [ - "SuggestionItemNormal" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { css } from '../../../../Utilities';\nimport { Persona, PersonaSize, PersonaPresence } from '../../../../Persona';\nimport * as stylesImport from '../PeoplePicker.scss';\nexport var SuggestionItemNormal = function (personaProps, suggestionItemProps) {\n return (React.createElement(\"div\", { className: css('ms-PeoplePicker-personaContent', stylesImport.peoplePickerPersonaContent) },\n React.createElement(Persona, __assign({ presence: personaProps.presence !== undefined ? personaProps.presence : PersonaPresence.none, size: PersonaSize.size40, className: css('ms-PeoplePicker-Persona', stylesImport.peoplePickerPersona), showSecondaryText: true }, personaProps))));\n};\n//# sourceMappingURL=SuggestionItemDefault.js.map" - }, - { - "id": "H+sk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "index": null, - "index2": null, - "size": 63, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "issuerId": "//Os", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "//Os", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "//Os", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/KeytipData/index", - "loc": "1:0-46" - }, - { - "moduleId": "//Os", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "type": "harmony export imported specifier", - "userRequest": "./components/KeytipData/index", - "loc": "1:0-46" - } - ], - "usedExports": false, - "providedExports": [ - "KeytipData" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "export * from './KeytipData';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "H7xo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "index": null, - "index2": null, - "size": 2125, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerId": "hLc7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PeoplePicker/PeoplePickerItems/PeoplePickerItem", - "loc": "9:0-66" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PeoplePicker/PeoplePickerItems/PeoplePickerItem", - "loc": "9:0-66" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./PeoplePickerItems/PeoplePickerItem", - "loc": "6:0-72" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "./PeoplePickerItems/PeoplePickerItem", - "loc": "42:68-84" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "./PeoplePickerItems/PeoplePickerItem", - "loc": "60:68-84" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "./PeoplePickerItems/PeoplePickerItem", - "loc": "78:68-84" - } - ], - "usedExports": false, - "providedExports": [ - "PeoplePickerItemBase", - "PeoplePickerItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { getId, classNamesFunction, styled } from '../../../../Utilities';\nimport { Persona, PersonaSize, } from '../../../../Persona';\nimport { IconButton } from '../../../../Button';\nimport { ValidationState } from '../../BasePicker.types';\nimport { getStyles } from './PeoplePickerItem.styles';\nvar getClassNames = classNamesFunction();\nexport var PeoplePickerItemBase = function (props) {\n var item = props.item, onRemoveItem = props.onRemoveItem, index = props.index, selected = props.selected, removeButtonAriaLabel = props.removeButtonAriaLabel, styles = props.styles, theme = props.theme, className = props.className, disabled = props.disabled;\n var itemId = getId();\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n selected: selected,\n disabled: disabled,\n invalid: item.ValidationState === ValidationState.warning,\n });\n var personaStyles = classNames.subComponentStyles\n ? classNames.subComponentStyles.persona\n : undefined;\n var personaCoinStyles = classNames.subComponentStyles\n ? classNames.subComponentStyles.personaCoin\n : undefined;\n return (React.createElement(\"div\", { className: classNames.root, \"data-is-focusable\": !disabled, \"data-is-sub-focuszone\": true, \"data-selection-index\": index, role: 'listitem', \"aria-labelledby\": 'selectedItemPersona-' + itemId },\n React.createElement(\"div\", { className: classNames.itemContent, id: 'selectedItemPersona-' + itemId },\n React.createElement(Persona, __assign({ size: PersonaSize.size24, styles: personaStyles, coinProps: { styles: personaCoinStyles } }, item))),\n React.createElement(IconButton, { onClick: onRemoveItem, disabled: disabled, iconProps: { iconName: 'Cancel', styles: { root: { fontSize: '12px' } } }, className: classNames.removeButton, ariaLabel: removeButtonAriaLabel })));\n};\nexport var PeoplePickerItem = styled(PeoplePickerItemBase, getStyles, undefined, { scope: 'PeoplePickerItem' });\n//# sourceMappingURL=PeoplePickerItem.js.map" - }, - { - "id": "H84b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/index.js", - "index": null, - "index2": null, - "size": 196, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "issuerId": "Sza5", - "issuerName": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Sza5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Sza5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/SelectedItemsList/index", - "loc": "1:0-53" - }, - { - "moduleId": "Sza5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "type": "harmony export imported specifier", - "userRequest": "./components/SelectedItemsList/index", - "loc": "1:0-53" - } - ], - "usedExports": false, - "providedExports": [ - "BaseSelectedItemsList", - "BasePeopleSelectedItemsList", - "SelectedPeopleList", - "ExtendedSelectedItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './BaseSelectedItemsList';\nexport * from './SelectedPeopleList/SelectedPeopleList';\nexport * from './SelectedPeopleList/Items/ExtendedSelectedItem';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "H8j4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "name": "./node_modules/lodash/_mapCacheSet.js", - "index": 489, - "index2": 479, - "size": 489, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "issuerId": "e4Nc", - "issuerName": "./node_modules/lodash/_MapCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "e4Nc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "module": "./node_modules/lodash/_MapCache.js", - "moduleName": "./node_modules/lodash/_MapCache.js", - "type": "cjs require", - "userRequest": "./_mapCacheSet", - "loc": "5:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var getMapData = require('./_getMapData');\n\n/**\n * Sets the map `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf MapCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the map cache instance.\n */\nfunction mapCacheSet(key, value) {\n var data = getMapData(this, key),\n size = data.size;\n\n data.set(key, value);\n this.size += data.size == size ? 0 : 1;\n return this;\n}\n\nmodule.exports = mapCacheSet;\n" - }, - { - "id": "HBL8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Page.js", - "name": "./node_modules/react-js-pagination/dist/Page.js", - "index": 355, - "index2": 353, - "size": 6416, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "issuerId": "0fKb", - "issuerName": "./node_modules/react-js-pagination/dist/Pagination.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "./Page", - "loc": "14:35-52" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports[\"default\"] = void 0;\n\nvar _react = _interopRequireWildcard(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _classnames = _interopRequireDefault(require(\"classnames\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction _getRequireWildcardCache() { if (typeof WeakMap !== \"function\") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== \"object\" && typeof obj !== \"function\") { return { \"default\": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj[\"default\"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar Page =\n/*#__PURE__*/\nfunction (_Component) {\n _inherits(Page, _Component);\n\n function Page() {\n _classCallCheck(this, Page);\n\n return _possibleConstructorReturn(this, _getPrototypeOf(Page).apply(this, arguments));\n }\n\n _createClass(Page, [{\n key: \"handleClick\",\n value: function handleClick(e) {\n var _this$props = this.props,\n isDisabled = _this$props.isDisabled,\n pageNumber = _this$props.pageNumber;\n e.preventDefault();\n\n if (isDisabled) {\n return;\n }\n\n this.props.onClick(pageNumber);\n }\n }, {\n key: \"render\",\n value: function render() {\n var _cx;\n\n var _this$props2 = this.props,\n pageText = _this$props2.pageText,\n pageNumber = _this$props2.pageNumber,\n activeClass = _this$props2.activeClass,\n itemClass = _this$props2.itemClass,\n linkClass = _this$props2.linkClass,\n activeLinkClass = _this$props2.activeLinkClass,\n disabledClass = _this$props2.disabledClass,\n isActive = _this$props2.isActive,\n isDisabled = _this$props2.isDisabled,\n href = _this$props2.href,\n ariaLabel = _this$props2.ariaLabel;\n var css = (0, _classnames[\"default\"])(itemClass, (_cx = {}, _defineProperty(_cx, activeClass, isActive), _defineProperty(_cx, disabledClass, isDisabled), _cx));\n var linkCss = (0, _classnames[\"default\"])(linkClass, _defineProperty({}, activeLinkClass, isActive));\n return _react[\"default\"].createElement(\"li\", {\n className: css,\n onClick: this.handleClick.bind(this)\n }, _react[\"default\"].createElement(\"a\", {\n className: linkCss,\n href: href,\n \"aria-label\": ariaLabel\n }, pageText));\n }\n }]);\n\n return Page;\n}(_react.Component);\n\nexports[\"default\"] = Page;\n\n_defineProperty(Page, \"propTypes\", {\n pageText: _propTypes[\"default\"].oneOfType([_propTypes[\"default\"].string, _propTypes[\"default\"].element]),\n pageNumber: _propTypes[\"default\"].number.isRequired,\n onClick: _propTypes[\"default\"].func.isRequired,\n isActive: _propTypes[\"default\"].bool.isRequired,\n isDisabled: _propTypes[\"default\"].bool,\n activeClass: _propTypes[\"default\"].string,\n activeLinkClass: _propTypes[\"default\"].string,\n itemClass: _propTypes[\"default\"].string,\n linkClass: _propTypes[\"default\"].string,\n disabledClass: _propTypes[\"default\"].string,\n href: _propTypes[\"default\"].string\n});\n\n_defineProperty(Page, \"defaultProps\", {\n activeClass: \"active\",\n disabledClass: \"disabled\",\n itemClass: undefined,\n linkClass: undefined,\n activeLinkCLass: undefined,\n isActive: false,\n isDisabled: false,\n href: \"#\"\n});" - }, - { - "id": "HBsB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "index": null, - "index2": null, - "size": 3773, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "issuerId": "0s40", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "0s40", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0s40", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCard.base", - "loc": "2:0-55" - }, - { - "moduleId": "0s40", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCard.base", - "loc": "4:33-49" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, KeyCodes, getNativeProps, divProperties, warnDeprecations, initializeComponentRef, } from '../../Utilities';\nimport { DocumentCardType, } from './DocumentCard.types';\nvar getClassNames = classNamesFunction();\nvar COMPONENT_NAME = 'DocumentCard';\n/**\n * {@docCategory DocumentCard}\n */\nvar DocumentCardBase = /** @class */ (function (_super) {\n __extends(DocumentCardBase, _super);\n function DocumentCardBase(props) {\n var _this = _super.call(this, props) || this;\n _this._rootElement = React.createRef();\n _this._onClick = function (ev) {\n _this._onAction(ev);\n };\n _this._onKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter || ev.which === KeyCodes.space) {\n _this._onAction(ev);\n }\n };\n _this._onAction = function (ev) {\n var _a = _this.props, onClick = _a.onClick, onClickHref = _a.onClickHref, onClickTarget = _a.onClickTarget;\n if (onClick) {\n onClick(ev);\n }\n else if (!onClick && onClickHref) {\n // If no onClick Function was provided and we do have an onClickHref, redirect to the onClickHref\n if (onClickTarget) {\n window.open(onClickHref, onClickTarget, 'noreferrer noopener nofollow');\n }\n else {\n window.location.href = onClickHref;\n }\n ev.preventDefault();\n ev.stopPropagation();\n }\n };\n initializeComponentRef(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n accentColor: undefined,\n });\n return _this;\n }\n DocumentCardBase.prototype.render = function () {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, onClick = _a.onClick, onClickHref = _a.onClickHref, children = _a.children, type = _a.type, accentColor = _a.accentColor, styles = _a.styles, theme = _a.theme, className = _a.className;\n var nativeProps = getNativeProps(this.props, divProperties, [\n 'className',\n 'onClick',\n 'type',\n 'role',\n ]);\n var actionable = onClick || onClickHref ? true : false;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n actionable: actionable,\n compact: type === DocumentCardType.compact ? true : false,\n });\n // Override the border color if an accent color was provided (compact card only)\n var style;\n if (type === DocumentCardType.compact && accentColor) {\n style = {\n borderBottomColor: accentColor,\n };\n }\n // if this element is actionable it should have an aria role\n var role = this.props.role || (actionable ? (onClick ? 'button' : 'link') : undefined);\n var tabIndex = actionable ? 0 : undefined;\n return (React.createElement(\"div\", __assign({ ref: this._rootElement, tabIndex: tabIndex, \"data-is-focusable\": actionable, role: role, className: this._classNames.root, onKeyDown: actionable ? this._onKeyDown : undefined, onClick: actionable ? this._onClick : undefined, style: style }, nativeProps), children));\n };\n DocumentCardBase.prototype.focus = function () {\n if (this._rootElement.current) {\n this._rootElement.current.focus();\n }\n };\n DocumentCardBase.defaultProps = {\n type: DocumentCardType.normal,\n };\n return DocumentCardBase;\n}(React.Component));\nexport { DocumentCardBase };\n//# sourceMappingURL=DocumentCard.base.js.map" - }, - { - "id": "HDGI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "index": null, - "index2": null, - "size": 146, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "issuerId": "DRN8", - "issuerName": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "DRN8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "name": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "DRN8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "module": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/ScrollablePane/index", - "loc": "1:0-50" - }, - { - "moduleId": "DRN8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "module": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "type": "harmony export imported specifier", - "userRequest": "./components/ScrollablePane/index", - "loc": "1:0-50" - } - ], - "usedExports": false, - "providedExports": [ - "ScrollablePane", - "ScrollablePaneBase", - "ScrollbarVisibility", - "ScrollablePaneContext" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './ScrollablePane';\nexport * from './ScrollablePane.base';\nexport * from './ScrollablePane.types';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "HJn1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "index": 142, - "index2": 130, - "size": 6679, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "issuerId": "AsHc", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "JiuB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Popup.js", - "name": "./node_modules/office-ui-fabric-react/lib/Popup.js" - }, - { - "id": "AsHc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Popup", - "loc": "219:32-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Popup", - "loc": "220:36-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Popup/index", - "loc": "294:36-41" - }, - { - "moduleId": "AsHc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Popup", - "loc": "1:0-24" - }, - { - "moduleId": "AsHc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Popup", - "loc": "1:0-24" - } - ], - "usedExports": [ - "Popup" - ], - "providedExports": [ - "Popup" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async, KeyCodes, divProperties, doesElementContainFocus, getDocument, getNativeProps, on, getWindow, elementContains, } from '../../Utilities';\n/**\n * This adds accessibility to Dialog and Panel controls\n */\nvar Popup = /** @class */ (function (_super) {\n __extends(Popup, _super);\n function Popup(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._disposables = [];\n _this._onKeyDown = function (ev) {\n switch (ev.which) {\n case KeyCodes.escape:\n if (_this.props.onDismiss) {\n _this.props.onDismiss(ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n break;\n }\n };\n _this._onFocus = function () {\n _this._containsFocus = true;\n };\n _this._onBlur = function (ev) {\n /** The popup should update this._containsFocus when:\n * relatedTarget exists AND\n * the relatedTarget is not contained within the popup.\n * If the relatedTarget is within the popup, that means the popup still has focus\n * and focused moved from one element to another within the popup.\n * If relatedTarget is undefined or null that usually means that a\n * keyboard event occured and focus didn't change\n */\n if (_this._root.current &&\n ev.relatedTarget &&\n !elementContains(_this._root.current, ev.relatedTarget)) {\n _this._containsFocus = false;\n }\n };\n _this._async = new Async(_this);\n _this.state = { needsVerticalScrollBar: false };\n return _this;\n }\n Popup.prototype.UNSAFE_componentWillMount = function () {\n this._originalFocusedElement = getDocument().activeElement;\n };\n Popup.prototype.componentDidMount = function () {\n if (this._root.current) {\n this._disposables.push(on(this._root.current, 'focus', this._onFocus, true), on(this._root.current, 'blur', this._onBlur, true));\n var currentWindow = getWindow(this._root.current);\n if (currentWindow) {\n this._disposables.push(on(currentWindow, 'keydown', this._onKeyDown));\n }\n if (doesElementContainFocus(this._root.current)) {\n this._containsFocus = true;\n }\n }\n this._updateScrollBarAsync();\n };\n Popup.prototype.componentDidUpdate = function () {\n this._updateScrollBarAsync();\n this._async.dispose();\n };\n Popup.prototype.componentWillUnmount = function () {\n var _a;\n this._disposables.forEach(function (dispose) { return dispose(); });\n // eslint-disable-next-line deprecation/deprecation\n if (this.props.shouldRestoreFocus) {\n var _b = this.props.onRestoreFocus, onRestoreFocus = _b === void 0 ? defaultFocusRestorer : _b;\n onRestoreFocus({\n originalElement: this._originalFocusedElement,\n containsFocus: this._containsFocus,\n documentContainsFocus: ((_a = getDocument()) === null || _a === void 0 ? void 0 : _a.hasFocus()) || false,\n });\n }\n // De-reference DOM Node to avoid retainment via transpiled closure of _onKeyDown\n delete this._originalFocusedElement;\n };\n Popup.prototype.render = function () {\n var _a = this.props, role = _a.role, className = _a.className, ariaLabel = _a.ariaLabel, ariaLabelledBy = _a.ariaLabelledBy, ariaDescribedBy = _a.ariaDescribedBy, style = _a.style;\n return (React.createElement(\"div\", __assign({ ref: this._root }, getNativeProps(this.props, divProperties), { className: className, role: role, \"aria-label\": ariaLabel, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy, onKeyDown: this._onKeyDown, style: __assign({ overflowY: this.state.needsVerticalScrollBar ? 'scroll' : undefined, outline: 'none' }, style) }), this.props.children));\n };\n Popup.prototype._updateScrollBarAsync = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () {\n _this._getScrollBar();\n });\n };\n Popup.prototype._getScrollBar = function () {\n // If overflowY is overriden, don't waste time calculating whether the scrollbar is necessary.\n if (this.props.style && this.props.style.overflowY) {\n return;\n }\n var needsVerticalScrollBar = false;\n if (this._root && this._root.current && this._root.current.firstElementChild) {\n // ClientHeight returns the client height of an element rounded to an\n // integer. On some browsers at different zoom levels this rounding\n // can generate different results for the root container and child even\n // though they are the same height. This causes us to show a scroll bar\n // when not needed. Ideally we would use BoundingClientRect().height\n // instead however seems that the API is 90% slower than using ClientHeight.\n // Therefore instead we will calculate the difference between heights and\n // allow for a 1px difference to still be considered ok and not show the\n // scroll bar.\n var rootHeight = this._root.current.clientHeight;\n var firstChildHeight = this._root.current.firstElementChild.clientHeight;\n if (rootHeight > 0 && firstChildHeight > rootHeight) {\n needsVerticalScrollBar = firstChildHeight - rootHeight > 1;\n }\n }\n if (this.state.needsVerticalScrollBar !== needsVerticalScrollBar) {\n this.setState({\n needsVerticalScrollBar: needsVerticalScrollBar,\n });\n }\n };\n Popup.defaultProps = {\n shouldRestoreFocus: true,\n };\n return Popup;\n}(React.Component));\nexport { Popup };\nfunction defaultFocusRestorer(options) {\n var originalElement = options.originalElement, containsFocus = options.containsFocus;\n if (originalElement && containsFocus && originalElement !== window) {\n // Make sure that the focus method actually exists\n // In some cases the object might exist but not be a real element.\n // This is primarily for IE 11 and should be removed once IE 11 is no longer in use.\n if (originalElement.focus) {\n originalElement.focus();\n }\n }\n}\n//# sourceMappingURL=Popup.js.map" - }, - { - "id": "HOcH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-8.js", - "index": null, - "index2": null, - "size": 4741, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-8", - "loc": "10:0-57" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-8", - "loc": "34:8-10" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-8\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-8-6fdf1528.woff') format('woff')\"\n },\n icons: {\n 'CollapseMenu': '\\uEF66',\n 'ExpandMenu': '\\uEF67',\n 'Boards': '\\uEF68',\n 'SunAdd': '\\uEF69',\n 'SunQuestionMark': '\\uEF6A',\n 'LandscapeOrientation': '\\uEF6B',\n 'DocumentSearch': '\\uEF6C',\n 'PublicCalendar': '\\uEF6D',\n 'PublicContactCard': '\\uEF6E',\n 'PublicEmail': '\\uEF6F',\n 'PublicFolder': '\\uEF70',\n 'WordDocument': '\\uEF71',\n 'PowerPointDocument': '\\uEF72',\n 'ExcelDocument': '\\uEF73',\n 'GroupedList': '\\uEF74',\n 'ClassroomLogo': '\\uEF75',\n 'Sections': '\\uEF76',\n 'EditPhoto': '\\uEF77',\n 'Starburst': '\\uEF78',\n 'ShareiOS': '\\uEF79',\n 'AirTickets': '\\uEF7A',\n 'PencilReply': '\\uEF7B',\n 'Tiles2': '\\uEF7C',\n 'SkypeCircleCheck': '\\uEF7D',\n 'SkypeCircleClock': '\\uEF7E',\n 'SkypeCircleMinus': '\\uEF7F',\n 'SkypeMessage': '\\uEF83',\n 'ClosedCaption': '\\uEF84',\n 'ATPLogo': '\\uEF85',\n 'OfficeFormsLogoInverse': '\\uEF86',\n 'RecycleBin': '\\uEF87',\n 'EmptyRecycleBin': '\\uEF88',\n 'Hide2': '\\uEF89',\n 'Breadcrumb': '\\uEF8C',\n 'BirthdayCake': '\\uEF8D',\n 'TimeEntry': '\\uEF95',\n 'CRMProcesses': '\\uEFB1',\n 'PageEdit': '\\uEFB6',\n 'PageArrowRight': '\\uEFB8',\n 'PageRemove': '\\uEFBA',\n 'Database': '\\uEFC7',\n 'DataManagementSettings': '\\uEFC8',\n 'CRMServices': '\\uEFD2',\n 'EditContact': '\\uEFD3',\n 'ConnectContacts': '\\uEFD4',\n 'AppIconDefaultAdd': '\\uEFDA',\n 'AppIconDefaultList': '\\uEFDE',\n 'ActivateOrders': '\\uEFE0',\n 'DeactivateOrders': '\\uEFE1',\n 'ProductCatalog': '\\uEFE8',\n 'ScatterChart': '\\uEFEB',\n 'AccountActivity': '\\uEFF4',\n 'DocumentManagement': '\\uEFFC',\n 'CRMReport': '\\uEFFE',\n 'KnowledgeArticle': '\\uF000',\n 'Relationship': '\\uF003',\n 'HomeVerify': '\\uF00E',\n 'ZipFolder': '\\uF012',\n 'SurveyQuestions': '\\uF01B',\n 'TextDocument': '\\uF029',\n 'TextDocumentShared': '\\uF02B',\n 'PageCheckedOut': '\\uF02C',\n 'PageShared': '\\uF02D',\n 'SaveAndClose': '\\uF038',\n 'Script': '\\uF03A',\n 'Archive': '\\uF03F',\n 'ActivityFeed': '\\uF056',\n 'Compare': '\\uF057',\n 'EventDate': '\\uF059',\n 'ArrowUpRight': '\\uF069',\n 'CaretRight': '\\uF06B',\n 'SetAction': '\\uF071',\n 'ChatBot': '\\uF08B',\n 'CaretSolidLeft': '\\uF08D',\n 'CaretSolidDown': '\\uF08E',\n 'CaretSolidRight': '\\uF08F',\n 'CaretSolidUp': '\\uF090',\n 'PowerAppsLogo': '\\uF091',\n 'PowerApps2Logo': '\\uF092',\n 'SearchIssue': '\\uF09A',\n 'SearchIssueMirrored': '\\uF09B',\n 'FabricAssetLibrary': '\\uF09C',\n 'FabricDataConnectionLibrary': '\\uF09D',\n 'FabricDocLibrary': '\\uF09E',\n 'FabricFormLibrary': '\\uF09F',\n 'FabricFormLibraryMirrored': '\\uF0A0',\n 'FabricReportLibrary': '\\uF0A1',\n 'FabricReportLibraryMirrored': '\\uF0A2',\n 'FabricPublicFolder': '\\uF0A3',\n 'FabricFolderSearch': '\\uF0A4',\n 'FabricMovetoFolder': '\\uF0A5',\n 'FabricUnsyncFolder': '\\uF0A6',\n 'FabricSyncFolder': '\\uF0A7',\n 'FabricOpenFolderHorizontal': '\\uF0A8',\n 'FabricFolder': '\\uF0A9',\n 'FabricFolderFill': '\\uF0AA',\n 'FabricNewFolder': '\\uF0AB',\n 'FabricPictureLibrary': '\\uF0AC',\n 'PhotoVideoMedia': '\\uF0B1',\n 'AddFavorite': '\\uF0C8'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-8.js.map" - }, - { - "id": "HOxn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Promise.js", - "name": "./node_modules/lodash/_Promise.js", - "index": 536, - "index2": 528, - "size": 207, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "issuerId": "QqLw", - "issuerName": "./node_modules/lodash/_getTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_Promise", - "loc": "3:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar Promise = getNative(root, 'Promise');\n\nmodule.exports = Promise;\n" - }, - { - "id": "HP+5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "index": null, - "index2": null, - "size": 5563, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "issuerId": "/Mmo", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "pEld", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js" - }, - { - "id": "7wj7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js" - }, - { - "id": "/Mmo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/Mmo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPickerGridCell.styles", - "loc": "3:0-57" - }, - { - "moduleId": "/Mmo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "type": "harmony import specifier", - "userRequest": "./ColorPickerGridCell.styles", - "loc": "4:65-74" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { IsFocusVisibleClassName } from '../../Utilities';\nimport { HighContrastSelector, getFocusStyle } from '../../Styling';\n// Size breakpoint when the default border width changes from 2px to 4px.\nvar CELL_BORDER_BREAKPOINT = 24;\nvar LARGE_BORDER = 4;\nvar SMALL_BORDER = 2;\nvar DIVIDING_PADDING = 2;\nvar DEFAULT_CELL_SIZE = 20;\nvar cellHighContrastFocus = {\n left: -2,\n top: -2,\n bottom: -2,\n right: -2,\n border: 'none',\n outlineColor: 'ButtonText',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e;\n var theme = props.theme, disabled = props.disabled, selected = props.selected, circle = props.circle, isWhite = props.isWhite, _f = props.height, height = _f === void 0 ? DEFAULT_CELL_SIZE : _f, _g = props.width, width = _g === void 0 ? DEFAULT_CELL_SIZE : _g, borderWidth = props.borderWidth;\n var semanticColors = theme.semanticColors, palette = theme.palette;\n var buttonBorderHovered = palette.neutralLighter;\n var buttonBorderChecked = palette.neutralLight;\n var buttonBorderCheckedHovered = palette.neutralSecondary;\n var buttonBorderIsWhite = palette.neutralTertiary;\n // If user provided a value, use it. If not, then we decide depending on the 24px size breakpoint.\n var calculatedBorderWidth = borderWidth\n ? borderWidth\n : width < CELL_BORDER_BREAKPOINT\n ? SMALL_BORDER\n : LARGE_BORDER;\n return {\n // this is a button that wraps the color\n colorCell: [\n getFocusStyle(theme, { inset: -1, position: 'relative', highContrastStyle: cellHighContrastFocus }),\n {\n backgroundColor: semanticColors.bodyBackground,\n padding: 0,\n position: 'relative',\n boxSizing: 'border-box',\n display: 'inline-block',\n cursor: 'pointer',\n userSelect: 'none',\n borderRadius: 0,\n border: 'none',\n height: height,\n width: width,\n },\n !circle && {\n selectors: (_a = {},\n _a[\".\" + IsFocusVisibleClassName + \" &:focus::after\"] = {\n // -1px so that we don't increase visually the size of the cell.\n outlineOffset: calculatedBorderWidth - 1 + \"px\",\n },\n _a),\n },\n // In focus state for circle we want a round border which is not possible with outline.\n circle && {\n borderRadius: '50%',\n selectors: (_b = {},\n _b[\".\" + IsFocusVisibleClassName + \" &:focus::after\"] = {\n outline: 'none',\n borderColor: semanticColors.focusBorder,\n borderRadius: '50%',\n left: -calculatedBorderWidth,\n right: -calculatedBorderWidth,\n top: -calculatedBorderWidth,\n bottom: -calculatedBorderWidth,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n outline: \"1px solid ButtonText\",\n },\n _c),\n },\n _b),\n },\n selected && {\n padding: DIVIDING_PADDING,\n border: calculatedBorderWidth + \"px solid \" + buttonBorderChecked,\n selectors: (_d = {},\n _d['&:hover::before'] = {\n content: '\"\"',\n height: height,\n width: width,\n position: 'absolute',\n top: -calculatedBorderWidth,\n left: -calculatedBorderWidth,\n borderRadius: circle ? '50%' : 'default',\n boxShadow: \"inset 0 0 0 1px \" + buttonBorderCheckedHovered,\n },\n _d),\n },\n !selected && {\n selectors: (_e = {},\n _e['&:hover, &:active, &:focus'] = {\n backgroundColor: semanticColors.bodyBackground,\n padding: DIVIDING_PADDING,\n border: calculatedBorderWidth + \"px solid \" + buttonBorderHovered,\n },\n _e['&:focus'] = {\n borderColor: semanticColors.bodyBackground,\n padding: 0,\n selectors: {\n ':hover': {\n borderColor: theme.palette.neutralLight,\n padding: DIVIDING_PADDING,\n },\n },\n },\n _e),\n },\n disabled && {\n color: semanticColors.disabledBodyText,\n pointerEvents: 'none',\n opacity: 0.3,\n },\n isWhite &&\n !selected && {\n // fake a border for white\n backgroundColor: buttonBorderIsWhite,\n padding: 1,\n },\n ],\n // the that holds the color\n svg: [\n {\n width: '100%',\n height: '100%',\n },\n circle && {\n borderRadius: '50%',\n },\n ],\n };\n};\n//# sourceMappingURL=ColorPickerGridCell.styles.js.map" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "index": 7, - "index2": 281, - "size": 307, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "issuerId": "tGMu", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "..", - "loc": "67:0-47" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "480:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "482:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "484:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "486:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "488:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "490:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "494:17-42" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "..", - "loc": "504:17-42" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": ".", - "loc": "15:0-52" - }, - { - "moduleId": "Lcy0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "type": "harmony import specifier", - "userRequest": ".", - "loc": "29:42-73" - }, - { - "moduleId": "tGMu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/collectionData", - "loc": "1:0-48" - }, - { - "moduleId": "tGMu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/collectionData", - "loc": "1:0-48" - } - ], - "usedExports": [ - "CustomCollectionFieldType", - "PropertyFieldCollectionData", - "PropertyFieldCollectionDataHost" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './ICustomCollectionField';\nexport * from './IPropertyFieldCollectionData';\nexport * from './PropertyFieldCollectionData';\nexport * from './IPropertyFieldCollectionDataHost';\nexport * from './PropertyFieldCollectionDataHost';\nexport * from './FieldValidator';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "HSFb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "name": "./node_modules/office-ui-fabric-react/lib/version.js", - "index": null, - "index2": null, - "size": 273, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/b11", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Layer.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "1:0-19" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "88:0-19" - }, - { - "moduleId": "LXO1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "module": "./node_modules/office-ui-fabric-react/lib/Utilities.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Utilities.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "1:0-19" - }, - { - "moduleId": "PKiz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Styling.js", - "module": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "1:0-19" - }, - { - "moduleId": "jL7u", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/WindowProvider.js", - "module": "./node_modules/office-ui-fabric-react/lib/WindowProvider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/WindowProvider.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "1:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('office-ui-fabric-react', '7.174.0');\n//# sourceMappingURL=version.js.map" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js", - "index": null, - "index2": null, - "size": 87, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GroupedList", - "loc": "34:0-30" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GroupedList", - "loc": "34:0-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../GroupedList", - "loc": "9:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../GroupedList", - "loc": "10:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../GroupedList", - "loc": "11:0-48" - } - ], - "usedExports": false, - "providedExports": [ - "GroupedList", - "GroupedListBase", - "CollapseAllVisibility", - "GroupHeader", - "GroupFooter", - "GroupShowAll", - "GroupSpacer", - "GroupedListSection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/GroupedList/index';\n//# sourceMappingURL=GroupedList.js.map" - }, - { - "id": "Hgfh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "index": null, - "index2": null, - "size": 87, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./OverflowSet", - "loc": "51:0-30" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./OverflowSet", - "loc": "51:0-30" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../OverflowSet", - "loc": "4:0-48" - } - ], - "usedExports": false, - "providedExports": [ - "OverflowSet", - "OverflowSetBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/OverflowSet/index';\n//# sourceMappingURL=OverflowSet.js.map" - }, - { - "id": "HhHV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "name": "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js", - "index": null, - "index2": null, - "size": 720, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/utilities/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/index.js", - "name": "./node_modules/@uifabric/styling/lib/utilities/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./getIconClassName", - "loc": "3:0-54" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony export imported specifier", - "userRequest": "./getIconClassName", - "loc": "3:0-54" - } - ], - "usedExports": false, - "providedExports": [ - "getIconClassName" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { mergeStyles } from '@uifabric/merge-styles';\nimport { getIcon } from './icons';\nvar defaultIconStyles = {\n display: 'inline-block',\n};\n/**\n * Gets an icon classname. You should be able to add this classname to an I tag with no\n * additional classnames, and render the icon.\n *\n * @public\n */\nexport function getIconClassName(name) {\n var className = '';\n var icon = getIcon(name);\n if (icon) {\n className = mergeStyles(icon.subset.className, defaultIconStyles, {\n selectors: {\n '::before': {\n content: \"\\\"\" + icon.code + \"\\\"\",\n },\n },\n });\n }\n return className;\n}\n//# sourceMappingURL=getIconClassName.js.map" - }, - { - "id": "HhSh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "index": null, - "index2": null, - "size": 269, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "issuerId": "+WGp", - "issuerName": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+WGp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+WGp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/FloatingPicker/index", - "loc": "1:0-50" - }, - { - "moduleId": "+WGp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "type": "harmony export imported specifier", - "userRequest": "./components/FloatingPicker/index", - "loc": "1:0-50" - } - ], - "usedExports": false, - "providedExports": [ - "BaseFloatingPicker", - "BaseFloatingPeoplePicker", - "FloatingPeoplePicker", - "createItem", - "SuggestionsStore", - "SuggestionItemType", - "SuggestionsHeaderFooterItem", - "SuggestionsControl", - "SuggestionsCore" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './BaseFloatingPicker';\nexport * from './PeoplePicker/FloatingPeoplePicker';\nexport * from './Suggestions/SuggestionsStore';\nexport * from './Suggestions/SuggestionsControl';\nexport * from './Suggestions/SuggestionsCore';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Hl3h", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Keytip.js", - "index": null, - "index2": null, - "size": 77, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Keytip", - "loc": "40:0-25" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Keytip", - "loc": "40:0-25" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Keytip", - "loc": "4:0-38" - } - ], - "usedExports": false, - "providedExports": [ - "Keytip" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Keytip/index';\n//# sourceMappingURL=Keytip.js.map" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "index": null, - "index2": null, - "size": 94, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-54" - }, - { - "moduleId": "3Htz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "3ZCB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "JcEy", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-77" - }, - { - "moduleId": "O0iI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-77" - }, - { - "moduleId": "afbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "jySA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-98" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-78" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-179" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-86" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-106" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-172" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-88" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-123" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-121" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-78" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-136" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-94" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-75" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-407" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-162" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-114" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-136" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-92" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "7:0-198" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "7:0-53" - }, - { - "moduleId": "kl0W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-38" - }, - { - "moduleId": "rGd0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-65" - }, - { - "moduleId": "tmiQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-77" - }, - { - "moduleId": "txX4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Icon/ImageIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-77" - } - ], - "usedExports": false, - "providedExports": [ - "Async", - "AutoScroll", - "BaseComponent", - "nullRender", - "provideContext", - "DelayedRender", - "EventGroup", - "FabricPerformance", - "GlobalSettings", - "KeyCodes", - "Rectangle", - "appendFunction", - "mergeAriaAttributeValues", - "findIndex", - "find", - "createArray", - "toMatrix", - "removeIndex", - "replaceElement", - "addElementAtIndex", - "flatten", - "arraysEqual", - "asAsync", - "assertNever", - "autobind", - "classNamesFunction", - "createRef", - "css", - "Customizations", - "Customizer", - "CustomizerContext", - "customizable", - "mergeCustomizations", - "mergeSettings", - "mergeScopedSettings", - "elementContains", - "elementContainsAttribute", - "findElementRecursive", - "getChildren", - "getDocument", - "getParent", - "getRect", - "getVirtualParent", - "getWindow", - "isVirtualElement", - "on", - "portalContainsElement", - "raiseClick", - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute", - "setVirtualParent", - "extendComponent", - "getFirstFocusable", - "getLastFocusable", - "getFirstTabbable", - "getLastTabbable", - "focusFirstChild", - "getPreviousElement", - "getNextElement", - "isElementVisible", - "isElementTabbable", - "isElementFocusZone", - "isElementFocusSubZone", - "doesElementContainFocus", - "shouldWrapFocus", - "focusAsync", - "getFocusableByIndexPath", - "getElementIndexPath", - "hoistMethods", - "unhoistMethods", - "hoistStatics", - "initializeComponentRef", - "IsFocusVisibleClassName", - "initializeFocusRects", - "getInitials", - "isDirectionalKeyCode", - "addDirectionalKeyCode", - "getLanguage", - "setLanguage", - "getDistanceBetweenPoints", - "fitContentToBounds", - "calculatePrecision", - "precisionRound", - "setMemoizeWeakMap", - "resetMemoizations", - "memoize", - "memoizeFunction", - "merge", - "isIOS", - "shallowCompare", - "assign", - "filteredAssign", - "getId", - "resetIds", - "mapEnumByName", - "values", - "isMac", - "hasHorizontalOverflow", - "hasVerticalOverflow", - "hasOverflow", - "baseElementEvents", - "baseElementProperties", - "htmlElementProperties", - "labelProperties", - "audioProperties", - "videoProperties", - "olProperties", - "liProperties", - "anchorProperties", - "buttonProperties", - "inputProperties", - "textAreaProperties", - "selectProperties", - "optionProperties", - "tableProperties", - "trProperties", - "thProperties", - "tdProperties", - "colGroupProperties", - "colProperties", - "formProperties", - "iframeProperties", - "imgProperties", - "imageProperties", - "divProperties", - "getNativeProps", - "getResourceUrl", - "setBaseUrl", - "getRTL", - "setRTL", - "getRTLSafeKeyCode", - "safeRequestAnimationFrame", - "safeSetTimeout", - "DATA_IS_SCROLLABLE_ATTRIBUTE", - "allowScrollOnElement", - "disableBodyScroll", - "enableBodyScroll", - "getScrollbarWidth", - "findScrollableParent", - "SELECTION_CHANGE", - "SelectionMode", - "SelectionDirection", - "Selection", - "format", - "styled", - "warn", - "setWarningCallback", - "warnConditionallyRequiredProps", - "warnDeprecations", - "warnMutuallyExclusive", - "setFocusVisibility", - "setSSR" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import './version';\nexport * from '@uifabric/utilities';\n//# sourceMappingURL=Utilities.js.map" - }, - { - "id": "Hol9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-17.js", - "index": null, - "index2": null, - "size": 2561, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-17", - "loc": "19:0-59" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-17", - "loc": "43:8-11" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-17\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-17-0c4ed701.woff') format('woff')\"\n },\n icons: {\n 'CustomizeToolbar': '\\uF828',\n 'DuplicateRow': '\\uF82A',\n 'RemoveFromTrash': '\\uF82B',\n 'MailOptions': '\\uF82C',\n 'Childof': '\\uF82D',\n 'Footer': '\\uF82E',\n 'Header': '\\uF82F',\n 'BarChartVerticalFill': '\\uF830',\n 'StackedColumnChart2Fill': '\\uF831',\n 'PlainText': '\\uF834',\n 'AccessibiltyChecker': '\\uF835',\n 'DatabaseSync': '\\uF842',\n 'ReservationOrders': '\\uF845',\n 'TabOneColumn': '\\uF849',\n 'TabTwoColumn': '\\uF84A',\n 'TabThreeColumn': '\\uF84B',\n 'BulletedTreeList': '\\uF84C',\n 'MicrosoftTranslatorLogoGreen': '\\uF852',\n 'MicrosoftTranslatorLogoBlue': '\\uF853',\n 'InternalInvestigation': '\\uF854',\n 'AddReaction': '\\uF85D',\n 'ContactHeart': '\\uF862',\n 'VisuallyImpaired': '\\uF866',\n 'EventToDoLogo': '\\uF869',\n 'Variable2': '\\uF86D',\n 'ModelingView': '\\uF871',\n 'DisconnectVirtualMachine': '\\uF873',\n 'ReportLock': '\\uF875',\n 'Uneditable2': '\\uF876',\n 'Uneditable2Mirrored': '\\uF877',\n 'BarChartVerticalEdit': '\\uF89D',\n 'GlobalNavButtonActive': '\\uF89F',\n 'PollResults': '\\uF8A0',\n 'Rerun': '\\uF8A1',\n 'QandA': '\\uF8A2',\n 'QandAMirror': '\\uF8A3',\n 'BookAnswers': '\\uF8A4',\n 'AlertSettings': '\\uF8B6',\n 'TrimStart': '\\uF8BB',\n 'TrimEnd': '\\uF8BC',\n 'TableComputed': '\\uF8F5',\n 'DecreaseIndentLegacy': '\\uE290',\n 'IncreaseIndentLegacy': '\\uE291',\n 'SizeLegacy': '\\uE2B2'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-17.js.map" - }, - { - "id": "Hszu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "index": null, - "index2": null, - "size": 1339, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerId": "hLc7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion", - "loc": "10:0-76" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion", - "loc": "10:0-76" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./PeoplePickerItems/PeoplePickerItemSuggestion", - "loc": "7:0-92" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "./PeoplePickerItems/PeoplePickerItemSuggestion", - "loc": "43:105-131" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "./PeoplePickerItems/PeoplePickerItemSuggestion", - "loc": "61:105-131" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "./PeoplePickerItems/PeoplePickerItemSuggestion", - "loc": "79:105-131" - } - ], - "usedExports": false, - "providedExports": [ - "PeoplePickerItemSuggestionBase", - "PeoplePickerItemSuggestion" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, styled } from '../../../../Utilities';\nimport { Persona, PersonaSize } from '../../../../Persona';\nimport { getStyles } from './PeoplePickerItemSuggestion.styles';\nvar getClassNames = classNamesFunction();\nexport var PeoplePickerItemSuggestionBase = function (props) {\n var personaProps = props.personaProps, suggestionsProps = props.suggestionsProps, compact = props.compact, styles = props.styles, theme = props.theme, className = props.className;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: (suggestionsProps && suggestionsProps.suggestionsItemClassName) || className,\n });\n var personaStyles = classNames.subComponentStyles && classNames.subComponentStyles.persona\n ? classNames.subComponentStyles.persona\n : undefined;\n return (React.createElement(\"div\", { className: classNames.root },\n React.createElement(Persona, __assign({ size: PersonaSize.size24, styles: personaStyles, className: classNames.personaWrapper, showSecondaryText: !compact }, personaProps))));\n};\nexport var PeoplePickerItemSuggestion = styled(PeoplePickerItemSuggestionBase, getStyles, undefined, { scope: 'PeoplePickerItemSuggestion' });\n//# sourceMappingURL=PeoplePickerItemSuggestion.js.map" - }, - { - "id": "Hvzi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashDelete.js", - "name": "./node_modules/lodash/_hashDelete.js", - "index": 480, - "index2": 468, - "size": 445, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "issuerId": "4kuk", - "issuerName": "./node_modules/lodash/_Hash.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4kuk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "module": "./node_modules/lodash/_Hash.js", - "moduleName": "./node_modules/lodash/_Hash.js", - "type": "cjs require", - "userRequest": "./_hashDelete", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "/**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction hashDelete(key) {\n var result = this.has(key) && delete this.__data__[key];\n this.size -= result ? 1 : 0;\n return result;\n}\n\nmodule.exports = hashDelete;\n" - }, - { - "id": "Hy/Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/dragdrop/index.js", - "index": null, - "index2": null, - "size": 67, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DragDrop.js", - "issuerId": "44Od", - "issuerName": "./node_modules/office-ui-fabric-react/lib/DragDrop.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "44Od", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DragDrop.js", - "name": "./node_modules/office-ui-fabric-react/lib/DragDrop.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "44Od", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DragDrop.js", - "module": "./node_modules/office-ui-fabric-react/lib/DragDrop.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DragDrop.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/dragdrop/index", - "loc": "1:0-43" - }, - { - "moduleId": "44Od", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DragDrop.js", - "module": "./node_modules/office-ui-fabric-react/lib/DragDrop.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DragDrop.js", - "type": "harmony export imported specifier", - "userRequest": "./utilities/dragdrop/index", - "loc": "1:0-43" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/dragdrop/index", - "loc": "12:0-64" - } - ], - "usedExports": false, - "providedExports": [ - "DragDropHelper" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './DragDropHelper';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Hz+1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "index": null, - "index2": null, - "size": 406, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./correctHSV", - "loc": "24:0-29" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./correctHSV", - "loc": "24:0-29" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./correctHSV", - "loc": "20:0-29" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./correctHSV", - "loc": "20:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "correctHSV" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { MAX_COLOR_HUE, MAX_COLOR_SATURATION, MAX_COLOR_VALUE } from './consts';\nimport { clamp } from './clamp';\n/** Corrects an HSV color to fall within the valid range. */\nexport function correctHSV(color) {\n return {\n h: clamp(color.h, MAX_COLOR_HUE),\n s: clamp(color.s, MAX_COLOR_SATURATION),\n v: clamp(color.v, MAX_COLOR_VALUE),\n };\n}\n//# sourceMappingURL=correctHSV.js.map" - }, - { - "id": "I01J", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_memoizeCapped.js", - "name": "./node_modules/lodash/_memoizeCapped.js", - "index": 558, - "index2": 550, - "size": 633, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "issuerId": "GNiM", - "issuerName": "./node_modules/lodash/_stringToPath.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4uTw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_castPath.js", - "name": "./node_modules/lodash/_castPath.js" - }, - { - "id": "GNiM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "name": "./node_modules/lodash/_stringToPath.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "GNiM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stringToPath.js", - "module": "./node_modules/lodash/_stringToPath.js", - "moduleName": "./node_modules/lodash/_stringToPath.js", - "type": "cjs require", - "userRequest": "./_memoizeCapped", - "loc": "1:20-47" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var memoize = require('./memoize');\n\n/** Used as the maximum memoize cache size. */\nvar MAX_MEMOIZE_SIZE = 500;\n\n/**\n * A specialized version of `_.memoize` which clears the memoized function's\n * cache when it exceeds `MAX_MEMOIZE_SIZE`.\n *\n * @private\n * @param {Function} func The function to have its output memoized.\n * @returns {Function} Returns the new memoized function.\n */\nfunction memoizeCapped(func) {\n var result = memoize(func, function(key) {\n if (cache.size === MAX_MEMOIZE_SIZE) {\n cache.clear();\n }\n return key;\n });\n\n var cache = result.cache;\n return result;\n}\n\nmodule.exports = memoizeCapped;\n" - }, - { - "id": "I16t", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "index": null, - "index2": null, - "size": 771, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "issuerId": "ennc", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "fghJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Separator.js", - "name": "./node_modules/office-ui-fabric-react/lib/Separator.js" - }, - { - "id": "ennc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "78K9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "type": "harmony side effect evaluation", - "userRequest": "./Separator.base", - "loc": "3:0-49" - }, - { - "moduleId": "78K9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "type": "harmony import specifier", - "userRequest": "./Separator.base", - "loc": "4:30-43" - }, - { - "moduleId": "ennc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Separator.base", - "loc": "1:0-33" - }, - { - "moduleId": "ennc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Separator.base", - "loc": "1:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "SeparatorBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import * as React from 'react';\nimport { classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nexport var SeparatorBase = function (props) {\n var styles = props.styles, theme = props.theme, className = props.className, vertical = props.vertical, alignContent = props.alignContent;\n var _classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n alignContent: alignContent,\n vertical: vertical,\n });\n return (React.createElement(\"div\", { className: _classNames.root },\n React.createElement(\"div\", { className: _classNames.content, role: \"separator\", \"aria-orientation\": vertical ? 'vertical' : 'horizontal' }, props.children)));\n};\n//# sourceMappingURL=Separator.base.js.map" - }, - { - "id": "I4XQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/version.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/version.js", - "index": null, - "index2": null, - "size": 284, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "l6cK", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/scroll.js" - }, - { - "id": "l6cK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "l6cK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "8:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 10, - "source": "// @uifabric/merge-styles@6.19.3\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('@uifabric/merge-styles', '6.19.3');\n//# sourceMappingURL=version.js.map" - }, - { - "id": "I6O9", - "identifier": "external \"@microsoft/sp-loader\"", - "name": "external \"@microsoft/sp-loader\"", - "index": null, - "index2": null, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": null - }, - { - "id": "IA21", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "index": null, - "index2": null, - "size": 1841, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "issuerId": "mUnp", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "mUnp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "mUnp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardActions.styles", - "loc": "3:0-57" - }, - { - "moduleId": "mUnp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardActions.styles", - "loc": "4:65-74" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar ACTION_SIZE = 34;\nvar HORIZONTAL_PADDING = 12;\nvar VERTICAL_PADDING = 4;\nvar GlobalClassNames = {\n root: 'ms-DocumentCardActions',\n action: 'ms-DocumentCardActions-action',\n views: 'ms-DocumentCardActions-views',\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme;\n var palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n height: ACTION_SIZE + \"px\",\n padding: VERTICAL_PADDING + \"px \" + HORIZONTAL_PADDING + \"px\",\n position: 'relative',\n },\n className,\n ],\n action: [\n classNames.action,\n {\n float: 'left',\n marginRight: '4px',\n color: palette.neutralSecondary,\n cursor: 'pointer',\n selectors: {\n '.ms-Button': {\n fontSize: fonts.mediumPlus.fontSize,\n height: ACTION_SIZE,\n width: ACTION_SIZE,\n },\n '.ms-Button:hover .ms-Button-icon': {\n color: theme.semanticColors.buttonText,\n cursor: 'pointer',\n },\n },\n },\n ],\n views: [\n classNames.views,\n {\n textAlign: 'right',\n lineHeight: ACTION_SIZE,\n },\n ],\n viewsIcon: {\n marginRight: '8px',\n fontSize: fonts.medium.fontSize,\n verticalAlign: 'top',\n },\n };\n};\n//# sourceMappingURL=DocumentCardActions.styles.js.map" - }, - { - "id": "IAIq", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "index": 891, - "index2": 887, - "size": 5771, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerId": "LatS", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldNumberHost", - "loc": "4:0-42" - }, - { - "moduleId": "LatS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldNumberHost", - "loc": "4:0-42" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldNumberHost", - "loc": "15:0-64" - }, - { - "moduleId": "rZQq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumber.js", - "type": "harmony import specifier", - "userRequest": "./PropertyFieldNumberHost", - "loc": "26:42-65" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport { TextField } from 'office-ui-fabric-react/lib/TextField';\nimport * as telemetry from '../../common/telemetry';\nimport { Async } from 'office-ui-fabric-react/lib/Utilities';\nimport * as strings from 'PropertyControlStrings';\nimport { GeneralHelper } from '../../helpers/GeneralHelper';\nvar PropertyFieldNumberHost = /** @class */ (function (_super) {\n __extends(PropertyFieldNumberHost, _super);\n function PropertyFieldNumberHost(props) {\n var _this = _super.call(this, props) || this;\n /**\n * Validate if field value is a number\n * @param value\n */\n _this._validateNumber = function (value) {\n var nrValue = !GeneralHelper.isDefined(_this.props.precision) || _this.props.precision === 0 ? parseInt(value) : parseFloat(value);\n if (isNaN(nrValue)) {\n return strings.NotNumberValidationMessage + \" \" + value + \".\";\n }\n var _a = _this.props, minValue = _a.minValue, maxValue = _a.maxValue;\n // Check if number is lower or equal to minimum value\n if (GeneralHelper.isDefined(minValue) && nrValue < minValue) {\n return strings.MinimumNumberValidationMessage + \" \" + minValue;\n }\n // Check if the number is greater than the maximum value\n if (GeneralHelper.isDefined(maxValue) && nrValue > maxValue) {\n return strings.MaximumNumberValidationMessage + \" \" + maxValue;\n }\n if (_this.props.onGetErrorMessage) {\n return _this.props.onGetErrorMessage(nrValue);\n }\n else {\n return '';\n }\n };\n /**\n * On field change event handler\n */\n _this._onChanged = function (value) {\n var nrValue;\n var precision = _this.props.precision;\n if (!GeneralHelper.isDefined(precision)) {\n nrValue = parseFloat(value);\n }\n else if (precision === 0) {\n nrValue = parseInt(value);\n }\n else {\n var multiplier = Math.pow(10, precision);\n nrValue = Math.round((parseFloat(value) + 0.000000000000001) * multiplier) / multiplier;\n }\n // Update state\n _this.setState({\n value: value,\n roundedValue: nrValue\n });\n var _a = _this.props, minValue = _a.minValue, maxValue = _a.maxValue;\n if (!isNaN(nrValue)) {\n if ((!GeneralHelper.isDefined(minValue) || nrValue >= minValue) && (!GeneralHelper.isDefined(maxValue) || nrValue <= maxValue)) {\n // Trigger change for the web part\n _this.props.onChanged(nrValue);\n }\n }\n else {\n _this.props.onChanged(undefined);\n }\n };\n telemetry.track('PropertyFieldNumber', {\n disabled: props.disabled\n });\n var value = null;\n var nrValue = undefined;\n if (GeneralHelper.isDefined(props.value)) {\n value = props.value.toString();\n if (!GeneralHelper.isDefined(props.precision)) {\n nrValue = props.value;\n }\n else if (props.precision === 0) {\n nrValue = parseInt(value);\n }\n else {\n var multiplier = Math.pow(10, props.precision);\n nrValue = Math.round((parseFloat(value) + 0.000000000000001) * multiplier) / multiplier;\n }\n }\n _this.state = {\n value: value,\n roundedValue: nrValue\n };\n _this._async = new Async(_this);\n _this._delayedChange = _this._async.debounce(_this._onChanged, _this.props.deferredValidationTime ? _this.props.deferredValidationTime : 200);\n return _this;\n }\n /**\n * componentDidUpdate lifecycle hook\n *\n * @param prevProps\n * @param prevState\n */\n PropertyFieldNumberHost.prototype.componentDidUpdate = function (prevProps, prevState) {\n if (prevProps.value !== this.props.value && this.props.value !== this.state.roundedValue) {\n this.setState({\n value: GeneralHelper.isDefined(this.props.value) ? this.props.value.toString() : null\n });\n }\n };\n /**\n * Render field\n */\n PropertyFieldNumberHost.prototype.render = function () {\n var _this = this;\n return (React.createElement(\"div\", null,\n React.createElement(TextField, { label: this.props.label, ariaLabel: this.props.ariaLabel, onChange: function (e, value) { return _this._delayedChange(value); }, defaultValue: this.state.value, description: this.props.description, placeholder: this.props.placeholder, errorMessage: this.props.errorMessage, onGetErrorMessage: this._validateNumber, deferredValidationTime: this.props.deferredValidationTime, disabled: this.props.disabled })));\n };\n return PropertyFieldNumberHost;\n}(React.Component));\nexport default PropertyFieldNumberHost;\n//# sourceMappingURL=PropertyFieldNumberHost.js.map" - }, - { - "id": "IBIL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/scheme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/scheme.js", - "index": null, - "index2": null, - "size": 2099, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/styling/lib/styles/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/index.js", - "name": "./node_modules/@uifabric/styling/lib/styles/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./scheme", - "loc": "10:0-25" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony export imported specifier", - "userRequest": "./scheme", - "loc": "10:0-25" - } - ], - "usedExports": false, - "providedExports": [ - "getThemedContext" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { Customizations, mergeSettings } from '@uifabric/utilities';\n/**\n * @internal\n * This function is still in experimental phase in support of Foundation experimental development.\n * Its API signature and existence are subject to change.\n *\n * Modify context to activate the specified scheme or theme. For schemes, look in context (if available) and fall back\n * to global Customizations. If both scheme and theme are specified, scheme will be looked up in theme. In this case,\n * scheme must be present in theme arg, otherwise new context will default to theme arg (there is no fallback to\n * settings to look up scheme.)\n *\n * @param context - Context in which to get schemed customizations.\n * @param scheme - Scheme to get customizations for from theme arg (if supplied) OR from context and global settings.\n * @param theme - Theme to merge into context.\n * @returns modified schemed context if scheme is valid and not already applied, unmodified context otherwise.\n */\nexport function getThemedContext(context, scheme, theme) {\n var newContext = context;\n var newSettings;\n // Only fall back to context and customizations when theme arg is not provided.\n var schemeSource = theme || Customizations.getSettings(['theme'], undefined, context.customizations).theme;\n if (theme) {\n newSettings = { theme: theme };\n }\n var schemeTheme = scheme && schemeSource && schemeSource.schemes && schemeSource.schemes[scheme];\n // These first two checks are logically redundant but TS doesn't infer schemeSource.schemes is defined\n // when schemeTheme is defined.\n if (schemeSource && schemeTheme && schemeSource !== schemeTheme) {\n newSettings = { theme: schemeTheme };\n newSettings.theme.schemes = schemeSource.schemes;\n }\n if (newSettings) {\n newContext = {\n customizations: {\n settings: mergeSettings(context.customizations.settings, newSettings),\n scopedSettings: context.customizations.scopedSettings,\n },\n };\n }\n return newContext;\n}\n//# sourceMappingURL=scheme.js.map" - }, - { - "id": "IHBV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsStore.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsStore.js", - "index": null, - "index2": null, - "size": 1870, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "issuerId": "HhSh", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+WGp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js" - }, - { - "id": "HhSh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HhSh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Suggestions/SuggestionsStore", - "loc": "3:0-47" - }, - { - "moduleId": "HhSh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Suggestions/SuggestionsStore", - "loc": "3:0-47" - } - ], - "usedExports": false, - "providedExports": [ - "SuggestionsStore" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "var SuggestionsStore = /** @class */ (function () {\n function SuggestionsStore(options) {\n var _this = this;\n this._isSuggestionModel = function (value) {\n return value.item !== undefined;\n };\n this._ensureSuggestionModel = function (suggestion) {\n if (_this._isSuggestionModel(suggestion)) {\n return suggestion;\n }\n else {\n return {\n item: suggestion,\n selected: false,\n ariaLabel: _this.getAriaLabel !== undefined\n ? _this.getAriaLabel(suggestion)\n : suggestion.name ||\n suggestion.text ||\n suggestion.primaryText,\n };\n }\n };\n this.suggestions = [];\n this.getAriaLabel = options && options.getAriaLabel;\n }\n SuggestionsStore.prototype.updateSuggestions = function (newSuggestions) {\n if (newSuggestions && newSuggestions.length > 0) {\n this.suggestions = this.convertSuggestionsToSuggestionItems(newSuggestions);\n }\n else {\n this.suggestions = [];\n }\n };\n SuggestionsStore.prototype.getSuggestions = function () {\n return this.suggestions;\n };\n SuggestionsStore.prototype.getSuggestionAtIndex = function (index) {\n return this.suggestions[index];\n };\n SuggestionsStore.prototype.removeSuggestion = function (index) {\n this.suggestions.splice(index, 1);\n };\n SuggestionsStore.prototype.convertSuggestionsToSuggestionItems = function (suggestions) {\n return Array.isArray(suggestions) ? suggestions.map(this._ensureSuggestionModel) : [];\n };\n return SuggestionsStore;\n}());\nexport { SuggestionsStore };\n//# sourceMappingURL=SuggestionsStore.js.map" - }, - { - "id": "II1S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "index": null, - "index2": null, - "size": 274, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "issuerId": "K0tY", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./HoverCard", - "loc": "1:0-28" - }, - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./HoverCard", - "loc": "1:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "HoverCard" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { getStyles } from './HoverCard.styles';\nimport { HoverCardBase } from './HoverCard.base';\nexport var HoverCard = styled(HoverCardBase, getStyles, undefined, {\n scope: 'HoverCard',\n});\n//# sourceMappingURL=HoverCard.js.map" - }, - { - "id": "IMkN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/libconfig.js", - "index": 295, - "index2": 289, - "size": 2919, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./libconfig", - "loc": "2:0-28" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./libconfig", - "loc": "2:0-28" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "./libconfig", - "loc": "3:0-44" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig", - "loc": "21:12-25" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig", - "loc": "153:33-46" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "./libconfig", - "loc": "171:76-89" - } - ], - "usedExports": [ - "RuntimeConfig" - ], - "providedExports": [ - "setup", - "RuntimeConfigImpl", - "RuntimeConfig" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { mergeMaps, objectToMap } from \"./collections\";\r\nexport function setup(config) {\r\n RuntimeConfig.assign(config);\r\n}\r\n// lable mapping for known config values\r\nvar s = [\r\n \"defaultCachingStore\",\r\n \"defaultCachingTimeoutSeconds\",\r\n \"globalCacheDisable\",\r\n \"enableCacheExpiration\",\r\n \"cacheExpirationIntervalMilliseconds\",\r\n \"spfxContext\",\r\n \"ie11\",\r\n];\r\nvar RuntimeConfigImpl = /** @class */ (function () {\r\n function RuntimeConfigImpl(_v) {\r\n if (_v === void 0) { _v = new Map(); }\r\n this._v = _v;\r\n // setup defaults\r\n this._v.set(s[0], \"session\");\r\n this._v.set(s[1], 60);\r\n this._v.set(s[2], false);\r\n this._v.set(s[3], false);\r\n this._v.set(s[4], 750);\r\n this._v.set(s[5], null);\r\n this._v.set(s[6], false);\r\n }\r\n /**\r\n *\r\n * @param config The set of properties to add to the globa configuration instance\r\n */\r\n RuntimeConfigImpl.prototype.assign = function (config) {\r\n this._v = mergeMaps(this._v, objectToMap(config));\r\n };\r\n RuntimeConfigImpl.prototype.get = function (key) {\r\n return this._v.get(key);\r\n };\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"defaultCachingStore\", {\r\n get: function () {\r\n return this.get(s[0]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"defaultCachingTimeoutSeconds\", {\r\n get: function () {\r\n return this.get(s[1]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"globalCacheDisable\", {\r\n get: function () {\r\n return this.get(s[2]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"enableCacheExpiration\", {\r\n get: function () {\r\n return this.get(s[3]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"cacheExpirationIntervalMilliseconds\", {\r\n get: function () {\r\n return this.get(s[4]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"spfxContext\", {\r\n get: function () {\r\n return this.get(s[5]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n Object.defineProperty(RuntimeConfigImpl.prototype, \"ie11\", {\r\n get: function () {\r\n return this.get(s[6]);\r\n },\r\n enumerable: false,\r\n configurable: true\r\n });\r\n return RuntimeConfigImpl;\r\n}());\r\nexport { RuntimeConfigImpl };\r\nvar _runtimeConfig = new RuntimeConfigImpl();\r\nexport var RuntimeConfig = _runtimeConfig;\r\n//# sourceMappingURL=libconfig.js.map" - }, - { - "id": "IWJw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-0.js", - "index": null, - "index2": null, - "size": 4389, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-0", - "loc": "2:0-57" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-0", - "loc": "26:8-10" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-0\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-0-467ee27f.woff') format('woff')\"\n },\n icons: {\n 'PageLink': '\\uE302',\n 'CommentSolid': '\\uE30E',\n 'ChangeEntitlements': '\\uE310',\n 'Installation': '\\uE311',\n 'WebAppBuilderModule': '\\uE313',\n 'WebAppBuilderFragment': '\\uE314',\n 'WebAppBuilderSlot': '\\uE315',\n 'BullseyeTargetEdit': '\\uE319',\n 'WebAppBuilderFragmentCreate': '\\uE31B',\n 'PageData': '\\uE31C',\n 'PageHeaderEdit': '\\uE31D',\n 'ProductList': '\\uE31E',\n 'UnpublishContent': '\\uE31F',\n 'DependencyAdd': '\\uE344',\n 'DependencyRemove': '\\uE345',\n 'EntitlementPolicy': '\\uE346',\n 'EntitlementRedemption': '\\uE347',\n 'SchoolDataSyncLogo': '\\uE34C',\n 'PinSolid12': '\\uE352',\n 'PinSolidOff12': '\\uE353',\n 'AddLink': '\\uE35E',\n 'SharepointAppIcon16': '\\uE365',\n 'DataflowsLink': '\\uE366',\n 'TimePicker': '\\uE367',\n 'UserWarning': '\\uE368',\n 'ComplianceAudit': '\\uE369',\n 'InternetSharing': '\\uE704',\n 'Brightness': '\\uE706',\n 'MapPin': '\\uE707',\n 'Airplane': '\\uE709',\n 'Tablet': '\\uE70A',\n 'QuickNote': '\\uE70B',\n 'Video': '\\uE714',\n 'People': '\\uE716',\n 'Phone': '\\uE717',\n 'Pin': '\\uE718',\n 'Shop': '\\uE719',\n 'Stop': '\\uE71A',\n 'Link': '\\uE71B',\n 'AllApps': '\\uE71D',\n 'Zoom': '\\uE71E',\n 'ZoomOut': '\\uE71F',\n 'Microphone': '\\uE720',\n 'Camera': '\\uE722',\n 'Attach': '\\uE723',\n 'Send': '\\uE724',\n 'FavoriteList': '\\uE728',\n 'PageSolid': '\\uE729',\n 'Forward': '\\uE72A',\n 'Back': '\\uE72B',\n 'Refresh': '\\uE72C',\n 'Lock': '\\uE72E',\n 'ReportHacked': '\\uE730',\n 'EMI': '\\uE731',\n 'MiniLink': '\\uE732',\n 'Blocked': '\\uE733',\n 'ReadingMode': '\\uE736',\n 'Favicon': '\\uE737',\n 'Remove': '\\uE738',\n 'Checkbox': '\\uE739',\n 'CheckboxComposite': '\\uE73A',\n 'CheckboxFill': '\\uE73B',\n 'CheckboxIndeterminate': '\\uE73C',\n 'CheckboxCompositeReversed': '\\uE73D',\n 'BackToWindow': '\\uE73F',\n 'FullScreen': '\\uE740',\n 'Print': '\\uE749',\n 'Up': '\\uE74A',\n 'Down': '\\uE74B',\n 'OEM': '\\uE74C',\n 'Save': '\\uE74E',\n 'ReturnKey': '\\uE751',\n 'Cloud': '\\uE753',\n 'Flashlight': '\\uE754',\n 'CommandPrompt': '\\uE756',\n 'Sad': '\\uE757',\n 'RealEstate': '\\uE758',\n 'SIPMove': '\\uE759',\n 'EraseTool': '\\uE75C',\n 'GripperTool': '\\uE75E',\n 'Dialpad': '\\uE75F',\n 'PageLeft': '\\uE760',\n 'PageRight': '\\uE761',\n 'MultiSelect': '\\uE762',\n 'KeyboardClassic': '\\uE765',\n 'Play': '\\uE768',\n 'Pause': '\\uE769',\n 'InkingTool': '\\uE76D',\n 'Emoji2': '\\uE76E',\n 'GripperBarHorizontal': '\\uE76F',\n 'System': '\\uE770',\n 'Personalize': '\\uE771',\n 'SearchAndApps': '\\uE773',\n 'Globe': '\\uE774',\n 'EaseOfAccess': '\\uE776',\n 'ContactInfo': '\\uE779',\n 'Unpin': '\\uE77A',\n 'Contact': '\\uE77B',\n 'Memo': '\\uE77C',\n 'IncomingCall': '\\uE77E'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-0.js.map" - }, - { - "id": "IbAf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/isVirtualElement.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/isVirtualElement.js", - "index": null, - "index2": null, - "size": 104, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/isVirtualElement", - "loc": "10:0-39" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/isVirtualElement", - "loc": "10:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "isVirtualElement" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export { isVirtualElement } from '@fluentui/dom-utilities';\n//# sourceMappingURL=isVirtualElement.js.map" - }, - { - "id": "Iceg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/safe-global.js", - "index": 297, - "index2": 290, - "size": 148, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerId": "7rmx", - "issuerName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/index.js", - "name": "./node_modules/@pnp/sp/items/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/items/list.js", - "name": "./node_modules/@pnp/sp/items/list.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/odata/batch.js" - }, - { - "id": "7rmx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "name": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./safe-global", - "loc": "7:0-30" - }, - { - "moduleId": "7rmx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/index.js", - "type": "harmony export imported specifier", - "userRequest": "./safe-global", - "loc": "7:0-30" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony side effect evaluation", - "userRequest": "./safe-global", - "loc": "3:0-43" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "./safe-global", - "loc": "35:15-25" - } - ], - "usedExports": [ - "safeGlobal" - ], - "providedExports": [ - "safeGlobal" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module uses injected variables (global)" - ], - "depth": 5, - "source": "// export either window or global\r\nexport var safeGlobal = typeof global === \"undefined\" ? window : global;\r\n//# sourceMappingURL=safe-global.js.map" - }, - { - "id": "IcvM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "index": null, - "index2": null, - "size": 3647, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "issuerId": "1L4v", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "0s40", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js" - }, - { - "id": "1L4v", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardActivity.styles", - "loc": "4:0-107" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardActivity.styles", - "loc": "77:33-51" - }, - { - "moduleId": "AudO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardActivity.styles", - "loc": "3:0-58" - }, - { - "moduleId": "AudO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardActivity.styles", - "loc": "4:67-76" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardActivityGlobalClassNames", - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames, FontWeights } from '../../Styling';\nvar VERTICAL_PADDING = 8;\nvar HORIZONTAL_PADDING = 16;\nvar IMAGE_SIZE = 32;\nvar PERSONA_TEXT_GUTTER = 8;\nexport var DocumentCardActivityGlobalClassNames = {\n root: 'ms-DocumentCardActivity',\n multiplePeople: 'ms-DocumentCardActivity--multiplePeople',\n details: 'ms-DocumentCardActivity-details',\n name: 'ms-DocumentCardActivity-name',\n activity: 'ms-DocumentCardActivity-activity',\n avatars: 'ms-DocumentCardActivity-avatars',\n avatar: 'ms-DocumentCardActivity-avatar',\n};\nexport var getStyles = function (props) {\n var theme = props.theme, className = props.className, multiplePeople = props.multiplePeople;\n var palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(DocumentCardActivityGlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n multiplePeople && classNames.multiplePeople,\n {\n padding: VERTICAL_PADDING + \"px \" + HORIZONTAL_PADDING + \"px\",\n position: 'relative',\n },\n className,\n ],\n avatars: [\n classNames.avatars,\n {\n marginLeft: '-2px',\n height: '32px',\n },\n ],\n avatar: [\n classNames.avatar,\n {\n display: 'inline-block',\n verticalAlign: 'top',\n position: 'relative',\n textAlign: 'center',\n width: IMAGE_SIZE,\n height: IMAGE_SIZE,\n selectors: {\n '&:after': {\n content: '\" \"',\n position: 'absolute',\n left: '-1px',\n top: '-1px',\n right: '-1px',\n bottom: '-1px',\n border: \"2px solid \" + palette.white,\n borderRadius: '50%',\n },\n ':nth-of-type(2)': multiplePeople && {\n marginLeft: '-16px',\n },\n },\n },\n ],\n details: [\n classNames.details,\n {\n left: multiplePeople\n ? HORIZONTAL_PADDING + IMAGE_SIZE * 1.5 + PERSONA_TEXT_GUTTER + \"px\"\n : HORIZONTAL_PADDING + IMAGE_SIZE + PERSONA_TEXT_GUTTER + \"px\",\n height: IMAGE_SIZE,\n position: 'absolute',\n top: VERTICAL_PADDING,\n width: \"calc(100% - \" + (HORIZONTAL_PADDING + IMAGE_SIZE + PERSONA_TEXT_GUTTER + HORIZONTAL_PADDING) + \"px)\",\n },\n ],\n name: [\n classNames.name,\n {\n display: 'block',\n fontSize: fonts.small.fontSize,\n lineHeight: '15px',\n height: '15px',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n color: palette.neutralPrimary,\n fontWeight: FontWeights.semibold,\n },\n ],\n activity: [\n classNames.activity,\n {\n display: 'block',\n fontSize: fonts.small.fontSize,\n lineHeight: '15px',\n height: '15px',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n color: palette.neutralSecondary,\n },\n ],\n };\n};\n//# sourceMappingURL=DocumentCardActivity.styles.js.map" - }, - { - "id": "Ioao", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_overRest.js", - "name": "./node_modules/lodash/_overRest.js", - "index": 573, - "index2": 567, - "size": 1096, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "issuerId": "xs/l", - "issuerName": "./node_modules/lodash/_flatRest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "xs/l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "module": "./node_modules/lodash/_flatRest.js", - "moduleName": "./node_modules/lodash/_flatRest.js", - "type": "cjs require", - "userRequest": "./_overRest", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var apply = require('./_apply');\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeMax = Math.max;\n\n/**\n * A specialized version of `baseRest` which transforms the rest array.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @param {Function} transform The rest array transform.\n * @returns {Function} Returns the new function.\n */\nfunction overRest(func, start, transform) {\n start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\n return function() {\n var args = arguments,\n index = -1,\n length = nativeMax(args.length - start, 0),\n array = Array(length);\n\n while (++index < length) {\n array[index] = args[start + index];\n }\n index = -1;\n var otherArgs = Array(start + 1);\n while (++index < start) {\n otherArgs[index] = args[index];\n }\n otherArgs[start] = transform(array);\n return apply(func, this, otherArgs);\n };\n}\n\nmodule.exports = overRest;\n" - }, - { - "id": "Iqpp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "index": null, - "index2": null, - "size": 2220, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "issuerId": "D2C2", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "ZUV6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "name": "./node_modules/office-ui-fabric-react/lib/Keytips.js" - }, - { - "id": "D2C2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "D2C2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Keytip", - "loc": "1:0-25" - }, - { - "moduleId": "D2C2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Keytip", - "loc": "1:0-25" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Keytip", - "loc": "237:47-53" - } - ], - "usedExports": false, - "providedExports": [ - "Keytip" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { mergeOverflows, ktpTargetFromSequences } from '../../utilities/keytips/KeytipUtils';\nimport { Callout } from '../../Callout';\nimport { DirectionalHint } from '../../ContextualMenu';\nimport { KeytipContent } from './KeytipContent';\nimport { getCalloutStyles, getCalloutOffsetStyles } from './Keytip.styles';\n/**\n * A callout corresponding to another Fabric component to describe a key sequence that will activate that component\n */\nvar Keytip = /** @class */ (function (_super) {\n __extends(Keytip, _super);\n function Keytip() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Keytip.prototype.render = function () {\n var _a = this.props, keySequences = _a.keySequences, offset = _a.offset, overflowSetSequence = _a.overflowSetSequence;\n var calloutProps = this.props.calloutProps;\n var keytipTarget;\n // Take into consideration the overflow sequence\n if (overflowSetSequence) {\n keytipTarget = ktpTargetFromSequences(mergeOverflows(keySequences, overflowSetSequence));\n }\n else {\n keytipTarget = ktpTargetFromSequences(keySequences);\n }\n if (offset) {\n // Set callout to top-left corner, will be further positioned in\n // getCalloutOffsetStyles\n calloutProps = __assign(__assign({}, calloutProps), { coverTarget: true, directionalHint: DirectionalHint.topLeftEdge });\n }\n if (!calloutProps || calloutProps.directionalHint === undefined) {\n // Default callout directional hint to BottomCenter\n calloutProps = __assign(__assign({}, calloutProps), { directionalHint: DirectionalHint.bottomCenter });\n }\n return (React.createElement(Callout, __assign({}, calloutProps, { isBeakVisible: false, doNotLayer: true, minPagePadding: 0, styles: offset ? getCalloutOffsetStyles(offset) : getCalloutStyles, preventDismissOnScroll: true, target: keytipTarget }),\n React.createElement(KeytipContent, __assign({}, this.props))));\n };\n return Keytip;\n}(React.Component));\nexport { Keytip };\n//# sourceMappingURL=Keytip.js.map" - }, - { - "id": "IsiW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-15.js", - "index": null, - "index2": null, - "size": 4752, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-15", - "loc": "17:0-59" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-15", - "loc": "41:8-11" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-15\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-15-3807251b.woff') format('woff')\"\n },\n icons: {\n 'CalendarSettings': '\\uF558',\n 'CalendarSettingsMirrored': '\\uF559',\n 'HardDriveLock': '\\uF55A',\n 'HardDriveUnlock': '\\uF55B',\n 'AccountManagement': '\\uF55C',\n 'ReportWarning': '\\uF569',\n 'TransitionPop': '\\uF5B2',\n 'TransitionPush': '\\uF5B3',\n 'TransitionEffect': '\\uF5B4',\n 'LookupEntities': '\\uF5B5',\n 'ExploreData': '\\uF5B6',\n 'AddBookmark': '\\uF5B7',\n 'SearchBookmark': '\\uF5B8',\n 'DrillThrough': '\\uF5B9',\n 'MasterDatabase': '\\uF5BA',\n 'CertifiedDatabase': '\\uF5BB',\n 'MaximumValue': '\\uF5BC',\n 'MinimumValue': '\\uF5BD',\n 'VisualStudioIDELogo32': '\\uF5D0',\n 'PasteAsText': '\\uF5D5',\n 'PasteAsCode': '\\uF5D6',\n 'BrowserTab': '\\uF5D7',\n 'BrowserTabScreenshot': '\\uF5D8',\n 'DesktopScreenshot': '\\uF5D9',\n 'FileYML': '\\uF5DA',\n 'ClipboardSolid': '\\uF5DC',\n 'FabricUserFolder': '\\uF5E5',\n 'FabricNetworkFolder': '\\uF5E6',\n 'BullseyeTarget': '\\uF5F0',\n 'AnalyticsView': '\\uF5F1',\n 'Video360Generic': '\\uF609',\n 'Untag': '\\uF60B',\n 'Leave': '\\uF627',\n 'Trending12': '\\uF62D',\n 'Blocked12': '\\uF62E',\n 'Warning12': '\\uF62F',\n 'CheckedOutByOther12': '\\uF630',\n 'CheckedOutByYou12': '\\uF631',\n 'CircleShapeSolid': '\\uF63C',\n 'SquareShapeSolid': '\\uF63D',\n 'TriangleShapeSolid': '\\uF63E',\n 'DropShapeSolid': '\\uF63F',\n 'RectangleShapeSolid': '\\uF640',\n 'ZoomToFit': '\\uF649',\n 'InsertColumnsLeft': '\\uF64A',\n 'InsertColumnsRight': '\\uF64B',\n 'InsertRowsAbove': '\\uF64C',\n 'InsertRowsBelow': '\\uF64D',\n 'DeleteColumns': '\\uF64E',\n 'DeleteRows': '\\uF64F',\n 'DeleteRowsMirrored': '\\uF650',\n 'DeleteTable': '\\uF651',\n 'AccountBrowser': '\\uF652',\n 'VersionControlPush': '\\uF664',\n 'StackedColumnChart2': '\\uF666',\n 'TripleColumnWide': '\\uF66E',\n 'QuadColumn': '\\uF66F',\n 'WhiteBoardApp16': '\\uF673',\n 'WhiteBoardApp32': '\\uF674',\n 'PinnedSolid': '\\uF676',\n 'InsertSignatureLine': '\\uF677',\n 'ArrangeByFrom': '\\uF678',\n 'Phishing': '\\uF679',\n 'CreateMailRule': '\\uF67A',\n 'PublishCourse': '\\uF699',\n 'DictionaryRemove': '\\uF69A',\n 'UserRemove': '\\uF69B',\n 'UserEvent': '\\uF69C',\n 'Encryption': '\\uF69D',\n 'PasswordField': '\\uF6AA',\n 'OpenInNewTab': '\\uF6AB',\n 'Hide3': '\\uF6AC',\n 'VerifiedBrandSolid': '\\uF6AD',\n 'MarkAsProtected': '\\uF6AE',\n 'AuthenticatorApp': '\\uF6B1',\n 'WebTemplate': '\\uF6B2',\n 'DefenderTVM': '\\uF6B3',\n 'MedalSolid': '\\uF6B9',\n 'D365TalentLearn': '\\uF6BB',\n 'D365TalentInsight': '\\uF6BC',\n 'D365TalentHRCore': '\\uF6BD',\n 'BacklogList': '\\uF6BF',\n 'ButtonControl': '\\uF6C0',\n 'TableGroup': '\\uF6D9',\n 'MountainClimbing': '\\uF6DB',\n 'TagUnknown': '\\uF6DF',\n 'TagUnknownMirror': '\\uF6E0',\n 'TagUnknown12': '\\uF6E1',\n 'TagUnknown12Mirror': '\\uF6E2',\n 'Link12': '\\uF6E3',\n 'Presentation': '\\uF6E4',\n 'Presentation12': '\\uF6E5',\n 'Lock12': '\\uF6E6',\n 'BuildDefinition': '\\uF6E9',\n 'ReleaseDefinition': '\\uF6EA',\n 'SaveTemplate': '\\uF6EC',\n 'UserGauge': '\\uF6ED',\n 'BlockedSiteSolid12': '\\uF70A',\n 'TagSolid': '\\uF70E',\n 'OfficeChat': '\\uF70F'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-15.js.map" - }, - { - "id": "Itfc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "index": 856, - "index2": 848, - "size": 713, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "issuerId": "m08b", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.scss.js" - }, - { - "id": "m08b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "m08b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../../css-loader/dist/cjs.js!../../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldSitePickerListItem.module.css", - "loc": "1:14-167" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "exports = module.exports = require(\"../../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".siteListItem_03474fe9{display:-ms-flexbox;display:flex;white-space:nowrap;-ms-flex-align:center;align-items:center}.siteListItem_03474fe9 .checkbox_03474fe9{display:inline-block!important;margin-right:4px}.siteListItem_03474fe9 .content_03474fe9{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;padding:4px 0}.siteListItem_03474fe9 .title_03474fe9{line-height:18px;overflow:hidden;text-overflow:ellipsis}.siteListItem_03474fe9 .url_03474fe9{font-size:12px;line-height:14px;font-weight:300;overflow:hidden;text-overflow:ellipsis}\", \"\"]);\n" - }, - { - "id": "J5N+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "index": 286, - "index2": 284, - "size": 586, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "cjs require", - "userRequest": "./ListSearchWebPart.module.css", - "loc": "2:0-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "var content = require(\"!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/postcss-loader/src/index.js??postcss!./ListSearchWebPart.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "J64e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js", - "index": null, - "index2": null, - "size": 100, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "issuerId": "xZy3", - "issuerName": "./node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "xZy3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipLayer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZUV6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "module": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/KeytipLayer/index", - "loc": "3:0-47" - }, - { - "moduleId": "ZUV6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "module": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Keytips.js", - "type": "harmony export imported specifier", - "userRequest": "./components/KeytipLayer/index", - "loc": "3:0-47" - }, - { - "moduleId": "xZy3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "module": "./node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/KeytipLayer/index", - "loc": "1:0-47" - }, - { - "moduleId": "xZy3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "module": "./node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/KeytipLayer.js", - "type": "harmony export imported specifier", - "userRequest": "./components/KeytipLayer/index", - "loc": "1:0-47" - } - ], - "usedExports": false, - "providedExports": [ - "KeytipLayer", - "KeytipLayerBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './KeytipLayer';\nexport * from './KeytipLayer.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "J7IA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/FieldValidator.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/FieldValidator.js", - "index": 283, - "index2": 280, - "size": 42, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FieldValidator", - "loc": "6:0-33" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FieldValidator", - "loc": "6:0-33" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=FieldValidator.js.map" - }, - { - "id": "J7KU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Dialog.js", - "index": null, - "index2": null, - "size": 140, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialog.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Dialog", - "loc": "26:0-59" - } - ], - "usedExports": false, - "providedExports": [ - "Dialog", - "DialogBase", - "DialogContent", - "DialogContentBase", - "DialogFooter", - "DialogFooterBase", - "ResponsiveMode", - "DialogType", - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export * from './components/Dialog/index';\nexport { Dialog as default } from './components/Dialog/index';\n//# sourceMappingURL=Dialog.js.map" - }, - { - "id": "JEUB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/createRef.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/createRef.js", - "index": null, - "index2": null, - "size": 506, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./createRef", - "loc": "18:0-28" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./createRef", - "loc": "18:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "createRef" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "/**\n * @deprecated Use React.createRef.\n * May be removed in 6 months (Jan '19).\n */\nexport function createRef() {\n var refObject = (function (element) {\n refObject.current = element;\n });\n // This getter is here to support the deprecated value prop on the refObject.\n Object.defineProperty(refObject, 'value', {\n get: function () {\n return refObject.current;\n }\n });\n refObject.current = null;\n return refObject;\n}\n//# sourceMappingURL=createRef.js.map" - }, - { - "id": "JHRd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Uint8Array.js", - "name": "./node_modules/lodash/_Uint8Array.js", - "index": 542, - "index2": 533, - "size": 130, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneArrayBuffer.js", - "issuerId": "+K+b", - "issuerName": "./node_modules/lodash/_cloneArrayBuffer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "wrZu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneByTag.js", - "name": "./node_modules/lodash/_initCloneByTag.js" - }, - { - "id": "+K+b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneArrayBuffer.js", - "name": "./node_modules/lodash/_cloneArrayBuffer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+K+b", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneArrayBuffer.js", - "module": "./node_modules/lodash/_cloneArrayBuffer.js", - "moduleName": "./node_modules/lodash/_cloneArrayBuffer.js", - "type": "cjs require", - "userRequest": "./_Uint8Array", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var root = require('./_root');\n\n/** Built-in value references. */\nvar Uint8Array = root.Uint8Array;\n\nmodule.exports = Uint8Array;\n" - }, - { - "id": "JHgL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheGet.js", - "name": "./node_modules/lodash/_mapCacheGet.js", - "index": 487, - "index2": 477, - "size": 330, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "issuerId": "e4Nc", - "issuerName": "./node_modules/lodash/_MapCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "e4Nc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "module": "./node_modules/lodash/_MapCache.js", - "moduleName": "./node_modules/lodash/_MapCache.js", - "type": "cjs require", - "userRequest": "./_mapCacheGet", - "loc": "3:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var getMapData = require('./_getMapData');\n\n/**\n * Gets the map value for `key`.\n *\n * @private\n * @name get\n * @memberOf MapCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction mapCacheGet(key) {\n return getMapData(this, key).get(key);\n}\n\nmodule.exports = mapCacheGet;\n" - }, - { - "id": "JPnG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "index": null, - "index2": null, - "size": 14665, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "issuerId": "grUF", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "DyGw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/Calendar.js" - }, - { - "id": "uyAb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/index.js" - }, - { - "id": "grUF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalendarMonth", - "loc": "5:0-48" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony import specifier", - "userRequest": "./CalendarMonth", - "loc": "199:73-86" - } - ], - "usedExports": false, - "providedExports": [ - "CalendarMonth" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { KeyCodes, css, getRTL, initializeComponentRef, format } from '../../Utilities';\nimport { FocusZone } from '../../FocusZone';\nimport { addYears, setMonth, getYearStart, getYearEnd, getMonthStart, getMonthEnd, compareDatePart, } from '../../utilities/dateMath/DateMath';\nimport { Icon } from '../../Icon';\nimport * as stylesImport from './Calendar.scss';\nimport { CalendarYear } from './CalendarYear';\nvar styles = stylesImport;\nvar MONTHS_PER_ROW = 4;\nvar CalendarMonth = /** @class */ (function (_super) {\n __extends(CalendarMonth, _super);\n function CalendarMonth(props) {\n var _this = _super.call(this, props) || this;\n _this._navigatedMonthRef = React.createRef();\n _this._onCalendarYearRef = function (ref) {\n _this._calendarYearRef = ref;\n };\n _this._onKeyDown = function (callback, ev) {\n if (ev.which === KeyCodes.enter) {\n callback();\n }\n };\n _this._onSelectYear = function (selectedYear) {\n _this._focusOnUpdate = true;\n var _a = _this.props, navigatedDate = _a.navigatedDate, onNavigateDate = _a.onNavigateDate, maxDate = _a.maxDate, minDate = _a.minDate;\n var navYear = navigatedDate.getFullYear();\n if (navYear !== selectedYear) {\n var newNavigationDate = new Date(navigatedDate.getTime());\n newNavigationDate.setFullYear(selectedYear);\n // for min and max dates, adjust the new navigation date - perhaps this should be\n // checked on the master navigation date handler (i.e. in Calendar)\n if (maxDate && newNavigationDate > maxDate) {\n newNavigationDate = setMonth(newNavigationDate, maxDate.getMonth());\n }\n else if (minDate && newNavigationDate < minDate) {\n newNavigationDate = setMonth(newNavigationDate, minDate.getMonth());\n }\n onNavigateDate(newNavigationDate, true);\n }\n _this.setState({ isYearPickerVisible: false });\n };\n _this._yearToString = function (year) {\n var _a = _this.props, navigatedDate = _a.navigatedDate, dateTimeFormatter = _a.dateTimeFormatter;\n if (dateTimeFormatter) {\n // create a date based on the current nav date\n var yearFormattingDate = new Date(navigatedDate.getTime());\n yearFormattingDate.setFullYear(year);\n return dateTimeFormatter.formatYear(yearFormattingDate);\n }\n return String(year);\n };\n _this._yearRangeToString = function (yearRange) {\n return _this._yearToString(yearRange.fromYear) + \" - \" + _this._yearToString(yearRange.toYear);\n };\n _this._yearRangeToNextDecadeLabel = function (yearRange) {\n var strings = _this.props.strings;\n return strings.nextYearRangeAriaLabel\n ? strings.nextYearRangeAriaLabel + \" \" + _this._yearRangeToString(yearRange)\n : '';\n };\n _this._yearRangeToPrevDecadeLabel = function (yearRange) {\n var strings = _this.props.strings;\n return strings.prevYearRangeAriaLabel\n ? strings.prevYearRangeAriaLabel + \" \" + _this._yearRangeToString(yearRange)\n : '';\n };\n _this._onRenderYear = function (year) {\n return _this._yearToString(year);\n };\n _this._onSelectNextYear = function () {\n var _a = _this.props, navigatedDate = _a.navigatedDate, onNavigateDate = _a.onNavigateDate;\n onNavigateDate(addYears(navigatedDate, 1), false);\n };\n _this._onSelectNextYearKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter) {\n _this._onKeyDown(_this._onSelectNextYear, ev);\n }\n };\n _this._onSelectPrevYear = function () {\n var _a = _this.props, navigatedDate = _a.navigatedDate, onNavigateDate = _a.onNavigateDate;\n onNavigateDate(addYears(navigatedDate, -1), false);\n };\n _this._onSelectPrevYearKeyDown = function (ev) {\n if (ev.which === KeyCodes.enter) {\n _this._onKeyDown(_this._onSelectPrevYear, ev);\n }\n };\n _this._onSelectMonthKeyDown = function (index) {\n return function (ev) { return _this._onKeyDown(function () { return _this._onSelectMonth(index); }, ev); };\n };\n _this._onSelectMonth = function (newMonth) {\n var _a = _this.props, navigatedDate = _a.navigatedDate, onNavigateDate = _a.onNavigateDate, onHeaderSelect = _a.onHeaderSelect;\n // If header is clickable the calendars are overlayed, switch back to day picker when month is clicked\n if (onHeaderSelect) {\n onHeaderSelect(true);\n }\n onNavigateDate(setMonth(navigatedDate, newMonth), true);\n };\n _this._onHeaderSelect = function () {\n var _a = _this.props, onHeaderSelect = _a.onHeaderSelect, yearPickerHidden = _a.yearPickerHidden;\n if (!yearPickerHidden) {\n _this._focusOnUpdate = true;\n _this.setState({ isYearPickerVisible: true });\n }\n else if (onHeaderSelect) {\n onHeaderSelect(true);\n }\n };\n _this._onYearPickerHeaderSelect = function (focus) {\n _this._focusOnUpdate = focus;\n _this.setState({ isYearPickerVisible: false });\n };\n _this._onHeaderKeyDown = function (ev) {\n if (_this._onHeaderSelect && (ev.which === KeyCodes.enter || ev.which === KeyCodes.space)) {\n _this._onHeaderSelect();\n }\n };\n initializeComponentRef(_this);\n _this._selectMonthCallbacks = [];\n props.strings.shortMonths.forEach(function (month, index) {\n _this._selectMonthCallbacks[index] = _this._onSelectMonth.bind(_this, index);\n });\n _this._isCurrentMonth = _this._isCurrentMonth.bind(_this);\n _this._onSelectNextYear = _this._onSelectNextYear.bind(_this);\n _this._onSelectPrevYear = _this._onSelectPrevYear.bind(_this);\n _this._onSelectMonth = _this._onSelectMonth.bind(_this);\n _this.state = { isYearPickerVisible: false };\n return _this;\n }\n CalendarMonth.prototype.componentDidUpdate = function () {\n if (this._focusOnUpdate) {\n this.focus();\n this._focusOnUpdate = false;\n }\n };\n CalendarMonth.prototype.render = function () {\n var _a, _b;\n var _this = this;\n var _c = this.props, navigatedDate = _c.navigatedDate, selectedDate = _c.selectedDate, strings = _c.strings, today = _c.today, highlightCurrentMonth = _c.highlightCurrentMonth, highlightSelectedMonth = _c.highlightSelectedMonth, navigationIcons = _c.navigationIcons, dateTimeFormatter = _c.dateTimeFormatter, minDate = _c.minDate, maxDate = _c.maxDate, yearPickerHidden = _c.yearPickerHidden;\n if (this.state.isYearPickerVisible) {\n // default the year picker to the current navigated date\n var currentSelectedDate = navigatedDate ? navigatedDate.getFullYear() : undefined;\n return (React.createElement(CalendarYear, { key: 'calendarYear_' + (currentSelectedDate && currentSelectedDate.toString()), minYear: minDate ? minDate.getFullYear() : undefined, maxYear: maxDate ? maxDate.getFullYear() : undefined, onSelectYear: this._onSelectYear, navigationIcons: navigationIcons, onHeaderSelect: this._onYearPickerHeaderSelect, selectedYear: currentSelectedDate, onRenderYear: this._onRenderYear, strings: {\n rangeAriaLabel: this._yearRangeToString,\n prevRangeAriaLabel: this._yearRangeToPrevDecadeLabel,\n nextRangeAriaLabel: this._yearRangeToNextDecadeLabel,\n headerAriaLabelFormatString: strings.yearPickerHeaderAriaLabel,\n }, ref: this._onCalendarYearRef }));\n }\n var rowIndexes = [];\n for (var i = 0; i < strings.shortMonths.length / MONTHS_PER_ROW; i++) {\n rowIndexes.push(i);\n }\n var leftNavigationIcon = navigationIcons.leftNavigation;\n var rightNavigationIcon = navigationIcons.rightNavigation;\n // determine if previous/next years are in bounds\n var isPrevYearInBounds = minDate ? compareDatePart(minDate, getYearStart(navigatedDate)) < 0 : true;\n var isNextYearInBounds = maxDate ? compareDatePart(getYearEnd(navigatedDate), maxDate) < 0 : true;\n var yearString = dateTimeFormatter.formatYear(navigatedDate);\n var headerAriaLabel = strings.monthPickerHeaderAriaLabel\n ? format(strings.monthPickerHeaderAriaLabel, yearString)\n : yearString;\n return (React.createElement(\"div\", { className: css('ms-DatePicker-monthPicker', styles.monthPicker) },\n React.createElement(\"div\", { className: css('ms-DatePicker-header', styles.header) },\n this.props.onHeaderSelect || !yearPickerHidden ? (React.createElement(\"div\", { className: css('ms-DatePicker-currentYear js-showYearPicker', styles.currentYear, styles.headerToggleView), onClick: this._onHeaderSelect, onKeyDown: this._onHeaderKeyDown, \"aria-label\": headerAriaLabel, role: \"button\", \"aria-atomic\": true, \"aria-live\": \"polite\", tabIndex: 0 }, dateTimeFormatter.formatYear(navigatedDate))) : (React.createElement(\"div\", { className: css('ms-DatePicker-currentYear js-showYearPicker', styles.currentYear) }, dateTimeFormatter.formatYear(navigatedDate))),\n React.createElement(\"div\", { className: css('ms-DatePicker-yearComponents', styles.yearComponents) },\n React.createElement(\"div\", { className: css('ms-DatePicker-navContainer', styles.navContainer) },\n React.createElement(\"button\", { className: css('ms-DatePicker-prevYear js-prevYear', styles.prevYear, (_a = {},\n _a['ms-DatePicker-prevYear--disabled ' + styles.prevYearIsDisabled] = !isPrevYearInBounds,\n _a)), disabled: !isPrevYearInBounds, onClick: isPrevYearInBounds ? this._onSelectPrevYear : undefined, onKeyDown: isPrevYearInBounds ? this._onSelectPrevYearKeyDown : undefined, title: strings.prevYearAriaLabel\n ? strings.prevYearAriaLabel + ' ' + dateTimeFormatter.formatYear(addYears(navigatedDate, -1))\n : undefined, role: \"button\", type: \"button\" },\n React.createElement(Icon, { iconName: getRTL() ? rightNavigationIcon : leftNavigationIcon })),\n React.createElement(\"button\", { className: css('ms-DatePicker-nextYear js-nextYear', styles.nextYear, (_b = {},\n _b['ms-DatePicker-nextYear--disabled ' + styles.nextYearIsDisabled] = !isNextYearInBounds,\n _b)), disabled: !isNextYearInBounds, onClick: isNextYearInBounds ? this._onSelectNextYear : undefined, onKeyDown: isNextYearInBounds ? this._onSelectNextYearKeyDown : undefined, title: strings.nextYearAriaLabel\n ? strings.nextYearAriaLabel + ' ' + dateTimeFormatter.formatYear(addYears(navigatedDate, 1))\n : undefined, role: \"button\", type: \"button\" },\n React.createElement(Icon, { iconName: getRTL() ? leftNavigationIcon : rightNavigationIcon }))))),\n React.createElement(FocusZone, null,\n React.createElement(\"div\", { className: css('ms-DatePicker-optionGrid', styles.optionGrid), role: \"grid\", \"aria-readonly\": \"true\" }, rowIndexes.map(function (rowNum) {\n var monthsForRow = strings.shortMonths.slice(rowNum * MONTHS_PER_ROW, (rowNum + 1) * MONTHS_PER_ROW);\n return (React.createElement(\"div\", { key: 'monthRow_' + rowNum, role: \"row\" }, monthsForRow.map(function (month, index) {\n var _a;\n var monthIndex = rowNum * MONTHS_PER_ROW + index;\n var indexedMonth = setMonth(navigatedDate, monthIndex);\n var isCurrentMonth = _this._isCurrentMonth(monthIndex, navigatedDate.getFullYear(), today);\n var isNavigatedMonth = navigatedDate.getMonth() === monthIndex;\n var isSelectedMonth = selectedDate.getMonth() === monthIndex;\n var isSelectedYear = selectedDate.getFullYear() === navigatedDate.getFullYear();\n var isInBounds = (minDate ? compareDatePart(minDate, getMonthEnd(indexedMonth)) < 1 : true) &&\n (maxDate ? compareDatePart(getMonthStart(indexedMonth), maxDate) < 1 : true);\n return (React.createElement(\"button\", { role: 'gridcell', className: css('ms-DatePicker-monthOption', styles.monthOption, (_a = {},\n _a['ms-DatePicker-day--today ' + styles.monthIsCurrentMonth] = highlightCurrentMonth && isCurrentMonth,\n _a['ms-DatePicker-day--highlighted ' + styles.monthIsHighlighted] = (highlightCurrentMonth || highlightSelectedMonth) && isSelectedMonth && isSelectedYear,\n _a['ms-DatePicker-monthOption--disabled ' + styles.monthOptionIsDisabled] = !isInBounds,\n _a)), disabled: !isInBounds, key: monthIndex, onClick: isInBounds ? _this._selectMonthCallbacks[monthIndex] : undefined, onKeyDown: isInBounds ? _this._onSelectMonthKeyDown(monthIndex) : undefined, \"aria-label\": dateTimeFormatter.formatMonthYear(indexedMonth, strings), \"aria-selected\": isNavigatedMonth, \"data-is-focusable\": isInBounds ? true : undefined, ref: isNavigatedMonth ? _this._navigatedMonthRef : undefined, type: \"button\" }, month));\n })));\n })))));\n };\n CalendarMonth.prototype.focus = function () {\n if (this._calendarYearRef) {\n this._calendarYearRef.focus();\n }\n else if (this._navigatedMonthRef.current) {\n this._navigatedMonthRef.current.tabIndex = 0;\n this._navigatedMonthRef.current.focus();\n }\n };\n CalendarMonth.prototype._isCurrentMonth = function (month, year, today) {\n return today.getFullYear() === year && today.getMonth() === month;\n };\n return CalendarMonth;\n}(React.Component));\nexport { CalendarMonth };\n//# sourceMappingURL=CalendarMonth.js.map" - }, - { - "id": "JPst", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/runtime/api.js", - "name": "./node_modules/css-loader/dist/runtime/api.js", - "index": 22, - "index2": 13, - "size": 2677, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0, - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerId": "Lja1", - "issuerName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js" - }, - { - "id": "J5N+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.css" - }, - { - "id": "Lja1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8//X", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "Itfc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerListItem/PropertyFieldSitePickerListItem.module.css", - "type": "cjs require", - "userRequest": "../../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-86" - }, - { - "moduleId": "Lja1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "type": "cjs require", - "userRequest": "../../../node_modules/css-loader/dist/runtime/api.js", - "loc": "1:27-90" - }, - { - "moduleId": "MKqn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "T0RK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "type": "cjs require", - "userRequest": "../../../../node_modules/css-loader/dist/runtime/api.js", - "loc": "1:27-93" - }, - { - "moduleId": "a3+T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "gtmu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "nsUS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - }, - { - "moduleId": "sa5x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "module": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "moduleName": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.module.css", - "type": "cjs require", - "userRequest": "../../../../../css-loader/dist/runtime/api.js", - "loc": "1:27-83" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \"{\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = modules[_i]; // skip already imported module\n // this implementation is not 100% perfect for weird media query combinations\n // when a module is imported multiple times with different media queries.\n // I hope this will never occur (Hey this way we have smaller bundles)\n\n if (item[0] == null || !alreadyImportedModules[item[0]]) {\n if (mediaQuery && !item[2]) {\n item[2] = mediaQuery;\n } else if (mediaQuery) {\n item[2] = \"(\".concat(item[2], \") and (\").concat(mediaQuery, \")\");\n }\n\n list.push(item);\n }\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot).concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}" - }, - { - "id": "JQtT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "index": null, - "index2": null, - "size": 1151, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "issuerId": "lMOM", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "ZUV6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Keytips.js", - "name": "./node_modules/office-ui-fabric-react/lib/Keytips.js" - }, - { - "id": "D2C2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js" - }, - { - "id": "Iqpp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js" - }, - { - "id": "lMOM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "lMOM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipContent.base", - "loc": "2:0-57" - }, - { - "moduleId": "lMOM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "type": "harmony import specifier", - "userRequest": "./KeytipContent.base", - "loc": "4:34-51" - } - ], - "usedExports": false, - "providedExports": [ - "KeytipContentBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction } from '../../Utilities';\n/**\n * A component corresponding the content rendered inside the callout of the keytip component.\n * {@docCategory Keytips}\n */\nvar KeytipContentBase = /** @class */ (function (_super) {\n __extends(KeytipContentBase, _super);\n function KeytipContentBase() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n KeytipContentBase.prototype.render = function () {\n var _a = this.props, content = _a.content, styles = _a.styles, theme = _a.theme, disabled = _a.disabled, visible = _a.visible;\n var getClassNames = classNamesFunction();\n var classNames = getClassNames(styles, {\n theme: theme,\n disabled: disabled,\n visible: visible,\n });\n return (React.createElement(\"div\", { className: classNames.container },\n React.createElement(\"span\", { className: classNames.root }, content)));\n };\n return KeytipContentBase;\n}(React.Component));\nexport { KeytipContentBase };\n//# sourceMappingURL=KeytipContent.base.js.map" - }, - { - "id": "JSQU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashSet.js", - "name": "./node_modules/lodash/_hashSet.js", - "index": 483, - "index2": 471, - "size": 598, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "issuerId": "4kuk", - "issuerName": "./node_modules/lodash/_Hash.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4kuk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "module": "./node_modules/lodash/_Hash.js", - "moduleName": "./node_modules/lodash/_Hash.js", - "type": "cjs require", - "userRequest": "./_hashSet", - "loc": "5:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "var nativeCreate = require('./_nativeCreate');\n\n/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/**\n * Sets the hash `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Hash\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the hash instance.\n */\nfunction hashSet(key, value) {\n var data = this.__data__;\n this.size += this.has(key) ? 0 : 1;\n data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n return this;\n}\n\nmodule.exports = hashSet;\n" - }, - { - "id": "JTzB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsArguments.js", - "name": "./node_modules/lodash/_baseIsArguments.js", - "index": 500, - "index2": 490, - "size": 488, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "issuerId": "03A+", - "issuerName": "./node_modules/lodash/isArguments.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - }, - { - "id": "03A+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "name": "./node_modules/lodash/isArguments.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "03A+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArguments.js", - "module": "./node_modules/lodash/isArguments.js", - "moduleName": "./node_modules/lodash/isArguments.js", - "type": "cjs require", - "userRequest": "./_baseIsArguments", - "loc": "1:22-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var baseGetTag = require('./_baseGetTag'),\n isObjectLike = require('./isObjectLike');\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]';\n\n/**\n * The base implementation of `_.isArguments`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n */\nfunction baseIsArguments(value) {\n return isObjectLike(value) && baseGetTag(value) == argsTag;\n}\n\nmodule.exports = baseIsArguments;\n" - }, - { - "id": "JZZf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/version.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/version.js", - "index": null, - "index2": null, - "size": 278, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "55:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "// @uifabric/utilities@6.45.1\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('@uifabric/utilities', '6.45.1');\n//# sourceMappingURL=version.js.map" - }, - { - "id": "JaqE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/ICustomCollectionField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/ICustomCollectionField.js", - "index": 8, - "index2": 5, - "size": 865, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICustomCollectionField", - "loc": "1:0-41" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICustomCollectionField", - "loc": "1:0-41" - } - ], - "usedExports": [ - "CustomCollectionFieldType" - ], - "providedExports": [ - "CustomCollectionFieldType" - ], - "optimizationBailout": [], - "depth": 3, - "source": "export var CustomCollectionFieldType;\n(function (CustomCollectionFieldType) {\n CustomCollectionFieldType[CustomCollectionFieldType[\"string\"] = 1] = \"string\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"number\"] = 2] = \"number\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"boolean\"] = 3] = \"boolean\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"dropdown\"] = 4] = \"dropdown\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"fabricIcon\"] = 5] = \"fabricIcon\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"url\"] = 6] = \"url\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"custom\"] = 7] = \"custom\";\n CustomCollectionFieldType[CustomCollectionFieldType[\"color\"] = 8] = \"color\";\n})(CustomCollectionFieldType || (CustomCollectionFieldType = {}));\n//# sourceMappingURL=ICustomCollectionField.js.map" - }, - { - "id": "JcEy", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js", - "index": null, - "index2": null, - "size": 1221, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "2eko", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./ActionButton/ActionButton", - "loc": "6:0-59" - }, - { - "moduleId": "0l15", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./ActionButton/ActionButton", - "loc": "31:43-55" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ActionButton/ActionButton", - "loc": "4:0-44" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ActionButton/ActionButton", - "loc": "4:0-44" - }, - { - "moduleId": "nNoq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../ActionButton/ActionButton", - "loc": "1:0-60" - }, - { - "moduleId": "nNoq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/CommandButton/CommandButton.js", - "type": "harmony import specifier", - "userRequest": "../ActionButton/ActionButton", - "loc": "5:27-39" - } - ], - "usedExports": false, - "providedExports": [ - "ActionButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { BaseComponent, customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './ActionButton.styles';\n/**\n * {@docCategory Button}\n */\nvar ActionButton = /** @class */ (function (_super) {\n tslib_1.__extends(ActionButton, _super);\n function ActionButton() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n /**\n * Tell BaseComponent to bypass resolution of componentRef.\n */\n _this._skipComponentRefResolution = true;\n return _this;\n }\n ActionButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, tslib_1.__assign({}, this.props, { variantClassName: \"ms-Button--action ms-Button--command\", styles: getStyles(theme, styles), onRenderDescription: nullRender })));\n };\n ActionButton = tslib_1.__decorate([\n customizable('ActionButton', ['theme', 'styles'], true)\n ], ActionButton);\n return ActionButton;\n}(BaseComponent));\nexport { ActionButton };\n//# sourceMappingURL=ActionButton.js.map" - }, - { - "id": "Jdes", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/KeytipConfig.js", - "index": null, - "index2": null, - "size": 1385, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "issuerId": "bwCg", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": "bwCg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./KeytipConfig", - "loc": "2:0-31" - }, - { - "moduleId": "bwCg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/index.js", - "type": "harmony export imported specifier", - "userRequest": "./KeytipConfig", - "loc": "2:0-31" - } - ], - "usedExports": false, - "providedExports": [ - "buildKeytipConfigMap", - "constructKeytip" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign } from \"tslib\";\n/**\n * Builds a map of ID to IKeytipProps\n *\n * @param config - IKeytipConfig object\n * @returns Config map\n */\nexport function buildKeytipConfigMap(config) {\n var configMap = {};\n for (var _i = 0, _a = config.keytips; _i < _a.length; _i++) {\n var keytip = _a[_i];\n constructKeytip(configMap, [], keytip);\n }\n return configMap;\n}\n/**\n * Constructs a keytip from an IKeytipConfigItem and puts it in the configMap\n *\n * @param configMap - IKeytipConfigMap to store the keytip in\n * @param parentSequence - string of the parent keytip\n * @param keytip - IKeytipConfigItem data\n */\nexport function constructKeytip(configMap, parentSequence, keytip) {\n // Compute full key sequence\n var sequence = keytip.sequence ? keytip.sequence : keytip.content.toLocaleLowerCase();\n var keytipSequence = parentSequence.concat(sequence);\n // Save props in configMap\n var keytipProps = __assign(__assign({}, keytip.optionalProps), { keySequences: keytipSequence, content: keytip.content });\n configMap[keytip.id] = keytipProps;\n if (keytip.children) {\n for (var _i = 0, _a = keytip.children; _i < _a.length; _i++) {\n var child = _a[_i];\n // Create keytips for all children\n constructKeytip(configMap, keytipSequence, child);\n }\n }\n}\n//# sourceMappingURL=KeytipConfig.js.map" - }, - { - "id": "JiuB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Popup.js", - "name": "./node_modules/office-ui-fabric-react/lib/Popup.js", - "index": null, - "index2": null, - "size": 75, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Popup", - "loc": "59:0-24" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Popup", - "loc": "59:0-24" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Popup", - "loc": "7:0-36" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Popup", - "loc": "6:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "Popup" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Popup/index';\n//# sourceMappingURL=Popup.js.map" - }, - { - "id": "Jveu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/resources.js", - "name": "./node_modules/@uifabric/utilities/lib/resources.js", - "index": null, - "index2": null, - "size": 305, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./resources", - "loc": "49:0-28" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./resources", - "loc": "49:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "getResourceUrl", - "setBaseUrl" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "var _baseUrl = '';\n/** Sets the current base url used for fetching images. */\nexport function getResourceUrl(url) {\n return _baseUrl + url;\n}\n/** Gets the current base url used for fetching images. */\nexport function setBaseUrl(baseUrl) {\n _baseUrl = baseUrl;\n}\n//# sourceMappingURL=resources.js.map" - }, - { - "id": "JwHi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "index": null, - "index2": null, - "size": 276, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "issuerId": "yMIw", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "t1PU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Breadcrumb.js", - "name": "./node_modules/office-ui-fabric-react/lib/Breadcrumb.js" - }, - { - "id": "yMIw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "yMIw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Breadcrumb", - "loc": "1:0-29" - }, - { - "moduleId": "yMIw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Breadcrumb", - "loc": "1:0-29" - } - ], - "usedExports": false, - "providedExports": [ - "Breadcrumb" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { BreadcrumbBase } from './Breadcrumb.base';\nimport { getStyles } from './Breadcrumb.styles';\nexport var Breadcrumb = styled(BreadcrumbBase, getStyles, undefined, { scope: 'Breadcrumb' });\n//# sourceMappingURL=Breadcrumb.js.map" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "index": null, - "index2": null, - "size": 370, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "issuerId": "UGsW", - "issuerName": "./node_modules/office-ui-fabric-react/lib/HoverCard.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "UGsW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/HoverCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/HoverCard.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/HoverCard/index", - "loc": "1:0-45" - }, - { - "moduleId": "UGsW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/HoverCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/HoverCard.js", - "type": "harmony export imported specifier", - "userRequest": "./components/HoverCard/index", - "loc": "1:0-45" - } - ], - "usedExports": false, - "providedExports": [ - "HoverCard", - "HoverCardBase", - "OpenCardMode", - "HoverCardType", - "ExpandingCard", - "ExpandingCardBase", - "ExpandingCardMode", - "PlainCard", - "PlainCardBase", - "DirectionalHint" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './HoverCard';\nexport * from './HoverCard.base';\nexport * from './HoverCard.types';\nexport * from './ExpandingCard';\nexport * from './ExpandingCard.base';\nexport * from './ExpandingCard.types';\nexport * from './PlainCard/PlainCard';\nexport * from './PlainCard/PlainCard.base';\nexport * from '../../common/DirectionalHint';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "K7IN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Fabric/index.js", - "index": null, - "index2": null, - "size": 90, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "issuerId": "3xEs", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": "uoCI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Layer.js" - }, - { - "id": "3736", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js" - }, - { - "id": "3xEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "3xEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Fabric/index", - "loc": "1:0-42" - }, - { - "moduleId": "3xEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Fabric.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Fabric/index", - "loc": "1:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "Fabric", - "FabricBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 15, - "source": "export * from './Fabric';\nexport * from './Fabric.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "KB00", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useForceUpdate.js", - "index": null, - "index2": null, - "size": 432, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useForceUpdate", - "loc": "7:0-33" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useForceUpdate", - "loc": "7:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "useForceUpdate" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import * as React from 'react';\nimport { useConst } from './useConst';\n/**\n * Hook to force update a function component by updating a dummy state.\n */\nexport function useForceUpdate() {\n var _a = React.useState(0), setValue = _a[1];\n var forceUpdate = useConst(function () { return function () { return setValue(function (value) { return ++value; }); }; });\n return forceUpdate;\n}\n//# sourceMappingURL=useForceUpdate.js.map" - }, - { - "id": "KCoL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/dom.js", - "index": null, - "index2": null, - "size": 596, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom", - "loc": "26:0-22" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./dom", - "loc": "26:0-22" - } - ], - "usedExports": false, - "providedExports": [ - "elementContains", - "elementContainsAttribute", - "findElementRecursive", - "getChildren", - "getDocument", - "getParent", - "getRect", - "getVirtualParent", - "getWindow", - "isVirtualElement", - "on", - "portalContainsElement", - "raiseClick", - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute", - "setVirtualParent" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "export * from './dom/elementContains';\nexport * from './dom/elementContainsAttribute';\nexport * from './dom/findElementRecursive';\nexport * from './dom/getChildren';\nexport * from './dom/getDocument';\nexport * from './dom/getParent';\nexport * from './dom/getRect';\nexport * from './dom/getVirtualParent';\nexport * from './dom/getWindow';\nexport * from './dom/isVirtualElement';\nexport * from './dom/on';\nexport * from './dom/portalContainsElement';\nexport * from './dom/raiseClick';\nexport * from './dom/setPortalAttribute';\nexport * from './dom/setVirtualParent';\n//# sourceMappingURL=dom.js.map" - }, - { - "id": "KHN1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "name": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "index": 36, - "index2": 26, - "size": 3341, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "18:14-28" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "23:8-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/theme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "70:4-18" - }, - { - "moduleId": "IBIL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/scheme.js", - "module": "./node_modules/@uifabric/styling/lib/styles/scheme.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/scheme.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "21:32-46" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Customizations", - "loc": "2:0-50" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "14:12-26" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "18:16-30" - }, - { - "moduleId": "WOvX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js eccb8e539352eca521ab2b6b89e3afa8", - "module": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "23:11-25" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Customizations", - "loc": "3:0-50" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "28:8-22" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "31:8-22" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "./Customizations", - "loc": "3:0-50" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "21:20-34" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "24:20-34" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "./Customizations", - "loc": "29:43-57" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/Customizations", - "loc": "19:0-48" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/Customizations", - "loc": "19:0-48" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "104:11-25" - } - ], - "usedExports": [ - "Customizations" - ], - "providedExports": [ - "Customizations" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { GlobalSettings } from '../GlobalSettings';\nvar CustomizationsGlobalKey = 'customizations';\nvar NO_CUSTOMIZATIONS = { settings: {}, scopedSettings: {}, inCustomizerContext: false };\nvar _allSettings = GlobalSettings.getValue(CustomizationsGlobalKey, {\n settings: {},\n scopedSettings: {},\n inCustomizerContext: false,\n});\nvar _events = [];\nvar Customizations = /** @class */ (function () {\n function Customizations() {\n }\n Customizations.reset = function () {\n _allSettings.settings = {};\n _allSettings.scopedSettings = {};\n };\n /** Apply global Customization settings.\n * @example Customizations.applySettings(\\{ theme: \\{...\\} \\});\n */\n Customizations.applySettings = function (settings) {\n _allSettings.settings = __assign(__assign({}, _allSettings.settings), settings);\n Customizations._raiseChange();\n };\n /** Apply Customizations to a particular named scope, like a component.\n * @example Customizations.applyScopedSettings('Nav', \\{ styles: () =\\> \\{\\} \\});\n */\n Customizations.applyScopedSettings = function (scopeName, settings) {\n _allSettings.scopedSettings[scopeName] = __assign(__assign({}, _allSettings.scopedSettings[scopeName]), settings);\n Customizations._raiseChange();\n };\n Customizations.getSettings = function (properties, scopeName, localSettings) {\n if (localSettings === void 0) { localSettings = NO_CUSTOMIZATIONS; }\n var settings = {};\n var localScopedSettings = (scopeName && localSettings.scopedSettings[scopeName]) || {};\n var globalScopedSettings = (scopeName && _allSettings.scopedSettings[scopeName]) || {};\n for (var _i = 0, properties_1 = properties; _i < properties_1.length; _i++) {\n var property = properties_1[_i];\n settings[property] =\n localScopedSettings[property] ||\n localSettings.settings[property] ||\n globalScopedSettings[property] ||\n _allSettings.settings[property];\n }\n return settings;\n };\n /** Used to run some code that sets Customizations without triggering an update until the end.\n * Useful for applying Customizations that don't affect anything currently rendered, or for\n * applying many customizations at once.\n * @param suppressUpdate - Do not raise the change event at the end, preventing all updates\n */\n Customizations.applyBatchedUpdates = function (code, suppressUpdate) {\n Customizations._suppressUpdates = true;\n try {\n code();\n }\n catch (_a) {\n /* do nothing */\n }\n Customizations._suppressUpdates = false;\n if (!suppressUpdate) {\n Customizations._raiseChange();\n }\n };\n Customizations.observe = function (onChange) {\n _events.push(onChange);\n };\n Customizations.unobserve = function (onChange) {\n _events = _events.filter(function (cb) { return cb !== onChange; });\n };\n Customizations._raiseChange = function () {\n if (!Customizations._suppressUpdates) {\n _events.forEach(function (cb) { return cb(); });\n }\n };\n return Customizations;\n}());\nexport { Customizations };\n//# sourceMappingURL=Customizations.js.map" - }, - { - "id": "KIXb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.styles.js", - "index": null, - "index2": null, - "size": 652, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "issuerId": "2a+Y", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hgfh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/OverflowSet.js" - }, - { - "id": "DlPT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js" - }, - { - "id": "2a+Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "2a+Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "type": "harmony side effect evaluation", - "userRequest": "./OverflowSet.styles", - "loc": "3:0-49" - }, - { - "moduleId": "2a+Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "type": "harmony import specifier", - "userRequest": "./OverflowSet.styles", - "loc": "4:49-58" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "var overflowItemStyle = {\n flexShrink: 0,\n display: 'inherit',\n};\nexport var getStyles = function (props) {\n var className = props.className, vertical = props.vertical;\n return {\n root: [\n 'ms-OverflowSet',\n {\n position: 'relative',\n display: 'flex',\n flexWrap: 'nowrap',\n },\n vertical && { flexDirection: 'column' },\n className,\n ],\n item: ['ms-OverflowSet-item', overflowItemStyle],\n overflowButton: ['ms-OverflowSet-overflowButton', overflowItemStyle],\n };\n};\n//# sourceMappingURL=OverflowSet.styles.js.map" - }, - { - "id": "KJoR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Sticky.js", - "name": "./node_modules/office-ui-fabric-react/lib/Sticky.js", - "index": null, - "index2": null, - "size": 77, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Sticky", - "loc": "77:0-25" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Sticky", - "loc": "77:0-25" - } - ], - "usedExports": false, - "providedExports": [ - "Sticky", - "StickyPositionType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Sticky/index';\n//# sourceMappingURL=Sticky.js.map" - }, - { - "id": "KMkd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_listCacheClear.js", - "name": "./node_modules/lodash/_listCacheClear.js", - "index": 448, - "index2": 439, - "size": 218, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "issuerId": "Xi7e", - "issuerName": "./node_modules/lodash/_ListCache.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "Xi7e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "name": "./node_modules/lodash/_ListCache.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Xi7e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_ListCache.js", - "module": "./node_modules/lodash/_ListCache.js", - "moduleName": "./node_modules/lodash/_ListCache.js", - "type": "cjs require", - "userRequest": "./_listCacheClear", - "loc": "1:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * Removes all key-value entries from the list cache.\n *\n * @private\n * @name clear\n * @memberOf ListCache\n */\nfunction listCacheClear() {\n this.__data__ = [];\n this.size = 0;\n}\n\nmodule.exports = listCacheClear;\n" - }, - { - "id": "KQAI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/utilities/contextualMenu/index.js", - "index": null, - "index2": null, - "size": 74, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItem.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "3:0-80" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "6:0-85" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "6:0-99" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/contextualMenu/index", - "loc": "7:0-85" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/contextualMenu/index", - "loc": "8:0-96" - } - ], - "usedExports": false, - "providedExports": [ - "getIsChecked", - "hasSubmenu", - "isItemDisabled" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 10, - "source": "export * from './contextualMenuUtility';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "KVSy", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useControllableValue.js", - "index": null, - "index2": null, - "size": 1544, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useControllableValue", - "loc": "6:0-39" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useControllableValue", - "loc": "6:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "useControllableValue" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import * as React from 'react';\nimport { useConst } from './useConst';\nexport function useControllableValue(controlledValue, defaultUncontrolledValue, onChange) {\n var _a = React.useState(defaultUncontrolledValue), value = _a[0], setValue = _a[1];\n var isControlled = useConst(controlledValue !== undefined);\n var currentValue = isControlled ? controlledValue : value;\n // Duplicate the current value and onChange in refs so they're accessible from\n // setValueOrCallOnChange without creating a new callback every time\n var valueRef = React.useRef(currentValue);\n var onChangeRef = React.useRef(onChange);\n React.useEffect(function () {\n valueRef.current = currentValue;\n onChangeRef.current = onChange;\n });\n // To match the behavior of the setter returned by React.useState, this callback's identity\n // should never change. This means it MUST NOT directly reference variables that can change.\n var setValueOrCallOnChange = useConst(function () { return function (update, ev) {\n // Assuming here that TValue is not a function, because a controllable value will typically\n // be something a user can enter as input\n var newValue = typeof update === 'function' ? update(valueRef.current) : update;\n if (onChangeRef.current) {\n onChangeRef.current(ev, newValue);\n }\n if (!isControlled) {\n setValue(newValue);\n }\n }; });\n return [currentValue, setValueOrCallOnChange];\n}\n//# sourceMappingURL=useControllableValue.js.map" - }, - { - "id": "KZ3/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/ICollectionIconFieldProps.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/ICollectionIconFieldProps.js", - "index": 29, - "index2": 20, - "size": 53, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "issuerId": "niPH", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "niPH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "niPH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ICollectionIconFieldProps", - "loc": "1:0-44" - }, - { - "moduleId": "niPH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionIconField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ICollectionIconFieldProps", - "loc": "1:0-44" - } - ], - "usedExports": [ - "CollectionIconField" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "//# sourceMappingURL=ICollectionIconFieldProps.js.map" - }, - { - "id": "KdOp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Popup/index.js", - "index": null, - "index2": null, - "size": 58, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "issuerId": "YbeO", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js" - }, - { - "id": "YbeO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "YbeO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Popup/index", - "loc": "1:0-41" - }, - { - "moduleId": "YbeO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Popup.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Popup/index", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Popup/index", - "loc": "8:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "Popup" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 11, - "source": "export * from './Popup';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "KfNM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_objectToString.js", - "name": "./node_modules/lodash/_objectToString.js", - "index": 469, - "index2": 455, - "size": 565, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "issuerId": "NykK", - "issuerName": "./node_modules/lodash/_baseGetTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "NykK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "module": "./node_modules/lodash/_baseGetTag.js", - "moduleName": "./node_modules/lodash/_baseGetTag.js", - "type": "cjs require", - "userRequest": "./_objectToString", - "loc": "3:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/**\n * Converts `value` to a string using `Object.prototype.toString`.\n *\n * @private\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n */\nfunction objectToString(value) {\n return nativeObjectToString.call(value);\n}\n\nmodule.exports = objectToString;\n" - }, - { - "id": "Khh+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.scss.js", - "index": null, - "index2": null, - "size": 5746, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "issuerId": "MgI6", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - }, - { - "id": "MgI6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./Suggestions.scss", - "loc": "5:0-51" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.scss", - "loc": "6:19-31" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "./Suggestions.scss", - "loc": "10:0-51" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.scss", - "loc": "11:19-31" - } - ], - "usedExports": false, - "providedExports": [ - "root", - "suggestionsItem", - "closeButton", - "suggestionsItemIsSuggested", - "itemButton", - "actionButton", - "buttonSelected", - "suggestionsTitle", - "suggestionsContainer", - "suggestionsNone", - "suggestionsSpinner", - "suggestionsAvailable" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "/* eslint-disable */\nimport { loadStyles } from '@microsoft/load-themed-styles';\nloadStyles([{ \"rawString\": \".root_daa93819{min-width:260px}.suggestionsItem_daa93819{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;position:relative;overflow:hidden}.suggestionsItem_daa93819:hover{background:\" }, { \"theme\": \"neutralLighter\", \"defaultValue\": \"#f3f2f1\" }, { \"rawString\": \"}.suggestionsItem_daa93819:hover .closeButton_daa93819{display:block}.suggestionsItem_daa93819.suggestionsItemIsSuggested_daa93819{background:\" }, { \"theme\": \"neutralLight\", \"defaultValue\": \"#edebe9\" }, { \"rawString\": \"}.suggestionsItem_daa93819.suggestionsItemIsSuggested_daa93819:hover{background:\" }, { \"theme\": \"neutralTertiaryAlt\", \"defaultValue\": \"#c8c6c4\" }, { \"rawString\": \"}@media screen and (-ms-high-contrast:active){.suggestionsItem_daa93819.suggestionsItemIsSuggested_daa93819:hover{background:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast:active){.suggestionsItem_daa93819.suggestionsItemIsSuggested_daa93819{background:Highlight;color:HighlightText;-ms-high-contrast-adjust:none}}.suggestionsItem_daa93819.suggestionsItemIsSuggested_daa93819 .closeButton_daa93819:hover{background:\" }, { \"theme\": \"neutralTertiary\", \"defaultValue\": \"#a19f9d\" }, { \"rawString\": \";color:\" }, { \"theme\": \"neutralPrimary\", \"defaultValue\": \"#323130\" }, { \"rawString\": \"}@media screen and (-ms-high-contrast:active){.suggestionsItem_daa93819.suggestionsItemIsSuggested_daa93819 .itemButton_daa93819{color:HighlightText}}.suggestionsItem_daa93819 .closeButton_daa93819{display:none;color:\" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#605e5c\" }, { \"rawString\": \"}.suggestionsItem_daa93819 .closeButton_daa93819:hover{background:\" }, { \"theme\": \"neutralLight\", \"defaultValue\": \"#edebe9\" }, { \"rawString\": \"}.actionButton_daa93819{background-color:transparent;border:0;cursor:pointer;margin:0;position:relative;border-top:1px solid \" }, { \"theme\": \"neutralLight\", \"defaultValue\": \"#edebe9\" }, { \"rawString\": \";height:40px;width:100%;font-size:12px}[dir=ltr] .actionButton_daa93819{padding-left:8px}[dir=rtl] .actionButton_daa93819{padding-right:8px}html[dir=ltr] .actionButton_daa93819{text-align:left}html[dir=rtl] .actionButton_daa93819{text-align:right}.actionButton_daa93819:hover{background-color:\" }, { \"theme\": \"neutralLight\", \"defaultValue\": \"#edebe9\" }, { \"rawString\": \";cursor:pointer}.actionButton_daa93819:active,.actionButton_daa93819:focus{background-color:\" }, { \"theme\": \"themeLight\", \"defaultValue\": \"#c7e0f4\" }, { \"rawString\": \"}.actionButton_daa93819 .ms-Button-icon{font-size:16px;width:25px}.actionButton_daa93819 .ms-Button-label{margin:0 4px 0 9px}html[dir=rtl] .actionButton_daa93819 .ms-Button-label{margin:0 9px 0 4px}.buttonSelected_daa93819{background-color:\" }, { \"theme\": \"themeLight\", \"defaultValue\": \"#c7e0f4\" }, { \"rawString\": \"}.suggestionsTitle_daa93819{padding:0 12px;color:\" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \";font-size:12px;line-height:40px;border-bottom:1px solid \" }, { \"theme\": \"neutralLight\", \"defaultValue\": \"#edebe9\" }, { \"rawString\": \"}.suggestionsContainer_daa93819{overflow-y:auto;overflow-x:hidden;max-height:300px;border-bottom:1px solid \" }, { \"theme\": \"neutralLight\", \"defaultValue\": \"#edebe9\" }, { \"rawString\": \"}.suggestionsNone_daa93819{text-align:center;color:#797775;font-size:12px;line-height:30px}.suggestionsSpinner_daa93819{margin:5px 0;white-space:nowrap;line-height:20px;font-size:12px}html[dir=ltr] .suggestionsSpinner_daa93819{padding-left:14px}html[dir=rtl] .suggestionsSpinner_daa93819{padding-right:14px}html[dir=ltr] .suggestionsSpinner_daa93819{text-align:left}html[dir=rtl] .suggestionsSpinner_daa93819{text-align:right}.suggestionsSpinner_daa93819 .ms-Spinner-circle{display:inline-block;vertical-align:middle}.suggestionsSpinner_daa93819 .ms-Spinner-label{display:inline-block;margin:0 10px 0 16px;vertical-align:middle}html[dir=rtl] .suggestionsSpinner_daa93819 .ms-Spinner-label{margin:0 16px 0 10px}.itemButton_daa93819.itemButton_daa93819{width:100%;padding:0;min-width:0;height:100%}@media screen and (-ms-high-contrast:active){.itemButton_daa93819.itemButton_daa93819{color:WindowText}}.itemButton_daa93819.itemButton_daa93819:hover{color:\" }, { \"theme\": \"neutralDark\", \"defaultValue\": \"#201f1e\" }, { \"rawString\": \"}.closeButton_daa93819.closeButton_daa93819{padding:0 4px;height:auto;width:32px}@media screen and (-ms-high-contrast:active){.closeButton_daa93819.closeButton_daa93819{color:WindowText}}.closeButton_daa93819.closeButton_daa93819:hover{background:\" }, { \"theme\": \"neutralTertiaryAlt\", \"defaultValue\": \"#c8c6c4\" }, { \"rawString\": \";color:\" }, { \"theme\": \"neutralDark\", \"defaultValue\": \"#201f1e\" }, { \"rawString\": \"}.suggestionsAvailable_daa93819{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}\" }]);\nexport var root = \"root_daa93819\";\nexport var suggestionsItem = \"suggestionsItem_daa93819\";\nexport var closeButton = \"closeButton_daa93819\";\nexport var suggestionsItemIsSuggested = \"suggestionsItemIsSuggested_daa93819\";\nexport var itemButton = \"itemButton_daa93819\";\nexport var actionButton = \"actionButton_daa93819\";\nexport var buttonSelected = \"buttonSelected_daa93819\";\nexport var suggestionsTitle = \"suggestionsTitle_daa93819\";\nexport var suggestionsContainer = \"suggestionsContainer_daa93819\";\nexport var suggestionsNone = \"suggestionsNone_daa93819\";\nexport var suggestionsSpinner = \"suggestionsSpinner_daa93819\";\nexport var suggestionsAvailable = \"suggestionsAvailable_daa93819\";\n//# sourceMappingURL=Suggestions.scss.js.map" - }, - { - "id": "KiHr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/object.js", - "name": "./node_modules/@uifabric/utilities/lib/object.js", - "index": 141, - "index2": 128, - "size": 4961, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "24:17-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "45:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "128:20-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "135:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "135:57-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/TooltipHost.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "143:236-242" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "175:13-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "324:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "366:26-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "394:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "444:16-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "444:57-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "514:8-14" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "527:12-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "808:16-22" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "250:16-30" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "250:57-71" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "59:4-17" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "67:8-21" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./object", - "loc": "44:0-95" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "125:28-34" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "148:28-34" - }, - { - "moduleId": "cwxN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/EventGroup.js", - "module": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "type": "harmony side effect evaluation", - "userRequest": "./object", - "loc": "1:0-34" - }, - { - "moduleId": "cwxN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/EventGroup.js", - "module": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/EventGroup.js", - "type": "harmony import specifier", - "userRequest": "./object", - "loc": "32:16-22" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "49:16-30" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "191:28-34" - } - ], - "usedExports": [ - "assign", - "shallowCompare" - ], - "providedExports": [ - "shallowCompare", - "assign", - "filteredAssign", - "mapEnumByName", - "values", - "omit" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Compares a to b and b to a.\n *\n * @public\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function shallowCompare(a, b) {\n for (var propName in a) {\n if (a.hasOwnProperty(propName)) {\n if (!b.hasOwnProperty(propName) || b[propName] !== a[propName]) {\n return false;\n }\n }\n }\n for (var propName in b) {\n if (b.hasOwnProperty(propName)) {\n if (!a.hasOwnProperty(propName)) {\n return false;\n }\n }\n }\n return true;\n}\n/**\n * Makes a resulting merge of a bunch of objects. Pass in the target object followed by 1 or more\n * objects as arguments and they will be merged sequentially into the target. Note that this will\n * shallow merge; it will not create new cloned values for target members.\n *\n * @public\n * @param target - Target object to merge following object arguments into.\n * @param args - One or more objects that will be mixed into the target in the order they are provided.\n * @returns Resulting merged target.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function assign(target) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n return filteredAssign.apply(this, [null, target].concat(args));\n}\n/**\n * Makes a resulting merge of a bunch of objects, but allows a filter function to be passed in to filter\n * the resulting merges. This allows for scenarios where you want to merge \"everything except that one thing\"\n * or \"properties that start with data-\". Note that this will shallow merge; it will not create new cloned\n * values for target members.\n *\n * @public\n * @param isAllowed - Callback to determine if the given propName is allowed in the result.\n * @param target - Target object to merge following object arguments into.\n * @param args - One or more objects that will be mixed into the target in the order they are provided.\n * @returns Resulting merged target.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function filteredAssign(isAllowed, target) {\n var args = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n args[_i - 2] = arguments[_i];\n }\n target = target || {};\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\n var sourceObject = args_1[_a];\n if (sourceObject) {\n for (var propName in sourceObject) {\n if (sourceObject.hasOwnProperty(propName) && (!isAllowed || isAllowed(propName))) {\n target[propName] = sourceObject[propName];\n }\n }\n }\n }\n return target;\n}\n/**\n * Takes an enum and iterates over each value of the enum (as a string), running the callback on each,\n * returning a mapped array.\n * @param theEnum - Enum to iterate over\n * @param callback - The first parameter the name of the entry, and the second parameter is the value\n * of that entry, which is the value you'd normally use when using the enum (usually a number).\n */\nexport function mapEnumByName(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ntheEnum, callback) {\n // map to satisfy compiler since it doesn't realize we strip out undefineds in the .filter() call\n return Object.keys(theEnum)\n .map(function (p) {\n // map on each property name as a string\n if (String(Number(p)) !== p) {\n // if the property is not just a number (because enums in TypeScript will map both ways)\n return callback(p, theEnum[p]);\n }\n return undefined;\n })\n .filter(function (v) { return !!v; }); // only return elements with values\n}\n/**\n * Get all values in an object dictionary\n *\n * @param obj - The dictionary to get values for\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function values(obj) {\n return Object.keys(obj).reduce(function (arr, key) {\n arr.push(obj[key]);\n return arr;\n }, []);\n}\n/**\n * Tiny helper to do the minimal amount of work in duplicating an object but omitting some\n * props. This ends up faster than using object ...rest or reduce to filter.\n *\n * This behaves very much like filteredAssign, but does not merge many objects together,\n * uses an exclusion object map, and avoids spreads all for optimal performance.\n *\n * See perf test for background:\n * https://jsperf.com/omit-vs-rest-vs-reduce/1\n *\n * @param obj - The object to clone\n * @param exclusions - The array of keys to exclude\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function omit(obj, exclusions) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var result = {};\n for (var key in obj) {\n if (exclusions.indexOf(key) === -1 && obj.hasOwnProperty(key)) {\n result[key] = obj[key];\n }\n }\n return result;\n}\n//# sourceMappingURL=object.js.map" - }, - { - "id": "KwlQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useAsync.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useAsync.js", - "index": null, - "index2": null, - "size": 540, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useAsync", - "loc": "2:0-27" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useAsync", - "loc": "2:0-27" - } - ], - "usedExports": false, - "providedExports": [ - "useAsync" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { Async } from '@uifabric/utilities';\nimport * as React from 'react';\nimport { useConst } from './useConst';\n/**\n * Hook to provide an Async instance that is automatically cleaned up on dismount.\n */\nexport function useAsync() {\n var async = useConst(function () { return new Async(); });\n // Function that returns a function in order to dispose the async instance on unmount\n React.useEffect(function () { return function () { return async.dispose(); }; }, [async]);\n return async;\n}\n//# sourceMappingURL=useAsync.js.map" - }, - { - "id": "Kx7X", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/StyleOptionsState.js", - "name": "./node_modules/@uifabric/merge-styles/lib/StyleOptionsState.js", - "index": 48, - "index2": 34, - "size": 890, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerId": "YDzY", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "3:0-54" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./StyleOptionsState", - "loc": "18:35-50" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "8:0-45" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./StyleOptionsState", - "loc": "8:0-45" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "26:12-29" - }, - { - "moduleId": "FbcY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/rtl.js", - "module": "./node_modules/@uifabric/utilities/lib/rtl.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/rtl.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "44:4-21" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "2:0-54" - }, - { - "moduleId": "YDzY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "type": "harmony import specifier", - "userRequest": "./StyleOptionsState", - "loc": "14:26-41" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "1:0-54" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./StyleOptionsState", - "loc": "1:0-54" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./StyleOptionsState", - "loc": "9:77-92" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./StyleOptionsState", - "loc": "15:60-75" - } - ], - "usedExports": [ - "getStyleOptions", - "setRTL" - ], - "providedExports": [ - "setRTL", - "getRTL", - "getStyleOptions" - ], - "optimizationBailout": [], - "depth": 7, - "source": "/**\n * Sets the current RTL value.\n */\nexport function setRTL(isRTL) {\n if (_rtl !== isRTL) {\n _rtl = isRTL;\n }\n}\n/**\n * Gets the current RTL value.\n */\nexport function getRTL() {\n if (_rtl === undefined) {\n _rtl =\n typeof document !== 'undefined' &&\n !!document.documentElement &&\n document.documentElement.getAttribute('dir') === 'rtl';\n }\n return _rtl;\n}\n// This has been split into 2 lines because it was working in Fabric due to the code being transpiled to es5, so this\n// was converted to var while not working in Fluent that uses babel to transpile the code to be es6-like. Splitting the\n// logic into two lines, however, allows it to work in both scenarios.\nvar _rtl;\n_rtl = getRTL();\nexport function getStyleOptions() {\n return {\n rtl: getRTL(),\n };\n}\n//# sourceMappingURL=StyleOptionsState.js.map" - }, - { - "id": "KxBF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSlice.js", - "name": "./node_modules/lodash/_baseSlice.js", - "index": 566, - "index2": 558, - "size": 756, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "issuerId": "gpbi", - "issuerName": "./node_modules/lodash/_parent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - }, - { - "id": "gpbi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "name": "./node_modules/lodash/_parent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gpbi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_parent.js", - "module": "./node_modules/lodash/_parent.js", - "moduleName": "./node_modules/lodash/_parent.js", - "type": "cjs require", - "userRequest": "./_baseSlice", - "loc": "2:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * The base implementation of `_.slice` without an iteratee call guard.\n *\n * @private\n * @param {Array} array The array to slice.\n * @param {number} [start=0] The start position.\n * @param {number} [end=array.length] The end position.\n * @returns {Array} Returns the slice of `array`.\n */\nfunction baseSlice(array, start, end) {\n var index = -1,\n length = array.length;\n\n if (start < 0) {\n start = -start > length ? 0 : (length + start);\n }\n end = end > length ? length : end;\n if (end < 0) {\n end += length;\n }\n length = start > end ? 0 : ((end - start) >>> 0);\n start >>>= 0;\n\n var result = Array(length);\n while (++index < length) {\n result[index] = array[index + start];\n }\n return result;\n}\n\nmodule.exports = baseSlice;\n" - }, - { - "id": "Kz5y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_root.js", - "name": "./node_modules/lodash/_root.js", - "index": 466, - "index2": 452, - "size": 300, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Symbol.js", - "issuerId": "nmnc", - "issuerName": "./node_modules/lodash/_Symbol.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js" - }, - { - "id": "nmnc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Symbol.js", - "name": "./node_modules/lodash/_Symbol.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "2gN3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_coreJsData.js", - "module": "./node_modules/lodash/_coreJsData.js", - "moduleName": "./node_modules/lodash/_coreJsData.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "5Tg0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_cloneBuffer.js", - "module": "./node_modules/lodash/_cloneBuffer.js", - "moduleName": "./node_modules/lodash/_cloneBuffer.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "DSRE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isBuffer.js", - "module": "./node_modules/lodash/isBuffer.js", - "moduleName": "./node_modules/lodash/isBuffer.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "HOxn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Promise.js", - "module": "./node_modules/lodash/_Promise.js", - "moduleName": "./node_modules/lodash/_Promise.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - }, - { - "moduleId": "JHRd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Uint8Array.js", - "module": "./node_modules/lodash/_Uint8Array.js", - "moduleName": "./node_modules/lodash/_Uint8Array.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "Of+w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_WeakMap.js", - "module": "./node_modules/lodash/_WeakMap.js", - "moduleName": "./node_modules/lodash/_WeakMap.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - }, - { - "moduleId": "ebwN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Map.js", - "module": "./node_modules/lodash/_Map.js", - "moduleName": "./node_modules/lodash/_Map.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - }, - { - "moduleId": "nmnc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Symbol.js", - "module": "./node_modules/lodash/_Symbol.js", - "moduleName": "./node_modules/lodash/_Symbol.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "1:11-29" - }, - { - "moduleId": "tadb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_DataView.js", - "module": "./node_modules/lodash/_DataView.js", - "moduleName": "./node_modules/lodash/_DataView.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - }, - { - "moduleId": "yGk4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Set.js", - "module": "./node_modules/lodash/_Set.js", - "moduleName": "./node_modules/lodash/_Set.js", - "type": "cjs require", - "userRequest": "./_root", - "loc": "2:11-29" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var freeGlobal = require('./_freeGlobal');\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\nmodule.exports = root;\n" - }, - { - "id": "L4du", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "index": null, - "index2": null, - "size": 653, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "issuerId": "08vz", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "08vz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "08vz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardDetails.styles", - "loc": "3:0-57" - }, - { - "moduleId": "08vz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardDetails.styles", - "loc": "4:65-74" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-DocumentCardDetails',\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n display: 'flex',\n flexDirection: 'column',\n flex: 1,\n justifyContent: 'space-between',\n overflow: 'hidden',\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=DocumentCardDetails.styles.js.map" - }, - { - "id": "L59g", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "index": null, - "index2": null, - "size": 6245, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "issuerId": "H7xo", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - }, - { - "id": "H7xo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./PeoplePickerItem.styles", - "loc": "7:0-54" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony import specifier", - "userRequest": "./PeoplePickerItem.styles", - "loc": "30:59-68" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __assign } from \"tslib\";\nimport { getGlobalClassNames, getFocusStyle, HighContrastSelector, getHighContrastNoAdjustStyle, } from '../../../../Styling';\nimport { ButtonGlobalClassNames } from '../../../Button/BaseButton.classNames';\nvar GlobalClassNames = {\n root: 'ms-PickerPersona-container',\n itemContent: 'ms-PickerItem-content',\n removeButton: 'ms-PickerItem-removeButton',\n isSelected: 'is-selected',\n isInvalid: 'is-invalid',\n};\nvar REMOVE_BUTTON_SIZE = 24;\nexport function getStyles(props) {\n var _a, _b, _c, _d, _e, _f, _g;\n var className = props.className, theme = props.theme, selected = props.selected, invalid = props.invalid, disabled = props.disabled;\n var palette = theme.palette, semanticColors = theme.semanticColors, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var personaPrimaryTextStyles = [\n selected &&\n !invalid &&\n !disabled && {\n color: palette.white,\n selectors: (_a = {\n ':hover': {\n color: palette.white,\n }\n },\n _a[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _a),\n },\n ((invalid && !selected) || (invalid && selected && disabled)) && {\n color: palette.redDark,\n borderBottom: \"2px dotted \" + palette.redDark,\n selectors: (_b = {},\n _b[\".\" + classNames.root + \":hover &\"] = {\n // override Persona root:hover selector\n color: palette.redDark,\n },\n _b),\n },\n invalid &&\n selected &&\n !disabled && {\n color: palette.white,\n borderBottom: \"2px dotted \" + palette.white,\n },\n disabled && {\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'GrayText',\n },\n _c),\n },\n ];\n var personaCoinInitialsStyles = [\n invalid && {\n fontSize: fonts.xLarge.fontSize,\n },\n ];\n return {\n root: [\n classNames.root,\n getFocusStyle(theme, { inset: -2 }),\n {\n borderRadius: 15,\n display: 'inline-flex',\n alignItems: 'center',\n background: palette.neutralLighter,\n margin: '1px 2px',\n cursor: 'default',\n userSelect: 'none',\n maxWidth: 300,\n verticalAlign: 'middle',\n minWidth: 0,\n selectors: (_d = {\n ':hover': {\n background: !selected && !disabled ? palette.neutralLight : '',\n }\n },\n _d[HighContrastSelector] = [{ border: '1px solid WindowText' }, disabled && { borderColor: 'GrayText' }],\n _d),\n },\n selected &&\n !disabled && [\n classNames.isSelected,\n {\n background: palette.themePrimary,\n selectors: (_e = {},\n _e[HighContrastSelector] = __assign({ borderColor: 'HighLight', background: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _e),\n },\n ],\n invalid && [classNames.isInvalid],\n invalid &&\n selected &&\n !disabled && {\n background: palette.redDark,\n },\n className,\n ],\n itemContent: [\n classNames.itemContent,\n {\n flex: '0 1 auto',\n minWidth: 0,\n // CSS below is needed for IE 11 to properly truncate long persona names in the picker\n // and to clip the presence indicator (in all browsers)\n maxWidth: '100%',\n overflow: 'hidden',\n },\n ],\n removeButton: [\n classNames.removeButton,\n {\n borderRadius: 15,\n color: palette.neutralPrimary,\n flex: '0 0 auto',\n width: REMOVE_BUTTON_SIZE,\n height: REMOVE_BUTTON_SIZE,\n selectors: {\n ':hover': {\n background: palette.neutralTertiaryAlt,\n color: palette.neutralDark,\n },\n },\n },\n selected && [\n {\n color: palette.white,\n selectors: (_f = {\n ':hover': {\n color: palette.white,\n background: palette.themeDark,\n },\n ':active': {\n color: palette.white,\n background: palette.themeDarker,\n }\n },\n _f[HighContrastSelector] = {\n color: 'HighlightText',\n },\n _f),\n },\n invalid && {\n selectors: {\n ':hover': {\n background: palette.red,\n },\n ':active': {\n background: palette.redDark,\n },\n },\n },\n ],\n disabled && {\n selectors: (_g = {},\n _g[\".\" + ButtonGlobalClassNames.msButtonIcon] = {\n color: semanticColors.buttonText,\n },\n _g),\n },\n ],\n subComponentStyles: {\n persona: {\n primaryText: personaPrimaryTextStyles,\n },\n personaCoin: {\n initials: personaCoinInitialsStyles,\n },\n },\n };\n}\n//# sourceMappingURL=PeoplePickerItem.styles.js.map" - }, - { - "id": "L8xA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackDelete.js", - "name": "./node_modules/lodash/_stackDelete.js", - "index": 456, - "index2": 448, - "size": 405, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackDelete", - "loc": "3:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Removes `key` and its value from the stack.\n *\n * @private\n * @name delete\n * @memberOf Stack\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction stackDelete(key) {\n var data = this.__data__,\n result = data['delete'](key);\n\n this.size = data.size;\n return result;\n}\n\nmodule.exports = stackDelete;\n" - }, - { - "id": "LAR3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initials.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/initials.js", - "index": null, - "index2": null, - "size": 2914, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./initials", - "loc": "33:0-27" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./initials", - "loc": "33:0-27" - } - ], - "usedExports": false, - "providedExports": [ - "getInitials" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "/**\n * Regular expression matching characters to ignore when calculating the initials.\n * The first part matches characters within parenthesis, including the parenthesis.\n * The second part matches special ASCII characters except space, plus some unicode special characters.\n */\nvar UNWANTED_CHARS_REGEX = /\\([^)]*\\)|[\\0-\\u001F\\!-/:-@\\[-`\\{-\\u00BF\\u0250-\\u036F\\uD800-\\uFFFF]/g;\n/**\n * Regular expression matching phone numbers. Applied after chars matching UNWANTED_CHARS_REGEX have been removed\n * and number has been trimmed for whitespaces\n */\nvar PHONENUMBER_REGEX = /^\\d+[\\d\\s]*(:?ext|x|)\\s*\\d+$/i;\n/** Regular expression matching one or more spaces. */\nvar MULTIPLE_WHITESPACES_REGEX = /\\s+/g;\n/**\n * Regular expression matching languages for which we currently don't support initials.\n * Arabic: Arabic, Arabic Supplement, Arabic Extended-A.\n * Korean: Hangul Jamo, Hangul Compatibility Jamo, Hangul Jamo Extended-A, Hangul Syllables, Hangul Jamo Extended-B.\n * Japanese: Hiragana, Katakana.\n * CJK: CJK Unified Ideographs Extension A, CJK Unified Ideographs, CJK Compatibility Ideographs, CJK Unified Ideographs Extension B\n */\n/* tslint:disable:max-line-length */\nvar UNSUPPORTED_TEXT_REGEX = /[\\u0600-\\u06FF\\u0750-\\u077F\\u08A0-\\u08FF\\u1100-\\u11FF\\u3130-\\u318F\\uA960-\\uA97F\\uAC00-\\uD7AF\\uD7B0-\\uD7FF\\u3040-\\u309F\\u30A0-\\u30FF\\u3400-\\u4DBF\\u4E00-\\u9FFF\\uF900-\\uFAFF]|[\\uD840-\\uD869][\\uDC00-\\uDED6]/;\n/* tslint:enable:max-line-length */\nfunction getInitialsLatin(displayName, isRtl) {\n var initials = '';\n var splits = displayName.split(' ');\n if (splits.length === 2) {\n initials += splits[0].charAt(0).toUpperCase();\n initials += splits[1].charAt(0).toUpperCase();\n }\n else if (splits.length === 3) {\n initials += splits[0].charAt(0).toUpperCase();\n initials += splits[2].charAt(0).toUpperCase();\n }\n else if (splits.length !== 0) {\n initials += splits[0].charAt(0).toUpperCase();\n }\n if (isRtl && initials.length > 1) {\n return initials.charAt(1) + initials.charAt(0);\n }\n return initials;\n}\nfunction cleanupDisplayName(displayName) {\n displayName = displayName.replace(UNWANTED_CHARS_REGEX, '');\n displayName = displayName.replace(MULTIPLE_WHITESPACES_REGEX, ' ');\n displayName = displayName.trim();\n return displayName;\n}\n/**\n * Get (up to 2 characters) initials based on display name of the persona.\n *\n * @public\n */\nexport function getInitials(displayName, isRtl, allowPhoneInitials) {\n if (!displayName) {\n return '';\n }\n displayName = cleanupDisplayName(displayName);\n // For names containing CJK characters, and phone numbers, we don't display initials\n if (UNSUPPORTED_TEXT_REGEX.test(displayName) || (!allowPhoneInitials && PHONENUMBER_REGEX.test(displayName))) {\n return '';\n }\n return getInitialsLatin(displayName, isRtl);\n}\n//# sourceMappingURL=initials.js.map" - }, - { - "id": "LDcz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "index": null, - "index2": null, - "size": 232, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "issuerId": "w7f7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "q3RN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Nav.js", - "name": "./node_modules/office-ui-fabric-react/lib/Nav.js" - }, - { - "id": "w7f7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "w7f7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Nav", - "loc": "1:0-22" - }, - { - "moduleId": "w7f7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Nav", - "loc": "1:0-22" - } - ], - "usedExports": false, - "providedExports": [ - "Nav" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { NavBase } from './Nav.base';\nimport { getStyles } from './Nav.styles';\nexport var Nav = styled(NavBase, getStyles, undefined, {\n scope: 'Nav',\n});\n//# sourceMappingURL=Nav.js.map" - }, - { - "id": "LOaw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "name": "./node_modules/@uifabric/utilities/lib/componentAs/composeComponentAs.js", - "index": null, - "index2": null, - "size": 1515, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "123:41-59" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./componentAs/composeComponentAs", - "loc": "16:0-49" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./componentAs/composeComponentAs", - "loc": "16:0-49" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "43:23-41" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "46:23-41" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "56:18-36" - } - ], - "usedExports": false, - "providedExports": [ - "composeComponentAs" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { createMemoizer } from '../memoize';\nfunction createComposedComponent(outer) {\n var Outer = outer;\n var outerMemoizer = createMemoizer(function (inner) {\n if (outer === inner) {\n throw new Error('Attempted to compose a component with itself.');\n }\n var Inner = inner;\n var innerMemoizer = createMemoizer(function (defaultRender) {\n var InnerWithDefaultRender = function (innerProps) {\n return React.createElement(Inner, __assign({}, innerProps, { defaultRender: defaultRender }));\n };\n return InnerWithDefaultRender;\n });\n var OuterWithDefaultRender = function (outerProps) {\n var defaultRender = outerProps.defaultRender;\n return React.createElement(Outer, __assign({}, outerProps, { defaultRender: defaultRender ? innerMemoizer(defaultRender) : Inner }));\n };\n return OuterWithDefaultRender;\n });\n return outerMemoizer;\n}\nvar componentAsMemoizer = createMemoizer(createComposedComponent);\n/**\n * Composes two components which conform to the `IComponentAs` specification; that is, two\n * components which accept a `defaultRender` prop, which is a 'default' implementation of\n * a component which accepts the same overall props.\n *\n * @public\n */\nexport function composeComponentAs(outer, inner) {\n return componentAsMemoizer(outer)(inner);\n}\n//# sourceMappingURL=composeComponentAs.js.map" - }, - { - "id": "LQdl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "name": "./node_modules/@uifabric/utilities/lib/setFocusVisibility.js", - "index": 72, - "index2": 55, - "size": 1141, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "22:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "37:21-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "38:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "64:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "77:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "78:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "86:28-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "100:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "101:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "108:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "111:25-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "123:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "124:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "130:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/ButtonThemes.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "139:25-48" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "151:21-44" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "162:33-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.classNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "162:75-98" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "237:16-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "246:29-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "427:12-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "431:12-30" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "97:12-30" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "33:29-52" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "154:38-61" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "50:29-52" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "60:29-52" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "80:29-52" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "35:29-52" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "115:25-48" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setFocusVisibility", - "loc": "60:0-83" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setFocusVisibility", - "loc": "60:0-83" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setFocusVisibility", - "loc": "60:0-83" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "229:29-52" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "29:25-48" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "66:25-48" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "69:25-48" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "92:29-52" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony side effect evaluation", - "userRequest": "./setFocusVisibility", - "loc": "3:0-58" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "34:4-22" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "38:8-26" - }, - { - "moduleId": "yQoK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "module": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "43:38-56" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./setFocusVisibility", - "loc": "4:0-58" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "73:4-22" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "77:8-26" - }, - { - "moduleId": "ybKx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/useFocusRects.js 42ab0746a0f0fbdcf84c01226e5833a0", - "module": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/useFocusRects.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./setFocusVisibility", - "loc": "83:8-26" - } - ], - "usedExports": [ - "IsFocusVisibleClassName", - "setFocusVisibility" - ], - "providedExports": [ - "IsFocusVisibleClassName", - "IsFocusHiddenClassName", - "setFocusVisibility" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\nexport var IsFocusVisibleClassName = 'ms-Fabric--isFocusVisible';\nexport var IsFocusHiddenClassName = 'ms-Fabric--isFocusHidden';\n/**\n * Sets the visibility of focus styling.\n *\n * By default, focus styles (the box surrounding a focused Button, for example) only show up when navigational\n * keypresses occur (through Tab, arrows, PgUp/PgDn, Home and End), and are hidden when mouse interactions occur.\n * This API provides an imperative way to turn them on/off.\n *\n * A use case might be when you have a keypress like ctrl-f6 navigate to a particular region on the page,\n * and want focus to show up.\n *\n * @param enabled - whether to remove or add focus\n * @param target - optional target\n */\nexport function setFocusVisibility(enabled, target) {\n var win = target ? getWindow(target) : getWindow();\n if (win) {\n var classList = win.document.body.classList;\n classList.add(enabled ? IsFocusVisibleClassName : IsFocusHiddenClassName);\n classList.remove(enabled ? IsFocusHiddenClassName : IsFocusVisibleClassName);\n }\n}\n//# sourceMappingURL=setFocusVisibility.js.map" - }, - { - "id": "LVfT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/tslib/tslib.es6.js", - "name": "./node_modules/@pnp/sp/node_modules/tslib/tslib.es6.js", - "index": 298, - "index2": 291, - "size": 10679, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/sp/sharepointqueryable.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/services/ListService.js", - "name": "./lib/webparts/listSearch/services/ListService.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/index.js", - "name": "./node_modules/@pnp/sp/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/sharepointqueryable.js", - "name": "./node_modules/@pnp/sp/sharepointqueryable.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "80:15-24" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:19-30" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:15-24" - }, - { - "moduleId": "XN+o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/storage.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:19-30" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:4-13" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:4-13" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "92:15-24" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "94:19-30" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "111:15-24" - }, - { - "moduleId": "e4+v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "module": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "moduleName": "./node_modules/@pnp/sp/node_modules/@pnp/common/net.js", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "113:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-35" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "1:0-70" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "tslib", - "loc": "4:0-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "8:38-46" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "9:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "10:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "11:11-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "12:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:12-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "13:15-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "14:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "15:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "16:11-20" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "17:56-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "18:15-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "20:19-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "21:23-34" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "33:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "35:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "36:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "38:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "39:33-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "41:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "42:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "44:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "45:24-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "46:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "47:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "49:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "52:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "54:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "59:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "59:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:12-22" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "62:13-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "64:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "70:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "74:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "74:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "75:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "76:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "76:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "79:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "81:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "82:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "83:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "84:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "86:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "92:46-54" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "95:42-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "96:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "97:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "98:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "101:49-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "104:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "106:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "107:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "109:66-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "113:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "115:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "115:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "118:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "119:28-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "120:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "125:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "126:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "127:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "134:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "136:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "138:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "140:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "140:38-47" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "142:15-26" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "146:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "148:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "149:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "151:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "152:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "154:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "154:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "155:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "155:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "156:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "157:13-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "157:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "158:13-23" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "159:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "162:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "165:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "166:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "168:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "169:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "171:18-28" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "175:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "185:131-140" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "187:39-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "190:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "191:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "191:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "194:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "197:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "200:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "207:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "209:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "224:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "226:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "229:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "232:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "234:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "256:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "257:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "258:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "258:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "259:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "259:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "262:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "265:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "268:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "271:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "274:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "275:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "277:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "277:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "280:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "280:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "282:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "283:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "286:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "289:11-21" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "297:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "297:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "299:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "299:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "308:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "311:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "314:12-22" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "336:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "339:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "340:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "340:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "342:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "342:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "342:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "354:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "357:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "359:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "366:20-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "367:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "370:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "373:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "376:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "378:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "379:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "382:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "385:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "386:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "388:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "388:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "391:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "394:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "397:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "400:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "403:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "406:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "409:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "412:14-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "415:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "418:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "420:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "421:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "421:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "424:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "427:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "430:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "433:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "433:15-24" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "435:19-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "436:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "439:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "441:4-13" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "442:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "445:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "479:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "482:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "485:4-14" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "tslib", - "loc": "488:4-14" - } - ], - "usedExports": [ - "__awaiter", - "__decorate", - "__extends", - "__generator", - "__spread" - ], - "providedExports": [ - "__extends", - "__assign", - "__rest", - "__decorate", - "__param", - "__metadata", - "__awaiter", - "__generator", - "__createBinding", - "__exportStar", - "__values", - "__read", - "__spread", - "__spreadArrays", - "__await", - "__asyncGenerator", - "__asyncDelegator", - "__asyncValues", - "__makeTemplateObject", - "__importStar", - "__importDefault", - "__classPrivateFieldGet", - "__classPrivateFieldSet" - ], - "optimizationBailout": [], - "depth": 4, - "source": "/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js", - "index": null, - "index2": null, - "size": 94, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+vuT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/VirtualizedComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-57" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-94" - }, - { - "moduleId": "/LPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-197" - }, - { - "moduleId": "/Mmo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-131" - }, - { - "moduleId": "08vz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-153" - }, - { - "moduleId": "0FyB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-84" - }, - { - "moduleId": "0s40", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-53" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-58" - }, - { - "moduleId": "1R2D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-62" - }, - { - "moduleId": "2a+Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "2ihB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-62" - }, - { - "moduleId": "352s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-41" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-79" - }, - { - "moduleId": "3bXa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Utilities", - "loc": "86:0-28" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Utilities", - "loc": "86:0-28" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-68" - }, - { - "moduleId": "5+9y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-77" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-119" - }, - { - "moduleId": "5YQ7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "62r0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-132" - }, - { - "moduleId": "6lyR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-85" - }, - { - "moduleId": "78K9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-106" - }, - { - "moduleId": "7XQV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "7c8E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "8X3N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "8dsf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-212" - }, - { - "moduleId": "8gx0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/keytips/IKeytipTransitionKey.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-39" - }, - { - "moduleId": "9BiO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "9DMD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-64" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-53" - }, - { - "moduleId": "AudO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "B6sm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-243" - }, - { - "moduleId": "Cv5W", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-50" - }, - { - "moduleId": "D2wA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "6:0-75" - }, - { - "moduleId": "D5CM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "DN5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-60" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-92" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-67" - }, - { - "moduleId": "Edjz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js 40ac453f57b388fb5909e41cda642d81", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-70" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-125" - }, - { - "moduleId": "GR0N", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-146" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "5:0-118" - }, - { - "moduleId": "H+CU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Utilities", - "loc": "3:0-44" - }, - { - "moduleId": "H7xo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Utilities", - "loc": "3:0-74" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-137" - }, - { - "moduleId": "HJn1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-152" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-58" - }, - { - "moduleId": "Hszu", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Utilities", - "loc": "3:0-67" - }, - { - "moduleId": "I16t", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Separator/Separator.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Utilities", - "loc": "17:0-61" - }, - { - "moduleId": "II1S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-88" - }, - { - "moduleId": "JQtT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-53" - }, - { - "moduleId": "JwHi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "LDcz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "Lk5B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "MObJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-104" - }, - { - "moduleId": "MnuA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-115" - }, - { - "moduleId": "MrJ8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-101" - }, - { - "moduleId": "N55B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-72" - }, - { - "moduleId": "NALk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-64" - }, - { - "moduleId": "O/Hb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-58" - }, - { - "moduleId": "OEkS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-50" - }, - { - "moduleId": "OQ9B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-94" - }, - { - "moduleId": "ORDb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-38" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-39" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-132" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-136" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-44" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-84" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-61" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-101" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-101" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-61" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-130" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Utilities", - "loc": "52:0-61" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-60" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-155" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-44" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "8:0-53" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-62" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "8:0-143" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-50" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-196" - }, - { - "moduleId": "Svtm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Utilities", - "loc": "3:0-63" - }, - { - "moduleId": "TY1D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-57" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-146" - }, - { - "moduleId": "UQTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-100" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-61" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-41" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-146" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-147" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-137" - }, - { - "moduleId": "YCuv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js 7fdf22fd1337c42d8194edbad1d09abf", - "module": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/FocusTrapZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-186" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-48" - }, - { - "moduleId": "Ypxj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "Yx+V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/MaskedTextField/MaskedTextField.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-70" - }, - { - "moduleId": "YzPW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-78" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-53" - }, - { - "moduleId": "aXXY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-72" - }, - { - "moduleId": "ayV1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-90" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-82" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "7:0-231" - }, - { - "moduleId": "cSUL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-41" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Utilities", - "loc": "3:0-134" - }, - { - "moduleId": "ddZB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-50" - }, - { - "moduleId": "eowI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-64" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "gNJI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "gTQK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js bc4d268370d78d06620ded50fe0ebdb7", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/BaseDecorator.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-63" - }, - { - "moduleId": "gh1x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-41" - }, - { - "moduleId": "grUF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/Calendar.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "7:0-133" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-99" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-50" - }, - { - "moduleId": "hrfb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "huR6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Utilities", - "loc": "3:0-75" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-64" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-53" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-268" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-52" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-52" - }, - { - "moduleId": "j0ZI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js 203b3c2710565ccd6d51e33cc174ca97", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-59" - }, - { - "moduleId": "jGuG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/LayerHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-38" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-57" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-83" - }, - { - "moduleId": "kL4D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-168" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-41" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-111" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-144" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-84" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-81" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-73" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-120" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-171" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-102" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-131" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-173" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-144" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-197" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-118" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-122" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-66" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-160" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-120" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-37" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-177" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-120" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-59" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-94" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "11:0-53" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-166" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-57" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-50" - }, - { - "moduleId": "lMOM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/KeytipContent.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-65" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "mUnp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-165" - }, - { - "moduleId": "nti7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-80" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Utilities", - "loc": "52:0-61" - }, - { - "moduleId": "oJku", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "oave", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "1:0-53" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-41" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-41" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-336" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-50" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-150" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-76" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-120" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-120" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-75" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-65" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-77" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "6:0-309" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-53" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-50" - }, - { - "moduleId": "qSvO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-44" - }, - { - "moduleId": "r2A9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipTree.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-47" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-62" - }, - { - "moduleId": "sGVl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-155" - }, - { - "moduleId": "sUmF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "4:0-70" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-61" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-134" - }, - { - "moduleId": "u06D", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-144" - }, - { - "moduleId": "uAzL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-158" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "2:0-53" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-301" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "4:0-62" - }, - { - "moduleId": "ulwq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "uqg9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-62" - }, - { - "moduleId": "uz3O", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-90" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "2:0-50" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-146" - }, - { - "moduleId": "w8xx", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-99" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-65" - }, - { - "moduleId": "xDyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Utilities", - "loc": "3:0-75" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-77" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-147" - }, - { - "moduleId": "y19T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "ypaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "ytt/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "5:0-77" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "1:0-41" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-58" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-146" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Utilities", - "loc": "3:0-87" - } - ], - "usedExports": false, - "providedExports": [ - "Async", - "AutoScroll", - "BaseComponent", - "nullRender", - "DelayedRender", - "EventGroup", - "FabricPerformance", - "GlobalSettings", - "KeyCodes", - "Rectangle", - "appendFunction", - "mergeAriaAttributeValues", - "findIndex", - "find", - "createArray", - "toMatrix", - "removeIndex", - "replaceElement", - "addElementAtIndex", - "flatten", - "arraysEqual", - "asAsync", - "assertNever", - "classNamesFunction", - "composeComponentAs", - "isControlled", - "css", - "Customizations", - "Customizer", - "CustomizerContext", - "customizable", - "useCustomizationSettings", - "mergeCustomizations", - "mergeSettings", - "mergeScopedSettings", - "elementContains", - "elementContainsAttribute", - "findElementRecursive", - "getChildren", - "getDocument", - "getParent", - "getRect", - "getVirtualParent", - "getWindow", - "isVirtualElement", - "on", - "portalContainsElement", - "raiseClick", - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute", - "setVirtualParent", - "extendComponent", - "getFirstFocusable", - "getLastFocusable", - "getFirstTabbable", - "getLastTabbable", - "focusFirstChild", - "getPreviousElement", - "getNextElement", - "isElementVisible", - "isElementTabbable", - "isElementFocusZone", - "isElementFocusSubZone", - "doesElementContainFocus", - "shouldWrapFocus", - "focusAsync", - "getFocusableByIndexPath", - "getElementIndexPath", - "getId", - "resetIds", - "getNativeElementProps", - "hoistMethods", - "unhoistMethods", - "hoistStatics", - "initializeComponentRef", - "initializeFocusRects", - "useFocusRects", - "FocusRects", - "getInitials", - "isDirectionalKeyCode", - "addDirectionalKeyCode", - "getLanguage", - "setLanguage", - "getDistanceBetweenPoints", - "fitContentToBounds", - "calculatePrecision", - "precisionRound", - "setMemoizeWeakMap", - "resetMemoizations", - "memoize", - "memoizeFunction", - "createMemoizer", - "merge", - "isIOS", - "modalize", - "assign", - "filteredAssign", - "mapEnumByName", - "shallowCompare", - "values", - "omit", - "isMac", - "hasHorizontalOverflow", - "hasVerticalOverflow", - "hasOverflow", - "baseElementEvents", - "baseElementProperties", - "htmlElementProperties", - "labelProperties", - "audioProperties", - "videoProperties", - "olProperties", - "liProperties", - "anchorProperties", - "buttonProperties", - "inputProperties", - "textAreaProperties", - "selectProperties", - "optionProperties", - "tableProperties", - "trProperties", - "thProperties", - "tdProperties", - "colGroupProperties", - "colProperties", - "formProperties", - "iframeProperties", - "imgProperties", - "imageProperties", - "divProperties", - "getNativeProps", - "composeRenderFunction", - "getResourceUrl", - "setBaseUrl", - "getRTL", - "setRTL", - "getRTLSafeKeyCode", - "safeRequestAnimationFrame", - "safeSetTimeout", - "DATA_IS_SCROLLABLE_ATTRIBUTE", - "allowScrollOnElement", - "allowOverscrollOnElement", - "disableBodyScroll", - "enableBodyScroll", - "getScrollbarWidth", - "findScrollableParent", - "SELECTION_CHANGE", - "SelectionMode", - "SelectionDirection", - "Selection", - "format", - "styled", - "warn", - "setWarningCallback", - "warnConditionallyRequiredProps", - "resetControlledWarnings", - "warnControlledUsage", - "warnDeprecations", - "warnMutuallyExclusive", - "isIE11", - "getPropsWithDefaults", - "setFocusVisibility", - "IsFocusVisibleClassName", - "setSSR", - "createMergedRef" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "import './version';\nexport * from '@uifabric/utilities';\n//# sourceMappingURL=Utilities.js.map" - }, - { - "id": "LXxW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayFilter.js", - "name": "./node_modules/lodash/_arrayFilter.js", - "index": 525, - "index2": 516, - "size": 632, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "issuerId": "MvSz", - "issuerName": "./node_modules/lodash/_getSymbols.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - }, - { - "id": "MvSz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "name": "./node_modules/lodash/_getSymbols.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MvSz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "module": "./node_modules/lodash/_getSymbols.js", - "moduleName": "./node_modules/lodash/_getSymbols.js", - "type": "cjs require", - "userRequest": "./_arrayFilter", - "loc": "1:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * A specialized version of `_.filter` for arrays without support for\n * iteratee shorthands.\n *\n * @private\n * @param {Array} [array] The array to iterate over.\n * @param {Function} predicate The function invoked per iteration.\n * @returns {Array} Returns the new filtered array.\n */\nfunction arrayFilter(array, predicate) {\n var index = -1,\n length = array == null ? 0 : array.length,\n resIndex = 0,\n result = [];\n\n while (++index < length) {\n var value = array[index];\n if (predicate(value, index, array)) {\n result[resIndex++] = value;\n }\n }\n return result;\n}\n\nmodule.exports = arrayFilter;\n" - }, - { - "id": "LatS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/index.js", - "index": 888, - "index2": 890, - "size": 199, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "issuerId": "ZSuZ", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "ZSuZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZSuZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/number/index", - "loc": "1:0-46" - }, - { - "moduleId": "ZSuZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldNumber.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/number/index", - "loc": "1:0-46" - } - ], - "usedExports": [ - "PropertyFieldNumber" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './IPropertyFieldNumber';\nexport * from './PropertyFieldNumber';\nexport * from './IPropertyFieldNumberHost';\nexport * from './PropertyFieldNumberHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "LcsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getPrototype.js", - "name": "./node_modules/lodash/_getPrototype.js", - "index": 530, - "index2": 521, - "size": 163, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "issuerId": "oCl/", - "issuerName": "./node_modules/lodash/_getSymbolsIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+iFO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_initCloneObject.js", - "module": "./node_modules/lodash/_initCloneObject.js", - "moduleName": "./node_modules/lodash/_initCloneObject.js", - "type": "cjs require", - "userRequest": "./_getPrototype", - "loc": "2:19-45" - }, - { - "moduleId": "YO3V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "module": "./node_modules/lodash/isPlainObject.js", - "moduleName": "./node_modules/lodash/isPlainObject.js", - "type": "cjs require", - "userRequest": "./_getPrototype", - "loc": "2:19-45" - }, - { - "moduleId": "oCl/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "module": "./node_modules/lodash/_getSymbolsIn.js", - "moduleName": "./node_modules/lodash/_getSymbolsIn.js", - "type": "cjs require", - "userRequest": "./_getPrototype", - "loc": "2:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var overArg = require('./_overArg');\n\n/** Built-in value references. */\nvar getPrototype = overArg(Object.getPrototypeOf, Object);\n\nmodule.exports = getPrototype;\n" - }, - { - "id": "Lcy0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionData.js", - "index": 10, - "index2": 7, - "size": 2319, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldCollectionData", - "loc": "3:0-46" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldCollectionData", - "loc": "3:0-46" - } - ], - "usedExports": [ - "PropertyFieldCollectionData" - ], - "providedExports": [ - "PropertyFieldCollectionData" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { PropertyPaneFieldType } from '@microsoft/sp-webpart-base';\nimport { PropertyFieldCollectionDataHost } from '.';\n/**\n * Property Field Collection Data Builder Class\n */\nvar PropertyFieldCollectionDataBuilder = /** @class */ (function () {\n function PropertyFieldCollectionDataBuilder(_targetProperty, _properties) {\n this.type = PropertyPaneFieldType.Custom;\n this.targetProperty = _targetProperty;\n this.properties = _properties;\n this.properties.onRender = this.render.bind(this);\n this.properties.onDispose = this.dispose.bind(this);\n }\n PropertyFieldCollectionDataBuilder.prototype.render = function (elem, context, changeCallback) {\n var props = this.properties;\n var element = React.createElement(PropertyFieldCollectionDataHost, __assign(__assign({}, props), { onChanged: this.onChanged.bind(this) }));\n ReactDOM.render(element, elem);\n if (changeCallback) {\n this._onChangeCallback = changeCallback;\n }\n };\n /**\n * Dispose the property field\n */\n PropertyFieldCollectionDataBuilder.prototype.dispose = function (elem) {\n ReactDOM.unmountComponentAtNode(elem);\n };\n /**\n * On field change event handler\n * @param value\n */\n PropertyFieldCollectionDataBuilder.prototype.onChanged = function (value) {\n if (this._onChangeCallback) {\n this._onChangeCallback(this.targetProperty, value);\n }\n };\n return PropertyFieldCollectionDataBuilder;\n}());\n/**\n * Property field\n * @param targetProperty\n * @param properties\n */\nexport function PropertyFieldCollectionData(targetProperty, properties) {\n return new PropertyFieldCollectionDataBuilder(targetProperty, __assign(__assign({}, properties), { onRender: null, onDispose: null }));\n}\n//# sourceMappingURL=PropertyFieldCollectionData.js.map" - }, - { - "id": "Lja1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearch/ListSearchWebPart.module.css", - "index": 287, - "index2": 283, - "size": 7579, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerId": "J5N+", - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.scss.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.scss.js" - }, - { - "id": "J5N+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "name": "./lib/webparts/listSearch/ListSearchWebPart.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "J5N+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.module.css", - "module": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.module.css", - "type": "cjs require", - "userRequest": "!!../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/postcss-loader/src/index.js??postcss!./ListSearchWebPart.module.css", - "loc": "1:14-161" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "exports = module.exports = require(\"../../../node_modules/css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".listSearch_3d392993{box-sizing:border-box;padding:0 8px}.listSearch_3d392993:after,.listSearch_3d392993:before{display:table;content:\\\"\\\";line-height:0}.listSearch_3d392993:after{clear:both}.listSearch_3d392993 .row_3d392993{margin:0 -8px;box-sizing:border-box}.listSearch_3d392993 .row_3d392993:after,.listSearch_3d392993 .row_3d392993:before{display:table;content:\\\"\\\";line-height:0}.listSearch_3d392993 .row_3d392993:after{clear:both}.listSearch_3d392993 .column_3d392993{position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearch_3d392993 .column_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993{width:100%}}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993{margin:0 -8px;box-sizing:border-box}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993:after,.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993:before{display:table;content:\\\"\\\";line-height:0}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993:after{clear:both}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993{margin-top:5px;position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterWithBtn_3d392993{width:83.3333333333%}}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993{margin-top:5px;position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColGeneralFilterOnly_3d392993{width:100%}}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993{margin-top:5px;position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993{width:16.6666666667%}}.listSearch_3d392993 .column_3d392993 .rowTopInformation_3d392993 .ColClearAll_3d392993 .btn_3d392993{width:100%}.listSearch_3d392993 .column_3d392993 .rowData_3d392993{margin:0 -8px;box-sizing:border-box}.listSearch_3d392993 .column_3d392993 .rowData_3d392993:after,.listSearch_3d392993 .column_3d392993 .rowData_3d392993:before{display:table;content:\\\"\\\";line-height:0}.listSearch_3d392993 .column_3d392993 .rowData_3d392993:after{clear:both}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993{position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%;padding-top:16px}[dir=ltr] .listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993{float:left}[dir=rtl] .listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993{float:right}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .ms-Grid_3d392993{padding:0}@media (min-width:640px){.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993{width:100%}}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .template_resultCount_3d392993{padding-left:10px;margin-bottom:10px;font-weight:600}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer_3d392993{margin:0}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer_3d392993{text-align:center}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993{display:inline-block;text-align:center}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 .inverted_3d392993 a{color:#fff}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 .standard_3d392993 a{color:\\\"[theme: themePrimary, default: #005a9e]\\\"}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul{display:inline-block;padding-left:0;margin:0}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li{display:inline}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li a{float:left;padding:5px;text-decoration:none}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li a i{font-size:10px}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li .active_3d392993{font-weight:700;color:\\\"[theme: themeDark, default: #005a9e]\\\";text-decoration:underline}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li .active__inverted_3d392993{font-weight:700;color:#fff;text-decoration:underline}.listSearch_3d392993 .column_3d392993 .rowData_3d392993 .colData_3d392993 .paginationContainer__paginationContainer__pagination_3d392993 ul li a:visited{color:inherit}.containerModal_3d392993{display:flex;-ms-flex-flow:\\\"column nowrap\\\";flex-flow:\\\"column nowrap\\\";-ms-flex-align:stretch;align-items:stretch;max-width:1200px}.containerModal_3d392993 .headerModal_3d392993{font-weight:700;-ms-flex:\\\"1 1 auto\\\";flex:\\\"1 1 auto\\\";border-top:4px solid;color:\\\"[theme:themePrimary, default: #0078d4]\\\";-ms-flex-align:center;align-items:center;font-size:x-large;padding-right:12px}.containerModal_3d392993 .bodyModal_3d392993{padding:0 24px 24px}.containerModal_3d392993 .bodyModal_3d392993 .propertyModal_3d392993{padding:10px 0;font-weight:700;color:\\\"[theme:themePrimary, default: #0078d4]\\\";font-size:larger}.collectionDataField_3d392993>span{display:none}.collectionDataField_3d392993 div[class^=invalid_]{border-color:#a80000!important}\", \"\"]);\n" - }, - { - "id": "Lk5B", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.js", - "index": null, - "index2": null, - "size": 253, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "issuerId": "iASX", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "AnrA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Slider.js", - "name": "./node_modules/office-ui-fabric-react/lib/Slider.js" - }, - { - "id": "iASX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "iASX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Slider", - "loc": "1:0-25" - }, - { - "moduleId": "iASX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Slider", - "loc": "1:0-25" - } - ], - "usedExports": false, - "providedExports": [ - "Slider" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { SliderBase } from './Slider.base';\nimport { getStyles } from './Slider.styles';\nexport var Slider = styled(SliderBase, getStyles, undefined, {\n scope: 'Slider',\n});\n//# sourceMappingURL=Slider.js.map" - }, - { - "id": "LnTA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/utilities.js", - "name": "./node_modules/@uifabric/foundation/lib/utilities.js", - "index": null, - "index2": null, - "size": 101, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "issuerId": "mVcb", - "issuerName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - }, - { - "id": "MObJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js" - }, - { - "id": "7Rmr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "name": "./node_modules/office-ui-fabric-react/lib/Foundation.js" - }, - { - "id": "1ptM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "name": "./node_modules/@uifabric/foundation/lib/index.js" - }, - { - "id": "mVcb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "name": "./node_modules/@uifabric/foundation/lib/createComponent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities", - "loc": "5:0-37" - }, - { - "moduleId": "477F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/slots.js", - "module": "./node_modules/@uifabric/foundation/lib/slots.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/slots.js", - "type": "harmony import specifier", - "userRequest": "./utilities", - "loc": "164:8-14" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities", - "loc": "6:0-37" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "./utilities", - "loc": "51:4-10" - }, - { - "moduleId": "mVcb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/createComponent.js", - "module": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/createComponent.js", - "type": "harmony import specifier", - "userRequest": "./utilities", - "loc": "87:12-18" - } - ], - "usedExports": false, - "providedExports": [ - "assign" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 9, - "source": "import { __assign } from 'tslib';\nexport var assign = __assign;\n//# sourceMappingURL=utilities.js.map" - }, - { - "id": "LoTk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Grid.js", - "name": "./node_modules/office-ui-fabric-react/lib/Grid.js", - "index": null, - "index2": null, - "size": 78, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Grid", - "loc": "33:0-23" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Grid", - "loc": "33:0-23" - } - ], - "usedExports": false, - "providedExports": [ - "ButtonGrid", - "Grid", - "ButtonGridCell", - "GridCell" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './utilities/ButtonGrid/index';\n//# sourceMappingURL=Grid.js.map" - }, - { - "id": "LrGI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js", - "index": 221, - "index2": 204, - "size": 1058, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "issuerId": "ZdmW", - "issuerName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "156:69-87" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsRow.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "186:32-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "216:64-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsList.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "288:19-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/DetailsHeader.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "467:266-284" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "564:163-188" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "626:14-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "766:78-96" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "85:60-78" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone.types", - "loc": "6:0-82" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "193:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "201:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "209:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "217:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "238:57-82" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "239:58-83" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "243:46-64" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "640:55-73" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "780:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "811:42-60" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "897:37-55" - }, - { - "moduleId": "CBcM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js 97cc16d35842e9e1cc141d6abb55fd8b", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "./FocusZone.types", - "loc": "1040:19-37" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "104:101-119" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "499:86-104" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "784:61-79" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone.types", - "loc": "2:0-34" - }, - { - "moduleId": "ZdmW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "module": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone.types", - "loc": "2:0-34" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "198:65-83" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-focus", - "loc": "86:182-200" - }, - { - "moduleId": "kVX/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/OverflowSet/OverflowSet.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/react-focus", - "loc": "86:212-230" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "138:117-135" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "18:104-122" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../FocusZone", - "loc": "87:65-83" - } - ], - "usedExports": [ - "FocusZoneDirection", - "FocusZoneTabbableElements" - ], - "providedExports": [ - "FocusZoneTabbableElements", - "FocusZoneDirection" - ], - "optimizationBailout": [], - "depth": 7, - "source": "/**\n * {@docCategory FocusZone}\n */\nexport var FocusZoneTabbableElements = {\n /** Tabbing is not allowed */\n none: 0,\n /** All tabbing action is allowed */\n all: 1,\n /** Tabbing is allowed only on input elements */\n inputOnly: 2,\n};\n/**\n * {@docCategory FocusZone}\n */\nexport var FocusZoneDirection;\n(function (FocusZoneDirection) {\n /** Only react to up/down arrows. */\n FocusZoneDirection[FocusZoneDirection[\"vertical\"] = 0] = \"vertical\";\n /** Only react to left/right arrows. */\n FocusZoneDirection[FocusZoneDirection[\"horizontal\"] = 1] = \"horizontal\";\n /** React to all arrows. */\n FocusZoneDirection[FocusZoneDirection[\"bidirectional\"] = 2] = \"bidirectional\";\n /**\n * React to all arrows. Navigate next item in DOM on right/down arrow keys and previous - left/up arrow keys.\n * Right and Left arrow keys are swapped in RTL mode.\n */\n FocusZoneDirection[FocusZoneDirection[\"domOrder\"] = 3] = \"domOrder\";\n})(FocusZoneDirection || (FocusZoneDirection = {}));\n//# sourceMappingURL=FocusZone.types.js.map" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "index": 916, - "index2": 912, - "size": 2862, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerId": "QxFg", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyPaneWebPartInformationHost", - "loc": "4:0-86" - }, - { - "moduleId": "6/e9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformation.js", - "type": "harmony import specifier", - "userRequest": "./PropertyPaneWebPartInformationHost", - "loc": "27:42-76" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyPaneWebPartInformationHost", - "loc": "4:0-53" - }, - { - "moduleId": "QxFg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyPaneWebPartInformationHost", - "loc": "4:0-53" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as strings from 'PropertyControlStrings';\nimport * as telemetry from '../../common/telemetry';\nvar PropertyPaneWebPartInformationHost = /** @class */ (function (_super) {\n __extends(PropertyPaneWebPartInformationHost, _super);\n function PropertyPaneWebPartInformationHost(props) {\n var _this = _super.call(this, props) || this;\n telemetry.track('PropertyWebPartInformation', {});\n return _this;\n }\n PropertyPaneWebPartInformationHost.prototype.render = function () {\n var iframeElm = null;\n if (this.props.videoProperties && this.props.videoProperties.embedLink !== \"\") {\n var linkProperties = {};\n linkProperties[\"src\"] = this.props.videoProperties.embedLink;\n if (this.props.videoProperties.height) {\n linkProperties[\"height\"] = this.props.videoProperties.height;\n }\n if (this.props.videoProperties.width) {\n linkProperties[\"width\"] = this.props.videoProperties.width;\n }\n for (var prop in this.props.videoProperties.properties) {\n linkProperties[\"prop\"] = this.props.videoProperties[prop];\n }\n iframeElm = React.createElement(\"iframe\", __assign({}, linkProperties));\n }\n return (React.createElement(\"div\", null,\n React.createElement(\"div\", { dangerouslySetInnerHTML: { __html: this.props.description } }),\n this.props.moreInfoLink && (React.createElement(\"div\", null,\n React.createElement(\"a\", { href: this.props.moreInfoLink, target: this.props.moreInfoLinkTarget }, strings.MoreInfoLabel))),\n iframeElm));\n };\n return PropertyPaneWebPartInformationHost;\n}(React.Component));\nexport default PropertyPaneWebPartInformationHost;\n//# sourceMappingURL=PropertyPaneWebPartInformationHost.js.map" - }, - { - "id": "Lucz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Layer/index.js", - "index": null, - "index2": null, - "size": 117, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "issuerId": "/b11", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Layer.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "/b11", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "name": "./node_modules/office-ui-fabric-react/lib/Layer.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/b11", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Layer.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Layer/index", - "loc": "2:0-41" - }, - { - "moduleId": "/b11", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Layer.js", - "module": "./node_modules/office-ui-fabric-react/lib/Layer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Layer.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Layer/index", - "loc": "2:0-41" - } - ], - "usedExports": false, - "providedExports": [ - "Layer", - "LayerBase", - "LayerHost" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './Layer';\nexport * from './Layer.base';\nexport * from './LayerHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "LuhZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "index": null, - "index2": null, - "size": 93, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ContextualMenu", - "loc": "18:0-33" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ContextualMenu", - "loc": "18:0-33" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony side effect evaluation", - "userRequest": "../../ContextualMenu", - "loc": "5:0-55" - }, - { - "moduleId": "TXqR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../ContextualMenu", - "loc": "4:0-77" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../ContextualMenu", - "loc": "6:0-54" - } - ], - "usedExports": false, - "providedExports": [ - "ContextualMenu", - "getSubmenuItems", - "canAnyMenuItemsCheck", - "ContextualMenuBase", - "DirectionalHint", - "ContextualMenuItemType", - "ContextualMenuItem", - "ContextualMenuItemBase", - "getMenuItemStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/ContextualMenu/index';\n//# sourceMappingURL=ContextualMenu.js.map" - }, - { - "id": "LxWX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js", - "index": null, - "index2": null, - "size": 142, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DatePicker.js", - "issuerId": "B3ms", - "issuerName": "./node_modules/office-ui-fabric-react/lib/DatePicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "B3ms", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DatePicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/DatePicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "B3ms", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DatePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/DatePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DatePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/DatePicker/index", - "loc": "1:0-46" - }, - { - "moduleId": "B3ms", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DatePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/DatePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/DatePicker.js", - "type": "harmony export imported specifier", - "userRequest": "./components/DatePicker/index", - "loc": "1:0-46" - } - ], - "usedExports": false, - "providedExports": [ - "DatePicker", - "DatePickerBase", - "DayOfWeek", - "DateRangeType", - "FirstWeekOfYear" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './DatePicker';\nexport * from './DatePicker.base';\nexport * from '../Calendar/Calendar.types';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "MKqn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "index": 282, - "index2": 275, - "size": 356, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "issuerId": "Mmr5", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js" - }, - { - "id": "Mmr5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Mmr5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "type": "cjs require", - "userRequest": "!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./FieldErrorMessage.module.css", - "loc": "1:14-147" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "exports = module.exports = require(\"../../../../../css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".errorMessage_49b1134c{font-size:12px;font-weight:400;color:#a80000;margin:0;padding-top:5px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.errorIcon_49b1134c{font-size:14px;margin-right:5px}\", \"\"]);\n" - }, - { - "id": "MLrP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "index": null, - "index2": null, - "size": 1169, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "issuerId": "1L4v", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "0s40", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js" - }, - { - "id": "1L4v", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardLocation.styles", - "loc": "6:0-107" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardLocation.styles", - "loc": "34:29-47" - }, - { - "moduleId": "cSUL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardLocation.styles", - "loc": "3:0-58" - }, - { - "moduleId": "cSUL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardLocation.styles", - "loc": "4:67-76" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardLocationGlobalClassNames", - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getGlobalClassNames, FontWeights } from '../../Styling';\nexport var DocumentCardLocationGlobalClassNames = {\n root: 'ms-DocumentCardLocation',\n};\nexport var getStyles = function (props) {\n var theme = props.theme, className = props.className;\n var palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(DocumentCardLocationGlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n fonts.small,\n {\n color: palette.themePrimary,\n display: 'block',\n fontWeight: FontWeights.semibold,\n overflow: 'hidden',\n padding: '8px 16px',\n position: 'relative',\n textDecoration: 'none',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n selectors: {\n ':hover': {\n color: palette.themePrimary,\n cursor: 'pointer',\n },\n },\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=DocumentCardLocation.styles.js.map" - }, - { - "id": "MMmD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isArrayLike.js", - "name": "./node_modules/lodash/isArrayLike.js", - "index": 516, - "index2": 507, - "size": 830, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "issuerId": "mTTR", - "issuerName": "./node_modules/lodash/keysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7GkX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "module": "./node_modules/lodash/keys.js", - "moduleName": "./node_modules/lodash/keys.js", - "type": "cjs require", - "userRequest": "./isArrayLike", - "loc": "3:18-42" - }, - { - "moduleId": "mTTR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "module": "./node_modules/lodash/keysIn.js", - "moduleName": "./node_modules/lodash/keysIn.js", - "type": "cjs require", - "userRequest": "./isArrayLike", - "loc": "3:18-42" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var isFunction = require('./isFunction'),\n isLength = require('./isLength');\n\n/**\n * Checks if `value` is array-like. A value is considered array-like if it's\n * not a function and has a `value.length` that's an integer greater than or\n * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n * @example\n *\n * _.isArrayLike([1, 2, 3]);\n * // => true\n *\n * _.isArrayLike(document.body.children);\n * // => true\n *\n * _.isArrayLike('abc');\n * // => true\n *\n * _.isArrayLike(_.noop);\n * // => false\n */\nfunction isArrayLike(value) {\n return value != null && isLength(value.length) && !isFunction(value);\n}\n\nmodule.exports = isArrayLike;\n" - }, - { - "id": "MObJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "index": null, - "index2": null, - "size": 807, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "issuerId": "oBFV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hR4L", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "type": "harmony side effect evaluation", - "userRequest": "./Text.view", - "loc": "2:0-39" - }, - { - "moduleId": "hR4L", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "type": "harmony import specifier", - "userRequest": "./Text.view", - "loc": "4:34-42" - }, - { - "moduleId": "oBFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Text.view", - "loc": "2:0-28" - }, - { - "moduleId": "oBFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Text.view", - "loc": "2:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "TextView" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __rest } from \"tslib\";\n/** @jsxRuntime classic */\n/** @jsx withSlots */\nimport * as React from 'react';\nimport { withSlots, getSlots } from '../../Foundation';\nimport { getNativeProps, htmlElementProperties } from '../../Utilities';\nexport var TextView = function (props) {\n if (React.Children.count(props.children) === 0) {\n return null;\n }\n var block = props.block, className = props.className, _a = props.as, RootType = _a === void 0 ? 'span' : _a, variant = props.variant, nowrap = props.nowrap, rest = __rest(props, [\"block\", \"className\", \"as\", \"variant\", \"nowrap\"]);\n var Slots = getSlots(props, {\n root: RootType,\n });\n return withSlots(Slots.root, __assign({}, getNativeProps(rest, htmlElementProperties)));\n};\n//# sourceMappingURL=Text.view.js.map" - }, - { - "id": "MP0q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContainsAttribute.js", - "index": null, - "index2": null, - "size": 120, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/elementContainsAttribute", - "loc": "2:0-47" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/elementContainsAttribute", - "loc": "2:0-47" - }, - { - "moduleId": "WgWP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/focus.js 3efaa387ce30c2160546f4ce58a99b7e", - "module": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "moduleName": "./node_modules/@uifabric/utilities/lib/focus.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "./dom/elementContainsAttribute", - "loc": "1:0-74" - } - ], - "usedExports": false, - "providedExports": [ - "elementContainsAttribute" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export { elementContainsAttribute } from '@fluentui/dom-utilities';\n//# sourceMappingURL=elementContainsAttribute.js.map" - }, - { - "id": "MYWL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/string.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/string.js", - "index": null, - "index2": null, - "size": 1275, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./string", - "loc": "50:0-25" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./string", - "loc": "50:0-25" - } - ], - "usedExports": false, - "providedExports": [ - "format" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "// Regex that finds { and } so they can be removed on a lookup for string format\nvar FORMAT_ARGS_REGEX = /[\\{\\}]/g;\n// Regex that finds {#} so it can be replaced by the arguments in string format\nvar FORMAT_REGEX = /\\{\\d+\\}/g;\n/**\n * String format method, used for scenarios where at runtime you\n * need to evaluate a formatted string given a tokenized string. This\n * usually only is needed in localization scenarios.\n\n * @example\n * ```tsx\n * \"I love {0} every {1}\".format(\"CXP\")\n * ```\n * will result in a Debug Exception.\n *\n * @public\n */\n// tslint:disable-next-line:no-any\nexport function format(s) {\n 'use strict';\n var values = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n values[_i - 1] = arguments[_i];\n }\n var args = values;\n // Callback match function\n function replace_func(match) {\n // looks up in the args\n // tslint:disable-next-line:no-any\n var replacement = args[match.replace(FORMAT_ARGS_REGEX, '')];\n // catches undefined in nondebug and null in debug and nondebug\n if (replacement === null || replacement === undefined) {\n replacement = '';\n }\n return replacement;\n }\n return s.replace(FORMAT_REGEX, replace_func);\n}\n//# sourceMappingURL=string.js.map" - }, - { - "id": "MZ0x", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.types.js", - "index": null, - "index2": null, - "size": 286, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "issuerId": "HDGI", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "DRN8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "name": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js" - }, - { - "id": "HDGI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HDGI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ScrollablePane.types", - "loc": "3:0-39" - }, - { - "moduleId": "HDGI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ScrollablePane.types", - "loc": "3:0-39" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ScrollablePane.types", - "loc": "4:0-64" - }, - { - "moduleId": "R6dk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "type": "harmony import specifier", - "userRequest": "./ScrollablePane.types", - "loc": "342:36-57" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony side effect evaluation", - "userRequest": "../ScrollablePane/ScrollablePane.types", - "loc": "5:0-79" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony import specifier", - "userRequest": "../ScrollablePane/ScrollablePane.types", - "loc": "299:25-46" - } - ], - "usedExports": false, - "providedExports": [ - "ScrollbarVisibility", - "ScrollablePaneContext" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import * as React from 'react';\n/**\n * {@docCategory ScrollablePane}\n */\nexport var ScrollbarVisibility = {\n auto: 'auto',\n always: 'always',\n};\nexport var ScrollablePaneContext = React.createContext({ scrollablePane: undefined });\n//# sourceMappingURL=ScrollablePane.types.js.map" - }, - { - "id": "MflU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/IPropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/IPropertyFieldSitePickerHost.js", - "index": 886, - "index2": 883, - "size": 56, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerId": "Bd+z", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldSitePickerHost", - "loc": "4:0-47" - }, - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldSitePickerHost", - "loc": "4:0-47" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldSitePickerHost.js.map" - }, - { - "id": "Mg3H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "name": "./node_modules/@uifabric/icons/lib/version.js", - "index": null, - "index2": null, - "size": 265, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "47:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('@uifabric/icons', '7.5.23');\n//# sourceMappingURL=version.js.map" - }, - { - "id": "MgI6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "index": null, - "index2": null, - "size": 18726, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerId": "hLc7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./Suggestions/Suggestions", - "loc": "7:0-56" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions/Suggestions", - "loc": "38:39-50" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Suggestions/Suggestions", - "loc": "1:0-42" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Suggestions/Suggestions", - "loc": "1:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "Suggestions" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, KeyCodes, classNamesFunction, css, styled, } from '../../../Utilities';\nimport { CommandButton } from '../../../Button';\nimport { Spinner } from '../../../Spinner';\nimport { Announced } from '../../../Announced';\nimport { SuggestionActionType, } from './Suggestions.types';\nimport { SuggestionsItem } from './SuggestionsItem';\nimport { getStyles as suggestionsItemStyles } from './SuggestionsItem.styles';\nimport * as stylesImport from './Suggestions.scss';\nvar legacyStyles = stylesImport;\nvar getClassNames = classNamesFunction();\nvar StyledSuggestionsItem = styled(SuggestionsItem, suggestionsItemStyles, undefined, { scope: 'SuggestionItem' });\n/**\n * {@docCategory Pickers}\n */\nvar Suggestions = /** @class */ (function (_super) {\n __extends(Suggestions, _super);\n function Suggestions(suggestionsProps) {\n var _this = _super.call(this, suggestionsProps) || this;\n _this._forceResolveButton = React.createRef();\n _this._searchForMoreButton = React.createRef();\n _this._selectedElement = React.createRef();\n /**\n * Returns true if the event was handled, false otherwise\n */\n _this.tryHandleKeyDown = function (keyCode, currentSuggestionIndex) {\n var isEventHandled = false;\n var newSelectedActionType = null;\n var currentSelectedAction = _this.state.selectedActionType;\n var suggestionLength = _this.props.suggestions.length;\n if (keyCode === KeyCodes.down) {\n switch (currentSelectedAction) {\n case SuggestionActionType.forceResolve:\n if (suggestionLength > 0) {\n _this._refocusOnSuggestions(keyCode);\n newSelectedActionType = SuggestionActionType.none;\n }\n else if (_this._searchForMoreButton.current) {\n newSelectedActionType = SuggestionActionType.searchMore;\n }\n else {\n newSelectedActionType = SuggestionActionType.forceResolve;\n }\n break;\n case SuggestionActionType.searchMore:\n if (_this._forceResolveButton.current) {\n newSelectedActionType = SuggestionActionType.forceResolve;\n }\n else if (suggestionLength > 0) {\n _this._refocusOnSuggestions(keyCode);\n newSelectedActionType = SuggestionActionType.none;\n }\n else {\n newSelectedActionType = SuggestionActionType.searchMore;\n }\n break;\n case SuggestionActionType.none:\n if (currentSuggestionIndex === -1 && _this._forceResolveButton.current) {\n newSelectedActionType = SuggestionActionType.forceResolve;\n }\n break;\n }\n }\n else if (keyCode === KeyCodes.up) {\n switch (currentSelectedAction) {\n case SuggestionActionType.forceResolve:\n if (_this._searchForMoreButton.current) {\n newSelectedActionType = SuggestionActionType.searchMore;\n }\n else if (suggestionLength > 0) {\n _this._refocusOnSuggestions(keyCode);\n newSelectedActionType = SuggestionActionType.none;\n }\n break;\n case SuggestionActionType.searchMore:\n if (suggestionLength > 0) {\n _this._refocusOnSuggestions(keyCode);\n newSelectedActionType = SuggestionActionType.none;\n }\n else if (_this._forceResolveButton.current) {\n newSelectedActionType = SuggestionActionType.forceResolve;\n }\n break;\n case SuggestionActionType.none:\n if (currentSuggestionIndex === -1 && _this._searchForMoreButton.current) {\n newSelectedActionType = SuggestionActionType.searchMore;\n }\n break;\n }\n }\n if (newSelectedActionType !== null) {\n _this.setState({ selectedActionType: newSelectedActionType });\n isEventHandled = true;\n }\n return isEventHandled;\n };\n _this._getAlertText = function () {\n var _a = _this.props, isLoading = _a.isLoading, isSearching = _a.isSearching, suggestions = _a.suggestions, suggestionsAvailableAlertText = _a.suggestionsAvailableAlertText, noResultsFoundText = _a.noResultsFoundText;\n if (!isLoading && !isSearching) {\n if (suggestions.length > 0) {\n return suggestionsAvailableAlertText || '';\n }\n if (noResultsFoundText) {\n return noResultsFoundText;\n }\n }\n return '';\n };\n _this._getMoreResults = function () {\n if (_this.props.onGetMoreResults) {\n _this.props.onGetMoreResults();\n }\n };\n _this._forceResolve = function () {\n if (_this.props.createGenericItem) {\n _this.props.createGenericItem();\n }\n };\n _this._shouldShowForceResolve = function () {\n return _this.props.showForceResolve ? _this.props.showForceResolve() : false;\n };\n _this._onClickTypedSuggestionsItem = function (item, index) {\n return function (ev) {\n _this.props.onSuggestionClick(ev, item, index);\n };\n };\n _this._refocusOnSuggestions = function (keyCode) {\n if (typeof _this.props.refocusSuggestions === 'function') {\n _this.props.refocusSuggestions(keyCode);\n }\n };\n _this._onRemoveTypedSuggestionsItem = function (item, index) {\n return function (ev) {\n var onSuggestionRemove = _this.props.onSuggestionRemove;\n onSuggestionRemove(ev, item, index);\n ev.stopPropagation();\n };\n };\n initializeComponentRef(_this);\n _this.state = {\n selectedActionType: SuggestionActionType.none,\n };\n return _this;\n }\n Suggestions.prototype.componentDidMount = function () {\n this.scrollSelected();\n this.activeSelectedElement = this._selectedElement ? this._selectedElement.current : null;\n };\n Suggestions.prototype.componentDidUpdate = function () {\n // Only scroll to selected element if the selected element has changed. Otherwise do nothing.\n // This prevents some odd behavior where scrolling the active element out of view and clicking on a selected element\n // will trigger a focus event and not give the clicked element the click.\n if (this._selectedElement.current && this.activeSelectedElement !== this._selectedElement.current) {\n this.scrollSelected();\n this.activeSelectedElement = this._selectedElement.current;\n }\n };\n Suggestions.prototype.render = function () {\n var _a, _b;\n var _this = this;\n var _c = this.props, forceResolveText = _c.forceResolveText, mostRecentlyUsedHeaderText = _c.mostRecentlyUsedHeaderText, searchForMoreText = _c.searchForMoreText, className = _c.className, moreSuggestionsAvailable = _c.moreSuggestionsAvailable, noResultsFoundText = _c.noResultsFoundText, suggestions = _c.suggestions, isLoading = _c.isLoading, isSearching = _c.isSearching, loadingText = _c.loadingText, onRenderNoResultFound = _c.onRenderNoResultFound, searchingText = _c.searchingText, isMostRecentlyUsedVisible = _c.isMostRecentlyUsedVisible, resultsMaximumNumber = _c.resultsMaximumNumber, resultsFooterFull = _c.resultsFooterFull, resultsFooter = _c.resultsFooter, _d = _c.isResultsFooterVisible, isResultsFooterVisible = _d === void 0 ? true : _d, suggestionsHeaderText = _c.suggestionsHeaderText, suggestionsClassName = _c.suggestionsClassName, theme = _c.theme, styles = _c.styles, suggestionsListId = _c.suggestionsListId;\n // TODO\n // Clean this up by leaving only the first part after removing support for SASS.\n // Currently we can not remove the SASS styles from Suggestions class because it\n // might be used by consumers separately from pickers extending from BasePicker\n // and have not used the new 'styles' prop. Because it's expecting a type parameter,\n // we can not use the 'styled' function without adding some helpers which can break\n // downstream consumers who did not use the new helpers.\n // We check for 'styles' prop which is going to be injected by the 'styled' HOC\n // in BasePicker when the typed Suggestions class is ready to be rendered. If the check\n // passes we can use the CSS-in-JS styles. If the check fails (ex: custom picker),\n // then we just use the old SASS styles instead.\n this._classNames = styles\n ? getClassNames(styles, {\n theme: theme,\n className: className,\n suggestionsClassName: suggestionsClassName,\n forceResolveButtonSelected: this.state.selectedActionType === SuggestionActionType.forceResolve,\n searchForMoreButtonSelected: this.state.selectedActionType === SuggestionActionType.searchMore,\n })\n : {\n root: css('ms-Suggestions', className, legacyStyles.root),\n title: css('ms-Suggestions-title', legacyStyles.suggestionsTitle),\n searchForMoreButton: css('ms-SearchMore-button', legacyStyles.actionButton, (_a = {},\n _a['is-selected ' + legacyStyles.buttonSelected] = this.state.selectedActionType === SuggestionActionType.searchMore,\n _a)),\n forceResolveButton: css('ms-forceResolve-button', legacyStyles.actionButton, (_b = {},\n _b['is-selected ' + legacyStyles.buttonSelected] = this.state.selectedActionType === SuggestionActionType.forceResolve,\n _b)),\n suggestionsAvailable: css('ms-Suggestions-suggestionsAvailable', legacyStyles.suggestionsAvailable),\n suggestionsContainer: css('ms-Suggestions-container', legacyStyles.suggestionsContainer, suggestionsClassName),\n noSuggestions: css('ms-Suggestions-none', legacyStyles.suggestionsNone),\n };\n var spinnerStyles = this._classNames.subComponentStyles\n ? this._classNames.subComponentStyles.spinner\n : undefined;\n // TODO: cleanup after refactor of pickers to composition pattern and remove SASS support.\n var spinnerClassNameOrStyles = styles\n ? { styles: spinnerStyles }\n : { className: css('ms-Suggestions-spinner', legacyStyles.suggestionsSpinner) };\n var noResults = function () {\n return noResultsFoundText ? React.createElement(\"div\", { className: _this._classNames.noSuggestions }, noResultsFoundText) : null;\n };\n // MostRecently Used text should supercede the header text if it's there and available.\n var headerText = suggestionsHeaderText;\n if (isMostRecentlyUsedVisible && mostRecentlyUsedHeaderText) {\n headerText = mostRecentlyUsedHeaderText;\n }\n var footerTitle = undefined;\n if (isResultsFooterVisible) {\n footerTitle = suggestions.length >= resultsMaximumNumber ? resultsFooterFull : resultsFooter;\n }\n var hasNoSuggestions = (!suggestions || !suggestions.length) && !isLoading;\n var divProps = hasNoSuggestions || isLoading ? { role: 'dialog', id: suggestionsListId } : {};\n var forceResolveId = this.state.selectedActionType === SuggestionActionType.forceResolve ? 'sug-selectedAction' : undefined;\n var searchForMoreId = this.state.selectedActionType === SuggestionActionType.searchMore ? 'sug-selectedAction' : undefined;\n return (React.createElement(\"div\", __assign({ className: this._classNames.root }, divProps),\n React.createElement(Announced, { message: this._getAlertText(), \"aria-live\": \"polite\" }),\n headerText ? React.createElement(\"div\", { className: this._classNames.title }, headerText) : null,\n forceResolveText && this._shouldShowForceResolve() && (React.createElement(CommandButton, { componentRef: this._forceResolveButton, className: this._classNames.forceResolveButton, id: forceResolveId, onClick: this._forceResolve, \"data-automationid\": 'sug-forceResolve' }, forceResolveText)),\n isLoading && React.createElement(Spinner, __assign({}, spinnerClassNameOrStyles, { label: loadingText })),\n hasNoSuggestions\n ? onRenderNoResultFound\n ? onRenderNoResultFound(undefined, noResults)\n : noResults()\n : this._renderSuggestions(),\n searchForMoreText && moreSuggestionsAvailable && (React.createElement(CommandButton, { componentRef: this._searchForMoreButton, className: this._classNames.searchForMoreButton, iconProps: { iconName: 'Search' }, id: searchForMoreId, onClick: this._getMoreResults, \"data-automationid\": 'sug-searchForMore' }, searchForMoreText)),\n isSearching ? React.createElement(Spinner, __assign({}, spinnerClassNameOrStyles, { label: searchingText })) : null,\n footerTitle && !moreSuggestionsAvailable && !isMostRecentlyUsedVisible && !isSearching ? (React.createElement(\"div\", { className: this._classNames.title }, footerTitle(this.props))) : null));\n };\n Suggestions.prototype.hasSuggestedAction = function () {\n return !!this._searchForMoreButton.current || !!this._forceResolveButton.current;\n };\n Suggestions.prototype.hasSuggestedActionSelected = function () {\n return this.state.selectedActionType !== SuggestionActionType.none;\n };\n Suggestions.prototype.executeSelectedAction = function () {\n switch (this.state.selectedActionType) {\n case SuggestionActionType.forceResolve:\n this._forceResolve();\n break;\n case SuggestionActionType.searchMore:\n this._getMoreResults();\n break;\n }\n };\n Suggestions.prototype.focusAboveSuggestions = function () {\n if (this._forceResolveButton.current) {\n this.setState({ selectedActionType: SuggestionActionType.forceResolve });\n }\n else if (this._searchForMoreButton.current) {\n this.setState({ selectedActionType: SuggestionActionType.searchMore });\n }\n };\n Suggestions.prototype.focusBelowSuggestions = function () {\n if (this._searchForMoreButton.current) {\n this.setState({ selectedActionType: SuggestionActionType.searchMore });\n }\n else if (this._forceResolveButton.current) {\n this.setState({ selectedActionType: SuggestionActionType.forceResolve });\n }\n };\n Suggestions.prototype.focusSearchForMoreButton = function () {\n if (this._searchForMoreButton.current) {\n this._searchForMoreButton.current.focus();\n }\n };\n // TODO get the element to scroll into view properly regardless of direction.\n Suggestions.prototype.scrollSelected = function () {\n if (this._selectedElement.current && this._selectedElement.current.scrollIntoView !== undefined) {\n this._selectedElement.current.scrollIntoView(false);\n }\n };\n Suggestions.prototype._renderSuggestions = function () {\n var _this = this;\n var _a = this.props, isMostRecentlyUsedVisible = _a.isMostRecentlyUsedVisible, mostRecentlyUsedHeaderText = _a.mostRecentlyUsedHeaderText, onRenderSuggestion = _a.onRenderSuggestion, removeSuggestionAriaLabel = _a.removeSuggestionAriaLabel, suggestionsItemClassName = _a.suggestionsItemClassName, resultsMaximumNumber = _a.resultsMaximumNumber, showRemoveButtons = _a.showRemoveButtons, suggestionsContainerAriaLabel = _a.suggestionsContainerAriaLabel, suggestionsHeaderText = _a.suggestionsHeaderText, suggestionsListId = _a.suggestionsListId;\n var suggestions = this.props.suggestions;\n var StyledTypedSuggestionsItem = StyledSuggestionsItem;\n var selectedIndex = -1;\n suggestions.some(function (element, index) {\n if (element.selected) {\n selectedIndex = index;\n return true;\n }\n return false;\n });\n if (resultsMaximumNumber) {\n suggestions =\n selectedIndex >= resultsMaximumNumber\n ? suggestions.slice(selectedIndex - resultsMaximumNumber + 1, selectedIndex + 1)\n : suggestions.slice(0, resultsMaximumNumber);\n }\n if (suggestions.length === 0) {\n return null;\n }\n // MostRecently Used text should supercede the header text if it's there and available.\n var headerText = suggestionsHeaderText;\n if (isMostRecentlyUsedVisible && mostRecentlyUsedHeaderText) {\n headerText = mostRecentlyUsedHeaderText;\n }\n return (React.createElement(\"div\", { className: this._classNames.suggestionsContainer, id: suggestionsListId, role: \"listbox\", \"aria-label\": suggestionsContainerAriaLabel || headerText }, suggestions.map(function (suggestion, index) { return (React.createElement(\"div\", { ref: suggestion.selected ? _this._selectedElement : undefined, key: suggestion.item.key ? suggestion.item.key : index, role: \"presentation\" },\n React.createElement(StyledTypedSuggestionsItem, { suggestionModel: suggestion, RenderSuggestion: onRenderSuggestion, onClick: _this._onClickTypedSuggestionsItem(suggestion.item, index), className: suggestionsItemClassName, showRemoveButton: showRemoveButtons, removeButtonAriaLabel: removeSuggestionAriaLabel, onRemoveItem: _this._onRemoveTypedSuggestionsItem(suggestion.item, index), id: 'sug-' + index }))); })));\n };\n return Suggestions;\n}(React.Component));\nexport { Suggestions };\n//# sourceMappingURL=Suggestions.js.map" - }, - { - "id": "MjwZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Selection.js", - "name": "./node_modules/office-ui-fabric-react/lib/Selection.js", - "index": null, - "index2": null, - "size": 82, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Hc8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/GroupedList.js" - }, - { - "id": "D63i", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedList.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupedListSection.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/GroupedList/GroupHeader.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Selection", - "loc": "69:0-28" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Selection", - "loc": "69:0-28" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Selection", - "loc": "7:0-74" - }, - { - "moduleId": "jsUq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/BaseSelectedItemsList.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Selection", - "loc": "3:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Selection", - "loc": "4:0-48" - } - ], - "usedExports": false, - "providedExports": [ - "SELECTION_CHANGE", - "SelectionDirection", - "SelectionMode", - "Selection", - "SelectionZone" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './utilities/selection/index';\n//# sourceMappingURL=Selection.js.map" - }, - { - "id": "Mmr5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.css", - "index": 281, - "index2": 276, - "size": 572, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "N3ZD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "type": "cjs require", - "userRequest": "./FieldErrorMessage.module.css", - "loc": "2:0-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./FieldErrorMessage.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "MnuA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js", - "index": null, - "index2": null, - "size": 14535, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "issuerId": "W+ks", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "EJsv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Autofill.js", - "name": "./node_modules/office-ui-fabric-react/lib/Autofill.js" - }, - { - "id": "W+ks", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Autofill/index", - "loc": "504:67-75" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Autofill/index", - "loc": "780:40-48" - }, - { - "moduleId": "W+ks", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Autofill", - "loc": "1:0-27" - }, - { - "moduleId": "W+ks", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Autofill", - "loc": "1:0-27" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Autofill", - "loc": "203:67-75" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../Autofill/index", - "loc": "131:36-44" - }, - { - "moduleId": "wEva", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/AutoFill/BaseAutoFill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/AutoFill/BaseAutoFill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/AutoFill/BaseAutoFill.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Autofill/Autofill", - "loc": "2:0-40" - }, - { - "moduleId": "wEva", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/AutoFill/BaseAutoFill.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/AutoFill/BaseAutoFill.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/AutoFill/BaseAutoFill.js", - "type": "harmony export imported specifier", - "userRequest": "../../Autofill/Autofill", - "loc": "2:0-40" - } - ], - "usedExports": false, - "providedExports": [ - "Autofill", - "BaseAutoFill" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { KeyCodes, getNativeProps, inputProperties, isIE11, Async, initializeComponentRef } from '../../Utilities';\nvar SELECTION_FORWARD = 'forward';\nvar SELECTION_BACKWARD = 'backward';\n/**\n * {@docCategory Autofill}\n */\nvar Autofill = /** @class */ (function (_super) {\n __extends(Autofill, _super);\n function Autofill(props) {\n var _this = _super.call(this, props) || this;\n _this._inputElement = React.createRef();\n _this._autoFillEnabled = true;\n _this._isComposing = false;\n // Composition events are used when the character/text requires several keystrokes to be completed.\n // Some examples of this are mobile text input and langauges like Japanese or Arabic.\n // Find out more at https://developer.mozilla.org/en-US/docs/Web/Events/compositionstart\n _this._onCompositionStart = function (ev) {\n _this._isComposing = true;\n _this._autoFillEnabled = false;\n };\n // Composition events are used when the character/text requires several keystrokes to be completed.\n // Some examples of this are mobile text input and languages like Japanese or Arabic.\n // Find out more at https://developer.mozilla.org/en-US/docs/Web/Events/compositionstart\n _this._onCompositionUpdate = function () {\n if (isIE11()) {\n _this._updateValue(_this._getCurrentInputValue(), true);\n }\n };\n // Composition events are used when the character/text requires several keystrokes to be completed.\n // Some examples of this are mobile text input and langauges like Japanese or Arabic.\n // Find out more at https://developer.mozilla.org/en-US/docs/Web/Events/compositionstart\n _this._onCompositionEnd = function (ev) {\n var inputValue = _this._getCurrentInputValue();\n _this._tryEnableAutofill(inputValue, _this.value, false, true);\n _this._isComposing = false;\n // Due to timing, this needs to be async, otherwise no text will be selected.\n _this._async.setTimeout(function () {\n // it's technically possible that the value of _isComposing is reset during this timeout,\n // so explicitly trigger this with composing=true here, since it is supposed to be the\n // update for composition end\n _this._updateValue(_this._getCurrentInputValue(), false);\n }, 0);\n };\n _this._onClick = function () {\n if (_this._value && _this._value !== '' && _this._autoFillEnabled) {\n _this._autoFillEnabled = false;\n }\n };\n _this._onKeyDown = function (ev) {\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n }\n // If the event is actively being composed, then don't alert autofill.\n // Right now typing does not have isComposing, once that has been fixed any should be removed.\n if (!ev.nativeEvent.isComposing) {\n switch (ev.which) {\n case KeyCodes.backspace:\n _this._autoFillEnabled = false;\n break;\n case KeyCodes.left:\n case KeyCodes.right:\n if (_this._autoFillEnabled) {\n _this._value = _this.state.displayValue;\n _this._autoFillEnabled = false;\n }\n break;\n default:\n if (!_this._autoFillEnabled) {\n if (_this.props.enableAutofillOnKeyPress.indexOf(ev.which) !== -1) {\n _this._autoFillEnabled = true;\n }\n }\n break;\n }\n }\n };\n _this._onInputChanged = function (ev) {\n var value = _this._getCurrentInputValue(ev);\n if (!_this._isComposing) {\n _this._tryEnableAutofill(value, _this._value, ev.nativeEvent.isComposing);\n }\n // If it is not IE11 and currently composing, update the value\n if (!(isIE11() && _this._isComposing)) {\n var nativeEventComposing = ev.nativeEvent.isComposing;\n var isComposing = nativeEventComposing === undefined ? _this._isComposing : nativeEventComposing;\n _this._updateValue(value, isComposing);\n }\n };\n _this._onChanged = function () {\n // Swallow this event, we don't care about it\n // We must provide it because React PropTypes marks it as required, but onInput serves the correct purpose\n return;\n };\n /**\n * Updates the current input value as well as getting a new display value.\n * @param newValue - The new value from the input\n */\n _this._updateValue = function (newValue, composing) {\n // Only proceed if the value is nonempty and is different from the old value\n // This is to work around the fact that, in IE 11, inputs with a placeholder fire an onInput event on focus\n if (!newValue && newValue === _this._value) {\n return;\n }\n _this._value = _this.props.onInputChange ? _this.props.onInputChange(newValue, composing) : newValue;\n _this.setState({\n displayValue: _this._getDisplayValue(_this._value, _this.props.suggestedDisplayValue),\n }, function () { return _this._notifyInputChange(_this._value, composing); });\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._value = props.defaultVisibleValue || '';\n _this.state = {\n displayValue: props.defaultVisibleValue || '',\n };\n return _this;\n }\n Object.defineProperty(Autofill.prototype, \"cursorLocation\", {\n get: function () {\n if (this._inputElement.current) {\n var inputElement = this._inputElement.current;\n if (inputElement.selectionDirection !== SELECTION_FORWARD) {\n return inputElement.selectionEnd;\n }\n else {\n return inputElement.selectionStart;\n }\n }\n else {\n return -1;\n }\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(Autofill.prototype, \"isValueSelected\", {\n get: function () {\n return Boolean(this.inputElement && this.inputElement.selectionStart !== this.inputElement.selectionEnd);\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(Autofill.prototype, \"value\", {\n get: function () {\n return this._value;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(Autofill.prototype, \"selectionStart\", {\n get: function () {\n return this._inputElement.current ? this._inputElement.current.selectionStart : -1;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(Autofill.prototype, \"selectionEnd\", {\n get: function () {\n return this._inputElement.current ? this._inputElement.current.selectionEnd : -1;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(Autofill.prototype, \"inputElement\", {\n get: function () {\n return this._inputElement.current;\n },\n enumerable: true,\n configurable: true\n });\n Autofill.prototype.UNSAFE_componentWillReceiveProps = function (nextProps) {\n if (this.props.updateValueInWillReceiveProps) {\n var updatedInputValue = this.props.updateValueInWillReceiveProps();\n // Don't update if we have a null value or the value isn't changing\n // the value should still update if an empty string is passed in\n if (updatedInputValue !== null && updatedInputValue !== this._value) {\n this._value = updatedInputValue;\n }\n }\n var newDisplayValue = this._getDisplayValue(this._value, nextProps.suggestedDisplayValue);\n if (typeof newDisplayValue === 'string') {\n this.setState({ displayValue: newDisplayValue });\n }\n };\n Autofill.prototype.componentDidUpdate = function () {\n var value = this._value;\n var _a = this.props, suggestedDisplayValue = _a.suggestedDisplayValue, shouldSelectFullInputValueInComponentDidUpdate = _a.shouldSelectFullInputValueInComponentDidUpdate, preventValueSelection = _a.preventValueSelection;\n var differenceIndex = 0;\n if (preventValueSelection) {\n return;\n }\n if (this._autoFillEnabled &&\n value &&\n suggestedDisplayValue &&\n this._doesTextStartWith(suggestedDisplayValue, value)) {\n var shouldSelectFullRange = false;\n if (shouldSelectFullInputValueInComponentDidUpdate) {\n shouldSelectFullRange = shouldSelectFullInputValueInComponentDidUpdate();\n }\n if (shouldSelectFullRange && this._inputElement.current) {\n this._inputElement.current.setSelectionRange(0, suggestedDisplayValue.length, SELECTION_BACKWARD);\n }\n else {\n while (differenceIndex < value.length &&\n value[differenceIndex].toLocaleLowerCase() === suggestedDisplayValue[differenceIndex].toLocaleLowerCase()) {\n differenceIndex++;\n }\n if (differenceIndex > 0 && this._inputElement.current) {\n this._inputElement.current.setSelectionRange(differenceIndex, suggestedDisplayValue.length, SELECTION_BACKWARD);\n }\n }\n }\n };\n Autofill.prototype.componentWillUnmount = function () {\n this._async.dispose();\n };\n Autofill.prototype.render = function () {\n var displayValue = this.state.displayValue;\n var nativeProps = getNativeProps(this.props, inputProperties);\n return (React.createElement(\"input\", __assign({ autoCapitalize: \"off\", autoComplete: \"off\", \"aria-autocomplete\": 'both' }, nativeProps, { ref: this._inputElement, value: displayValue, onCompositionStart: this._onCompositionStart, onCompositionUpdate: this._onCompositionUpdate, onCompositionEnd: this._onCompositionEnd, \n // TODO (Fabric 8?) - switch to calling only onChange. See notes in TextField._onInputChange.\n onChange: this._onChanged, onInput: this._onInputChanged, onKeyDown: this._onKeyDown, onClick: this.props.onClick ? this.props.onClick : this._onClick, \"data-lpignore\": true })));\n };\n Autofill.prototype.focus = function () {\n this._inputElement.current && this._inputElement.current.focus();\n };\n Autofill.prototype.clear = function () {\n this._autoFillEnabled = true;\n this._updateValue('', false);\n this._inputElement.current && this._inputElement.current.setSelectionRange(0, 0);\n };\n Autofill.prototype._getCurrentInputValue = function (ev) {\n if (ev && ev.target && ev.target.value) {\n return ev.target.value;\n }\n else if (this.inputElement && this.inputElement.value) {\n return this.inputElement.value;\n }\n else {\n return '';\n }\n };\n /**\n * Attempts to enable autofill. Whether or not autofill is enabled depends on the input value,\n * whether or not any text is selected, and only if the new input value is longer than the old input value.\n * Autofill should never be set to true if the value is composing. Once compositionEnd is called, then\n * it should be completed.\n * See https://developer.mozilla.org/en-US/docs/Web/API/CompositionEvent for more information on composition.\n * @param newValue - new input value\n * @param oldValue - old input value\n * @param isComposing - if true then the text is actively being composed and it has not completed.\n * @param isComposed - if the text is a composed text value.\n */\n Autofill.prototype._tryEnableAutofill = function (newValue, oldValue, isComposing, isComposed) {\n if (!isComposing &&\n newValue &&\n this._inputElement.current &&\n this._inputElement.current.selectionStart === newValue.length &&\n !this._autoFillEnabled &&\n (newValue.length > oldValue.length || isComposed)) {\n this._autoFillEnabled = true;\n }\n };\n Autofill.prototype._notifyInputChange = function (newValue, composing) {\n if (this.props.onInputValueChange) {\n this.props.onInputValueChange(newValue, composing);\n }\n };\n /**\n * Returns a string that should be used as the display value.\n * It evaluates this based on whether or not the suggested value starts with the input value\n * and whether or not autofill is enabled.\n * @param inputValue - the value that the input currently has.\n * @param suggestedDisplayValue - the possible full value\n */\n Autofill.prototype._getDisplayValue = function (inputValue, suggestedDisplayValue) {\n var displayValue = inputValue;\n if (suggestedDisplayValue &&\n inputValue &&\n this._doesTextStartWith(suggestedDisplayValue, displayValue) &&\n this._autoFillEnabled) {\n displayValue = suggestedDisplayValue;\n }\n return displayValue;\n };\n Autofill.prototype._doesTextStartWith = function (text, startWith) {\n if (!text || !startWith) {\n return false;\n }\n return text.toLocaleLowerCase().indexOf(startWith.toLocaleLowerCase()) === 0;\n };\n Autofill.defaultProps = {\n enableAutofillOnKeyPress: [KeyCodes.down, KeyCodes.up],\n };\n return Autofill;\n}(React.Component));\nexport { Autofill };\n/**\n * @deprecated do not use.\n * {@docCategory Autofill}\n */\nvar BaseAutoFill = /** @class */ (function (_super) {\n __extends(BaseAutoFill, _super);\n function BaseAutoFill() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return BaseAutoFill;\n}(Autofill));\nexport { BaseAutoFill };\n//# sourceMappingURL=Autofill.js.map" - }, - { - "id": "MrJ8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "index": null, - "index2": null, - "size": 652, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "issuerId": "S+xZ", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": "S+xZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBarButton.styles", - "loc": "5:0-54" - }, - { - "moduleId": "S+xZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "type": "harmony import specifier", - "userRequest": "./MessageBarButton.styles", - "loc": "16:85-94" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { concatStyleSets, getFocusStyle } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n return concatStyleSets({\n root: [\n getFocusStyle(theme, {\n inset: 1,\n highContrastStyle: {\n outlineOffset: '-4px',\n outline: '1px solid Window',\n },\n borderColor: 'transparent',\n }),\n {\n height: 24,\n },\n ],\n }, customStyles);\n});\n//# sourceMappingURL=MessageBarButton.styles.js.map" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js", - "index": 491, - "index2": 486, - "size": 899, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "issuerId": "juv8", - "issuerName": "./node_modules/lodash/_copyObject.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_assignValue", - "loc": "3:18-43" - }, - { - "moduleId": "juv8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "module": "./node_modules/lodash/_copyObject.js", - "moduleName": "./node_modules/lodash/_copyObject.js", - "type": "cjs require", - "userRequest": "./_assignValue", - "loc": "1:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseAssignValue = require('./_baseAssignValue'),\n eq = require('./eq');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * Assigns `value` to `key` of `object` if the existing value is not equivalent\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction assignValue(object, key, value) {\n var objValue = object[key];\n if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n}\n\nmodule.exports = assignValue;\n" - }, - { - "id": "MvSz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbols.js", - "name": "./node_modules/lodash/_getSymbols.js", - "index": 524, - "index2": 518, - "size": 886, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "issuerId": "oCl/", - "issuerName": "./node_modules/lodash/_getSymbolsIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "oCl/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "name": "./node_modules/lodash/_getSymbolsIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "VOtZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbols.js", - "module": "./node_modules/lodash/_copySymbols.js", - "moduleName": "./node_modules/lodash/_copySymbols.js", - "type": "cjs require", - "userRequest": "./_getSymbols", - "loc": "2:17-41" - }, - { - "moduleId": "oCl/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getSymbolsIn.js", - "module": "./node_modules/lodash/_getSymbolsIn.js", - "moduleName": "./node_modules/lodash/_getSymbolsIn.js", - "type": "cjs require", - "userRequest": "./_getSymbols", - "loc": "3:17-41" - }, - { - "moduleId": "qZTm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeys.js", - "module": "./node_modules/lodash/_getAllKeys.js", - "moduleName": "./node_modules/lodash/_getAllKeys.js", - "type": "cjs require", - "userRequest": "./_getSymbols", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var arrayFilter = require('./_arrayFilter'),\n stubArray = require('./stubArray');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Built-in value references. */\nvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n/**\n * Creates an array of the own enumerable symbols of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of symbols.\n */\nvar getSymbols = !nativeGetSymbols ? stubArray : function(object) {\n if (object == null) {\n return [];\n }\n object = Object(object);\n return arrayFilter(nativeGetSymbols(object), function(symbol) {\n return propertyIsEnumerable.call(object, symbol);\n });\n};\n\nmodule.exports = getSymbols;\n" - }, - { - "id": "N+vi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "name": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "index": 40, - "index2": 29, - "size": 1236, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/styled.js", - "module": "./node_modules/@uifabric/utilities/lib/styled.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/styled.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "19:23-47" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSetsWithProps", - "loc": "4:0-70" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./concatStyleSetsWithProps", - "loc": "4:0-70" - } - ], - "usedExports": [ - "concatStyleSetsWithProps" - ], - "providedExports": [ - "concatStyleSetsWithProps" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { concatStyleSets } from './concatStyleSets';\n/**\n * Concatenates style sets into one, but resolves functional sets using the given props.\n * @param styleProps - Props used to resolve functional sets.\n * @param allStyles - Style sets, which can be functions or objects.\n */\nexport function concatStyleSetsWithProps(styleProps) {\n var allStyles = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n allStyles[_i - 1] = arguments[_i];\n }\n var result = [];\n for (var _a = 0, allStyles_1 = allStyles; _a < allStyles_1.length; _a++) {\n var styles = allStyles_1[_a];\n if (styles) {\n result.push(typeof styles === 'function' ? styles(styleProps) : styles);\n }\n }\n if (result.length === 1) {\n return result[0];\n }\n else if (result.length) {\n // cliffkoh: I cannot figure out how to avoid the cast to any here.\n // It is something to do with the use of Omit in IStyleSet.\n // It might not be necessary once Omit becomes part of lib.d.ts (when we remove our own Omit and rely on\n // the official version).\n return concatStyleSets.apply(void 0, result);\n }\n return {};\n}\n//# sourceMappingURL=concatStyleSetsWithProps.js.map" - }, - { - "id": "N/DM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.styles.js", - "index": null, - "index2": null, - "size": 1010, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "issuerId": "oBFV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hR4L", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "type": "harmony side effect evaluation", - "userRequest": "./Text.styles", - "loc": "3:0-53" - }, - { - "moduleId": "hR4L", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.js", - "type": "harmony import specifier", - "userRequest": "./Text.styles", - "loc": "6:12-18" - }, - { - "moduleId": "oBFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Text.styles", - "loc": "3:0-30" - }, - { - "moduleId": "oBFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Text.styles", - "loc": "3:0-30" - } - ], - "usedExports": false, - "providedExports": [ - "TextStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export var TextStyles = function (props, theme) {\n var as = props.as, className = props.className, block = props.block, nowrap = props.nowrap, variant = props.variant;\n var fonts = theme.fonts;\n var variantObject = fonts[variant || 'medium'];\n return {\n root: [\n theme.fonts.medium,\n {\n display: block ? (as === 'td' ? 'table-cell' : 'block') : 'inline',\n fontFamily: variantObject.fontFamily,\n fontSize: variantObject.fontSize,\n fontWeight: variantObject.fontWeight,\n color: variantObject.color,\n mozOsxFontSmoothing: variantObject.MozOsxFontSmoothing,\n webkitFontSmoothing: variantObject.WebkitFontSmoothing,\n },\n nowrap && {\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=Text.styles.js.map" - }, - { - "id": "N1or", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "index": null, - "index2": null, - "size": 16778, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "issuerId": "ZEVL", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "k+iy", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/CommandBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/CommandBar.js" - }, - { - "id": "vX7Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js" - }, - { - "id": "62r0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.js" - }, - { - "id": "vu/h", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js" - }, - { - "id": "rPQp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ResizeGroup.js", - "name": "./node_modules/office-ui-fabric-react/lib/ResizeGroup.js" - }, - { - "id": "ZEVL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Gz+d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.js", - "type": "harmony side effect evaluation", - "userRequest": "./ResizeGroup.base", - "loc": "1:0-53" - }, - { - "moduleId": "Gz+d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.js", - "type": "harmony import specifier", - "userRequest": "./ResizeGroup.base", - "loc": "2:25-40" - }, - { - "moduleId": "ZEVL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ResizeGroup.base", - "loc": "2:0-35" - }, - { - "moduleId": "ZEVL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ResizeGroup.base", - "loc": "2:0-35" - } - ], - "usedExports": false, - "providedExports": [ - "getMeasurementCache", - "getNextResizeGroupStateProvider", - "MeasuredContext", - "ResizeGroupBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async, EventGroup, divProperties, getNativeProps, warnDeprecations } from '../../Utilities';\nimport { ResizeGroupDirection } from './ResizeGroup.types';\nimport { initializeComponentRef } from '@uifabric/utilities';\nvar RESIZE_DELAY = 16;\n/**\n * Returns a simple object is able to store measurements with a given key.\n */\nexport var getMeasurementCache = function () {\n var measurementsCache = {};\n return {\n /**\n * Checks if the provided data has a cacheKey. If it has a cacheKey and there is a\n * corresponding entry in the measurementsCache, then it will return that value.\n * Returns undefined otherwise.\n */\n getCachedMeasurement: function (data) {\n if (data && data.cacheKey && measurementsCache.hasOwnProperty(data.cacheKey)) {\n return measurementsCache[data.cacheKey];\n }\n return undefined;\n },\n /**\n * Should be called whenever there is a new measurement associated with a given data object.\n * If the data has a cacheKey, store that measurement in the measurementsCache.\n */\n addMeasurementToCache: function (data, measurement) {\n if (data.cacheKey) {\n measurementsCache[data.cacheKey] = measurement;\n }\n },\n };\n};\n/**\n * Returns a function that is able to compute the next state for the ResizeGroup given the current\n * state and any measurement updates.\n */\nexport var getNextResizeGroupStateProvider = function (measurementCache) {\n if (measurementCache === void 0) { measurementCache = getMeasurementCache(); }\n var _measurementCache = measurementCache;\n var _containerDimension;\n /**\n * Gets the width/height of the data rendered in a hidden div.\n * @param measuredData - The data corresponding to the measurement we wish to take.\n * @param getElementToMeasureDimension - A function that returns the measurement of the rendered data.\n * Only called when the measurement is not in the cache.\n */\n function _getMeasuredDimension(measuredData, getElementToMeasureDimension) {\n var cachedDimension = _measurementCache.getCachedMeasurement(measuredData);\n if (cachedDimension !== undefined) {\n return cachedDimension;\n }\n var measuredDimension = getElementToMeasureDimension();\n _measurementCache.addMeasurementToCache(measuredData, measuredDimension);\n return measuredDimension;\n }\n /**\n * Will get the next IResizeGroupState based on the current data while trying to shrink contents\n * to fit in the container.\n * @param data - The initial data point to start measuring.\n * @param onReduceData - Function that transforms the data into something that should render with less width/height.\n * @param getElementToMeasureDimension - A function that returns the measurement of the rendered data.\n * Only called when the measurement is not in the cache.\n */\n function _shrinkContentsUntilTheyFit(data, onReduceData, getElementToMeasureDimension) {\n var dataToMeasure = data;\n var measuredDimension = _getMeasuredDimension(data, getElementToMeasureDimension);\n while (measuredDimension > _containerDimension) {\n var nextMeasuredData = onReduceData(dataToMeasure);\n // We don't want to get stuck in an infinite render loop when there are no more\n // scaling steps, so implementations of onReduceData should return undefined when\n // there are no more scaling states to apply.\n if (nextMeasuredData === undefined) {\n return {\n renderedData: dataToMeasure,\n resizeDirection: undefined,\n dataToMeasure: undefined,\n };\n }\n measuredDimension = _measurementCache.getCachedMeasurement(nextMeasuredData);\n // If the measurement isn't in the cache, we need to rerender with some data in a hidden div\n if (measuredDimension === undefined) {\n return {\n dataToMeasure: nextMeasuredData,\n resizeDirection: 'shrink',\n };\n }\n dataToMeasure = nextMeasuredData;\n }\n return {\n renderedData: dataToMeasure,\n resizeDirection: undefined,\n dataToMeasure: undefined,\n };\n }\n /**\n * This function should be called when the state changes in a manner that might allow for more content to fit\n * on the screen, such as the window width/height growing.\n * @param data - The initial data point to start measuring.\n * @param onGrowData - Function that transforms the data into something that may take up more space when rendering.\n * @param getElementToMeasureDimension - A function that returns the measurement of the rendered data.\n * Only called when the measurement is not in the cache.\n */\n function _growDataUntilItDoesNotFit(data, onGrowData, getElementToMeasureDimension, onReduceData) {\n var dataToMeasure = data;\n var measuredDimension = _getMeasuredDimension(data, getElementToMeasureDimension);\n while (measuredDimension < _containerDimension) {\n var nextMeasuredData = onGrowData(dataToMeasure);\n // We don't want to get stuck in an infinite render loop when there are no more\n // scaling steps, so implementations of onGrowData should return undefined when\n // there are no more scaling states to apply.\n if (nextMeasuredData === undefined) {\n return {\n renderedData: dataToMeasure,\n resizeDirection: undefined,\n dataToMeasure: undefined,\n };\n }\n measuredDimension = _measurementCache.getCachedMeasurement(nextMeasuredData);\n // If the measurement isn't in the cache, we need to rerender with some data in a hidden div\n if (measuredDimension === undefined) {\n return {\n dataToMeasure: nextMeasuredData,\n };\n }\n dataToMeasure = nextMeasuredData;\n }\n // Once the loop is done, we should now shrink until the contents fit.\n return __assign({ resizeDirection: 'shrink' }, _shrinkContentsUntilTheyFit(dataToMeasure, onReduceData, getElementToMeasureDimension));\n }\n /**\n * Handles an update to the container width/height.\n * Should only be called when we knew the previous container width/height.\n * @param newDimension - The new width/height of the container.\n * @param fullDimensionData - The initial data passed in as a prop to resizeGroup.\n * @param renderedData - The data that was rendered prior to the container size changing.\n * @param onGrowData - Set to true if the Resize group has an onGrowData function.\n */\n function _updateContainerDimension(newDimension, fullDimensionData, renderedData, onGrowData) {\n var nextState;\n if (newDimension > _containerDimension) {\n if (onGrowData) {\n nextState = {\n resizeDirection: 'grow',\n dataToMeasure: onGrowData(renderedData),\n };\n }\n else {\n nextState = {\n resizeDirection: 'shrink',\n dataToMeasure: fullDimensionData,\n };\n }\n }\n else {\n nextState = {\n resizeDirection: 'shrink',\n dataToMeasure: renderedData,\n };\n }\n _containerDimension = newDimension;\n return __assign(__assign({}, nextState), { measureContainer: false });\n }\n function getNextState(props, currentState, getElementToMeasureDimension, newContainerDimension) {\n // If there is no new container width/height or data to measure, there is no need for a new state update\n if (newContainerDimension === undefined && currentState.dataToMeasure === undefined) {\n return undefined;\n }\n if (newContainerDimension) {\n // If we know the last container size and we rendered data at that width/height, we can do an optimized render\n if (_containerDimension && currentState.renderedData && !currentState.dataToMeasure) {\n return __assign(__assign({}, currentState), _updateContainerDimension(newContainerDimension, props.data, currentState.renderedData, props.onGrowData));\n }\n // If we are just setting the container width/height for the first time, we can't do any optimizations\n _containerDimension = newContainerDimension;\n }\n var nextState = __assign(__assign({}, currentState), { measureContainer: false });\n if (currentState.dataToMeasure) {\n if (currentState.resizeDirection === 'grow' && props.onGrowData) {\n nextState = __assign(__assign({}, nextState), _growDataUntilItDoesNotFit(currentState.dataToMeasure, props.onGrowData, getElementToMeasureDimension, props.onReduceData));\n }\n else {\n nextState = __assign(__assign({}, nextState), _shrinkContentsUntilTheyFit(currentState.dataToMeasure, props.onReduceData, getElementToMeasureDimension));\n }\n }\n return nextState;\n }\n /** Function that determines if we need to render content for measurement based on the measurement cache contents. */\n function shouldRenderDataForMeasurement(dataToMeasure) {\n if (!dataToMeasure || _measurementCache.getCachedMeasurement(dataToMeasure) !== undefined) {\n return false;\n }\n return true;\n }\n function getInitialResizeGroupState(data) {\n return {\n dataToMeasure: __assign({}, data),\n resizeDirection: 'grow',\n measureContainer: true,\n };\n }\n return {\n getNextState: getNextState,\n shouldRenderDataForMeasurement: shouldRenderDataForMeasurement,\n getInitialResizeGroupState: getInitialResizeGroupState,\n };\n};\n// Provides a context property that (if true) tells any child components that\n// they are only being used for measurement purposes and will not be visible.\nexport var MeasuredContext = React.createContext({ isMeasured: false });\n// Styles for the hidden div used for measurement\nvar hiddenDivStyles = { position: 'fixed', visibility: 'hidden' };\nvar hiddenParentStyles = { position: 'relative' };\nvar COMPONENT_NAME = 'ResizeGroup';\nvar ResizeGroupBase = /** @class */ (function (_super) {\n __extends(ResizeGroupBase, _super);\n function ResizeGroupBase(props) {\n var _this = _super.call(this, props) || this;\n _this._nextResizeGroupStateProvider = getNextResizeGroupStateProvider();\n // The root div which is the container inside of which we are trying to fit content.\n _this._root = React.createRef();\n // A div that can be used for the initial measurement so that we can avoid mounting a second instance\n // of the component being measured for the initial render.\n _this._initialHiddenDiv = React.createRef();\n // A hidden div that is used for mounting a new instance of the component for measurement in a hidden\n // div without unmounting the currently visible content.\n _this._updateHiddenDiv = React.createRef();\n // Tracks if any content has been rendered to the user. This enables us to do some performance optimizations\n // for the initial render.\n _this._hasRenderedContent = false;\n _this.state = _this._nextResizeGroupStateProvider.getInitialResizeGroupState(_this.props.data);\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n styles: 'className',\n });\n return _this;\n }\n ResizeGroupBase.prototype.render = function () {\n var _a = this.props, className = _a.className, onRenderData = _a.onRenderData;\n var _b = this.state, dataToMeasure = _b.dataToMeasure, renderedData = _b.renderedData;\n var divProps = getNativeProps(this.props, divProperties, ['data']);\n var dataNeedsMeasuring = this._nextResizeGroupStateProvider.shouldRenderDataForMeasurement(dataToMeasure);\n var isInitialMeasure = !this._hasRenderedContent && dataNeedsMeasuring;\n // We only ever render the final content to the user. All measurements are done in a hidden div.\n // For the initial render, we want this to be as fast as possible, so we need to make sure that we only mount one\n // version of the component for measurement and the final render. For renders that update what is on screen, we\n // want to make sure that there are no jarring effects such as the screen flashing as we apply scaling steps for\n // measurement. In the update case, we mount a second version of the component just for measurement purposes and\n // leave the rendered content untouched until we know the next state to show to the user.\n return (React.createElement(\"div\", __assign({}, divProps, { className: className, ref: this._root }),\n React.createElement(\"div\", { style: hiddenParentStyles },\n dataNeedsMeasuring && !isInitialMeasure && (React.createElement(\"div\", { style: hiddenDivStyles, ref: this._updateHiddenDiv },\n React.createElement(MeasuredContext.Provider, { value: { isMeasured: true } }, onRenderData(dataToMeasure)))),\n React.createElement(\"div\", { ref: this._initialHiddenDiv, style: isInitialMeasure ? hiddenDivStyles : undefined, \"data-automation-id\": \"visibleContent\" }, isInitialMeasure ? onRenderData(dataToMeasure) : renderedData && onRenderData(renderedData)))));\n };\n ResizeGroupBase.prototype.componentDidMount = function () {\n this._afterComponentRendered(this.props.direction);\n this._events.on(window, 'resize', this._async.debounce(this._onResize, RESIZE_DELAY, { leading: true }));\n };\n ResizeGroupBase.prototype.UNSAFE_componentWillReceiveProps = function (nextProps) {\n this.setState({\n dataToMeasure: __assign({}, nextProps.data),\n resizeDirection: 'grow',\n // Receiving new props means the parent might rerender and the root width/height might change\n measureContainer: true,\n });\n };\n ResizeGroupBase.prototype.componentDidUpdate = function (prevProps) {\n if (this.state.renderedData) {\n this._hasRenderedContent = true;\n if (this.props.dataDidRender) {\n this.props.dataDidRender(this.state.renderedData);\n }\n }\n this._afterComponentRendered(this.props.direction);\n };\n ResizeGroupBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n ResizeGroupBase.prototype.remeasure = function () {\n if (this._root.current) {\n this.setState({ measureContainer: true });\n }\n };\n ResizeGroupBase.prototype._afterComponentRendered = function (direction) {\n var _this = this;\n this._async.requestAnimationFrame(function () {\n var containerDimension = undefined;\n if (_this.state.measureContainer && _this._root.current) {\n var boundingRect = _this._root.current.getBoundingClientRect();\n containerDimension =\n direction && direction === ResizeGroupDirection.vertical ? boundingRect.height : boundingRect.width;\n }\n var nextState = _this._nextResizeGroupStateProvider.getNextState(_this.props, _this.state, function () {\n var refToMeasure = !_this._hasRenderedContent ? _this._initialHiddenDiv : _this._updateHiddenDiv;\n if (!refToMeasure.current) {\n return 0;\n }\n return direction && direction === ResizeGroupDirection.vertical\n ? refToMeasure.current.scrollHeight\n : refToMeasure.current.scrollWidth;\n }, containerDimension);\n if (nextState) {\n _this.setState(nextState);\n }\n }, this._root.current);\n };\n ResizeGroupBase.prototype._onResize = function () {\n if (this._root.current) {\n this.setState({ measureContainer: true });\n }\n };\n return ResizeGroupBase;\n}(React.Component));\nexport { ResizeGroupBase };\n//# sourceMappingURL=ResizeGroup.base.js.map" - }, - { - "id": "N3Ov", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/setPortalAttribute.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/setPortalAttribute.js", - "index": 151, - "index2": 138, - "size": 323, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerId": "nvVZ", - "issuerName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - }, - { - "id": "xu/W", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/elementContains.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/elementContains.js" - }, - { - "id": "nvVZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "name": "./node_modules/@fluentui/dom-utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "25:12-30" - }, - { - "moduleId": "69HH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-84" - }, - { - "moduleId": "69HH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/setPortalAttribute.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@fluentui/dom-utilities", - "loc": "1:0-84" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setPortalAttribute", - "loc": "9:0-37" - }, - { - "moduleId": "nvVZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/index.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setPortalAttribute", - "loc": "9:0-37" - }, - { - "moduleId": "rgVD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "type": "harmony side effect evaluation", - "userRequest": "./setPortalAttribute", - "loc": "2:0-61" - }, - { - "moduleId": "rgVD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "type": "harmony import specifier", - "userRequest": "./setPortalAttribute", - "loc": "12:135-156" - }, - { - "moduleId": "rgVD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "module": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "moduleName": "./node_modules/@fluentui/dom-utilities/lib/portalContainsElement.js", - "type": "harmony import specifier", - "userRequest": "./setPortalAttribute", - "loc": "13:62-83" - } - ], - "usedExports": [ - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute" - ], - "providedExports": [ - "DATA_PORTAL_ATTRIBUTE", - "setPortalAttribute" - ], - "optimizationBailout": [], - "depth": 8, - "source": "export var DATA_PORTAL_ATTRIBUTE = 'data-portal-element';\n/**\n * Identify element as a portal by setting an attribute.\n * @param element - Element to mark as a portal.\n */\nexport function setPortalAttribute(element) {\n element.setAttribute(DATA_PORTAL_ATTRIBUTE, 'true');\n}\n//# sourceMappingURL=setPortalAttribute.js.map" - }, - { - "id": "N3ZD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js 049c7c42ef9defd049b72e73a7957916", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js + 1 modules", - "index": 279, - "index2": 278, - "size": 2097, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "31:0-66" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "72:66-83" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "59:0-66" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "168:32-49" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "index": 279, - "index2": 278, - "size": 1825, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "31:0-66" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "72:66-83" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "59:0-66" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../errorMessage/FieldErrorMessage", - "loc": "168:32-49" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nimport * as React from 'react';\nimport styles from './FieldErrorMessage.module.scss';\nimport { Icon } from 'office-ui-fabric-react/lib/Icon';\n/**\n * Component that shows an error message when something went wront with the property control\n */\nvar FieldErrorMessage = /** @class */ (function (_super) {\n __extends(FieldErrorMessage, _super);\n function FieldErrorMessage() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n FieldErrorMessage.prototype.render = function () {\n if (this.props.errorMessage !== 'undefined' && this.props.errorMessage !== null && this.props.errorMessage !== '') {\n return (React.createElement(\"div\", { \"aria-live\": \"assertive\" },\n React.createElement(\"p\", { className: \"ms-TextField-errorMessage \" + styles.errorMessage },\n React.createElement(Icon, { iconName: 'Error', className: styles.errorIcon }),\n React.createElement(\"span\", { \"data-automation-id\": \"error-message\" }, this.props.errorMessage))));\n }\n else {\n return null;\n }\n };\n return FieldErrorMessage;\n}(React.Component));\nexport default FieldErrorMessage;\n//# sourceMappingURL=FieldErrorMessage.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.module.scss.js", - "index": 280, - "index2": 277, - "size": 262, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony side effect evaluation", - "userRequest": "./FieldErrorMessage.module.scss", - "loc": "15:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony import specifier", - "userRequest": "./FieldErrorMessage.module.scss", - "loc": "28:85-91" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/errorMessage/FieldErrorMessage.js", - "type": "harmony import specifier", - "userRequest": "./FieldErrorMessage.module.scss", - "loc": "29:78-84" - } - ], - "usedExports": [ - "default" - ], - "providedExports": [ - "default" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/* tslint:disable */\nrequire(\"./FieldErrorMessage.module.css\");\nvar styles = {\n errorMessage: 'errorMessage_49b1134c',\n errorIcon: 'errorIcon_49b1134c'\n};\nexport default styles;\n/* tslint:enable */ \n//# sourceMappingURL=FieldErrorMessage.module.scss.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "N55B", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.base.js", - "index": null, - "index2": null, - "size": 8220, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "issuerId": "xDyN", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "xDyN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "xDyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardTitle.base", - "loc": "2:0-65" - }, - { - "moduleId": "xDyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardTitle.base", - "loc": "4:38-59" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardTitleBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async, EventGroup, classNamesFunction } from '../../Utilities';\nimport { initializeComponentRef } from '@uifabric/utilities';\nvar getClassNames = classNamesFunction();\nvar TRUNCATION_VERTICAL_OVERFLOW_THRESHOLD = 5;\n/**\n * {@docCategory DocumentCard}\n */\nvar DocumentCardTitleBase = /** @class */ (function (_super) {\n __extends(DocumentCardTitleBase, _super);\n function DocumentCardTitleBase(props) {\n var _this = _super.call(this, props) || this;\n _this._titleElement = React.createRef();\n _this._measureTitleElement = React.createRef();\n // Truncate logic here way can't handle the case that chars with different widths are mixed very well.\n // Let _shrinkTitle take care of that.\n _this._truncateTitle = function () {\n if (!_this.state.needMeasurement) {\n return;\n }\n _this._async.requestAnimationFrame(_this._truncateWhenInAnimation);\n };\n _this._truncateWhenInAnimation = function () {\n var originalTitle = _this.props.title;\n var element = _this._measureTitleElement.current;\n if (element) {\n var style = getComputedStyle(element);\n if (style.width && style.lineHeight && style.height) {\n var clientWidth = element.clientWidth, scrollWidth = element.scrollWidth;\n var lines = Math.floor((parseInt(style.height, 10) + TRUNCATION_VERTICAL_OVERFLOW_THRESHOLD) / parseInt(style.lineHeight, 10));\n // Use overflow to predict truncated length.\n // Take an example.The text is: A text with A very long text that need to be truncated.ppt\n // if container is like\n // |A text with A very| long text that need to be truncated.ppt\n // The scroll width is 58, (take two | out of length)\n // The client width is 18\n // the overflow rate is scrollWidth/clientWidth which should be close to length(overflowText)/length(visualText)\n // And the length of remaining text should be truncated is (original Length)/(58/18) -3 = 15.\n // So that the logic can predict truncated text well.\n // first piece will be `A text `, * second piece will be `ated.ppt`\n // |A text ...ated.ppt|\n var overFlowRate = scrollWidth / (parseInt(style.width, 10) * lines);\n if (overFlowRate > 1) {\n var truncatedLength = originalTitle.length / overFlowRate - 3 /** Saved for separator */;\n return _this.setState({\n truncatedTitleFirstPiece: originalTitle.slice(0, truncatedLength / 2),\n truncatedTitleSecondPiece: originalTitle.slice(originalTitle.length - truncatedLength / 2),\n clientWidth: clientWidth,\n needMeasurement: false,\n });\n }\n }\n }\n return _this.setState({ needMeasurement: false });\n };\n _this._shrinkTitle = function () {\n var _a = _this.state, truncatedTitleFirstPiece = _a.truncatedTitleFirstPiece, truncatedTitleSecondPiece = _a.truncatedTitleSecondPiece;\n if (truncatedTitleFirstPiece && truncatedTitleSecondPiece) {\n var titleElement = _this._titleElement.current;\n if (!titleElement) {\n return;\n }\n if (titleElement.scrollHeight > titleElement.clientHeight + TRUNCATION_VERTICAL_OVERFLOW_THRESHOLD ||\n titleElement.scrollWidth > titleElement.clientWidth) {\n _this.setState({\n truncatedTitleFirstPiece: truncatedTitleFirstPiece.slice(0, truncatedTitleFirstPiece.length - 1),\n truncatedTitleSecondPiece: truncatedTitleSecondPiece.slice(1),\n });\n }\n }\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n _this.state = {\n truncatedTitleFirstPiece: '',\n truncatedTitleSecondPiece: '',\n previousTitle: props.title,\n needMeasurement: !!props.shouldTruncate,\n };\n return _this;\n }\n DocumentCardTitleBase.prototype.componentDidUpdate = function () {\n if (this.props.title !== this.state.previousTitle) {\n this.setState({\n truncatedTitleFirstPiece: undefined,\n truncatedTitleSecondPiece: undefined,\n clientWidth: undefined,\n previousTitle: this.props.title,\n needMeasurement: !!this.props.shouldTruncate,\n });\n }\n this._events.off(window, 'resize', this._updateTruncation);\n if (this.props.shouldTruncate) {\n this._truncateTitle();\n requestAnimationFrame(this._shrinkTitle);\n this._events.on(window, 'resize', this._updateTruncation);\n }\n };\n DocumentCardTitleBase.prototype.componentDidMount = function () {\n if (this.props.shouldTruncate) {\n this._truncateTitle();\n this._events.on(window, 'resize', this._updateTruncation);\n }\n };\n DocumentCardTitleBase.prototype.componentWillUnmount = function () {\n this._events.dispose();\n this._async.dispose();\n };\n DocumentCardTitleBase.prototype.render = function () {\n var _a = this.props, title = _a.title, shouldTruncate = _a.shouldTruncate, showAsSecondaryTitle = _a.showAsSecondaryTitle, styles = _a.styles, theme = _a.theme, className = _a.className;\n var _b = this.state, truncatedTitleFirstPiece = _b.truncatedTitleFirstPiece, truncatedTitleSecondPiece = _b.truncatedTitleSecondPiece, needMeasurement = _b.needMeasurement;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n showAsSecondaryTitle: showAsSecondaryTitle,\n });\n var documentCardTitle;\n if (needMeasurement) {\n documentCardTitle = (React.createElement(\"div\", { className: this._classNames.root, ref: this._measureTitleElement, title: title, style: { whiteSpace: 'nowrap' } }, title));\n }\n else if (shouldTruncate && truncatedTitleFirstPiece && truncatedTitleSecondPiece) {\n documentCardTitle = (React.createElement(\"div\", { className: this._classNames.root, ref: this._titleElement, title: title },\n truncatedTitleFirstPiece,\n \"\\u2026\",\n truncatedTitleSecondPiece));\n }\n else {\n documentCardTitle = (React.createElement(\"div\", { className: this._classNames.root, ref: this._titleElement, title: title }, title));\n }\n return documentCardTitle;\n };\n DocumentCardTitleBase.prototype._updateTruncation = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () {\n // Only update truncation if the title's size has changed since the last time we truncated\n if (_this._titleElement.current) {\n var clientWidth = _this._titleElement.current.clientWidth;\n // Throttle truncation so that it doesn't happen during a window resize\n clearTimeout(_this._titleTruncationTimer);\n if (_this.state.clientWidth !== clientWidth) {\n _this._titleTruncationTimer = _this._async.setTimeout(function () {\n return _this.setState({\n truncatedTitleFirstPiece: undefined,\n truncatedTitleSecondPiece: undefined,\n needMeasurement: true,\n });\n }, 250);\n }\n }\n });\n };\n return DocumentCardTitleBase;\n}(React.Component));\nexport { DocumentCardTitleBase };\n//# sourceMappingURL=DocumentCardTitle.base.js.map" - }, - { - "id": "NALk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.js", - "index": null, - "index2": null, - "size": 736, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerId": "hLc7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./TagItemSuggestion", - "loc": "7:0-56" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "userRequest": "./TagItemSuggestion", - "loc": "20:79-96" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./TagPicker/TagItemSuggestion", - "loc": "13:0-46" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony export imported specifier", - "userRequest": "./TagPicker/TagItemSuggestion", - "loc": "13:0-46" - } - ], - "usedExports": false, - "providedExports": [ - "TagItemSuggestionBase", - "TagItemSuggestion" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import * as React from 'react';\nimport { classNamesFunction, styled } from '../../../Utilities';\nimport { getStyles } from './TagItemSuggestion.styles';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory TagPicker}\n */\nexport var TagItemSuggestionBase = function (props) {\n var styles = props.styles, theme = props.theme, children = props.children;\n var classNames = getClassNames(styles, {\n theme: theme,\n });\n return React.createElement(\"div\", { className: classNames.suggestionTextOverflow },\n \" \",\n children,\n \" \");\n};\nexport var TagItemSuggestion = styled(TagItemSuggestionBase, getStyles, undefined, { scope: 'TagItemSuggestion' });\n//# sourceMappingURL=TagItemSuggestion.js.map" - }, - { - "id": "NE6p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/DraggableZone/index.js", - "index": null, - "index2": null, - "size": 106, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "yb4Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "Nong", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/DraggableZone/index", - "loc": "12:0-68" - } - ], - "usedExports": false, - "providedExports": [ - "DraggableZone", - "getClassNames" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export * from './DraggableZone';\nexport * from './DraggableZone.styles';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "NKxu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsNative.js", - "name": "./node_modules/lodash/_baseIsNative.js", - "index": 462, - "index2": 462, - "size": 1417, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "issuerId": "Cwc5", - "issuerName": "./node_modules/lodash/_getNative.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Cwc5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "module": "./node_modules/lodash/_getNative.js", - "moduleName": "./node_modules/lodash/_getNative.js", - "type": "cjs require", - "userRequest": "./_baseIsNative", - "loc": "1:19-45" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "var isFunction = require('./isFunction'),\n isMasked = require('./_isMasked'),\n isObject = require('./isObject'),\n toSource = require('./_toSource');\n\n/**\n * Used to match `RegExp`\n * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n */\nvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n/** Used to detect host constructors (Safari). */\nvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n/** Used for built-in method references. */\nvar funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Used to detect if a method is native. */\nvar reIsNative = RegExp('^' +\n funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n);\n\n/**\n * The base implementation of `_.isNative` without bad shim checks.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function,\n * else `false`.\n */\nfunction baseIsNative(value) {\n if (!isObject(value) || isMasked(value)) {\n return false;\n }\n var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n return pattern.test(toSource(value));\n}\n\nmodule.exports = baseIsNative;\n" - }, - { - "id": "NftH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/math.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/math.js", - "index": null, - "index2": null, - "size": 2984, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./math", - "loc": "36:0-23" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./math", - "loc": "36:0-23" - } - ], - "usedExports": false, - "providedExports": [ - "getDistanceBetweenPoints", - "fitContentToBounds", - "calculatePrecision", - "precisionRound" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "/**\n * Determines the distance between two points.\n *\n * @public\n */\nexport function getDistanceBetweenPoints(point1, point2) {\n var distance = Math.sqrt(Math.pow(point1.x - point2.x, 2) + Math.pow(point1.y - point2.y, 2));\n return distance;\n}\n/**\n * Produces a proportionally-scaled version of an input content size when fit to a bounding size.\n * Given a `contentSize` and a `boundsSize`, this function scales `contentSize` proportionally\n * using either `contain` or `cover` fit behaviors.\n * Use this function to pre-calculate the layout for the CSS `object-fit` and `background-fit` behaviors.\n * With `contain`, the output size must be the largest it can be while completely within the `boundsSize`.\n * With `cover`, the output size must be the smallest it can be while completely around the `boundsSize`.\n * By default, there is a `maxScale` value of 1, which prevents the `contentSize` from being scaled larger.\n *\n * @param options - the options for the bounds fit operation\n */\nexport function fitContentToBounds(options) {\n var contentSize = options.contentSize, boundsSize = options.boundsSize, _a = options.mode, mode = _a === void 0 ? 'contain' : _a, _b = options.maxScale, maxScale = _b === void 0 ? 1 : _b;\n var contentAspectRatio = contentSize.width / contentSize.height;\n var boundsAspectRatio = boundsSize.width / boundsSize.height;\n var scale;\n if (mode === 'contain' ? contentAspectRatio > boundsAspectRatio : contentAspectRatio < boundsAspectRatio) {\n scale = boundsSize.width / contentSize.width;\n }\n else {\n scale = boundsSize.height / contentSize.height;\n }\n var finalScale = Math.min(maxScale, scale);\n return {\n width: contentSize.width * finalScale,\n height: contentSize.height * finalScale\n };\n}\n/**\n * Calculates a number's precision based on the number of trailing\n * zeros if the number does not have a decimal indicated by a negative\n * precision. Otherwise, it calculates the number of digits after\n * the decimal point indicated by a positive precision.\n * @param value - the value to determine the precision of\n */\nexport function calculatePrecision(value) {\n /**\n * Group 1:\n * [1-9]([0]+$) matches trailing zeros\n * Group 2:\n * \\.([0-9]*) matches all digits after a decimal point.\n */\n var groups = /[1-9]([0]+$)|\\.([0-9]*)/.exec(String(value));\n if (!groups) {\n return 0;\n }\n if (groups[1]) {\n return -groups[1].length;\n }\n if (groups[2]) {\n return groups[2].length;\n }\n return 0;\n}\n/**\n * Rounds a number to a certain level of precision. Accepts negative precision.\n * @param value - The value that is being rounded.\n * @param precision - The number of decimal places to round the number to\n */\nexport function precisionRound(value, precision, base) {\n if (base === void 0) { base = 10; }\n var exp = Math.pow(base, precision);\n return Math.round(value * exp) / exp;\n}\n//# sourceMappingURL=math.js.map" - }, - { - "id": "NiZ7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/colors/FluentColors.js", - "name": "./node_modules/@fluentui/theme/lib/colors/FluentColors.js", - "index": null, - "index2": null, - "size": 2993, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/colors/index.js", - "issuerId": "p6FT", - "issuerName": "./node_modules/@fluentui/theme/lib/colors/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - }, - { - "id": "p6FT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/colors/index.js", - "name": "./node_modules/@fluentui/theme/lib/colors/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "p6FT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/colors/index.js", - "module": "./node_modules/@fluentui/theme/lib/colors/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/colors/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FluentColors", - "loc": "1:0-31" - }, - { - "moduleId": "p6FT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/colors/index.js", - "module": "./node_modules/@fluentui/theme/lib/colors/index.js", - "moduleName": "./node_modules/@fluentui/theme/lib/colors/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FluentColors", - "loc": "1:0-31" - } - ], - "usedExports": false, - "providedExports": [ - "CommunicationColors", - "NeutralColors", - "SharedColors" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "export var CommunicationColors;\n(function (CommunicationColors) {\n CommunicationColors.shade30 = '#004578';\n CommunicationColors.shade20 = '#005a9e';\n CommunicationColors.shade10 = '#106ebe';\n CommunicationColors.primary = '#0078d4';\n CommunicationColors.tint10 = '#2b88d8';\n CommunicationColors.tint20 = '#c7e0f4';\n CommunicationColors.tint30 = '#deecf9';\n CommunicationColors.tint40 = '#eff6fc';\n})(CommunicationColors || (CommunicationColors = {}));\nexport var NeutralColors;\n(function (NeutralColors) {\n NeutralColors.black = '#000000';\n NeutralColors.gray220 = '#11100f';\n NeutralColors.gray210 = '#161514';\n NeutralColors.gray200 = '#1b1a19';\n NeutralColors.gray190 = '#201f1e';\n NeutralColors.gray180 = '#252423';\n NeutralColors.gray170 = '#292827';\n NeutralColors.gray160 = '#323130';\n NeutralColors.gray150 = '#3b3a39';\n NeutralColors.gray140 = '#484644';\n NeutralColors.gray130 = '#605e5c';\n NeutralColors.gray120 = '#797775';\n NeutralColors.gray110 = '#8a8886';\n NeutralColors.gray100 = '#979593';\n NeutralColors.gray90 = '#a19f9d';\n NeutralColors.gray80 = '#b3b0ad';\n NeutralColors.gray70 = '#bebbb8';\n NeutralColors.gray60 = '#c8c6c4';\n NeutralColors.gray50 = '#d2d0ce';\n NeutralColors.gray40 = '#e1dfdd';\n NeutralColors.gray30 = '#edebe9';\n NeutralColors.gray20 = '#f3f2f1';\n NeutralColors.gray10 = '#faf9f8';\n NeutralColors.white = '#ffffff';\n})(NeutralColors || (NeutralColors = {}));\nexport var SharedColors;\n(function (SharedColors) {\n SharedColors.pinkRed10 = '#750b1c';\n SharedColors.red20 = '#a4262c';\n SharedColors.red10 = '#d13438';\n SharedColors.redOrange20 = '#603d30';\n SharedColors.redOrange10 = '#da3b01';\n SharedColors.orange30 = '#8e562e';\n SharedColors.orange20 = '#ca5010';\n SharedColors.orange10 = '#ffaa44';\n SharedColors.yellow10 = '#fce100';\n SharedColors.orangeYellow20 = '#986f0b';\n SharedColors.orangeYellow10 = '#c19c00';\n SharedColors.yellowGreen10 = '#8cbd18';\n SharedColors.green20 = '#0b6a0b';\n SharedColors.green10 = '#498205';\n SharedColors.greenCyan10 = '#00ad56';\n SharedColors.cyan40 = '#005e50';\n SharedColors.cyan30 = '#005b70';\n SharedColors.cyan20 = '#038387';\n SharedColors.cyan10 = '#00b7c3';\n SharedColors.cyanBlue20 = '#004e8c';\n SharedColors.cyanBlue10 = '#0078d4';\n SharedColors.blue10 = '#4f6bed';\n SharedColors.blueMagenta40 = '#373277';\n SharedColors.blueMagenta30 = '#5c2e91';\n SharedColors.blueMagenta20 = '#8764b8';\n SharedColors.blueMagenta10 = '#8378de';\n SharedColors.magenta20 = '#881798';\n SharedColors.magenta10 = '#c239b3';\n SharedColors.magentaPink20 = '#9b0062';\n SharedColors.magentaPink10 = '#e3008c';\n SharedColors.gray40 = '#393939';\n SharedColors.gray30 = '#7a7574';\n SharedColors.gray20 = '#69797e';\n SharedColors.gray10 = '#a0aeb2';\n})(SharedColors || (SharedColors = {}));\n//# sourceMappingURL=FluentColors.js.map" - }, - { - "id": "Nong", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "index": null, - "index2": null, - "size": 88, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "issuerId": "yb4Y", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "yb4Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/Modal.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "yb4Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Modal/index", - "loc": "1:0-41" - }, - { - "moduleId": "yb4Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Modal/index", - "loc": "1:0-41" - }, - { - "moduleId": "yb4Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "module": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Modal.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Modal/index", - "loc": "2:0-60" - } - ], - "usedExports": false, - "providedExports": [ - "Modal", - "ModalBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './Modal';\nexport * from './Modal.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "NpKg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/spacing/index.js", - "name": "./node_modules/@fluentui/theme/lib/spacing/index.js", - "index": null, - "index2": null, - "size": 84, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "issuerId": null, - "issuerName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./spacing/index", - "loc": "5:0-49" - } - ], - "usedExports": false, - "providedExports": [ - "DefaultSpacing" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "export { DefaultSpacing } from './DefaultSpacing';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Npjl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getValue.js", - "name": "./node_modules/lodash/_getValue.js", - "index": 474, - "index2": 463, - "size": 325, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "issuerId": "Cwc5", - "issuerName": "./node_modules/lodash/_getNative.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js" - }, - { - "id": "Cwc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "name": "./node_modules/lodash/_getNative.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Cwc5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getNative.js", - "module": "./node_modules/lodash/_getNative.js", - "moduleName": "./node_modules/lodash/_getNative.js", - "type": "cjs require", - "userRequest": "./_getValue", - "loc": "2:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 9, - "source": "/**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction getValue(object, key) {\n return object == null ? undefined : object[key];\n}\n\nmodule.exports = getValue;\n" - }, - { - "id": "NqsX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/setSSR.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/setSSR.js", - "index": 39, - "index2": 23, - "size": 232, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "issuerId": "3uSm", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "elao", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Async.js", - "name": "./node_modules/@uifabric/utilities/lib/Async.js" - }, - { - "id": "3uSm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "3uSm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "type": "harmony side effect evaluation", - "userRequest": "./setSSR", - "loc": "1:0-34" - }, - { - "moduleId": "3uSm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getWindow.js", - "type": "harmony import specifier", - "userRequest": "./setSSR", - "loc": "21:8-14" - }, - { - "moduleId": "4PRO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "type": "harmony side effect evaluation", - "userRequest": "./setSSR", - "loc": "1:0-34" - }, - { - "moduleId": "4PRO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "module": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom/getDocument.js", - "type": "harmony import specifier", - "userRequest": "./setSSR", - "loc": "11:8-14" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/setSSR", - "loc": "61:0-38" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/setSSR", - "loc": "61:0-38" - } - ], - "usedExports": [ - "_isSSR" - ], - "providedExports": [ - "_isSSR", - "setSSR" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var _isSSR = false;\n/**\n * Helper to set ssr mode to simulate no window object returned from getWindow helper.\n *\n * @public\n */\nexport function setSSR(isEnabled) {\n _isSSR = isEnabled;\n}\n//# sourceMappingURL=setSSR.js.map" - }, - { - "id": "NykK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseGetTag.js", - "name": "./node_modules/lodash/_baseGetTag.js", - "index": 464, - "index2": 456, - "size": 792, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "issuerId": "YO3V", - "issuerName": "./node_modules/lodash/isPlainObject.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "4Oe1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_customOmitClone.js", - "name": "./node_modules/lodash/_customOmitClone.js" - }, - { - "id": "YO3V", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "name": "./node_modules/lodash/isPlainObject.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/9aa", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isSymbol.js", - "module": "./node_modules/lodash/isSymbol.js", - "moduleName": "./node_modules/lodash/isSymbol.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - }, - { - "moduleId": "JTzB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsArguments.js", - "module": "./node_modules/lodash/_baseIsArguments.js", - "moduleName": "./node_modules/lodash/_baseIsArguments.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - }, - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "6:17-41" - }, - { - "moduleId": "YO3V", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isPlainObject.js", - "module": "./node_modules/lodash/isPlainObject.js", - "moduleName": "./node_modules/lodash/isPlainObject.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - }, - { - "moduleId": "dD9F", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsTypedArray.js", - "module": "./node_modules/lodash/_baseIsTypedArray.js", - "moduleName": "./node_modules/lodash/_baseIsTypedArray.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - }, - { - "moduleId": "lSCD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/isFunction.js", - "module": "./node_modules/lodash/isFunction.js", - "moduleName": "./node_modules/lodash/isFunction.js", - "type": "cjs require", - "userRequest": "./_baseGetTag", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var Symbol = require('./_Symbol'),\n getRawTag = require('./_getRawTag'),\n objectToString = require('./_objectToString');\n\n/** `Object#toString` result references. */\nvar nullTag = '[object Null]',\n undefinedTag = '[object Undefined]';\n\n/** Built-in value references. */\nvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n/**\n * The base implementation of `getTag` without fallbacks for buggy environments.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nfunction baseGetTag(value) {\n if (value == null) {\n return value === undefined ? undefinedTag : nullTag;\n }\n return (symToStringTag && symToStringTag in Object(value))\n ? getRawTag(value)\n : objectToString(value);\n}\n\nmodule.exports = baseGetTag;\n" - }, - { - "id": "NzI3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-14.js", - "index": null, - "index2": null, - "size": 4654, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-14", - "loc": "16:0-59" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-14", - "loc": "40:8-11" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-14\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-14-5cf58db8.woff') format('woff')\"\n },\n icons: {\n 'Snooze': '\\uF4BD',\n 'WaffleOffice365': '\\uF4E0',\n 'ImageSearch': '\\uF4E8',\n 'NewsSearch': '\\uF4E9',\n 'VideoSearch': '\\uF4EA',\n 'R': '\\uF4EB',\n 'FontColorA': '\\uF4EC',\n 'FontColorSwatch': '\\uF4ED',\n 'LightWeight': '\\uF4EE',\n 'NormalWeight': '\\uF4EF',\n 'SemiboldWeight': '\\uF4F0',\n 'GroupObject': '\\uF4F1',\n 'UngroupObject': '\\uF4F2',\n 'AlignHorizontalLeft': '\\uF4F3',\n 'AlignHorizontalCenter': '\\uF4F4',\n 'AlignHorizontalRight': '\\uF4F5',\n 'AlignVerticalTop': '\\uF4F6',\n 'AlignVerticalCenter': '\\uF4F7',\n 'AlignVerticalBottom': '\\uF4F8',\n 'HorizontalDistributeCenter': '\\uF4F9',\n 'VerticalDistributeCenter': '\\uF4FA',\n 'Ellipse': '\\uF4FB',\n 'Line': '\\uF4FC',\n 'Octagon': '\\uF4FD',\n 'Hexagon': '\\uF4FE',\n 'Pentagon': '\\uF4FF',\n 'RightTriangle': '\\uF500',\n 'HalfCircle': '\\uF501',\n 'QuarterCircle': '\\uF502',\n 'ThreeQuarterCircle': '\\uF503',\n '6PointStar': '\\uF504',\n '12PointStar': '\\uF505',\n 'ArrangeBringToFront': '\\uF506',\n 'ArrangeSendToBack': '\\uF507',\n 'ArrangeSendBackward': '\\uF508',\n 'ArrangeBringForward': '\\uF509',\n 'BorderDash': '\\uF50A',\n 'BorderDot': '\\uF50B',\n 'LineStyle': '\\uF50C',\n 'LineThickness': '\\uF50D',\n 'WindowEdit': '\\uF50E',\n 'HintText': '\\uF50F',\n 'MediaAdd': '\\uF510',\n 'AnchorLock': '\\uF511',\n 'AutoHeight': '\\uF512',\n 'ChartSeries': '\\uF513',\n 'ChartXAngle': '\\uF514',\n 'ChartYAngle': '\\uF515',\n 'Combobox': '\\uF516',\n 'LineSpacing': '\\uF517',\n 'Padding': '\\uF518',\n 'PaddingTop': '\\uF519',\n 'PaddingBottom': '\\uF51A',\n 'PaddingLeft': '\\uF51B',\n 'PaddingRight': '\\uF51C',\n 'NavigationFlipper': '\\uF51D',\n 'AlignJustify': '\\uF51E',\n 'TextOverflow': '\\uF51F',\n 'VisualsFolder': '\\uF520',\n 'VisualsStore': '\\uF521',\n 'PictureCenter': '\\uF522',\n 'PictureFill': '\\uF523',\n 'PicturePosition': '\\uF524',\n 'PictureStretch': '\\uF525',\n 'PictureTile': '\\uF526',\n 'Slider': '\\uF527',\n 'SliderHandleSize': '\\uF528',\n 'DefaultRatio': '\\uF529',\n 'NumberSequence': '\\uF52A',\n 'GUID': '\\uF52B',\n 'ReportAdd': '\\uF52C',\n 'DashboardAdd': '\\uF52D',\n 'MapPinSolid': '\\uF52E',\n 'WebPublish': '\\uF52F',\n 'PieSingleSolid': '\\uF530',\n 'BlockedSolid': '\\uF531',\n 'DrillDown': '\\uF532',\n 'DrillDownSolid': '\\uF533',\n 'DrillExpand': '\\uF534',\n 'DrillShow': '\\uF535',\n 'SpecialEvent': '\\uF536',\n 'OneDriveFolder16': '\\uF53B',\n 'FunctionalManagerDashboard': '\\uF542',\n 'BIDashboard': '\\uF543',\n 'CodeEdit': '\\uF544',\n 'RenewalCurrent': '\\uF545',\n 'RenewalFuture': '\\uF546',\n 'SplitObject': '\\uF547',\n 'BulkUpload': '\\uF548',\n 'DownloadDocument': '\\uF549',\n 'GreetingCard': '\\uF54B',\n 'Flower': '\\uF54E',\n 'WaitlistConfirm': '\\uF550',\n 'WaitlistConfirmMirrored': '\\uF551',\n 'LaptopSecure': '\\uF552',\n 'DragObject': '\\uF553',\n 'EntryView': '\\uF554',\n 'EntryDecline': '\\uF555',\n 'ContactCardSettings': '\\uF556',\n 'ContactCardSettingsMirrored': '\\uF557'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-14.js.map" - }, - { - "id": "O/Hb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.base.js", - "index": null, - "index2": null, - "size": 1354, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "issuerId": "sGVl", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "joNx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Dialog.js", - "name": "./node_modules/office-ui-fabric-react/lib/Dialog.js" - }, - { - "id": "lNaB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js" - }, - { - "id": "Ypxj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.js" - }, - { - "id": "YzPW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.base.js" - }, - { - "id": "7c8E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.js" - }, - { - "id": "VuyN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js" - }, - { - "id": "sGVl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "lNaB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogFooter.base", - "loc": "6:0-36" - }, - { - "moduleId": "lNaB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DialogFooter.base", - "loc": "6:0-36" - }, - { - "moduleId": "sGVl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony side effect evaluation", - "userRequest": "./DialogFooter.base", - "loc": "2:0-55" - }, - { - "moduleId": "sGVl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.js", - "type": "harmony import specifier", - "userRequest": "./DialogFooter.base", - "loc": "4:33-49" - } - ], - "usedExports": false, - "providedExports": [ - "DialogFooterBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar DialogFooterBase = /** @class */ (function (_super) {\n __extends(DialogFooterBase, _super);\n function DialogFooterBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n return _this;\n }\n DialogFooterBase.prototype.render = function () {\n var _a = this.props, className = _a.className, styles = _a.styles, theme = _a.theme;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n });\n return (React.createElement(\"div\", { className: this._classNames.actions },\n React.createElement(\"div\", { className: this._classNames.actionsRight }, this._renderChildrenAsActions())));\n };\n DialogFooterBase.prototype._renderChildrenAsActions = function () {\n var _this = this;\n return React.Children.map(this.props.children, function (child) {\n return child ? React.createElement(\"span\", { className: _this._classNames.action }, child) : null;\n });\n };\n return DialogFooterBase;\n}(React.Component));\nexport { DialogFooterBase };\n//# sourceMappingURL=DialogFooter.base.js.map" - }, - { - "id": "O/R2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Persona/index.js", - "index": null, - "index2": null, - "size": 341, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "issuerId": "pOGM", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Persona.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "pOGM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "name": "./node_modules/office-ui-fabric-react/lib/Persona.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "li+k", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/PersonaCoin.js", - "module": "./node_modules/office-ui-fabric-react/lib/PersonaCoin.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/PersonaCoin.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Persona/index", - "loc": "1:0-43" - }, - { - "moduleId": "li+k", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/PersonaCoin.js", - "module": "./node_modules/office-ui-fabric-react/lib/PersonaCoin.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/PersonaCoin.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Persona/index", - "loc": "1:0-43" - }, - { - "moduleId": "pOGM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "module": "./node_modules/office-ui-fabric-react/lib/Persona.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Persona.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Persona/index", - "loc": "1:0-43" - }, - { - "moduleId": "pOGM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Persona.js", - "module": "./node_modules/office-ui-fabric-react/lib/Persona.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Persona.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Persona/index", - "loc": "1:0-43" - } - ], - "usedExports": false, - "providedExports": [ - "Persona", - "PersonaBase", - "PersonaSize", - "PersonaPresence", - "PersonaInitialsColor", - "PersonaCoin", - "PersonaCoinBase", - "personaSize", - "personaPresenceSize", - "sizeBoolean", - "sizeToPixels", - "presenceBoolean", - "getPersonaInitialsColor" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './Persona';\nexport * from './Persona.base';\nexport * from './Persona.types';\nexport * from './PersonaCoin/index';\nexport * from './PersonaConsts';\n// Exporting in case someone would like to track the current color of a persona\nexport { getPersonaInitialsColor } from './PersonaInitialsColor';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "O0fF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "index": null, - "index2": null, - "size": 3181, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "issuerId": "1L4v", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "0s40", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.js" - }, - { - "id": "1L4v", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardPreview.styles", - "loc": "3:0-104" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardPreview.styles", - "loc": "67:33-50" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardPreview.styles", - "loc": "73:33-50" - }, - { - "moduleId": "Svtm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardPreview.styles", - "loc": "3:0-57" - }, - { - "moduleId": "Svtm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardPreview.styles", - "loc": "4:65-74" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardPreviewGlobalClassNames", - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { getFocusStyle, getGlobalClassNames, HighContrastSelector } from '../../Styling';\nimport { IsFocusVisibleClassName } from '../../Utilities';\nexport var DocumentCardPreviewGlobalClassNames = {\n root: 'ms-DocumentCardPreview',\n icon: 'ms-DocumentCardPreview-icon',\n iconContainer: 'ms-DocumentCardPreview-iconContainer',\n};\nexport var getStyles = function (props) {\n var _a, _b;\n var theme = props.theme, className = props.className, isFileList = props.isFileList;\n var palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(DocumentCardPreviewGlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n fonts.small,\n {\n backgroundColor: isFileList ? palette.white : palette.neutralLighterAlt,\n borderBottom: \"1px solid \" + palette.neutralLight,\n overflow: \"hidden\",\n position: 'relative',\n },\n className,\n ],\n previewIcon: [\n classNames.iconContainer,\n {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n height: '100%',\n },\n ],\n icon: [\n classNames.icon,\n {\n left: '10px',\n bottom: '10px',\n position: 'absolute',\n },\n ],\n fileList: {\n padding: '16px 16px 0 16px',\n listStyleType: 'none',\n margin: 0,\n selectors: {\n li: {\n height: '16px',\n lineHeight: '16px',\n marginBottom: '8px',\n overflow: 'hidden',\n },\n },\n },\n fileListIcon: {\n display: 'inline-block',\n marginRight: '8px',\n },\n fileListLink: [\n getFocusStyle(theme, {\n highContrastStyle: {\n border: '1px solid WindowText',\n outline: 'none',\n },\n }),\n {\n boxSizing: 'border-box',\n color: palette.neutralDark,\n overflow: 'hidden',\n display: 'inline-block',\n textDecoration: 'none',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n width: 'calc(100% - 24px)',\n selectors: (_a = {\n ':hover': {\n color: palette.themePrimary,\n }\n },\n _a[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n outline: 'none',\n },\n _b),\n },\n _a),\n },\n ],\n fileListOverflowText: {\n padding: '0px 16px 8px 16px',\n display: 'block',\n },\n };\n};\n//# sourceMappingURL=DocumentCardPreview.styles.js.map" - }, - { - "id": "O0iI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "index": null, - "index2": null, - "size": 1063, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "2eko", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBarButton/MessageBarButton", - "loc": "9:0-52" - }, - { - "moduleId": "2eko", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./MessageBarButton/MessageBarButton", - "loc": "9:0-52" - } - ], - "usedExports": false, - "providedExports": [ - "MessageBarButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { DefaultButton } from '../DefaultButton/DefaultButton';\nimport { BaseComponent, customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './MessageBarButton.styles';\n/**\n * {@docCategory MessageBar}\n */\nvar MessageBarButton = /** @class */ (function (_super) {\n tslib_1.__extends(MessageBarButton, _super);\n function MessageBarButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n MessageBarButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return React.createElement(DefaultButton, tslib_1.__assign({}, this.props, { styles: getStyles(theme, styles), onRenderDescription: nullRender }));\n };\n MessageBarButton = tslib_1.__decorate([\n customizable('MessageBarButton', ['theme', 'styles'], true)\n ], MessageBarButton);\n return MessageBarButton;\n}(BaseComponent));\nexport { MessageBarButton };\n//# sourceMappingURL=MessageBarButton.js.map" - }, - { - "id": "O0oS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_defineProperty.js", - "name": "./node_modules/lodash/_defineProperty.js", - "index": 493, - "index2": 484, - "size": 233, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "issuerId": "hypo", - "issuerName": "./node_modules/lodash/_baseAssignValue.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "juv8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyObject.js", - "name": "./node_modules/lodash/_copyObject.js" - }, - { - "id": "MrPd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_assignValue.js", - "name": "./node_modules/lodash/_assignValue.js" - }, - { - "id": "hypo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "name": "./node_modules/lodash/_baseAssignValue.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "hypo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseAssignValue.js", - "module": "./node_modules/lodash/_baseAssignValue.js", - "moduleName": "./node_modules/lodash/_baseAssignValue.js", - "type": "cjs require", - "userRequest": "./_defineProperty", - "loc": "1:21-49" - }, - { - "moduleId": "pFRH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseSetToString.js", - "module": "./node_modules/lodash/_baseSetToString.js", - "moduleName": "./node_modules/lodash/_baseSetToString.js", - "type": "cjs require", - "userRequest": "./_defineProperty", - "loc": "2:21-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative');\n\nvar defineProperty = (function() {\n try {\n var func = getNative(Object, 'defineProperty');\n func({}, '', {});\n return func;\n } catch (e) {}\n}());\n\nmodule.exports = defineProperty;\n" - }, - { - "id": "O2QR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/AutoScroll.js", - "name": "./node_modules/@uifabric/utilities/lib/AutoScroll.js", - "index": null, - "index2": null, - "size": 4551, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./AutoScroll", - "loc": "2:0-29" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./AutoScroll", - "loc": "2:0-29" - }, - { - "moduleId": "noLp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "38:44-54" - } - ], - "usedExports": false, - "providedExports": [ - "AutoScroll" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { EventGroup } from './EventGroup';\nimport { findScrollableParent } from './scroll';\nimport { getRect } from './dom/getRect';\nvar SCROLL_ITERATION_DELAY = 16;\nvar SCROLL_GUTTER = 100;\nvar MAX_SCROLL_VELOCITY = 15;\n/**\n * AutoScroll simply hooks up mouse events given a parent element, and scrolls the container\n * up/down depending on how close the mouse is to the top/bottom of the container.\n *\n * Once you don't want autoscroll any more, just dispose the helper and it will unhook events.\n *\n * @public\n * {@docCategory AutoScroll}\n */\nvar AutoScroll = /** @class */ (function () {\n function AutoScroll(element) {\n this._events = new EventGroup(this);\n this._scrollableParent = findScrollableParent(element);\n this._incrementScroll = this._incrementScroll.bind(this);\n this._scrollRect = getRect(this._scrollableParent);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n if (this._scrollableParent === window) {\n this._scrollableParent = document.body;\n }\n if (this._scrollableParent) {\n this._events.on(window, 'mousemove', this._onMouseMove, true);\n this._events.on(window, 'touchmove', this._onTouchMove, true);\n }\n }\n AutoScroll.prototype.dispose = function () {\n this._events.dispose();\n this._stopScroll();\n };\n AutoScroll.prototype._onMouseMove = function (ev) {\n this._computeScrollVelocity(ev);\n };\n AutoScroll.prototype._onTouchMove = function (ev) {\n if (ev.touches.length > 0) {\n this._computeScrollVelocity(ev);\n }\n };\n AutoScroll.prototype._computeScrollVelocity = function (ev) {\n if (!this._scrollRect) {\n return;\n }\n var clientX;\n var clientY;\n if ('clientX' in ev) {\n clientX = ev.clientX;\n clientY = ev.clientY;\n }\n else {\n clientX = ev.touches[0].clientX;\n clientY = ev.touches[0].clientY;\n }\n var scrollRectTop = this._scrollRect.top;\n var scrollRectLeft = this._scrollRect.left;\n var scrollClientBottom = scrollRectTop + this._scrollRect.height - SCROLL_GUTTER;\n var scrollClientRight = scrollRectLeft + this._scrollRect.width - SCROLL_GUTTER;\n // variables to use for alternating scroll direction\n var scrollRect;\n var clientDirection;\n var scrollClient;\n // if either of these conditions are met we are scrolling vertically else horizontally\n if (clientY < scrollRectTop + SCROLL_GUTTER || clientY > scrollClientBottom) {\n clientDirection = clientY;\n scrollRect = scrollRectTop;\n scrollClient = scrollClientBottom;\n this._isVerticalScroll = true;\n }\n else {\n clientDirection = clientX;\n scrollRect = scrollRectLeft;\n scrollClient = scrollClientRight;\n this._isVerticalScroll = false;\n }\n // calculate scroll velocity and direction\n if (clientDirection < scrollRect + SCROLL_GUTTER) {\n this._scrollVelocity = Math.max(-MAX_SCROLL_VELOCITY, -MAX_SCROLL_VELOCITY * ((SCROLL_GUTTER - (clientDirection - scrollRect)) / SCROLL_GUTTER));\n }\n else if (clientDirection > scrollClient) {\n this._scrollVelocity = Math.min(MAX_SCROLL_VELOCITY, MAX_SCROLL_VELOCITY * ((clientDirection - scrollClient) / SCROLL_GUTTER));\n }\n else {\n this._scrollVelocity = 0;\n }\n if (this._scrollVelocity) {\n this._startScroll();\n }\n else {\n this._stopScroll();\n }\n };\n AutoScroll.prototype._startScroll = function () {\n if (!this._timeoutId) {\n this._incrementScroll();\n }\n };\n AutoScroll.prototype._incrementScroll = function () {\n if (this._scrollableParent) {\n if (this._isVerticalScroll) {\n this._scrollableParent.scrollTop += Math.round(this._scrollVelocity);\n }\n else {\n this._scrollableParent.scrollLeft += Math.round(this._scrollVelocity);\n }\n }\n this._timeoutId = setTimeout(this._incrementScroll, SCROLL_ITERATION_DELAY);\n };\n AutoScroll.prototype._stopScroll = function () {\n if (this._timeoutId) {\n clearTimeout(this._timeoutId);\n delete this._timeoutId;\n }\n };\n return AutoScroll;\n}());\nexport { AutoScroll };\n//# sourceMappingURL=AutoScroll.js.map" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js", - "index": 445, - "index2": 546, - "size": 5575, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_baseClone", - "loc": "2:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var Stack = require('./_Stack'),\n arrayEach = require('./_arrayEach'),\n assignValue = require('./_assignValue'),\n baseAssign = require('./_baseAssign'),\n baseAssignIn = require('./_baseAssignIn'),\n cloneBuffer = require('./_cloneBuffer'),\n copyArray = require('./_copyArray'),\n copySymbols = require('./_copySymbols'),\n copySymbolsIn = require('./_copySymbolsIn'),\n getAllKeys = require('./_getAllKeys'),\n getAllKeysIn = require('./_getAllKeysIn'),\n getTag = require('./_getTag'),\n initCloneArray = require('./_initCloneArray'),\n initCloneByTag = require('./_initCloneByTag'),\n initCloneObject = require('./_initCloneObject'),\n isArray = require('./isArray'),\n isBuffer = require('./isBuffer'),\n isMap = require('./isMap'),\n isObject = require('./isObject'),\n isSet = require('./isSet'),\n keys = require('./keys');\n\n/** Used to compose bitmasks for cloning. */\nvar CLONE_DEEP_FLAG = 1,\n CLONE_FLAT_FLAG = 2,\n CLONE_SYMBOLS_FLAG = 4;\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n genTag = '[object GeneratorFunction]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n objectTag = '[object Object]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n symbolTag = '[object Symbol]',\n weakMapTag = '[object WeakMap]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n/** Used to identify `toStringTag` values supported by `_.clone`. */\nvar cloneableTags = {};\ncloneableTags[argsTag] = cloneableTags[arrayTag] =\ncloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] =\ncloneableTags[boolTag] = cloneableTags[dateTag] =\ncloneableTags[float32Tag] = cloneableTags[float64Tag] =\ncloneableTags[int8Tag] = cloneableTags[int16Tag] =\ncloneableTags[int32Tag] = cloneableTags[mapTag] =\ncloneableTags[numberTag] = cloneableTags[objectTag] =\ncloneableTags[regexpTag] = cloneableTags[setTag] =\ncloneableTags[stringTag] = cloneableTags[symbolTag] =\ncloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =\ncloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\ncloneableTags[errorTag] = cloneableTags[funcTag] =\ncloneableTags[weakMapTag] = false;\n\n/**\n * The base implementation of `_.clone` and `_.cloneDeep` which tracks\n * traversed objects.\n *\n * @private\n * @param {*} value The value to clone.\n * @param {boolean} bitmask The bitmask flags.\n * 1 - Deep clone\n * 2 - Flatten inherited properties\n * 4 - Clone symbols\n * @param {Function} [customizer] The function to customize cloning.\n * @param {string} [key] The key of `value`.\n * @param {Object} [object] The parent object of `value`.\n * @param {Object} [stack] Tracks traversed objects and their clone counterparts.\n * @returns {*} Returns the cloned value.\n */\nfunction baseClone(value, bitmask, customizer, key, object, stack) {\n var result,\n isDeep = bitmask & CLONE_DEEP_FLAG,\n isFlat = bitmask & CLONE_FLAT_FLAG,\n isFull = bitmask & CLONE_SYMBOLS_FLAG;\n\n if (customizer) {\n result = object ? customizer(value, key, object, stack) : customizer(value);\n }\n if (result !== undefined) {\n return result;\n }\n if (!isObject(value)) {\n return value;\n }\n var isArr = isArray(value);\n if (isArr) {\n result = initCloneArray(value);\n if (!isDeep) {\n return copyArray(value, result);\n }\n } else {\n var tag = getTag(value),\n isFunc = tag == funcTag || tag == genTag;\n\n if (isBuffer(value)) {\n return cloneBuffer(value, isDeep);\n }\n if (tag == objectTag || tag == argsTag || (isFunc && !object)) {\n result = (isFlat || isFunc) ? {} : initCloneObject(value);\n if (!isDeep) {\n return isFlat\n ? copySymbolsIn(value, baseAssignIn(result, value))\n : copySymbols(value, baseAssign(result, value));\n }\n } else {\n if (!cloneableTags[tag]) {\n return object ? value : {};\n }\n result = initCloneByTag(value, tag, isDeep);\n }\n }\n // Check for circular references and return its corresponding clone.\n stack || (stack = new Stack);\n var stacked = stack.get(value);\n if (stacked) {\n return stacked;\n }\n stack.set(value, result);\n\n if (isSet(value)) {\n value.forEach(function(subValue) {\n result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));\n });\n } else if (isMap(value)) {\n value.forEach(function(subValue, key) {\n result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack));\n });\n }\n\n var keysFunc = isFull\n ? (isFlat ? getAllKeysIn : getAllKeys)\n : (isFlat ? keysIn : keys);\n\n var props = isArr ? undefined : keysFunc(value);\n arrayEach(props || value, function(subValue, key) {\n if (props) {\n key = subValue;\n subValue = value[key];\n }\n // Recursively populate clone (susceptible to call stack limits).\n assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));\n });\n return result;\n}\n\nmodule.exports = baseClone;\n" - }, - { - "id": "OEkS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.js", - "index": null, - "index2": null, - "size": 332, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerId": "7hkT", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardStatus", - "loc": "11:0-37" - }, - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DocumentCardStatus", - "loc": "11:0-37" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardStatus" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { DocumentCardStatusBase } from './DocumentCardStatus.base';\nimport { getStyles } from './DocumentCardStatus.styles';\nexport var DocumentCardStatus = styled(DocumentCardStatusBase, getStyles, undefined, { scope: 'DocumentCardStatus' });\n//# sourceMappingURL=DocumentCardStatus.js.map" - }, - { - "id": "OIa/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "index": null, - "index2": null, - "size": 10108, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "issuerId": "7XQV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "ccZc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/TeachingBubble.js", - "name": "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js" - }, - { - "id": "7rHc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js" - }, - { - "id": "7XQV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7XQV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "type": "harmony side effect evaluation", - "userRequest": "./TeachingBubble.styles", - "loc": "3:0-52" - }, - { - "moduleId": "7XQV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.js", - "type": "harmony import specifier", - "userRequest": "./TeachingBubble.styles", - "loc": "4:55-64" - }, - { - "moduleId": "ytt/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./TeachingBubble.styles", - "loc": "3:0-52" - }, - { - "moduleId": "ytt/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.js", - "type": "harmony import specifier", - "userRequest": "./TeachingBubble.styles", - "loc": "4:69-78" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __spreadArrays } from \"tslib\";\nimport { AnimationVariables, FontWeights, getFocusStyle, getGlobalClassNames, keyframes, } from '../../Styling';\nimport { memoizeFunction } from '../../Utilities';\nvar globalClassNames = {\n root: 'ms-TeachingBubble',\n body: 'ms-TeachingBubble-body',\n bodyContent: 'ms-TeachingBubble-bodycontent',\n closeButton: 'ms-TeachingBubble-closebutton',\n content: 'ms-TeachingBubble-content',\n footer: 'ms-TeachingBubble-footer',\n header: 'ms-TeachingBubble-header',\n headerIsCondensed: 'ms-TeachingBubble-header--condensed',\n headerIsSmall: 'ms-TeachingBubble-header--small',\n headerIsLarge: 'ms-TeachingBubble-header--large',\n headline: 'ms-TeachingBubble-headline',\n image: 'ms-TeachingBubble-image',\n primaryButton: 'ms-TeachingBubble-primaryButton',\n secondaryButton: 'ms-TeachingBubble-secondaryButton',\n subText: 'ms-TeachingBubble-subText',\n // TODO: Button global class name usage should be converted to a styles function once\n // Button supports JS styling, which means these button names can be removed.\n button: 'ms-Button',\n buttonLabel: 'ms-Button-label',\n};\nvar opacityFadeIn = memoizeFunction(function () {\n return keyframes({\n '0%': {\n opacity: 0,\n animationTimingFunction: AnimationVariables.easeFunction1,\n transform: 'scale3d(.90,.90,.90)',\n },\n '100%': {\n opacity: 1,\n transform: 'scale3d(1,1,1)',\n },\n });\n});\nvar rootStyle = function (isWide, calloutProps) {\n var _a = calloutProps || {}, calloutWidth = _a.calloutWidth, calloutMaxWidth = _a.calloutMaxWidth;\n return [\n {\n display: 'block',\n maxWidth: 364,\n border: 0,\n outline: 'transparent',\n width: calloutWidth || 'calc(100% + 1px)',\n animationName: \"\" + opacityFadeIn(),\n animationDuration: '300ms',\n animationTimingFunction: 'linear',\n animationFillMode: 'both',\n },\n isWide && {\n maxWidth: calloutMaxWidth || 456,\n },\n ];\n};\nvar headerStyle = function (classNames, hasCondensedHeadline, hasSmallHeadline) {\n if (hasCondensedHeadline) {\n return [\n classNames.headerIsCondensed,\n {\n marginBottom: 14,\n },\n ];\n }\n return [\n hasSmallHeadline && classNames.headerIsSmall,\n !hasSmallHeadline && classNames.headerIsLarge,\n {\n selectors: {\n ':not(:last-child)': {\n marginBottom: 14,\n },\n },\n },\n ];\n};\nexport var getStyles = function (props) {\n var _a, _b, _c;\n var hasCondensedHeadline = props.hasCondensedHeadline, hasSmallHeadline = props.hasSmallHeadline, hasCloseButton = props.hasCloseButton, hasHeadline = props.hasHeadline, isWide = props.isWide, primaryButtonClassName = props.primaryButtonClassName, secondaryButtonClassName = props.secondaryButtonClassName, theme = props.theme, _d = props.calloutProps, calloutProps = _d === void 0 ? { className: undefined, theme: theme } : _d;\n var hasLargeHeadline = !hasCondensedHeadline && !hasSmallHeadline;\n var palette = theme.palette, semanticColors = theme.semanticColors, fonts = theme.fonts;\n var classNames = getGlobalClassNames(globalClassNames, theme);\n var hideDefaultFocusRing = getFocusStyle(theme, {\n outlineColor: 'transparent',\n borderColor: 'transparent',\n });\n return {\n root: [classNames.root, fonts.medium, calloutProps.className],\n body: [\n classNames.body,\n hasCloseButton && !hasHeadline && { marginRight: 24 },\n {\n selectors: {\n ':not(:last-child)': {\n marginBottom: 20,\n },\n },\n },\n ],\n bodyContent: [\n classNames.bodyContent,\n {\n padding: '20px 24px 20px 24px',\n },\n ],\n closeButton: [\n classNames.closeButton,\n {\n position: 'absolute',\n right: 0,\n top: 0,\n margin: '15px 15px 0 0',\n borderRadius: 0,\n color: palette.white,\n fontSize: fonts.small.fontSize,\n selectors: {\n ':hover': {\n background: palette.themeDarkAlt,\n color: palette.white,\n },\n ':active': {\n background: palette.themeDark,\n color: palette.white,\n },\n ':focus': {\n border: \"1px solid \" + semanticColors.variantBorder,\n },\n },\n },\n ],\n content: __spreadArrays([\n classNames.content\n ], rootStyle(isWide), [\n isWide && {\n display: 'flex',\n },\n ]),\n footer: [\n classNames.footer,\n {\n display: 'flex',\n flex: 'auto',\n alignItems: 'center',\n color: palette.white,\n selectors: (_a = {},\n // TODO: global class name usage should be converted to a styles function once Button supports JS styling\n _a[\".\" + classNames.button + \":not(:first-child)\"] = {\n marginLeft: 10,\n },\n _a),\n },\n ],\n header: __spreadArrays([\n classNames.header\n ], headerStyle(classNames, hasCondensedHeadline, hasSmallHeadline), [\n hasCloseButton && { marginRight: 24 },\n (hasCondensedHeadline || hasSmallHeadline) && [\n fonts.medium,\n {\n fontWeight: FontWeights.semibold,\n },\n ],\n ]),\n headline: [\n classNames.headline,\n {\n margin: 0,\n color: palette.white,\n fontWeight: FontWeights.semibold,\n },\n hasLargeHeadline && [\n {\n fontSize: fonts.xLarge.fontSize,\n },\n ],\n ],\n imageContent: [\n classNames.header,\n classNames.image,\n isWide && {\n display: 'flex',\n alignItems: 'center',\n maxWidth: 154,\n },\n ],\n primaryButton: [\n classNames.primaryButton,\n primaryButtonClassName,\n hideDefaultFocusRing,\n {\n backgroundColor: palette.white,\n borderColor: palette.white,\n color: palette.themePrimary,\n whiteSpace: 'nowrap',\n selectors: (_b = {},\n // TODO: global class name usage should be converted to a styles function once Button supports JS styling\n _b[\".\" + classNames.buttonLabel] = fonts.medium,\n _b[':hover'] = {\n backgroundColor: palette.themeLighter,\n borderColor: palette.themeLighter,\n color: palette.themePrimary,\n },\n _b[':focus'] = {\n backgroundColor: palette.themeLighter,\n border: \"1px solid \" + palette.black,\n outline: \"1px solid \" + palette.white,\n outlineOffset: '-2px',\n },\n _b[':active'] = {\n backgroundColor: palette.white,\n borderColor: palette.white,\n color: palette.themePrimary,\n },\n _b),\n },\n ],\n secondaryButton: [\n classNames.secondaryButton,\n secondaryButtonClassName,\n {\n backgroundColor: palette.themePrimary,\n borderColor: palette.white,\n whiteSpace: 'nowrap',\n selectors: (_c = {},\n // TODO: global class name usage should be converted to a styles function once Button supports JS styling\n _c[\".\" + classNames.buttonLabel] = [\n fonts.medium,\n {\n color: palette.white,\n },\n ],\n _c[':hover'] = {\n backgroundColor: palette.themeDarkAlt,\n borderColor: palette.white,\n },\n _c[':focus'] = {\n backgroundColor: palette.themeDark,\n border: \"1px solid \" + palette.black,\n outline: \"1px solid \" + palette.white,\n outlineOffset: '-2px',\n },\n _c[':active'] = {\n backgroundColor: palette.themePrimary,\n borderColor: palette.white,\n },\n _c),\n },\n ],\n subText: [\n classNames.subText,\n {\n margin: 0,\n fontSize: fonts.medium.fontSize,\n color: palette.white,\n fontWeight: FontWeights.regular,\n },\n ],\n subComponentStyles: {\n callout: {\n root: __spreadArrays(rootStyle(isWide, calloutProps), [fonts.medium]),\n beak: [\n {\n background: palette.themePrimary,\n },\n ],\n calloutMain: [\n {\n background: palette.themePrimary,\n },\n ],\n },\n },\n };\n};\n//# sourceMappingURL=TeachingBubble.styles.js.map" - }, - { - "id": "OIc5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.types.js", - "index": null, - "index2": null, - "size": 639, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "issuerId": "MgI6", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - }, - { - "id": "MgI6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony side effect evaluation", - "userRequest": "./Suggestions.types", - "loc": "7:0-60" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "34:25-45" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "37:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "40:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "43:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "46:25-45" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "48:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "52:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "55:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "58:25-45" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "60:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "67:25-45" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "69:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "73:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "76:25-45" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "79:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "82:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "85:25-45" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "87:52-72" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "142:32-52" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "179:78-98" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "180:79-99" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "186:105-125" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "189:105-125" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "216:63-83" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "217:64-84" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "236:49-69" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "240:17-37" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "243:17-37" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "250:48-68" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "253:48-68" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "258:48-68" - }, - { - "moduleId": "MgI6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.js", - "type": "harmony import specifier", - "userRequest": "./Suggestions.types", - "loc": "261:48-68" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Suggestions/Suggestions.types", - "loc": "2:0-48" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Suggestions/Suggestions.types", - "loc": "2:0-48" - } - ], - "usedExports": false, - "providedExports": [ - "SuggestionActionType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * Enum to help identify which suggestions action button is selected.\n * {@docCategory Pickers}\n */\nexport var SuggestionActionType;\n(function (SuggestionActionType) {\n /** None of the actions is selected. */\n SuggestionActionType[SuggestionActionType[\"none\"] = 0] = \"none\";\n /** ForceResolve action is selected. */\n SuggestionActionType[SuggestionActionType[\"forceResolve\"] = 1] = \"forceResolve\";\n /** SearchMore action is selected. */\n SuggestionActionType[SuggestionActionType[\"searchMore\"] = 2] = \"searchMore\";\n})(SuggestionActionType || (SuggestionActionType = {}));\n//# sourceMappingURL=Suggestions.types.js.map" - }, - { - "id": "OQ9B", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.base.js", - "index": null, - "index2": null, - "size": 4153, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "issuerId": "aXXY", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js" - }, - { - "id": "K0tY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js" - }, - { - "id": "II1S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.js" - }, - { - "id": "uAzL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.base.js" - }, - { - "id": "aXXY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ExpandingCard.base", - "loc": "5:0-37" - }, - { - "moduleId": "K0tY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ExpandingCard.base", - "loc": "5:0-37" - }, - { - "moduleId": "aXXY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "type": "harmony side effect evaluation", - "userRequest": "./ExpandingCard.base", - "loc": "3:0-57" - }, - { - "moduleId": "aXXY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.js", - "type": "harmony import specifier", - "userRequest": "./ExpandingCard.base", - "loc": "4:34-51" - } - ], - "usedExports": false, - "providedExports": [ - "ExpandingCardBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, KeyCodes, Async, initializeComponentRef } from '../../Utilities';\nimport { ExpandingCardMode, } from './ExpandingCard.types';\nimport { CardCallout } from './CardCallout/CardCallout';\nvar getClassNames = classNamesFunction();\nvar ExpandingCardBase = /** @class */ (function (_super) {\n __extends(ExpandingCardBase, _super);\n function ExpandingCardBase(props) {\n var _this = _super.call(this, props) || this;\n _this._expandedElem = React.createRef();\n _this._onKeyDown = function (ev) {\n if (ev.which === KeyCodes.escape) {\n _this.props.onLeave && _this.props.onLeave(ev);\n }\n };\n _this._onRenderCompactCard = function () {\n return React.createElement(\"div\", { className: _this._classNames.compactCard }, _this.props.onRenderCompactCard(_this.props.renderData));\n };\n _this._onRenderExpandedCard = function () {\n // firstFrameRendered helps in initially setting height of expanded card to 1px, even if mode prop is set to\n // ExpandingCardMode.expanded on first render. This is to make sure transition animation takes place.\n !_this.state.firstFrameRendered &&\n _this._async.requestAnimationFrame(function () {\n _this.setState({\n firstFrameRendered: true,\n });\n });\n return (React.createElement(\"div\", { className: _this._classNames.expandedCard, ref: _this._expandedElem },\n React.createElement(\"div\", { className: _this._classNames.expandedCardScroll }, _this.props.onRenderExpandedCard && _this.props.onRenderExpandedCard(_this.props.renderData))));\n };\n _this._checkNeedsScroll = function () {\n var expandedCardHeight = _this.props.expandedCardHeight;\n _this._async.requestAnimationFrame(function () {\n if (_this._expandedElem.current && _this._expandedElem.current.scrollHeight >= expandedCardHeight) {\n _this.setState({\n needsScroll: true,\n });\n }\n });\n };\n _this._async = new Async(_this);\n initializeComponentRef(_this);\n _this.state = {\n firstFrameRendered: false,\n needsScroll: false,\n };\n return _this;\n }\n ExpandingCardBase.prototype.componentDidMount = function () {\n this._checkNeedsScroll();\n };\n ExpandingCardBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n };\n ExpandingCardBase.prototype.render = function () {\n var _a = this.props, styles = _a.styles, compactCardHeight = _a.compactCardHeight, expandedCardHeight = _a.expandedCardHeight, theme = _a.theme, mode = _a.mode, className = _a.className;\n var _b = this.state, needsScroll = _b.needsScroll, firstFrameRendered = _b.firstFrameRendered;\n var finalHeight = compactCardHeight + expandedCardHeight;\n this._classNames = getClassNames(styles, {\n theme: theme,\n compactCardHeight: compactCardHeight,\n className: className,\n expandedCardHeight: expandedCardHeight,\n needsScroll: needsScroll,\n expandedCardFirstFrameRendered: mode === ExpandingCardMode.expanded && firstFrameRendered,\n });\n var content = (React.createElement(\"div\", { onMouseEnter: this.props.onEnter, onMouseLeave: this.props.onLeave, onKeyDown: this._onKeyDown },\n this._onRenderCompactCard(),\n this._onRenderExpandedCard()));\n return (React.createElement(CardCallout, __assign({}, this.props, { content: content, finalHeight: finalHeight, className: this._classNames.root })));\n };\n ExpandingCardBase.defaultProps = {\n compactCardHeight: 156,\n expandedCardHeight: 384,\n directionalHintFixed: true,\n };\n return ExpandingCardBase;\n}(React.Component));\nexport { ExpandingCardBase };\n//# sourceMappingURL=ExpandingCard.base.js.map" - }, - { - "id": "ORDb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGridCell.js", - "index": null, - "index2": null, - "size": 3159, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "issuerId": "m5P3", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "dkKi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ButtonGrid.js", - "name": "./node_modules/office-ui-fabric-react/lib/ButtonGrid.js" - }, - { - "id": "m5P3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "m5P3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ButtonGridCell", - "loc": "2:0-33" - }, - { - "moduleId": "m5P3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ButtonGridCell", - "loc": "2:0-33" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/ButtonGrid/ButtonGridCell", - "loc": "6:0-75" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/ButtonGrid/ButtonGridCell", - "loc": "45:2-16" - } - ], - "usedExports": false, - "providedExports": [ - "ButtonGridCell", - "GridCell" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { css } from '../../Utilities';\nimport { CommandButton } from '../../Button';\nvar ButtonGridCell = /** @class */ (function (_super) {\n __extends(ButtonGridCell, _super);\n function ButtonGridCell() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onClick = function () {\n var _a = _this.props, onClick = _a.onClick, disabled = _a.disabled, item = _a.item;\n if (onClick && !disabled) {\n onClick(item);\n }\n };\n _this._onMouseEnter = function (ev) {\n var _a = _this.props, onHover = _a.onHover, disabled = _a.disabled, item = _a.item, onMouseEnter = _a.onMouseEnter;\n var didUpdateOnEnter = onMouseEnter && onMouseEnter(ev);\n if (!didUpdateOnEnter && onHover && !disabled) {\n onHover(item);\n }\n };\n _this._onMouseMove = function (ev) {\n var _a = _this.props, onHover = _a.onHover, disabled = _a.disabled, item = _a.item, onMouseMove = _a.onMouseMove;\n var didUpdateOnMove = onMouseMove && onMouseMove(ev);\n if (!didUpdateOnMove && onHover && !disabled) {\n onHover(item);\n }\n };\n _this._onMouseLeave = function (ev) {\n var _a = _this.props, onHover = _a.onHover, disabled = _a.disabled, onMouseLeave = _a.onMouseLeave;\n var didUpdateOnLeave = onMouseLeave && onMouseLeave(ev);\n if (!didUpdateOnLeave && onHover && !disabled) {\n onHover();\n }\n };\n _this._onFocus = function () {\n var _a = _this.props, onFocus = _a.onFocus, disabled = _a.disabled, item = _a.item;\n if (onFocus && !disabled) {\n onFocus(item);\n }\n };\n return _this;\n }\n ButtonGridCell.prototype.render = function () {\n var _a;\n var _b = this.props, item = _b.item, id = _b.id, className = _b.className, role = _b.role, selected = _b.selected, disabled = _b.disabled, onRenderItem = _b.onRenderItem, cellDisabledStyle = _b.cellDisabledStyle, cellIsSelectedStyle = _b.cellIsSelectedStyle, index = _b.index, label = _b.label, getClassNames = _b.getClassNames;\n return (React.createElement(CommandButton, { id: id, \"data-index\": index, \"data-is-focusable\": true, disabled: disabled, className: css(className, (_a = {},\n _a['' + cellIsSelectedStyle] = selected,\n _a['' + cellDisabledStyle] = disabled,\n _a)), onClick: this._onClick, onMouseEnter: this._onMouseEnter, onMouseMove: this._onMouseMove, onMouseLeave: this._onMouseLeave, onFocus: this._onFocus, role: role, \"aria-selected\": selected, ariaLabel: label, title: label, getClassNames: getClassNames }, onRenderItem(item)));\n };\n ButtonGridCell.defaultProps = {\n disabled: false,\n };\n return ButtonGridCell;\n}(React.Component));\nexport { ButtonGridCell };\n/**\n * @deprecated - use ButtonGridCell instead\n */\nexport var GridCell = ButtonGridCell;\n//# sourceMappingURL=ButtonGridCell.js.map" - }, - { - "id": "OXMl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Spinner/index.js", - "index": null, - "index2": null, - "size": 125, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "issuerId": "QJEM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js" - }, - { - "id": "QJEM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QJEM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Spinner/index", - "loc": "1:0-43" - }, - { - "moduleId": "QJEM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Spinner/index", - "loc": "1:0-43" - } - ], - "usedExports": false, - "providedExports": [ - "Spinner", - "SpinnerBase", - "SpinnerSize", - "SpinnerType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export * from './Spinner';\nexport * from './Spinner.base';\nexport * from './Spinner.types';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "OXrI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "name": "./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js", - "index": 41, - "index2": 28, - "size": 3544, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSets", - "loc": "1:0-52" - }, - { - "moduleId": "01ST", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "module": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js", - "type": "harmony import specifier", - "userRequest": "./concatStyleSets", - "loc": "36:31-46" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSets", - "loc": "3:0-52" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./concatStyleSets", - "loc": "3:0-52" - }, - { - "moduleId": "N+vi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "module": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "type": "harmony side effect evaluation", - "userRequest": "./concatStyleSets", - "loc": "1:0-52" - }, - { - "moduleId": "N+vi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "module": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/concatStyleSetsWithProps.js", - "type": "harmony import specifier", - "userRequest": "./concatStyleSets", - "loc": "27:15-30" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "40:51-66" - } - ], - "usedExports": [ - "concatStyleSets" - ], - "providedExports": [ - "concatStyleSets" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __spreadArrays } from \"tslib\";\n/**\n * Combine a set of styles together (but does not register css classes).\n * @param styleSets - One or more stylesets to be merged (each param can also be falsy).\n */\nexport function concatStyleSets() {\n var styleSets = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styleSets[_i] = arguments[_i];\n }\n if (styleSets && styleSets.length === 1 && styleSets[0] && !styleSets[0].subComponentStyles) {\n return styleSets[0];\n }\n var mergedSet = {};\n // We process sub component styles in two phases. First we collect them, then we combine them into 1 style function.\n var workingSubcomponentStyles = {};\n for (var _a = 0, styleSets_1 = styleSets; _a < styleSets_1.length; _a++) {\n var currentSet = styleSets_1[_a];\n if (currentSet) {\n for (var prop in currentSet) {\n if (currentSet.hasOwnProperty(prop)) {\n if (prop === 'subComponentStyles' && currentSet.subComponentStyles !== undefined) {\n // subcomponent styles - style functions or objects\n var currentComponentStyles = currentSet.subComponentStyles;\n for (var subCompProp in currentComponentStyles) {\n if (currentComponentStyles.hasOwnProperty(subCompProp)) {\n if (workingSubcomponentStyles.hasOwnProperty(subCompProp)) {\n workingSubcomponentStyles[subCompProp].push(currentComponentStyles[subCompProp]);\n }\n else {\n workingSubcomponentStyles[subCompProp] = [currentComponentStyles[subCompProp]];\n }\n }\n }\n continue;\n }\n // the as any casts below is a workaround for ts 2.8.\n // todo: remove cast to any in ts 2.9.\n var mergedValue = mergedSet[prop];\n var currentValue = currentSet[prop];\n if (mergedValue === undefined) {\n mergedSet[prop] = currentValue;\n }\n else {\n mergedSet[prop] = __spreadArrays((Array.isArray(mergedValue) ? mergedValue : [mergedValue]), (Array.isArray(currentValue) ? currentValue : [currentValue]));\n }\n }\n }\n }\n }\n if (Object.keys(workingSubcomponentStyles).length > 0) {\n mergedSet.subComponentStyles = {};\n var mergedSubStyles = mergedSet.subComponentStyles;\n var _loop_1 = function (subCompProp) {\n if (workingSubcomponentStyles.hasOwnProperty(subCompProp)) {\n var workingSet_1 = workingSubcomponentStyles[subCompProp];\n mergedSubStyles[subCompProp] = function (styleProps) {\n return concatStyleSets.apply(void 0, workingSet_1.map(function (styleFunctionOrObject) {\n return typeof styleFunctionOrObject === 'function' ? styleFunctionOrObject(styleProps) : styleFunctionOrObject;\n }));\n };\n }\n };\n // now we process the subcomponent styles if there are any\n for (var subCompProp in workingSubcomponentStyles) {\n _loop_1(subCompProp);\n }\n }\n return mergedSet;\n}\n//# sourceMappingURL=concatStyleSets.js.map" - }, - { - "id": "Of+w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_WeakMap.js", - "name": "./node_modules/lodash/_WeakMap.js", - "index": 538, - "index2": 530, - "size": 207, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "issuerId": "QqLw", - "issuerName": "./node_modules/lodash/_getTag.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "QqLw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "module": "./node_modules/lodash/_getTag.js", - "moduleName": "./node_modules/lodash/_getTag.js", - "type": "cjs require", - "userRequest": "./_WeakMap", - "loc": "5:14-35" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var getNative = require('./_getNative'),\n root = require('./_root');\n\n/* Built-in method references that are verified to be native. */\nvar WeakMap = getNative(root, 'WeakMap');\n\nmodule.exports = WeakMap;\n" - }, - { - "id": "Ox9w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js", - "index": null, - "index2": null, - "size": 125, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerId": "3ZFk", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "mBXz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DetailsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/DetailsList.js" - }, - { - "id": "3ZFk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/selection/index", - "loc": "1:0-48" - }, - { - "moduleId": "3ZFk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js", - "type": "harmony export imported specifier", - "userRequest": "../../utilities/selection/index", - "loc": "1:0-48" - }, - { - "moduleId": "MjwZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Selection.js", - "module": "./node_modules/office-ui-fabric-react/lib/Selection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Selection.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/selection/index", - "loc": "1:0-44" - }, - { - "moduleId": "MjwZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Selection.js", - "module": "./node_modules/office-ui-fabric-react/lib/Selection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Selection.js", - "type": "harmony export imported specifier", - "userRequest": "./utilities/selection/index", - "loc": "1:0-44" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/selection/index", - "loc": "6:0-90" - }, - { - "moduleId": "i41p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "module": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/selection/index", - "loc": "2:0-44" - }, - { - "moduleId": "i41p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "module": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js", - "type": "harmony export imported specifier", - "userRequest": "./utilities/selection/index", - "loc": "2:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/selection/index", - "loc": "4:0-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/selection/index", - "loc": "6:0-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/selection/index", - "loc": "9:0-90" - } - ], - "usedExports": false, - "providedExports": [ - "SELECTION_CHANGE", - "SelectionDirection", - "SelectionMode", - "Selection", - "SelectionZone" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './interfaces';\nexport * from './Selection';\nexport * from './SelectionZone';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "OxEE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/asAsync.js", - "index": null, - "index2": null, - "size": 3099, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./asAsync", - "loc": "14:0-26" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./asAsync", - "loc": "14:0-26" - } - ], - "usedExports": false, - "providedExports": [ - "asAsync" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "/**\n * asAsync - a HOC for async loading components.\n *\n * Usage:\n *\n * const AsyncDialog = asAsync({\n * load: () => import('Dialog').then(result => result.default),\n * });\n *\n * React.render(domElement, } { ...dialogProps } />);\n *\n * Note the `asyncPlaceholder` prop will be respected when rendering the async component and it hasn't\n * been loaded yet.\n */\nimport * as tslib_1 from \"tslib\";\nimport * as React from 'react';\n/**\n * If possible, use a WeakMap to maintain a cache of loaded components.\n * This can be used to synchronously render components that have already been loaded,\n * rather than having to wait for at least one async tick.\n */\nvar _syncModuleCache = typeof WeakMap !== 'undefined'\n ? // tslint:disable-next-line:no-any\n new WeakMap()\n : undefined;\n/**\n * Produces a component which internally loads the target component before first mount.\n * The component passes all props through to the loaded component.\n *\n * This overload accepts a module with a default export for the component.\n */\nexport function asAsync(options) {\n var Async = /** @class */ (function (_super) {\n tslib_1.__extends(Async, _super);\n function Async() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.state = {\n Component: _syncModuleCache ? _syncModuleCache.get(options.load) : undefined\n };\n return _this;\n }\n Async.prototype.render = function () {\n // Typescript issue: the rest can't be pulled without the any cast, as TypeScript fails with rest on generics.\n // tslint:disable-next-line:no-any\n var _a = this.props, forwardedRef = _a.forwardedRef, Placeholder = _a.asyncPlaceholder, rest = tslib_1.__rest(_a, [\"forwardedRef\", \"asyncPlaceholder\"]);\n var Component = this.state.Component;\n return Component ? React.createElement(Component, tslib_1.__assign({ ref: forwardedRef }, rest)) : Placeholder ? React.createElement(Placeholder, null) : null;\n };\n Async.prototype.componentDidMount = function () {\n var _this = this;\n var Component = this.state.Component;\n if (!Component) {\n options\n .load()\n .then(function (LoadedComponent) {\n if (LoadedComponent) {\n // Cache component for future reference.\n _syncModuleCache && _syncModuleCache.set(options.load, LoadedComponent);\n // Set state.\n _this.setState({\n Component: LoadedComponent\n }, options.onLoad);\n }\n })\n .catch(options.onError);\n }\n };\n return Async;\n }(React.Component));\n return React.forwardRef(function (props, ref) { return (React.createElement(Async, tslib_1.__assign({}, props, { forwardedRef: ref }))); });\n}\n//# sourceMappingURL=asAsync.js.map" - }, - { - "id": "Oylf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/resources.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/resources.js", - "index": null, - "index2": null, - "size": 305, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./resources", - "loc": "44:0-28" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./resources", - "loc": "44:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "getResourceUrl", - "setBaseUrl" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "var _baseUrl = '';\n/** Sets the current base url used for fetching images. */\nexport function getResourceUrl(url) {\n return _baseUrl + url;\n}\n/** Gets the current base url used for fetching images. */\nexport function setBaseUrl(baseUrl) {\n _baseUrl = baseUrl;\n}\n//# sourceMappingURL=resources.js.map" - }, - { - "id": "P2nX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/IPropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/IPropertyFieldSitePicker.js", - "index": 885, - "index2": 882, - "size": 52, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerId": "Bd+z", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./IPropertyFieldSitePicker", - "loc": "2:0-43" - }, - { - "moduleId": "Bd+z", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./IPropertyFieldSitePicker", - "loc": "2:0-43" - } - ], - "usedExports": false, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "//# sourceMappingURL=IPropertyFieldSitePicker.js.map" - }, - { - "id": "PGgM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "index": null, - "index2": null, - "size": 238, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "issuerId": "9DMD", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "7SqS", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Announced.js", - "name": "./node_modules/office-ui-fabric-react/lib/Announced.js" - }, - { - "id": "ebgD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Announced/index.js" - }, - { - "id": "9DMD", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "9DMD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "type": "harmony side effect evaluation", - "userRequest": "./Announced.styles", - "loc": "3:0-47" - }, - { - "moduleId": "9DMD", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.js", - "type": "harmony import specifier", - "userRequest": "./Announced.styles", - "loc": "4:45-54" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { hiddenContentStyle } from '../../Styling';\nexport var getStyles = function (props) {\n return {\n root: props.className,\n screenReaderText: hiddenContentStyle,\n };\n};\n//# sourceMappingURL=Announced.styles.js.map" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js", - "index": null, - "index2": null, - "size": 79, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Pickers", - "loc": "57:0-26" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Pickers", - "loc": "57:0-26" - }, - { - "moduleId": "ll1P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsCore.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Pickers", - "loc": "4:0-51" - } - ], - "usedExports": false, - "providedExports": [ - "Suggestions", - "SuggestionActionType", - "SuggestionsItem", - "SuggestionsController", - "Autofill", - "BaseAutoFill", - "BasePicker", - "BasePickerListBelow", - "ValidationState", - "BasePeoplePicker", - "MemberListPeoplePicker", - "NormalPeoplePickerBase", - "CompactPeoplePickerBase", - "ListPeoplePickerBase", - "createGenericItem", - "NormalPeoplePicker", - "CompactPeoplePicker", - "ListPeoplePicker", - "PeoplePickerItemBase", - "PeoplePickerItem", - "PeoplePickerItemSuggestionBase", - "PeoplePickerItemSuggestion", - "TagPickerBase", - "TagPicker", - "TagItemBase", - "TagItem", - "TagItemSuggestionBase", - "TagItemSuggestion" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/pickers/index';\n//# sourceMappingURL=Pickers.js.map" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js", - "index": null, - "index2": null, - "size": 247, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn", - "loc": "57:0-23" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./warn", - "loc": "57:0-23" - }, - { - "moduleId": "sNMJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "module": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/useWarnings.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/utilities/lib/warn", - "loc": "3:0-147" - } - ], - "usedExports": false, - "providedExports": [ - "warn", - "setWarningCallback", - "warnConditionallyRequiredProps", - "resetControlledWarnings", - "warnControlledUsage", - "warnDeprecations", - "warnMutuallyExclusive" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export * from './warn/warn';\nexport * from './warn/warnConditionallyRequiredProps';\nexport * from './warn/warnControlledUsage';\nexport * from './warn/warnDeprecations';\nexport * from './warn/warnMutuallyExclusive';\n//# sourceMappingURL=warn.js.map" - }, - { - "id": "PIci", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/paginator/index.js", - "name": "./node_modules/paginator/index.js", - "index": 354, - "index2": 351, - "size": 3294, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "issuerId": "0fKb", - "issuerName": "./node_modules/react-js-pagination/dist/Pagination.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "paginator", - "loc": "12:40-60" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "module.exports = Paginator;\n\n// Paginator constructor\n//\n// `per_page` is the number of results per page, `length` is the number of\n// pages to display. They default to `25` and `10` respectively.\nfunction Paginator(per_page, length) {\n // You really should be calling this with `new Paginator`, but WHATEVER.\n if (!(this instanceof Paginator)) {\n return new Paginator(per_page, length);\n }\n\n // Woo, defaults!\n this.per_page = per_page || 25;\n this.length = length || 10;\n}\n\n// Build an object with all the necessary information for outputting pagination\n// controls.\n//\n// (new Paginator(paginator.build(100, 2)\nPaginator.prototype.build = function(total_results, current_page) {\n // We want the number of pages, rounded up to the nearest page.\n var total_pages = Math.ceil(total_results / this.per_page);\n\n // Ensure both total_results and current_page are treated as Numbers\n total_results = parseInt(total_results, 10);\n current_page = parseInt(current_page, 10) || 1;\n\n // Obviously we can't be on a negative or 0 page.\n if (current_page < 1) { current_page = 1; }\n // If the user has done something like /page/99999 we want to clamp that back\n // down.\n if (current_page > total_pages) { current_page = total_pages; }\n\n // This is the first page to be displayed as a numbered link.\n var first_page = Math.max(1, current_page - Math.floor(this.length / 2));\n\n // And here's the last page to be displayed specifically.\n var last_page = Math.min(total_pages, current_page + Math.floor(this.length / 2));\n\n // This is triggered if we're at or near one of the extremes; we won't have\n // enough page links. We need to adjust our bounds accordingly.\n if (last_page - first_page + 1 < this.length) {\n if (current_page < (total_pages / 2)) {\n last_page = Math.min(total_pages, last_page + (this.length - (last_page - first_page)));\n } else {\n first_page = Math.max(1, first_page - (this.length - (last_page - first_page)));\n }\n }\n\n // This can be triggered if the user wants an odd number of pages.\n if (last_page - first_page + 1 > this.length) {\n // We want to move towards whatever extreme we're closest to at the time.\n if (current_page > (total_pages / 2)) {\n first_page++;\n } else {\n last_page--;\n }\n }\n\n // First result on the page. This, along with the field below, can be used to\n // do \"showing x to y of z results\" style things.\n var first_result = this.per_page * (current_page - 1);\n if (first_result < 0) { first_result = 0; }\n\n // Last result on the page.\n var last_result = (this.per_page * current_page) - 1;\n if (last_result < 0) { last_result = 0; }\n if (last_result > Math.max(total_results - 1, 0)) { last_result = Math.max(total_results - 1, 0); }\n\n // GIMME THAT OBJECT\n return {\n total_pages: total_pages,\n pages: Math.min(last_page - first_page + 1, total_pages),\n current_page: current_page,\n first_page: first_page,\n last_page: last_page,\n previous_page: current_page - 1,\n next_page: current_page + 1,\n has_previous_page: current_page > 1,\n has_next_page: current_page < total_pages,\n total_results: total_results,\n results: Math.min(last_result - first_result + 1, total_results),\n first_result: first_result,\n last_result: last_result,\n };\n};\n" - }, - { - "id": "PKiz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Styling.js", - "name": "./node_modules/office-ui-fabric-react/lib/Styling.js", - "index": null, - "index2": null, - "size": 90, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "yb4Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/Modal.js" - }, - { - "id": "Nong", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+Vxm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/HoverCard.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "//8a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/FontIcon.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "5:0-40" - }, - { - "moduleId": "/nNC", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/PlainCard/PlainCard.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-77" - }, - { - "moduleId": "16Wd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-117" - }, - { - "moduleId": "1L4v", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-72" - }, - { - "moduleId": "1LlL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Slider/Slider.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-109" - }, - { - "moduleId": "2+xV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-47" - }, - { - "moduleId": "23UO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Beak/Beak.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-56" - }, - { - "moduleId": "2WvF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js 03073097d74128ddff42ab0802a06110", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-73" - }, - { - "moduleId": "3mns", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Link/Link.js 620d372aafb7f72c6fea019087b855c9", - "module": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Link/Link.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-74" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Styling", - "loc": "78:0-26" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Styling", - "loc": "78:0-26" - }, - { - "moduleId": "4ZPV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLogo.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "5wfK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/ProgressIndicator.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-124" - }, - { - "moduleId": "88U0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-217" - }, - { - "moduleId": "8P/B", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/StackItem/StackItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-55" - }, - { - "moduleId": "9TXK", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-134" - }, - { - "moduleId": "Ata1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-119" - }, - { - "moduleId": "CcL7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js 07e48b65f3de9498667d63d17b6e90cd", - "module": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-194" - }, - { - "moduleId": "EwAw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-123" - }, - { - "moduleId": "HP+5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-68" - }, - { - "moduleId": "IA21", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "IcvM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActivity.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-65" - }, - { - "moduleId": "L4du", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardDetails.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "L59g", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Styling", - "loc": "2:0-126" - }, - { - "moduleId": "MLrP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardLocation.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-65" - }, - { - "moduleId": "MrJ8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-66" - }, - { - "moduleId": "O0fF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-89" - }, - { - "moduleId": "OIa/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-112" - }, - { - "moduleId": "PGgM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Announced/Announced.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-51" - }, - { - "moduleId": "RNC2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-73" - }, - { - "moduleId": "RY1Y", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-86" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-86" - }, - { - "moduleId": "RyIQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "9:0-52" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "10:0-68" - }, - { - "moduleId": "SNcU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-44" - }, - { - "moduleId": "TkDl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-74" - }, - { - "moduleId": "VvEo", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/SuggestionsItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-107" - }, - { - "moduleId": "WApJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-52" - }, - { - "moduleId": "WDP9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js 254ecb5bbce28d7ab7adeca95e756193", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-148" - }, - { - "moduleId": "WZyV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/ExpandingCard.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-74" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-62" - }, - { - "moduleId": "XIMn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js 3c5d814931ac3eb3cf5d0ef05da7137f", - "module": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js + 10 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "4:0-44" - }, - { - "moduleId": "YKsi", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardTitle.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "YZs1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-63" - }, - { - "moduleId": "ZFPq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-84" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "4:0-244" - }, - { - "moduleId": "d0hX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-53" - }, - { - "moduleId": "dqzZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/KeytipLayer.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-41" - }, - { - "moduleId": "eAyO", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItemSuggestion.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-55" - }, - { - "moduleId": "g7gp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-44" - }, - { - "moduleId": "gwZ5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js 5fec128467612eec1d865a78259f42ea", - "module": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Spinner/Spinner.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-136" - }, - { - "moduleId": "iMux", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Label/Label.js 4e6eb32b0a1fd5ed59bd03656e1894bc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Label/Label.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-96" - }, - { - "moduleId": "k5Q5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-88" - }, - { - "moduleId": "k7Wh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-94" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-82" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-84" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-55" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-116" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-77" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-67" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-72" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-109" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-120" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-171" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-152" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-111" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-120" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-136" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-107" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-48" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-100" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-175" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-51" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "4:0-47" - }, - { - "moduleId": "l3S2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Sticky/Sticky.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "4:0-51" - }, - { - "moduleId": "l5g6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-191" - }, - { - "moduleId": "m9Am", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.classNames.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-44" - }, - { - "moduleId": "nlTf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-74" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-65" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-47" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-47" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-172" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-47" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-52" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-130" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "12:0-57" - }, - { - "moduleId": "otIS", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/Suggestions/Suggestions.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-128" - }, - { - "moduleId": "pOkv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/Dialog.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-74" - }, - { - "moduleId": "pXdU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-69" - }, - { - "moduleId": "pd4o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/CommandBarButton/CommandBarButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-119" - }, - { - "moduleId": "qHAb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-122" - }, - { - "moduleId": "qxK8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagItem.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-92" - }, - { - "moduleId": "rDXp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/SwatchColorPicker.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-64" - }, - { - "moduleId": "sByA", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js 63ccd0ca034f423e51b630af90c4df56", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-83" - }, - { - "moduleId": "sls4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-109" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "3:0-47" - }, - { - "moduleId": "tDom", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "2:0-107" - }, - { - "moduleId": "tvzp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../../Styling", - "loc": "1:0-80" - }, - { - "moduleId": "u/50", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogFooter.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "1:0-73" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "5:0-197" - }, - { - "moduleId": "vZf6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SpinButton/SpinButton.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-106" - }, - { - "moduleId": "wSFz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroup.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "xaxG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/Suggestions/SuggestionsControl.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../Styling", - "loc": "6:0-67" - }, - { - "moduleId": "xpFV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-149" - }, - { - "moduleId": "z+0a", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardStatus.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-52" - }, - { - "moduleId": "zXKl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js a54e22832c35bfe56da1d9d3b6bc30ab", - "module": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Checkbox/Checkbox.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "2:0-104" - }, - { - "moduleId": "zrcX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.styles.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Styling", - "loc": "1:0-114" - } - ], - "usedExports": false, - "providedExports": [ - "AnimationClassNames", - "FontClassNames", - "ColorClassNames", - "AnimationStyles", - "AnimationVariables", - "DefaultPalette", - "DefaultEffects", - "DefaultFontStyles", - "registerDefaultFontFaces", - "FontSizes", - "FontWeights", - "IconFontSizes", - "createFontStyles", - "getFocusStyle", - "focusClear", - "getFocusOutlineStyle", - "getInputFocusStyle", - "hiddenContentStyle", - "PulsingBeaconAnimationStyles", - "getGlobalClassNames", - "getThemedContext", - "ThemeSettingName", - "getTheme", - "loadTheme", - "createTheme", - "registerOnThemeChangeCallback", - "removeOnThemeChangeCallback", - "HighContrastSelector", - "HighContrastSelectorWhite", - "HighContrastSelectorBlack", - "EdgeChromiumHighContrastSelector", - "ScreenWidthMinSmall", - "ScreenWidthMinMedium", - "ScreenWidthMinLarge", - "ScreenWidthMinXLarge", - "ScreenWidthMinXXLarge", - "ScreenWidthMinXXXLarge", - "ScreenWidthMaxSmall", - "ScreenWidthMaxMedium", - "ScreenWidthMaxLarge", - "ScreenWidthMaxXLarge", - "ScreenWidthMaxXXLarge", - "ScreenWidthMinUhfMobile", - "getScreenSelector", - "getHighContrastNoAdjustStyle", - "getEdgeChromiumNoHighContrastAdjustSelector", - "normalize", - "noWrap", - "getFadedOverflowStyle", - "getPlaceholderStyles", - "ZIndexes", - "buildClassMap", - "getIcon", - "registerIcons", - "registerIconAlias", - "unregisterIcons", - "setIconOptions", - "getIconClassName", - "InjectionMode", - "Stylesheet", - "concatStyleSets", - "concatStyleSetsWithProps", - "fontFace", - "keyframes", - "mergeStyleSets", - "mergeStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "import './version';\nexport * from '@uifabric/styling';\n//# sourceMappingURL=Styling.js.map" - }, - { - "id": "PUtH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js", - "index": null, - "index2": null, - "size": 134, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "issuerId": "+EKj", - "issuerName": "./node_modules/office-ui-fabric-react/lib/MessageBar.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+EKj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "name": "./node_modules/office-ui-fabric-react/lib/MessageBar.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "+EKj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/MessageBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/MessageBar.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/MessageBar/index", - "loc": "1:0-46" - }, - { - "moduleId": "+EKj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/MessageBar.js", - "module": "./node_modules/office-ui-fabric-react/lib/MessageBar.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/MessageBar.js", - "type": "harmony export imported specifier", - "userRequest": "./components/MessageBar/index", - "loc": "1:0-46" - } - ], - "usedExports": false, - "providedExports": [ - "MessageBar", - "MessageBarBase", - "MessageBarType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './MessageBar';\nexport * from './MessageBar.base';\nexport * from './MessageBar.types';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Pk8u", - "identifier": "external \"@microsoft/sp-lodash-subset\"", - "name": "external \"@microsoft/sp-lodash-subset\"", - "index": 122, - "index2": 114, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/components/ListSearch.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "71:0-71" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "236:22-27" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "251:26-31" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "420:27-36" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "426:30-39" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "464:24-30" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "27:0-64" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "69:31-37" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "115:38-47" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "118:34-40" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "149:43-49" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "149:50-59" - }, - { - "moduleId": "QcW5", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "159:23-29" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "15:0-56" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "19:0-68" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "33:0-69" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "40:78-85" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "40:118-125" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "116:21-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "123:30-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "162:21-30" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "194:40-44" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "201:22-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "206:36-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "473:29-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "474:55-62" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "758:29-36" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "768:25-32" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "894:35-42" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "53:0-54" - }, - { - "moduleId": "o+WQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionNumberField/CollectionNumberField.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "123:13-20" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "16:0-56" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "40:68-77" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "2:0-49" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "290:8-13" - }, - { - "moduleId": "yVpZ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js bb83c7806b9a583cd6f36ab658901e61", - "module": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/helpers/GeneralHelper.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-lodash-subset", - "loc": "300:11-16" - } - ], - "usedExports": [ - "clone", - "cloneDeep", - "find", - "findIndex", - "get", - "groupBy", - "intersection", - "isEmpty", - "isEqual", - "set", - "sortBy" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 2 - }, - { - "id": "PmKf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.js", - "index": null, - "index2": null, - "size": 1086, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "issuerId": "ctDh", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Sza5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js" - }, - { - "id": "H84b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/index.js" - }, - { - "id": "j0QU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js" - }, - { - "id": "ctDh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./EditingItem.styles", - "loc": "4:0-49" - }, - { - "moduleId": "ctDh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.js", - "type": "harmony import specifier", - "userRequest": "./EditingItem.styles", - "loc": "66:39-48" - } - ], - "usedExports": false, - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "import { getGlobalClassNames, getTheme } from '@uifabric/styling';\nvar GlobalClassNames = {\n root: 'ms-EditingItem',\n input: 'ms-EditingItem-input',\n};\nexport var getStyles = function (prop) {\n var theme = getTheme();\n if (!theme) {\n throw new Error('theme is undefined or null in Editing item getStyles function.');\n }\n var semanticColors = theme.semanticColors;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n margin: '4px',\n },\n ],\n input: [\n classNames.input,\n {\n border: '0px',\n outline: 'none',\n width: '100%',\n backgroundColor: semanticColors.inputBackground,\n color: semanticColors.inputText,\n selectors: {\n '::-ms-clear': {\n display: 'none',\n },\n },\n },\n ],\n };\n};\n//# sourceMappingURL=EditingItem.styles.js.map" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js", - "index": 443, - "index2": 574, - "size": 1629, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "issuerId": "xDKH", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "lodash/omit", - "loc": "28:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "lodash/omit", - "loc": "30:0-31" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "lodash/omit", - "loc": "44:279-283" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "lodash/omit", - "loc": "72:142-146" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony side effect evaluation", - "userRequest": "lodash/omit", - "loc": "17:0-31" - }, - { - "moduleId": "xDKH", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "type": "harmony import specifier", - "userRequest": "lodash/omit", - "loc": "28:94-98" - } - ], - "usedExports": [ - "default" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "var arrayMap = require('./_arrayMap'),\n baseClone = require('./_baseClone'),\n baseUnset = require('./_baseUnset'),\n castPath = require('./_castPath'),\n copyObject = require('./_copyObject'),\n customOmitClone = require('./_customOmitClone'),\n flatRest = require('./_flatRest'),\n getAllKeysIn = require('./_getAllKeysIn');\n\n/** Used to compose bitmasks for cloning. */\nvar CLONE_DEEP_FLAG = 1,\n CLONE_FLAT_FLAG = 2,\n CLONE_SYMBOLS_FLAG = 4;\n\n/**\n * The opposite of `_.pick`; this method creates an object composed of the\n * own and inherited enumerable property paths of `object` that are not omitted.\n *\n * **Note:** This method is considerably slower than `_.pick`.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Object\n * @param {Object} object The source object.\n * @param {...(string|string[])} [paths] The property paths to omit.\n * @returns {Object} Returns the new object.\n * @example\n *\n * var object = { 'a': 1, 'b': '2', 'c': 3 };\n *\n * _.omit(object, ['a', 'c']);\n * // => { 'b': '2' }\n */\nvar omit = flatRest(function(object, paths) {\n var result = {};\n if (object == null) {\n return result;\n }\n var isDeep = false;\n paths = arrayMap(paths, function(path) {\n path = castPath(path, object);\n isDeep || (isDeep = path.length > 1);\n return path;\n });\n copyObject(object, getAllKeysIn(object), result);\n if (isDeep) {\n result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone);\n }\n var length = paths.length;\n while (length--) {\n baseUnset(result, paths[length]);\n }\n return result;\n});\n\nmodule.exports = omit;\n" - }, - { - "id": "Pz2p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "index": null, - "index2": null, - "size": 1845, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Button", - "loc": "3:0-25" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Button", - "loc": "3:0-25" - } - ], - "usedExports": false, - "providedExports": [ - "Button" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { warn } from '../../Utilities';\nimport { ButtonType } from './Button.types';\nimport { DefaultButton } from './DefaultButton/DefaultButton';\nimport { ActionButton } from './ActionButton/ActionButton';\nimport { CompoundButton } from './CompoundButton/CompoundButton';\nimport { IconButton } from './IconButton/IconButton';\nimport { PrimaryButton } from './PrimaryButton/PrimaryButton';\n/**\n * This class is deprecated. Use the individual *Button components instead.\n * @deprecated Use the individual *Button components instead.\n * {@docCategory Button}\n */\nvar Button = /** @class */ (function (_super) {\n __extends(Button, _super);\n function Button(props) {\n var _this = _super.call(this, props) || this;\n warn(\"The Button component has been deprecated. Use specific variants instead. \" +\n \"(PrimaryButton, DefaultButton, IconButton, ActionButton, etc.)\");\n return _this;\n }\n Button.prototype.render = function () {\n var props = this.props;\n // eslint-disable-next-line deprecation/deprecation\n switch (props.buttonType) {\n case ButtonType.command:\n return React.createElement(ActionButton, __assign({}, props));\n case ButtonType.compound:\n return React.createElement(CompoundButton, __assign({}, props));\n case ButtonType.icon:\n return React.createElement(IconButton, __assign({}, props));\n case ButtonType.primary:\n return React.createElement(PrimaryButton, __assign({}, props));\n default:\n return React.createElement(DefaultButton, __assign({}, props));\n }\n };\n return Button;\n}(React.Component));\nexport { Button };\n//# sourceMappingURL=Button.js.map" - }, - { - "id": "Q1l4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copyArray.js", - "name": "./node_modules/lodash/_copyArray.js", - "index": 522, - "index2": 515, - "size": 454, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_copyArray", - "loc": "7:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/**\n * Copies the values of `source` to `array`.\n *\n * @private\n * @param {Array} source The array to copy values from.\n * @param {Array} [array=[]] The array to copy values to.\n * @returns {Array} Returns `array`.\n */\nfunction copyArray(source, array) {\n var index = -1,\n length = source.length;\n\n array || (array = Array(length));\n while (++index < length) {\n array[index] = source[index];\n }\n return array;\n}\n\nmodule.exports = copyArray;\n" - }, - { - "id": "Q4IW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "name": "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js", - "index": 44, - "index2": 31, - "size": 8708, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "issuerId": "uGHJ", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - }, - { - "id": "YDzY", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/mergeStyles.js", - "name": "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js" - }, - { - "id": "uGHJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "name": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/MergeStyles.js", - "module": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "moduleName": "./node_modules/@uifabric/styling/lib/MergeStyles.js", - "type": "harmony export imported specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "1:0-161" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "module": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "moduleName": "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "8:21-31" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "13:17-27" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "7:0-29" - }, - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Stylesheet", - "loc": "7:0-29" - }, - { - "moduleId": "9h5o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "module": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/classNamesFunction.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "7:17-27" - }, - { - "moduleId": "mWkG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getId.js", - "module": "./node_modules/@uifabric/utilities/lib/getId.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/getId.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "20:25-35" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "2:0-42" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "2:0-42" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "9:4-14" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "10:21-31" - }, - { - "moduleId": "uGHJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "module": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "1:0-42" - }, - { - "moduleId": "uGHJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "module": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "13:21-31" - }, - { - "moduleId": "xL1/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/memoize.js", - "module": "./node_modules/@uifabric/utilities/lib/memoize.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/memoize.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "66:25-35" - }, - { - "moduleId": "xL1/", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/memoize.js", - "module": "./node_modules/@uifabric/utilities/lib/memoize.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/memoize.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/merge-styles", - "loc": "68:12-22" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Stylesheet", - "loc": "2:0-42" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "86:21-31" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "205:25-35" - }, - { - "moduleId": "zS9i", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/styleToClassName.js 64c9ceed01f16f21e2c08287c573faa8", - "module": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js + 5 modules", - "type": "harmony import specifier", - "userRequest": "./Stylesheet", - "loc": "232:21-31" - } - ], - "usedExports": [ - "Stylesheet" - ], - "providedExports": [ - "InjectionMode", - "Stylesheet" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign } from \"tslib\";\nexport var InjectionMode = {\n /**\n * Avoids style injection, use getRules() to read the styles.\n */\n none: 0,\n /**\n * Inserts rules using the insertRule api.\n */\n insertNode: 1,\n /**\n * Appends rules using appendChild.\n */\n appendChild: 2,\n};\nvar STYLESHEET_SETTING = '__stylesheet__';\n/**\n * MSIE 11 doesn't cascade styles based on DOM ordering, but rather on the order that each style node\n * is created. As such, to maintain consistent priority, IE11 should reuse a single style node.\n */\nvar REUSE_STYLE_NODE = typeof navigator !== 'undefined' && /rv:11.0/.test(navigator.userAgent);\nvar _global = {};\n// Grab window.\ntry {\n _global = window;\n}\ncatch (_a) {\n /* leave as blank object */\n}\nvar _stylesheet;\n/**\n * Represents the state of styles registered in the page. Abstracts\n * the surface for adding styles to the stylesheet, exposes helpers\n * for reading the styles registered in server rendered scenarios.\n *\n * @public\n */\nvar Stylesheet = /** @class */ (function () {\n function Stylesheet(config) {\n this._rules = [];\n this._preservedRules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._keyToClassName = {};\n this._onResetCallbacks = [];\n this._classNameToArgs = {};\n this._config = __assign({ injectionMode: InjectionMode.insertNode, defaultPrefix: 'css', namespace: undefined, cspSettings: undefined }, config);\n this._keyToClassName = this._config.classNameCache || {};\n }\n /**\n * Gets the singleton instance.\n */\n Stylesheet.getInstance = function () {\n var _a;\n _stylesheet = _global[STYLESHEET_SETTING];\n if (!_stylesheet || (_stylesheet._lastStyleElement && _stylesheet._lastStyleElement.ownerDocument !== document)) {\n var fabricConfig = ((_a = _global) === null || _a === void 0 ? void 0 : _a.FabricConfig) || {};\n _stylesheet = _global[STYLESHEET_SETTING] = new Stylesheet(fabricConfig.mergeStyles);\n }\n return _stylesheet;\n };\n /**\n * Configures the stylesheet.\n */\n Stylesheet.prototype.setConfig = function (config) {\n this._config = __assign(__assign({}, this._config), config);\n };\n /**\n * Configures a reset callback.\n *\n * @param callback - A callback which will be called when the Stylesheet is reset.\n */\n Stylesheet.prototype.onReset = function (callback) {\n this._onResetCallbacks.push(callback);\n };\n /**\n * Generates a unique classname.\n *\n * @param displayName - Optional value to use as a prefix.\n */\n Stylesheet.prototype.getClassName = function (displayName) {\n var namespace = this._config.namespace;\n var prefix = displayName || this._config.defaultPrefix;\n return \"\" + (namespace ? namespace + '-' : '') + prefix + \"-\" + this._counter++;\n };\n /**\n * Used internally to cache information about a class which was\n * registered with the stylesheet.\n */\n Stylesheet.prototype.cacheClassName = function (className, key, args, rules) {\n this._keyToClassName[key] = className;\n this._classNameToArgs[className] = {\n args: args,\n rules: rules,\n };\n };\n /**\n * Gets the appropriate classname given a key which was previously\n * registered using cacheClassName.\n */\n Stylesheet.prototype.classNameFromKey = function (key) {\n return this._keyToClassName[key];\n };\n /**\n * Gets all classnames cache with the stylesheet.\n */\n Stylesheet.prototype.getClassNameCache = function () {\n return this._keyToClassName;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.argsFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.args;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.insertedRulesFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.rules;\n };\n /**\n * Inserts a css rule into the stylesheet.\n * @param preserve - Preserves the rule beyond a reset boundary.\n */\n Stylesheet.prototype.insertRule = function (rule, preserve) {\n var injectionMode = this._config.injectionMode;\n var element = injectionMode !== InjectionMode.none ? this._getStyleElement() : undefined;\n if (preserve) {\n this._preservedRules.push(rule);\n }\n if (element) {\n switch (this._config.injectionMode) {\n case InjectionMode.insertNode:\n var sheet = element.sheet;\n try {\n sheet.insertRule(rule, sheet.cssRules.length);\n }\n catch (e) {\n // The browser will throw exceptions on unsupported rules (such as a moz prefix in webkit.)\n // We need to swallow the exceptions for this scenario, otherwise we'd need to filter\n // which could be slower and bulkier.\n }\n break;\n case InjectionMode.appendChild:\n element.appendChild(document.createTextNode(rule));\n break;\n }\n }\n else {\n this._rules.push(rule);\n }\n if (this._config.onInsertRule) {\n this._config.onInsertRule(rule);\n }\n };\n /**\n * Gets all rules registered with the stylesheet; only valid when\n * using InsertionMode.none.\n */\n Stylesheet.prototype.getRules = function (includePreservedRules) {\n return ((includePreservedRules ? this._preservedRules.join('') : '') + this._rules.join('') + this._rulesToInsert.join(''));\n };\n /**\n * Resets the internal state of the stylesheet. Only used in server\n * rendered scenarios where we're using InsertionMode.none.\n */\n Stylesheet.prototype.reset = function () {\n this._rules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._classNameToArgs = {};\n this._keyToClassName = {};\n this._onResetCallbacks.forEach(function (callback) { return callback(); });\n };\n // Forces the regeneration of incoming styles without totally resetting the stylesheet.\n Stylesheet.prototype.resetKeys = function () {\n this._keyToClassName = {};\n };\n Stylesheet.prototype._getStyleElement = function () {\n var _this = this;\n if (!this._styleElement && typeof document !== 'undefined') {\n this._styleElement = this._createStyleElement();\n if (!REUSE_STYLE_NODE) {\n // Reset the style element on the next frame.\n window.requestAnimationFrame(function () {\n _this._styleElement = undefined;\n });\n }\n }\n return this._styleElement;\n };\n Stylesheet.prototype._createStyleElement = function () {\n var head = document.head;\n var styleElement = document.createElement('style');\n styleElement.setAttribute('data-merge-styles', 'true');\n var cspSettings = this._config.cspSettings;\n if (cspSettings) {\n if (cspSettings.nonce) {\n styleElement.setAttribute('nonce', cspSettings.nonce);\n }\n }\n if (this._lastStyleElement) {\n // If the `nextElementSibling` is null, then the insertBefore will act as a regular append.\n // https://developer.mozilla.org/en-US/docs/Web/API/Node/insertBefore#Syntax\n head.insertBefore(styleElement, this._lastStyleElement.nextElementSibling);\n }\n else {\n var placeholderStyleTag = this._findPlaceholderStyleTag();\n if (placeholderStyleTag) {\n head.insertBefore(styleElement, placeholderStyleTag.nextElementSibling);\n }\n else {\n head.insertBefore(styleElement, head.childNodes[0]);\n }\n }\n this._lastStyleElement = styleElement;\n return styleElement;\n };\n Stylesheet.prototype._findPlaceholderStyleTag = function () {\n var head = document.head;\n if (head) {\n return head.querySelector('style[data-merge-styles]');\n }\n return null;\n };\n return Stylesheet;\n}());\nexport { Stylesheet };\n//# sourceMappingURL=Stylesheet.js.map" - }, - { - "id": "Q7R/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js", - "index": null, - "index2": null, - "size": 96, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SearchBox.js", - "issuerId": "rR97", - "issuerName": "./node_modules/office-ui-fabric-react/lib/SearchBox.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "rR97", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SearchBox.js", - "name": "./node_modules/office-ui-fabric-react/lib/SearchBox.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "rR97", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SearchBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/SearchBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/SearchBox.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/SearchBox/index", - "loc": "1:0-45" - }, - { - "moduleId": "rR97", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SearchBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/SearchBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/SearchBox.js", - "type": "harmony export imported specifier", - "userRequest": "./components/SearchBox/index", - "loc": "1:0-45" - } - ], - "usedExports": false, - "providedExports": [ - "SearchBox", - "SearchBoxBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './SearchBox';\nexport * from './SearchBox.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Q9RI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "name": "./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js", - "index": 183, - "index2": 171, - "size": 1034, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "issuerId": "PHYm", - "issuerName": "./node_modules/@uifabric/utilities/lib/warn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "PHYm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "name": "./node_modules/@uifabric/utilities/lib/warn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Toggle/Toggle.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "39:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Utilities", - "loc": "67:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "73:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SearchBox/SearchBox.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "81:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "119:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "187:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "284:8-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "425:8-24" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnDeprecations", - "loc": "7:0-59" - }, - { - "moduleId": "7Uas", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/BaseComponent.js", - "module": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/BaseComponent.js", - "type": "harmony import specifier", - "userRequest": "./warn/warnDeprecations", - "loc": "164:8-24" - }, - { - "moduleId": "7WEz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/PivotItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "10:8-24" - }, - { - "moduleId": "HBsB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCard.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "41:8-24" - }, - { - "moduleId": "N1or", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/ResizeGroup.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "236:8-24" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony side effect evaluation", - "userRequest": "./warn/warnDeprecations", - "loc": "4:0-40" - }, - { - "moduleId": "PHYm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/warn.js", - "module": "./node_modules/@uifabric/utilities/lib/warn.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/warn.js", - "type": "harmony export imported specifier", - "userRequest": "./warn/warnDeprecations", - "loc": "4:0-40" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "167:8-24" - }, - { - "moduleId": "VuyN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dialog/DialogContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "16:8-24" - }, - { - "moduleId": "bBLm", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Stack/Stack.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "11:4-20" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "19:8-24" - } - ], - "usedExports": [ - "warnDeprecations" - ], - "providedExports": [ - "warnDeprecations" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { warn } from './warn';\n/**\n * Warns when a deprecated props are being used.\n *\n * @public\n * @param componentName - The name of the component being used.\n * @param props - The props passed into the component.\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\n * either null or a replacement prop name.\n */\nexport function warnDeprecations(componentName, props, deprecationMap) {\n if (process.env.NODE_ENV !== 'production') {\n for (var propName in deprecationMap) {\n if (props && propName in props) {\n var deprecationMessage = componentName + \" property '\" + propName + \"' was used but has been deprecated.\";\n var replacementPropName = deprecationMap[propName];\n if (replacementPropName) {\n deprecationMessage += \" Use '\" + replacementPropName + \"' instead.\";\n }\n warn(deprecationMessage);\n }\n }\n }\n}\n//# sourceMappingURL=warnDeprecations.js.map" - }, - { - "id": "QJEM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Spinner.js", - "index": null, - "index2": null, - "size": 79, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Spinner", - "loc": "27:0-74" - } - ], - "usedExports": false, - "providedExports": [ - "Spinner", - "SpinnerBase", - "SpinnerSize", - "SpinnerType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "export * from './components/Spinner/index';\n//# sourceMappingURL=Spinner.js.map" - }, - { - "id": "QbAE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/getPropsWithDefaults.js", - "name": "./node_modules/@uifabric/utilities/lib/getPropsWithDefaults.js", - "index": null, - "index2": null, - "size": 848, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getPropsWithDefaults", - "loc": "59:0-39" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getPropsWithDefaults", - "loc": "59:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "getPropsWithDefaults" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign } from \"tslib\";\n/**\n * Function to apply default values to a component props object. This function is intended for function components,\n * to maintain parity with the `defaultProps` feature of class components. It accounts for properties that are\n * specified, but undefined.\n * @param defaultProps- An object with default values for various properties\n * @param propsWithoutDefaults- The props object passed into the component\n */\nexport function getPropsWithDefaults(defaultProps, propsWithoutDefaults) {\n var props = __assign({}, propsWithoutDefaults);\n for (var _i = 0, _a = Object.keys(defaultProps); _i < _a.length; _i++) {\n var key = _a[_i];\n if (props[key] === undefined) {\n props[key] = defaultProps[key];\n }\n }\n return props;\n}\n//# sourceMappingURL=getPropsWithDefaults.js.map" - }, - { - "id": "QcOe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeysIn.js", - "name": "./node_modules/lodash/_baseKeysIn.js", - "index": 519, - "index2": 511, - "size": 870, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "issuerId": "mTTR", - "issuerName": "./node_modules/lodash/keysIn.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "mTTR", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "module": "./node_modules/lodash/keysIn.js", - "moduleName": "./node_modules/lodash/keysIn.js", - "type": "cjs require", - "userRequest": "./_baseKeysIn", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "var isObject = require('./isObject'),\n isPrototype = require('./_isPrototype'),\n nativeKeysIn = require('./_nativeKeysIn');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/**\n * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeysIn(object) {\n if (!isObject(object)) {\n return nativeKeysIn(object);\n }\n var isProto = isPrototype(object),\n result = [];\n\n for (var key in object) {\n if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n result.push(key);\n }\n }\n return result;\n}\n\nmodule.exports = baseKeysIn;\n" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "index": 18, - "index2": 271, - "size": 11011, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "issuerId": "/x9U", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/x9U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionDataViewer", - "loc": "1:0-39" - }, - { - "moduleId": "/x9U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionDataViewer", - "loc": "1:0-39" - } - ], - "usedExports": [ - "CollectionDataViewer" - ], - "providedExports": [ - "CollectionDataViewer" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __spreadArrays = (this && this.__spreadArrays) || function () {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { CollectionDataItem } from '../collectionDataItem';\nimport { PrimaryButton, DefaultButton } from 'office-ui-fabric-react/lib/components/Button';\nimport { Icon } from 'office-ui-fabric-react/lib/components/Icon';\nimport * as strings from 'PropertyControlStrings';\nimport { cloneDeep, sortBy } from '@microsoft/sp-lodash-subset';\nvar CollectionDataViewer = /** @class */ (function (_super) {\n __extends(CollectionDataViewer, _super);\n function CollectionDataViewer(props) {\n var _this = _super.call(this, props) || this;\n _this.SORT_IDX = \"sortIdx\";\n /**\n * Add a new item to the collection\n */\n _this.addItem = function (item) {\n _this.setState(function (prevState) {\n var crntItems = __spreadArrays(prevState.crntItems, [item]);\n crntItems = _this.updateSortProperty(crntItems);\n return {\n crntItems: crntItems,\n inCreationItem: null,\n inCreationItemValid: null\n };\n });\n };\n /**\n * Remove an item from the collection\n */\n _this.updateItem = function (idx, item) {\n _this.setState(function (prevState) {\n var crntItems = prevState.crntItems;\n // Update the item in the array\n crntItems[idx] = item;\n return { crntItems: crntItems };\n });\n };\n /**\n * Remove an item from the collection\n */\n _this.deleteItem = function (idx) {\n _this.setState(function (prevState) {\n var crntItems = prevState.crntItems, validation = prevState.validation;\n crntItems.splice(idx, 1);\n delete validation[idx];\n // Update the sort propety\n crntItems = _this.updateSortProperty(crntItems);\n return {\n crntItems: sortBy(crntItems, _this.SORT_IDX),\n validation: validation\n };\n });\n };\n /**\n * Validate every item\n */\n _this.validateItem = function (idx, isValid) {\n _this.setState(function (prevState) {\n var validation = prevState.validation;\n validation[idx] = isValid;\n return {\n validation: prevState.validation\n };\n });\n };\n /**\n * Currently in creation\n */\n _this.addInCreation = function (item, isValid) {\n _this.setState({\n inCreationItem: item,\n inCreationItemValid: isValid\n });\n };\n /**\n * Add the item and save the form\n */\n _this.addAndSave = function () {\n // Check if the item is not empty\n if (_this.state.inCreationItem) {\n var crntItems = __spreadArrays(_this.state.crntItems, [_this.state.inCreationItem]);\n crntItems = _this.updateSortProperty(crntItems);\n _this.props.fOnSave(crntItems);\n }\n else {\n _this.onSave();\n }\n };\n /**\n * Update the sort order\n */\n _this.updateSortOrder = function (oldIdx, newIdx) {\n _this.setState(function (prevState) {\n var crntItems = prevState.crntItems;\n var newOrderedItems = cloneDeep(crntItems);\n newOrderedItems = _this.moveItemTo(newOrderedItems, oldIdx, newIdx - 1);\n newOrderedItems = _this.updateSortProperty(newOrderedItems);\n newOrderedItems = sortBy(newOrderedItems, _this.SORT_IDX);\n return {\n crntItems: newOrderedItems\n };\n });\n };\n /**\n * Save the collection data\n */\n _this.onSave = function () {\n _this.props.fOnSave(_this.state.crntItems);\n };\n /**\n * Cancel\n */\n _this.onCancel = function () {\n _this.props.fOnClose();\n };\n _this.state = {\n crntItems: [],\n inCreationItem: null,\n inCreationItemValid: null,\n validation: {}\n };\n return _this;\n }\n /**\n * componentDidMount lifecycle hook\n */\n CollectionDataViewer.prototype.componentDidMount = function () {\n var _this = this;\n var crntItems = this.props.value ? sortBy(cloneDeep(this.props.value), this.SORT_IDX) : [];\n crntItems = crntItems.map(function (item, idx) {\n if (!item[_this.SORT_IDX]) {\n item[_this.SORT_IDX] = idx + 1;\n }\n return item;\n });\n // Update the sort propety\n crntItems = this.updateSortProperty(crntItems);\n this.setState({\n crntItems: sortBy(crntItems, this.SORT_IDX)\n });\n };\n /**\n * Check if all items are valid\n */\n CollectionDataViewer.prototype.allItemsValid = function () {\n var validation = this.state.validation;\n if (validation) {\n var keys = Object.keys(validation);\n for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {\n var key = keys_1[_i];\n if (!validation[key]) {\n return false;\n }\n }\n }\n return true;\n };\n /**\n * Move an item in the array\n *\n * @param crntItems\n * @param oldIdx\n * @param newIdx\n */\n CollectionDataViewer.prototype.moveItemTo = function (crntItems, oldIdx, newIdx) {\n if (newIdx > -1 && newIdx < crntItems.length) {\n var removedElement = crntItems.splice(oldIdx, 1)[0];\n if (removedElement) {\n crntItems.splice(newIdx, 0, removedElement);\n }\n }\n return crntItems;\n };\n /**\n * Update the sort property\n *\n * @param crntItems\n */\n CollectionDataViewer.prototype.updateSortProperty = function (crntItems) {\n var _this = this;\n // Update the sort order\n return crntItems.map(function (item, itemIdx) {\n item[_this.SORT_IDX] = itemIdx + 1;\n return item;\n });\n };\n /**\n * Default React render\n */\n CollectionDataViewer.prototype.render = function () {\n var _this = this;\n var crntItems = __spreadArrays(this.state.crntItems, [this.state.inCreationItem]).filter(function (i) { return i; });\n var visibleFields = this.props.fields.filter(function (f) { return !f.isVisible || f.isVisible(f, crntItems); });\n return (React.createElement(\"div\", null,\n React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__table \" + styles.table + \" \" + (this.props.tableClassName || \"\") },\n React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__table-head \" + styles.tableRow + \" \" + styles.tableHead },\n this.props.enableSorting && (React.createElement(\"span\", { className: \"PropertyFieldCollectionData__panel__table-cell \" + styles.tableCell })),\n visibleFields.map(function (f) { return (React.createElement(\"span\", { key: \"dataviewer-\" + f.id, className: \"PropertyFieldCollectionData__panel__table-cell \" + styles.tableCell },\n f.title,\n \" \",\n f.required && React.createElement(Icon, { className: styles.required, iconName: \"Asterisk\" }))); }),\n React.createElement(\"span\", { className: \"PropertyFieldCollectionData__panel__table-cell \" + styles.tableCell }),\n React.createElement(\"span\", { className: \"PropertyFieldCollectionData__panel__table-cell \" + styles.tableCell })),\n (this.state.crntItems && this.state.crntItems.length > 0) && (this.state.crntItems.map(function (item, idx, allItems) { return (React.createElement(CollectionDataItem, { key: item.uniqueId, fields: visibleFields, index: idx, item: item, totalItems: allItems.length, sortingEnabled: _this.props.enableSorting, disableItemDeletion: _this.props.disableItemDeletion, fUpdateItem: _this.updateItem, fDeleteItem: _this.deleteItem, fValidation: _this.validateItem, fOnSorting: _this.updateSortOrder })); })),\n !this.props.disableItemCreation && (React.createElement(CollectionDataItem, { fields: visibleFields, index: null, item: null, sortingEnabled: this.props.enableSorting, totalItems: null, fAddItem: this.addItem, fAddInCreation: this.addInCreation }))),\n (!this.state.crntItems || this.state.crntItems.length === 0) && (React.createElement(\"p\", { className: \"PropertyFieldCollectionData__panel__no-collection-data \" + styles.noCollectionData }, strings.CollectionDataEmptyValue)),\n React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__actions \" + styles.panelActions },\n this.state.inCreationItem && this.state.inCreationItemValid && React.createElement(PrimaryButton, { text: this.props.saveAndAddBtnLabel || strings.CollectionSaveAndAddButtonLabel, onClick: this.addAndSave, disabled: !this.allItemsValid(), className: \"PropertyFieldCollectionData__panel__action__add\" }),\n !(this.state.inCreationItem && this.state.inCreationItemValid) && React.createElement(PrimaryButton, { text: this.props.saveBtnLabel || strings.SaveButtonLabel, onClick: this.onSave, disabled: !this.allItemsValid(), className: \"PropertyFieldCollectionData__panel__action__save\" }),\n React.createElement(DefaultButton, { text: this.props.cancelBtnLabel || strings.CancelButtonLabel, onClick: this.onCancel, className: \"PropertyFieldCollectionData__panel__action__cancel\" }))));\n };\n return CollectionDataViewer;\n}(React.Component));\nexport { CollectionDataViewer };\n//# sourceMappingURL=CollectionDataViewer.js.map" - }, - { - "id": "Qh3U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "name": "./node_modules/@uifabric/foundation/lib/version.js", - "index": null, - "index2": null, - "size": 270, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "issuerId": "1ptM", - "issuerName": "./node_modules/@uifabric/foundation/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "w4q5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Text.js", - "name": "./node_modules/office-ui-fabric-react/lib/Text.js" - }, - { - "id": "oBFV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/index.js" - }, - { - "id": "MObJ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Text/Text.view.js" - }, - { - "id": "7Rmr", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Foundation.js", - "name": "./node_modules/office-ui-fabric-react/lib/Foundation.js" - }, - { - "id": "1ptM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "name": "./node_modules/@uifabric/foundation/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "1ptM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/index.js", - "module": "./node_modules/@uifabric/foundation/lib/index.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "6:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('@uifabric/foundation', '7.10.0');\n//# sourceMappingURL=version.js.map" - }, - { - "id": "QkVE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getMapData.js", - "name": "./node_modules/lodash/_getMapData.js", - "index": 485, - "index2": 475, - "size": 400, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "issuerId": "H8j4", - "issuerName": "./node_modules/lodash/_mapCacheSet.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "H8j4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "name": "./node_modules/lodash/_mapCacheSet.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "H8j4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheSet.js", - "module": "./node_modules/lodash/_mapCacheSet.js", - "moduleName": "./node_modules/lodash/_mapCacheSet.js", - "type": "cjs require", - "userRequest": "./_getMapData", - "loc": "1:17-41" - }, - { - "moduleId": "JHgL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheGet.js", - "module": "./node_modules/lodash/_mapCacheGet.js", - "moduleName": "./node_modules/lodash/_mapCacheGet.js", - "type": "cjs require", - "userRequest": "./_getMapData", - "loc": "1:17-41" - }, - { - "moduleId": "k+1r", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheDelete.js", - "module": "./node_modules/lodash/_mapCacheDelete.js", - "moduleName": "./node_modules/lodash/_mapCacheDelete.js", - "type": "cjs require", - "userRequest": "./_getMapData", - "loc": "1:17-41" - }, - { - "moduleId": "pSRY", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheHas.js", - "module": "./node_modules/lodash/_mapCacheHas.js", - "moduleName": "./node_modules/lodash/_mapCacheHas.js", - "type": "cjs require", - "userRequest": "./_getMapData", - "loc": "1:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 10, - "source": "var isKeyable = require('./_isKeyable');\n\n/**\n * Gets the data for `map`.\n *\n * @private\n * @param {Object} map The map to query.\n * @param {string} key The reference key.\n * @returns {*} Returns the map data.\n */\nfunction getMapData(map, key) {\n var data = map.__data__;\n return isKeyable(key)\n ? data[typeof key == 'string' ? 'string' : 'hash']\n : data.map;\n}\n\nmodule.exports = getMapData;\n" - }, - { - "id": "QoT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "index": null, - "index2": null, - "size": 41102, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerId": "hLc7", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "PGky", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Pickers.js", - "name": "./node_modules/office-ui-fabric-react/lib/Pickers.js" - }, - { - "id": "hLc7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../BasePicker", - "loc": "4:0-43" - }, - { - "moduleId": "4SV9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/TagPicker/TagPicker.js", - "type": "harmony import specifier", - "userRequest": "../BasePicker", - "loc": "23:2-12" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./BasePicker", - "loc": "6:0-29" - }, - { - "moduleId": "hLc7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/index.js", - "type": "harmony export imported specifier", - "userRequest": "./BasePicker", - "loc": "6:0-29" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../BasePicker", - "loc": "4:0-64" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "../BasePicker", - "loc": "18:2-12" - }, - { - "moduleId": "x1rr", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/PeoplePicker/PeoplePicker.js", - "type": "harmony import specifier", - "userRequest": "../BasePicker", - "loc": "29:2-21" - } - ], - "usedExports": false, - "providedExports": [ - "BasePicker", - "BasePickerListBelow" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async, KeyCodes, css, elementContains, getId, classNamesFunction, styled, initializeComponentRef, } from '../../Utilities';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nimport { Callout, DirectionalHint } from '../../Callout';\nimport { Selection, SelectionZone, SelectionMode } from '../../utilities/selection/index';\nimport { Suggestions } from './Suggestions/Suggestions';\nimport { getStyles as suggestionsStyles } from './Suggestions/Suggestions.styles';\nimport { SuggestionsController } from './Suggestions/SuggestionsController';\nimport { ValidationState, } from './BasePicker.types';\nimport { Autofill } from '../Autofill/index';\nimport * as stylesImport from './BasePicker.scss';\nvar legacyStyles = stylesImport;\nvar getClassNames = classNamesFunction();\n/**\n * Should be removed once new picker without inheritance is created\n */\nfunction getStyledSuggestions(suggestionsType) {\n return styled(suggestionsType, suggestionsStyles, undefined, {\n scope: 'Suggestions',\n });\n}\n/**\n * {@docCategory Pickers}\n */\nvar BasePicker = /** @class */ (function (_super) {\n __extends(BasePicker, _super);\n function BasePicker(basePickerProps) {\n var _this = _super.call(this, basePickerProps) || this;\n // Refs\n _this.root = React.createRef();\n _this.input = React.createRef();\n _this.focusZone = React.createRef();\n _this.suggestionElement = React.createRef();\n /**\n * @deprecated this is no longer necessary as typescript now supports generic elements\n */\n _this.SuggestionOfProperType = Suggestions;\n // eslint-disable-next-line deprecation/deprecation\n _this._styledSuggestions = getStyledSuggestions(_this.SuggestionOfProperType);\n _this.dismissSuggestions = function (ev) {\n var selectItemFunction = function () {\n var addItemOnDismiss = true;\n if (_this.props.onDismiss) {\n addItemOnDismiss = _this.props.onDismiss(ev, _this.suggestionStore.currentSuggestion ? _this.suggestionStore.currentSuggestion.item : undefined);\n }\n if (!ev || (ev && !ev.defaultPrevented)) {\n // Select the first suggestion if one is available and permitted by onDismiss when user leaves.\n if (addItemOnDismiss !== false &&\n _this.canAddItems() &&\n _this.suggestionStore.hasSelectedSuggestion() &&\n _this.state.suggestedDisplayValue) {\n _this.addItemByIndex(0);\n }\n }\n };\n if (_this.currentPromise) {\n _this.currentPromise.then(function () { return selectItemFunction(); });\n }\n else {\n selectItemFunction();\n }\n _this.setState({ suggestionsVisible: false });\n };\n _this.refocusSuggestions = function (keyCode) {\n _this.resetFocus();\n if (_this.suggestionStore.suggestions && _this.suggestionStore.suggestions.length > 0) {\n if (keyCode === KeyCodes.up) {\n _this.suggestionStore.setSelectedSuggestion(_this.suggestionStore.suggestions.length - 1);\n }\n else if (keyCode === KeyCodes.down) {\n _this.suggestionStore.setSelectedSuggestion(0);\n }\n }\n };\n _this.onInputChange = function (value) {\n _this.updateValue(value);\n _this.setState({\n moreSuggestionsAvailable: true,\n isMostRecentlyUsedVisible: false,\n });\n };\n _this.onSuggestionClick = function (ev, item, index) {\n _this.addItemByIndex(index);\n };\n _this.onSuggestionRemove = function (ev, item, index) {\n if (_this.props.onRemoveSuggestion) {\n _this.props.onRemoveSuggestion(item);\n }\n _this.suggestionStore.removeSuggestion(index);\n };\n _this.onInputFocus = function (ev) {\n _this.selection.setAllSelected(false);\n // Only trigger all of the focus if this component isn't already focused.\n // For example when an item is selected or removed from the selected list it should be treated\n // as though the input is still focused.\n if (!_this.state.isFocused) {\n _this.setState({ isFocused: true });\n _this._userTriggeredSuggestions();\n if (_this.props.inputProps && _this.props.inputProps.onFocus) {\n _this.props.inputProps.onFocus(ev);\n }\n }\n };\n _this.onInputBlur = function (ev) {\n if (_this.props.inputProps && _this.props.inputProps.onBlur) {\n _this.props.inputProps.onBlur(ev);\n }\n };\n _this.onBlur = function (ev) {\n if (_this.state.isFocused) {\n // Only blur the entire component if an unrelated element gets focus.\n // Otherwise treat it as though it still has focus.\n // Do nothing if the blur is coming from something\n // inside the comboBox root or the comboBox menu since\n // it we are not really bluring from the whole comboBox\n var relatedTarget = ev.relatedTarget;\n if (ev.relatedTarget === null) {\n // In IE11, due to lack of support, event.relatedTarget is always\n // null making every onBlur call to be \"outside\" of the ComboBox\n // even when it's not. Using document.activeElement is another way\n // for us to be able to get what the relatedTarget without relying\n // on the event\n relatedTarget = document.activeElement;\n }\n if (relatedTarget && !elementContains(_this.root.current, relatedTarget)) {\n _this.setState({ isFocused: false });\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n }\n }\n };\n /**\n * Reveals suggestions any time the user clicks on the input element\n * without shifting focus.\n */\n _this.onClick = function (ev) {\n if (_this.props.inputProps !== undefined && _this.props.inputProps.onClick !== undefined) {\n _this.props.inputProps.onClick(ev);\n }\n // Only primary (left) clicks show suggestions.\n if (ev.button === 0) {\n _this._userTriggeredSuggestions();\n }\n };\n _this.onKeyDown = function (ev) {\n var keyCode = ev.which;\n switch (keyCode) {\n case KeyCodes.escape:\n if (_this.state.suggestionsVisible) {\n _this.setState({ suggestionsVisible: false });\n ev.preventDefault();\n ev.stopPropagation();\n }\n break;\n case KeyCodes.tab:\n case KeyCodes.enter:\n if (_this.suggestionElement.current && _this.suggestionElement.current.hasSuggestedActionSelected()) {\n _this.suggestionElement.current.executeSelectedAction();\n }\n else if (!ev.shiftKey && _this.suggestionStore.hasSelectedSuggestion() && _this.state.suggestionsVisible) {\n _this.completeSuggestion();\n ev.preventDefault();\n ev.stopPropagation();\n }\n else {\n _this._completeGenericSuggestion();\n }\n break;\n case KeyCodes.backspace:\n if (!_this.props.disabled) {\n _this.onBackspace(ev);\n }\n ev.stopPropagation();\n break;\n case KeyCodes.del:\n if (!_this.props.disabled) {\n if (_this.input.current &&\n ev.target === _this.input.current.inputElement &&\n _this.state.suggestionsVisible &&\n _this.suggestionStore.currentIndex !== -1) {\n if (_this.props.onRemoveSuggestion) {\n _this.props.onRemoveSuggestion(_this.suggestionStore.currentSuggestion.item);\n }\n _this.suggestionStore.removeSuggestion(_this.suggestionStore.currentIndex);\n _this.forceUpdate();\n }\n else {\n _this.onBackspace(ev);\n }\n }\n ev.stopPropagation();\n break;\n case KeyCodes.up:\n if (_this.input.current && ev.target === _this.input.current.inputElement && _this.state.suggestionsVisible) {\n if (_this.suggestionElement.current &&\n _this.suggestionElement.current.tryHandleKeyDown(keyCode, _this.suggestionStore.currentIndex)) {\n ev.preventDefault();\n ev.stopPropagation();\n _this.forceUpdate();\n }\n else {\n if (_this.suggestionElement.current &&\n _this.suggestionElement.current.hasSuggestedAction() &&\n _this.suggestionStore.currentIndex === 0) {\n ev.preventDefault();\n ev.stopPropagation();\n _this.suggestionElement.current.focusAboveSuggestions();\n _this.suggestionStore.deselectAllSuggestions();\n _this.forceUpdate();\n }\n else {\n if (_this.suggestionStore.previousSuggestion()) {\n ev.preventDefault();\n ev.stopPropagation();\n _this.onSuggestionSelect();\n }\n }\n }\n }\n break;\n case KeyCodes.down:\n if (_this.input.current && ev.target === _this.input.current.inputElement && _this.state.suggestionsVisible) {\n if (_this.suggestionElement.current &&\n _this.suggestionElement.current.tryHandleKeyDown(keyCode, _this.suggestionStore.currentIndex)) {\n ev.preventDefault();\n ev.stopPropagation();\n _this.forceUpdate();\n }\n else {\n if (_this.suggestionElement.current &&\n _this.suggestionElement.current.hasSuggestedAction() &&\n _this.suggestionStore.currentIndex + 1 === _this.suggestionStore.suggestions.length) {\n ev.preventDefault();\n ev.stopPropagation();\n _this.suggestionElement.current.focusBelowSuggestions();\n _this.suggestionStore.deselectAllSuggestions();\n _this.forceUpdate();\n }\n else {\n if (_this.suggestionStore.nextSuggestion()) {\n ev.preventDefault();\n ev.stopPropagation();\n _this.onSuggestionSelect();\n }\n }\n }\n }\n break;\n }\n };\n _this.onItemChange = function (changedItem, index) {\n var items = _this.state.items;\n if (index >= 0) {\n var newItems = items;\n newItems[index] = changedItem;\n _this._updateSelectedItems(newItems);\n }\n };\n _this.onGetMoreResults = function () {\n _this.setState({\n isSearching: true,\n }, function () {\n if (_this.props.onGetMoreResults && _this.input.current) {\n var suggestions = _this.props.onGetMoreResults(_this.input.current.value, _this.state.items);\n var suggestionsArray = suggestions;\n var suggestionsPromiseLike = suggestions;\n if (Array.isArray(suggestionsArray)) {\n _this.updateSuggestions(suggestionsArray);\n _this.setState({ isSearching: false });\n }\n else if (suggestionsPromiseLike.then) {\n suggestionsPromiseLike.then(function (newSuggestions) {\n _this.updateSuggestions(newSuggestions);\n _this.setState({ isSearching: false });\n });\n }\n }\n else {\n _this.setState({ isSearching: false });\n }\n if (_this.input.current) {\n _this.input.current.focus();\n }\n _this.setState({\n moreSuggestionsAvailable: false,\n isResultsFooterVisible: true,\n });\n });\n };\n _this.completeSelection = function (item) {\n _this.addItem(item);\n _this.updateValue('');\n if (_this.input.current) {\n _this.input.current.clear();\n }\n _this.setState({ suggestionsVisible: false });\n };\n _this.addItemByIndex = function (index) {\n _this.completeSelection(_this.suggestionStore.getSuggestionAtIndex(index).item);\n };\n _this.addItem = function (item) {\n var processedItem = _this.props.onItemSelected\n ? _this.props.onItemSelected(item)\n : item;\n if (processedItem === null) {\n return;\n }\n var processedItemObject = processedItem;\n var processedItemPromiseLike = processedItem;\n if (processedItemPromiseLike && processedItemPromiseLike.then) {\n processedItemPromiseLike.then(function (resolvedProcessedItem) {\n var newItems = _this.state.items.concat([resolvedProcessedItem]);\n _this._updateSelectedItems(newItems);\n });\n }\n else {\n var newItems = _this.state.items.concat([processedItemObject]);\n _this._updateSelectedItems(newItems);\n }\n _this.setState({ suggestedDisplayValue: '' });\n };\n _this.removeItem = function (item, focusNextItem) {\n var items = _this.state.items;\n var index = items.indexOf(item);\n if (index >= 0) {\n var newItems = items.slice(0, index).concat(items.slice(index + 1));\n _this._updateSelectedItems(newItems);\n }\n };\n _this.removeItems = function (itemsToRemove) {\n var items = _this.state.items;\n var newItems = items.filter(function (item) { return itemsToRemove.indexOf(item) === -1; });\n _this._updateSelectedItems(newItems);\n };\n _this._shouldFocusZoneEnterInnerZone = function (ev) {\n // If suggestions are shown const up/down keys control them, otherwise allow them through to control the focusZone.\n if (_this.state.suggestionsVisible) {\n switch (ev.which) {\n case KeyCodes.up:\n case KeyCodes.down:\n return true;\n }\n }\n if (ev.which === KeyCodes.enter) {\n return true;\n }\n return false;\n };\n _this._onResolveSuggestions = function (updatedValue) {\n var suggestions = _this.props.onResolveSuggestions(updatedValue, _this.state.items);\n if (suggestions !== null) {\n _this.updateSuggestionsList(suggestions, updatedValue);\n }\n };\n _this._completeGenericSuggestion = function () {\n if (_this.props.onValidateInput &&\n _this.input.current &&\n _this.props.onValidateInput(_this.input.current.value) !== ValidationState.invalid &&\n _this.props.createGenericItem) {\n var itemToConvert = _this.props.createGenericItem(_this.input.current.value, _this.props.onValidateInput(_this.input.current.value));\n _this.suggestionStore.createGenericSuggestion(itemToConvert);\n _this.completeSuggestion();\n }\n };\n /**\n * This should be called when the user does something other than use text entry to trigger suggestions.\n *\n */\n _this._userTriggeredSuggestions = function () {\n if (!_this.state.suggestionsVisible) {\n var input = _this.input.current ? _this.input.current.value : '';\n if (!input) {\n _this.onEmptyInputFocus();\n }\n else {\n if (_this.suggestionStore.suggestions.length === 0) {\n _this._onResolveSuggestions(input);\n }\n else {\n _this.setState({\n isMostRecentlyUsedVisible: false,\n suggestionsVisible: true,\n });\n }\n }\n }\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n var items = basePickerProps.selectedItems || basePickerProps.defaultSelectedItems || [];\n _this._id = getId();\n _this._ariaMap = {\n selectedItems: \"selected-items-\" + _this._id,\n selectedSuggestionAlert: \"selected-suggestion-alert-\" + _this._id,\n suggestionList: \"suggestion-list-\" + _this._id,\n combobox: \"combobox-\" + _this._id,\n };\n _this.suggestionStore = new SuggestionsController();\n _this.selection = new Selection({ onSelectionChanged: function () { return _this.onSelectionChange(); } });\n _this.selection.setItems(items);\n _this.state = {\n items: items,\n suggestedDisplayValue: '',\n isMostRecentlyUsedVisible: false,\n moreSuggestionsAvailable: false,\n isFocused: false,\n isSearching: false,\n selectedIndices: [],\n };\n return _this;\n }\n BasePicker.getDerivedStateFromProps = function (newProps) {\n if (newProps.selectedItems) {\n return { items: newProps.selectedItems };\n }\n return null;\n };\n Object.defineProperty(BasePicker.prototype, \"items\", {\n get: function () {\n return this.state.items;\n },\n enumerable: true,\n configurable: true\n });\n BasePicker.prototype.componentDidMount = function () {\n this.selection.setItems(this.state.items);\n this._onResolveSuggestions = this._async.debounce(this._onResolveSuggestions, this.props.resolveDelay);\n };\n BasePicker.prototype.componentDidUpdate = function (oldProps, oldState) {\n if (this.state.items && this.state.items !== oldState.items) {\n var currentSelectedIndex = this.selection.getSelectedIndices()[0];\n this.selection.setItems(this.state.items);\n if (this.state.isFocused) {\n // Reset focus and selection so that selected item stays in sync if something\n // has been removed\n if (this.state.items.length < oldState.items.length) {\n this.selection.setIndexSelected(currentSelectedIndex, true, true);\n this.resetFocus(currentSelectedIndex);\n }\n }\n }\n };\n BasePicker.prototype.componentWillUnmount = function () {\n if (this.currentPromise) {\n this.currentPromise = undefined;\n }\n this._async.dispose();\n };\n BasePicker.prototype.focus = function () {\n if (this.focusZone.current) {\n this.focusZone.current.focus();\n }\n };\n BasePicker.prototype.focusInput = function () {\n if (this.input.current) {\n this.input.current.focus();\n }\n };\n BasePicker.prototype.completeSuggestion = function (forceComplete) {\n if (this.suggestionStore.hasSelectedSuggestion() && this.input.current) {\n this.completeSelection(this.suggestionStore.currentSuggestion.item);\n }\n else if (forceComplete) {\n this._completeGenericSuggestion();\n }\n };\n BasePicker.prototype.render = function () {\n var _a, _b;\n var _c = this.state, suggestedDisplayValue = _c.suggestedDisplayValue, isFocused = _c.isFocused, items = _c.items;\n var _d = this.props, className = _d.className, inputProps = _d.inputProps, disabled = _d.disabled, theme = _d.theme, styles = _d.styles;\n var suggestionsAvailable = this.state.suggestionsVisible ? this._ariaMap.suggestionList : '';\n // TODO\n // Clean this up by leaving only the first part after removing support for SASS.\n // Currently we can not remove the SASS styles from BasePicker class because it\n // might be used by consumers who created custom pickers from extending from\n // this base class and have not used the new 'styles' prop.\n // We check for 'styles' prop which is going to be injected by the 'styled' HOC\n // for every other already existing picker variant (PeoplePicker, TagPicker)\n // so that we can use the CSS-in-JS styles. If the check fails (ex: custom picker),\n // then we just use the old SASS styles instead.\n var classNames = styles\n ? getClassNames(styles, {\n theme: theme,\n className: className,\n isFocused: isFocused,\n disabled: disabled,\n inputClassName: inputProps && inputProps.className,\n })\n : {\n root: css('ms-BasePicker', className ? className : ''),\n text: css('ms-BasePicker-text', legacyStyles.pickerText, this.state.isFocused && legacyStyles.inputFocused),\n itemsWrapper: legacyStyles.pickerItems,\n input: css('ms-BasePicker-input', legacyStyles.pickerInput, inputProps && inputProps.className),\n screenReaderText: legacyStyles.screenReaderOnly,\n };\n return (React.createElement(\"div\", { ref: this.root, className: classNames.root, onKeyDown: this.onKeyDown, onBlur: this.onBlur },\n React.createElement(FocusZone, { componentRef: this.focusZone, direction: FocusZoneDirection.bidirectional, shouldEnterInnerZone: this._shouldFocusZoneEnterInnerZone },\n this.getSuggestionsAlert(classNames.screenReaderText),\n React.createElement(SelectionZone, { selection: this.selection, selectionMode: SelectionMode.multiple },\n React.createElement(\"div\", { className: classNames.text },\n items.length > 0 && (React.createElement(\"span\", { id: this._ariaMap.selectedItems, className: classNames.itemsWrapper, role: 'list' }, this.renderItems())),\n this.canAddItems() && (React.createElement(Autofill, __assign({ spellCheck: false }, inputProps, { className: classNames.input, componentRef: this.input, id: ((_a = inputProps) === null || _a === void 0 ? void 0 : _a.id) ? inputProps.id : this._ariaMap.combobox, onClick: this.onClick, onFocus: this.onInputFocus, onBlur: this.onInputBlur, onInputValueChange: this.onInputChange, suggestedDisplayValue: suggestedDisplayValue, \"aria-activedescendant\": this.getActiveDescendant(), \"aria-controls\": suggestionsAvailable, \"aria-describedby\": items.length > 0 ? this._ariaMap.selectedItems : undefined, \"aria-expanded\": !!this.state.suggestionsVisible, \"aria-haspopup\": \"listbox\", \"aria-label\": this.props['aria-label'] || ((_b = inputProps) === null || _b === void 0 ? void 0 : _b['aria-label']), role: \"combobox\", disabled: disabled, onInputChange: this.props.onInputChange })))))),\n this.renderSuggestions()));\n };\n BasePicker.prototype.canAddItems = function () {\n var items = this.state.items;\n var itemLimit = this.props.itemLimit;\n return itemLimit === undefined || items.length < itemLimit;\n };\n BasePicker.prototype.renderSuggestions = function () {\n var StyledTypedSuggestions = this._styledSuggestions;\n return this.state.suggestionsVisible && this.input ? (React.createElement(Callout, __assign({ isBeakVisible: false, gapSpace: 5, target: this.input.current ? this.input.current.inputElement : undefined, onDismiss: this.dismissSuggestions, directionalHint: DirectionalHint.bottomLeftEdge, directionalHintForRTL: DirectionalHint.bottomRightEdge }, this.props.pickerCalloutProps),\n React.createElement(StyledTypedSuggestions\n // Assumed to set in derived component's defaultProps\n , __assign({ \n // Assumed to set in derived component's defaultProps\n onRenderSuggestion: this.props.onRenderSuggestionsItem, onSuggestionClick: this.onSuggestionClick, onSuggestionRemove: this.onSuggestionRemove, suggestions: this.suggestionStore.getSuggestions(), componentRef: this.suggestionElement, onGetMoreResults: this.onGetMoreResults, moreSuggestionsAvailable: this.state.moreSuggestionsAvailable, isLoading: this.state.suggestionsLoading, isSearching: this.state.isSearching, isMostRecentlyUsedVisible: this.state.isMostRecentlyUsedVisible, isResultsFooterVisible: this.state.isResultsFooterVisible, refocusSuggestions: this.refocusSuggestions, removeSuggestionAriaLabel: this.props.removeButtonAriaLabel, suggestionsListId: this._ariaMap.suggestionList, createGenericItem: this._completeGenericSuggestion }, this.props.pickerSuggestionsProps)))) : null;\n };\n BasePicker.prototype.renderItems = function () {\n var _this = this;\n var _a = this.props, disabled = _a.disabled, removeButtonAriaLabel = _a.removeButtonAriaLabel;\n var onRenderItem = this.props.onRenderItem;\n var _b = this.state, items = _b.items, selectedIndices = _b.selectedIndices;\n return items.map(function (item, index) {\n return onRenderItem({\n item: item,\n index: index,\n key: item.key ? item.key : index,\n selected: selectedIndices.indexOf(index) !== -1,\n onRemoveItem: function () { return _this.removeItem(item, true); },\n disabled: disabled,\n onItemChange: _this.onItemChange,\n removeButtonAriaLabel: removeButtonAriaLabel,\n });\n });\n };\n BasePicker.prototype.resetFocus = function (index) {\n var items = this.state.items;\n if (items.length && index >= 0) {\n var newEl = this.root.current &&\n this.root.current.querySelectorAll('[data-selection-index]')[Math.min(index, items.length - 1)];\n if (newEl && this.focusZone.current) {\n this.focusZone.current.focusElement(newEl);\n }\n }\n else if (!this.canAddItems()) {\n this.resetFocus(items.length - 1);\n }\n else {\n if (this.input.current) {\n this.input.current.focus();\n }\n }\n };\n BasePicker.prototype.onSuggestionSelect = function () {\n if (this.suggestionStore.currentSuggestion) {\n var currentValue = this.input.current ? this.input.current.value : '';\n var itemValue = this._getTextFromItem(this.suggestionStore.currentSuggestion.item, currentValue);\n this.setState({ suggestedDisplayValue: itemValue });\n }\n };\n BasePicker.prototype.onSelectionChange = function () {\n this.setState({\n selectedIndices: this.selection.getSelectedIndices(),\n });\n };\n BasePicker.prototype.updateSuggestions = function (suggestions) {\n this.suggestionStore.updateSuggestions(suggestions, 0);\n this.forceUpdate();\n };\n /**\n * Only to be called when there is nothing in the input. Checks to see if the consumer has\n * provided a function to resolve suggestions\n */\n BasePicker.prototype.onEmptyInputFocus = function () {\n var emptyResolveSuggestions = this.props.onEmptyResolveSuggestions\n ? this.props.onEmptyResolveSuggestions\n : // eslint-disable-next-line deprecation/deprecation\n this.props.onEmptyInputFocus;\n // Only attempt to resolve suggestions if it exists\n if (emptyResolveSuggestions) {\n var suggestions = emptyResolveSuggestions(this.state.items);\n this.updateSuggestionsList(suggestions);\n this.setState({\n isMostRecentlyUsedVisible: true,\n suggestionsVisible: true,\n moreSuggestionsAvailable: false,\n });\n }\n };\n BasePicker.prototype.updateValue = function (updatedValue) {\n this._onResolveSuggestions(updatedValue);\n };\n BasePicker.prototype.updateSuggestionsList = function (suggestions, updatedValue) {\n var _this = this;\n var suggestionsArray = suggestions;\n var suggestionsPromiseLike = suggestions;\n // Check to see if the returned value is an array, if it is then just pass it into the next function .\n // If the returned value is not an array then check to see if it's a promise or PromiseLike.\n // If it is then resolve it asynchronously.\n if (Array.isArray(suggestionsArray)) {\n this._updateAndResolveValue(updatedValue, suggestionsArray);\n }\n else if (suggestionsPromiseLike && suggestionsPromiseLike.then) {\n this.setState({\n suggestionsLoading: true,\n });\n // Clear suggestions\n this.suggestionStore.updateSuggestions([]);\n if (updatedValue !== undefined) {\n this.setState({\n suggestionsVisible: this._getShowSuggestions(),\n });\n }\n else {\n this.setState({\n suggestionsVisible: this.input.current && this.input.current.inputElement === document.activeElement,\n });\n }\n // Ensure that the promise will only use the callback if it was the most recent one.\n var promise_1 = (this.currentPromise = suggestionsPromiseLike);\n promise_1.then(function (newSuggestions) {\n if (promise_1 === _this.currentPromise) {\n _this._updateAndResolveValue(updatedValue, newSuggestions);\n }\n });\n }\n };\n BasePicker.prototype.resolveNewValue = function (updatedValue, suggestions) {\n var _this = this;\n this.updateSuggestions(suggestions);\n var itemValue = undefined;\n if (this.suggestionStore.currentSuggestion) {\n itemValue = this._getTextFromItem(this.suggestionStore.currentSuggestion.item, updatedValue);\n }\n // Only set suggestionloading to false after there has been time for the new suggestions to flow\n // to the suggestions list. This is to ensure that the suggestions are available before aria-activedescendant\n // is set so that screen readers will read out the first selected option.\n this.setState({\n suggestedDisplayValue: itemValue,\n suggestionsVisible: this._getShowSuggestions(),\n }, function () { return _this.setState({ suggestionsLoading: false }); });\n };\n BasePicker.prototype.onChange = function (items) {\n if (this.props.onChange) {\n this.props.onChange(items);\n }\n };\n // This is protected because we may expect the backspace key to work differently in a different kind of picker.\n // This lets the subclass override it and provide it's own onBackspace. For an example see the BasePickerListBelow\n BasePicker.prototype.onBackspace = function (ev) {\n if ((this.state.items.length && !this.input.current) ||\n (this.input.current && !this.input.current.isValueSelected && this.input.current.cursorLocation === 0)) {\n if (this.selection.getSelectedCount() > 0) {\n this.removeItems(this.selection.getSelection());\n }\n else {\n this.removeItem(this.state.items[this.state.items.length - 1]);\n }\n }\n };\n BasePicker.prototype.getActiveDescendant = function () {\n if (this.state.suggestionsLoading) {\n return undefined;\n }\n var currentIndex = this.suggestionStore.currentIndex;\n // if the suggestions element has actions and the currentIndex does not point to a suggestion, return the action id\n if (currentIndex < 0 && this.suggestionElement.current && this.suggestionElement.current.hasSuggestedAction()) {\n return 'sug-selectedAction';\n }\n return currentIndex > -1 && !this.state.suggestionsLoading ? 'sug-' + currentIndex : undefined;\n };\n BasePicker.prototype.getSuggestionsAlert = function (suggestionAlertClassName) {\n if (suggestionAlertClassName === void 0) { suggestionAlertClassName = legacyStyles.screenReaderOnly; }\n var currentIndex = this.suggestionStore.currentIndex;\n if (this.props.enableSelectedSuggestionAlert) {\n var selectedSuggestion = currentIndex > -1 ? this.suggestionStore.getSuggestionAtIndex(this.suggestionStore.currentIndex) : undefined;\n var selectedSuggestionAlertText = selectedSuggestion ? selectedSuggestion.ariaLabel : undefined;\n return (React.createElement(\"div\", { className: suggestionAlertClassName, role: \"alert\", id: this._ariaMap.selectedSuggestionAlert, \"aria-live\": \"assertive\" },\n selectedSuggestionAlertText,\n ' '));\n }\n };\n /**\n * Takes in the current updated value and either resolves it with the new suggestions\n * or if updated value is undefined then it clears out currently suggested items\n */\n BasePicker.prototype._updateAndResolveValue = function (updatedValue, newSuggestions) {\n if (updatedValue !== undefined) {\n this.resolveNewValue(updatedValue, newSuggestions);\n }\n else {\n this.suggestionStore.updateSuggestions(newSuggestions, -1);\n if (this.state.suggestionsLoading) {\n this.setState({\n suggestionsLoading: false,\n });\n }\n }\n };\n /**\n * Controls what happens whenever there is an action that impacts the selected items.\n * If `selectedItems` is provided, this will act as a controlled component and it will not update its own state.\n */\n BasePicker.prototype._updateSelectedItems = function (items) {\n var _this = this;\n if (this.props.selectedItems) {\n // If the component is a controlled component then the controlling component will need to add or remove the items.\n this.onChange(items);\n }\n else {\n this.setState({ items: items }, function () {\n _this._onSelectedItemsUpdated(items);\n });\n }\n };\n BasePicker.prototype._onSelectedItemsUpdated = function (items) {\n this.onChange(items);\n };\n /**\n * Suggestions are normally shown after the user updates text and the text\n * is non-empty, but also when the user clicks on the input element.\n * @returns True if suggestions should be shown.\n */\n BasePicker.prototype._getShowSuggestions = function () {\n var areSuggestionsVisible = this.input.current !== undefined &&\n this.input.current !== null &&\n this.input.current.inputElement === document.activeElement &&\n this.input.current.value !== '';\n return areSuggestionsVisible;\n };\n BasePicker.prototype._getTextFromItem = function (item, currentValue) {\n if (this.props.getTextFromItem) {\n return this.props.getTextFromItem(item, currentValue);\n }\n else {\n return '';\n }\n };\n return BasePicker;\n}(React.Component));\nexport { BasePicker };\nvar BasePickerListBelow = /** @class */ (function (_super) {\n __extends(BasePickerListBelow, _super);\n function BasePickerListBelow() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n BasePickerListBelow.prototype.render = function () {\n var _a = this.state, suggestedDisplayValue = _a.suggestedDisplayValue, isFocused = _a.isFocused;\n var _b = this.props, className = _b.className, inputProps = _b.inputProps, disabled = _b.disabled, theme = _b.theme, styles = _b.styles;\n var suggestionsAvailable = this.state.suggestionsVisible ? this._ariaMap.suggestionList : '';\n // TODO\n // Clean this up by leaving only the first part after removing support for SASS.\n // Currently we can not remove the SASS styles from BasePicker class because it\n // might be used by consumers who created custom pickers from extending from\n // this base class and have not used the new 'styles' prop.\n // We check for 'styles' prop which is going to be injected by the 'styled' HOC\n // for every other already existing picker variant (PeoplePicker, TagPicker)\n // so that we can use the CSS-in-JS styles. If the check fails (ex: custom picker),\n // then we just use the old SASS styles instead.\n var classNames = styles\n ? getClassNames(styles, {\n theme: theme,\n className: className,\n isFocused: isFocused,\n inputClassName: inputProps && inputProps.className,\n })\n : {\n root: css('ms-BasePicker', className ? className : ''),\n text: css('ms-BasePicker-text', legacyStyles.pickerText, this.state.isFocused && legacyStyles.inputFocused, disabled && legacyStyles.inputDisabled),\n input: css('ms-BasePicker-input', legacyStyles.pickerInput, inputProps && inputProps.className),\n screenReaderText: legacyStyles.screenReaderOnly,\n };\n return (React.createElement(\"div\", { ref: this.root, onBlur: this.onBlur },\n React.createElement(\"div\", { className: classNames.root, onKeyDown: this.onKeyDown },\n this.getSuggestionsAlert(classNames.screenReaderText),\n React.createElement(\"div\", { className: classNames.text },\n React.createElement(Autofill, __assign({}, inputProps, { className: classNames.input, componentRef: this.input, onFocus: this.onInputFocus, onBlur: this.onInputBlur, onClick: this.onClick, onInputValueChange: this.onInputChange, suggestedDisplayValue: suggestedDisplayValue, \"aria-activedescendant\": this.getActiveDescendant(), \"aria-controls\": suggestionsAvailable || undefined, \"aria-expanded\": !!this.state.suggestionsVisible, \"aria-haspopup\": \"listbox\", role: \"combobox\", disabled: disabled, onInputChange: this.props.onInputChange })))),\n this.renderSuggestions(),\n React.createElement(SelectionZone, { selection: this.selection, selectionMode: SelectionMode.single },\n React.createElement(FocusZone, { componentRef: this.focusZone, className: \"ms-BasePicker-selectedItems\" // just a className hook without any styles applied to it.\n , isCircularNavigation: true, direction: FocusZoneDirection.bidirectional, shouldEnterInnerZone: this._shouldFocusZoneEnterInnerZone, id: this._ariaMap.selectedItems, role: 'list' }, this.renderItems()))));\n };\n BasePickerListBelow.prototype.onBackspace = function (ev) {\n // override the existing backspace method to not do anything because the list items appear below.\n };\n return BasePickerListBelow;\n}(BasePicker));\nexport { BasePickerListBelow };\n//# sourceMappingURL=BasePicker.js.map" - }, - { - "id": "QqLw", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getTag.js", - "name": "./node_modules/lodash/_getTag.js", - "index": 534, - "index2": 531, - "size": 1838, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Gi0A", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsMap.js", - "module": "./node_modules/lodash/_baseIsMap.js", - "moduleName": "./node_modules/lodash/_baseIsMap.js", - "type": "cjs require", - "userRequest": "./_getTag", - "loc": "1:13-33" - }, - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_getTag", - "loc": "12:13-33" - }, - { - "moduleId": "w/wX", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseIsSet.js", - "module": "./node_modules/lodash/_baseIsSet.js", - "moduleName": "./node_modules/lodash/_baseIsSet.js", - "type": "cjs require", - "userRequest": "./_getTag", - "loc": "1:13-33" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var DataView = require('./_DataView'),\n Map = require('./_Map'),\n Promise = require('./_Promise'),\n Set = require('./_Set'),\n WeakMap = require('./_WeakMap'),\n baseGetTag = require('./_baseGetTag'),\n toSource = require('./_toSource');\n\n/** `Object#toString` result references. */\nvar mapTag = '[object Map]',\n objectTag = '[object Object]',\n promiseTag = '[object Promise]',\n setTag = '[object Set]',\n weakMapTag = '[object WeakMap]';\n\nvar dataViewTag = '[object DataView]';\n\n/** Used to detect maps, sets, and weakmaps. */\nvar dataViewCtorString = toSource(DataView),\n mapCtorString = toSource(Map),\n promiseCtorString = toSource(Promise),\n setCtorString = toSource(Set),\n weakMapCtorString = toSource(WeakMap);\n\n/**\n * Gets the `toStringTag` of `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nvar getTag = baseGetTag;\n\n// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\nif ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||\n (Map && getTag(new Map) != mapTag) ||\n (Promise && getTag(Promise.resolve()) != promiseTag) ||\n (Set && getTag(new Set) != setTag) ||\n (WeakMap && getTag(new WeakMap) != weakMapTag)) {\n getTag = function(value) {\n var result = baseGetTag(value),\n Ctor = result == objectTag ? value.constructor : undefined,\n ctorString = Ctor ? toSource(Ctor) : '';\n\n if (ctorString) {\n switch (ctorString) {\n case dataViewCtorString: return dataViewTag;\n case mapCtorString: return mapTag;\n case promiseCtorString: return promiseTag;\n case setCtorString: return setTag;\n case weakMapCtorString: return weakMapTag;\n }\n }\n return result;\n };\n}\n\nmodule.exports = getTag;\n" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "index": 913, - "index2": 915, - "size": 243, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "issuerId": "bLNN", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "bLNN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "type": "harmony side effect evaluation", - "userRequest": "./propertyFields/webPartInformation", - "loc": "1:0-52" - }, - { - "moduleId": "bLNN", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "type": "harmony export imported specifier", - "userRequest": "./propertyFields/webPartInformation", - "loc": "1:0-52" - } - ], - "usedExports": [ - "PropertyPaneWebPartInformation" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module exports are unknown" - ], - "depth": 2, - "source": "export * from './IPropertyPaneWebPartInformation';\nexport * from './PropertyPaneWebPartInformation';\nexport * from './IPropertyPaneWebPartInformationHost';\nexport * from './PropertyPaneWebPartInformationHost';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "R1c3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/findElementRecursive.js", - "index": null, - "index2": null, - "size": 112, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/findElementRecursive", - "loc": "3:0-43" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/findElementRecursive", - "loc": "3:0-43" - } - ], - "usedExports": false, - "providedExports": [ - "findElementRecursive" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export { findElementRecursive } from '@fluentui/dom-utilities';\n//# sourceMappingURL=findElementRecursive.js.map" - }, - { - "id": "R6dk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.base.js", - "index": null, - "index2": null, - "size": 19125, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "issuerId": "HDGI", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "DRN8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ScrollablePane.js", - "name": "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js" - }, - { - "id": "HDGI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HDGI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ScrollablePane.base", - "loc": "2:0-38" - }, - { - "moduleId": "HDGI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ScrollablePane.base", - "loc": "2:0-38" - }, - { - "moduleId": "gh1x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "type": "harmony side effect evaluation", - "userRequest": "./ScrollablePane.base", - "loc": "2:0-59" - }, - { - "moduleId": "gh1x", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/ScrollablePane.js", - "type": "harmony import specifier", - "userRequest": "./ScrollablePane.base", - "loc": "4:35-53" - } - ], - "usedExports": false, - "providedExports": [ - "ScrollablePaneBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Async, EventGroup, classNamesFunction, divProperties, getNativeProps, getRTL, initializeComponentRef, } from '../../Utilities';\nimport { ScrollablePaneContext, } from './ScrollablePane.types';\nvar getClassNames = classNamesFunction();\nvar ScrollablePaneBase = /** @class */ (function (_super) {\n __extends(ScrollablePaneBase, _super);\n function ScrollablePaneBase(props) {\n var _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._stickyAboveRef = React.createRef();\n _this._stickyBelowRef = React.createRef();\n _this._contentContainer = React.createRef();\n _this.subscribe = function (handler) {\n _this._subscribers.add(handler);\n };\n _this.unsubscribe = function (handler) {\n _this._subscribers.delete(handler);\n };\n _this.addSticky = function (sticky) {\n _this._stickies.add(sticky);\n // If ScrollablePane is mounted, then sort sticky in correct place\n if (_this.contentContainer) {\n sticky.setDistanceFromTop(_this.contentContainer);\n _this.sortSticky(sticky);\n }\n };\n _this.removeSticky = function (sticky) {\n _this._stickies.delete(sticky);\n _this._removeStickyFromContainers(sticky);\n _this.notifySubscribers();\n };\n _this.sortSticky = function (sticky, sortAgain) {\n if (_this.stickyAbove && _this.stickyBelow) {\n if (sortAgain) {\n _this._removeStickyFromContainers(sticky);\n }\n if (sticky.canStickyTop && sticky.stickyContentTop) {\n _this._addToStickyContainer(sticky, _this.stickyAbove, sticky.stickyContentTop);\n }\n if (sticky.canStickyBottom && sticky.stickyContentBottom) {\n _this._addToStickyContainer(sticky, _this.stickyBelow, sticky.stickyContentBottom);\n }\n }\n };\n _this.updateStickyRefHeights = function () {\n var stickyItems = _this._stickies;\n var stickyTopHeight = 0;\n var stickyBottomHeight = 0;\n stickyItems.forEach(function (sticky) {\n var _a = sticky.state, isStickyTop = _a.isStickyTop, isStickyBottom = _a.isStickyBottom;\n if (sticky.nonStickyContent) {\n if (isStickyTop) {\n stickyTopHeight += sticky.nonStickyContent.offsetHeight;\n }\n if (isStickyBottom) {\n stickyBottomHeight += sticky.nonStickyContent.offsetHeight;\n }\n _this._checkStickyStatus(sticky);\n }\n });\n _this.setState({\n stickyTopHeight: stickyTopHeight,\n stickyBottomHeight: stickyBottomHeight,\n });\n };\n _this.notifySubscribers = function () {\n if (_this.contentContainer) {\n _this._subscribers.forEach(function (handle) {\n // this.stickyBelow is passed in for calculating distance to determine Sticky status\n handle(_this.contentContainer, _this.stickyBelow);\n });\n }\n };\n _this.getScrollPosition = function () {\n if (_this.contentContainer) {\n return _this.contentContainer.scrollTop;\n }\n return 0;\n };\n _this.syncScrollSticky = function (sticky) {\n if (sticky && _this.contentContainer) {\n sticky.syncScroll(_this.contentContainer);\n }\n };\n _this._getScrollablePaneContext = function () {\n return {\n scrollablePane: {\n subscribe: _this.subscribe,\n unsubscribe: _this.unsubscribe,\n addSticky: _this.addSticky,\n removeSticky: _this.removeSticky,\n updateStickyRefHeights: _this.updateStickyRefHeights,\n sortSticky: _this.sortSticky,\n notifySubscribers: _this.notifySubscribers,\n syncScrollSticky: _this.syncScrollSticky,\n },\n };\n };\n _this._addToStickyContainer = function (sticky, stickyContainer, stickyContentToAdd) {\n // If there's no children, append child to list, otherwise, sort though array and append at correct position\n if (!stickyContainer.children.length) {\n stickyContainer.appendChild(stickyContentToAdd);\n }\n else {\n // If stickyContentToAdd isn't a child element of target container, then append\n if (!stickyContainer.contains(stickyContentToAdd)) {\n var stickyChildrenElements_1 = [].slice.call(stickyContainer.children);\n var stickyList_1 = [];\n // Get stickies. Filter by canStickyTop/Bottom, then sort by distance from top, and then\n // filter by elements that are in the stickyContainer already.\n _this._stickies.forEach(function (stickyItem) {\n if (stickyContainer === _this.stickyAbove && sticky.canStickyTop) {\n stickyList_1.push(stickyItem);\n }\n else if (sticky.canStickyBottom) {\n stickyList_1.push(stickyItem);\n }\n });\n var stickyListSorted = stickyList_1\n .sort(function (a, b) {\n return (a.state.distanceFromTop || 0) - (b.state.distanceFromTop || 0);\n })\n .filter(function (item) {\n var stickyContent = stickyContainer === _this.stickyAbove ? item.stickyContentTop : item.stickyContentBottom;\n if (stickyContent) {\n return stickyChildrenElements_1.indexOf(stickyContent) > -1;\n }\n return false;\n });\n // Get first element that has a distance from top that is further than our sticky that is being added\n var targetStickyToAppendBefore = undefined;\n for (var _i = 0, stickyListSorted_1 = stickyListSorted; _i < stickyListSorted_1.length; _i++) {\n var stickyListItem = stickyListSorted_1[_i];\n if ((stickyListItem.state.distanceFromTop || 0) >= (sticky.state.distanceFromTop || 0)) {\n targetStickyToAppendBefore = stickyListItem;\n break;\n }\n }\n // If target element to append before is known, grab respective stickyContentTop/Bottom element\n // and insert before\n var targetContainer = null;\n if (targetStickyToAppendBefore) {\n targetContainer =\n stickyContainer === _this.stickyAbove\n ? targetStickyToAppendBefore.stickyContentTop\n : targetStickyToAppendBefore.stickyContentBottom;\n }\n stickyContainer.insertBefore(stickyContentToAdd, targetContainer);\n }\n }\n };\n _this._removeStickyFromContainers = function (sticky) {\n if (_this.stickyAbove && sticky.stickyContentTop && _this.stickyAbove.contains(sticky.stickyContentTop)) {\n _this.stickyAbove.removeChild(sticky.stickyContentTop);\n }\n if (_this.stickyBelow && sticky.stickyContentBottom && _this.stickyBelow.contains(sticky.stickyContentBottom)) {\n _this.stickyBelow.removeChild(sticky.stickyContentBottom);\n }\n };\n _this._onWindowResize = function () {\n var scrollbarWidth = _this._getScrollbarWidth();\n var scrollbarHeight = _this._getScrollbarHeight();\n _this.setState({\n scrollbarWidth: scrollbarWidth,\n scrollbarHeight: scrollbarHeight,\n });\n _this.notifySubscribers();\n };\n _this._getStickyContainerStyle = function (height, isTop) {\n return __assign(__assign({ height: height }, (getRTL(_this.props.theme)\n ? {\n right: '0',\n left: (_this.state.scrollbarWidth || _this._getScrollbarWidth() || 0) + \"px\",\n }\n : {\n left: '0',\n right: (_this.state.scrollbarWidth || _this._getScrollbarWidth() || 0) + \"px\",\n })), (isTop\n ? {\n top: '0',\n }\n : {\n bottom: (_this.state.scrollbarHeight || _this._getScrollbarHeight() || 0) + \"px\",\n }));\n };\n _this._onScroll = function () {\n var contentContainer = _this.contentContainer;\n if (contentContainer) {\n _this._stickies.forEach(function (sticky) {\n sticky.syncScroll(contentContainer);\n });\n }\n _this._notifyThrottled();\n };\n _this._subscribers = new Set();\n _this._stickies = new Set();\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n _this.state = {\n stickyTopHeight: 0,\n stickyBottomHeight: 0,\n scrollbarWidth: 0,\n scrollbarHeight: 0,\n };\n _this._notifyThrottled = _this._async.throttle(_this.notifySubscribers, 50);\n return _this;\n }\n Object.defineProperty(ScrollablePaneBase.prototype, \"root\", {\n get: function () {\n return this._root.current;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ScrollablePaneBase.prototype, \"stickyAbove\", {\n get: function () {\n return this._stickyAboveRef.current;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ScrollablePaneBase.prototype, \"stickyBelow\", {\n get: function () {\n return this._stickyBelowRef.current;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ScrollablePaneBase.prototype, \"contentContainer\", {\n get: function () {\n return this._contentContainer.current;\n },\n enumerable: true,\n configurable: true\n });\n ScrollablePaneBase.prototype.componentDidMount = function () {\n var _this = this;\n var initialScrollPosition = this.props.initialScrollPosition;\n this._events.on(this.contentContainer, 'scroll', this._onScroll);\n this._events.on(window, 'resize', this._onWindowResize);\n if (this.contentContainer && initialScrollPosition) {\n this.contentContainer.scrollTop = initialScrollPosition;\n }\n // Set sticky distances from top property, then sort in correct order and notify subscribers\n this.setStickiesDistanceFromTop();\n this._stickies.forEach(function (sticky) {\n _this.sortSticky(sticky);\n });\n this.notifySubscribers();\n if ('MutationObserver' in window) {\n this._mutationObserver = new MutationObserver(function (mutation) {\n // Function to check if mutation is occuring in stickyAbove or stickyBelow\n function checkIfMutationIsSticky(mutationRecord) {\n if (this.stickyAbove !== null && this.stickyBelow !== null) {\n return this.stickyAbove.contains(mutationRecord.target) || this.stickyBelow.contains(mutationRecord.target);\n }\n return false;\n }\n // Compute the scrollbar height, which might have changed if the content's width changed and caused overflow\n var scrollbarHeight = _this._getScrollbarHeight();\n // If the scrollbar height changed, update state so it's postioned correctly below sticky footer\n if (scrollbarHeight !== _this.state.scrollbarHeight) {\n _this.setState({\n scrollbarHeight: scrollbarHeight,\n });\n }\n // Notify subscribers again to re-check whether Sticky should be Sticky'd or not\n _this.notifySubscribers();\n // If mutation occurs in sticky header or footer, then update sticky top/bottom heights\n if (mutation.some(checkIfMutationIsSticky.bind(_this))) {\n _this.updateStickyRefHeights();\n }\n else {\n // If mutation occurs in scrollable region, then find Sticky it belongs to and force update\n var stickyList_2 = [];\n _this._stickies.forEach(function (sticky) {\n if (sticky.root && sticky.root.contains(mutation[0].target)) {\n stickyList_2.push(sticky);\n }\n });\n if (stickyList_2.length) {\n stickyList_2.forEach(function (sticky) {\n sticky.forceUpdate();\n });\n }\n }\n });\n if (this.root) {\n this._mutationObserver.observe(this.root, {\n childList: true,\n attributes: true,\n subtree: true,\n characterData: true,\n });\n }\n }\n };\n ScrollablePaneBase.prototype.componentWillUnmount = function () {\n this._events.dispose();\n this._async.dispose();\n if (this._mutationObserver) {\n this._mutationObserver.disconnect();\n }\n };\n // Only updates if props/state change, just to prevent excessive setState with updateStickyRefHeights\n ScrollablePaneBase.prototype.shouldComponentUpdate = function (nextProps, nextState) {\n return (this.props.children !== nextProps.children ||\n this.props.initialScrollPosition !== nextProps.initialScrollPosition ||\n this.props.className !== nextProps.className ||\n this.state.stickyTopHeight !== nextState.stickyTopHeight ||\n this.state.stickyBottomHeight !== nextState.stickyBottomHeight ||\n this.state.scrollbarWidth !== nextState.scrollbarWidth ||\n this.state.scrollbarHeight !== nextState.scrollbarHeight);\n };\n ScrollablePaneBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n var initialScrollPosition = this.props.initialScrollPosition;\n if (this.contentContainer &&\n typeof initialScrollPosition === 'number' &&\n prevProps.initialScrollPosition !== initialScrollPosition) {\n this.contentContainer.scrollTop = initialScrollPosition;\n }\n // Update subscribers when stickyTopHeight/stickyBottomHeight changes\n if (prevState.stickyTopHeight !== this.state.stickyTopHeight ||\n prevState.stickyBottomHeight !== this.state.stickyBottomHeight) {\n this.notifySubscribers();\n }\n this._async.setTimeout(this._onWindowResize, 0);\n };\n ScrollablePaneBase.prototype.render = function () {\n var _a = this.props, className = _a.className, theme = _a.theme, styles = _a.styles;\n var _b = this.state, stickyTopHeight = _b.stickyTopHeight, stickyBottomHeight = _b.stickyBottomHeight;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n scrollbarVisibility: this.props.scrollbarVisibility,\n });\n return (React.createElement(\"div\", __assign({}, getNativeProps(this.props, divProperties), { ref: this._root, className: classNames.root }),\n React.createElement(\"div\", { ref: this._stickyAboveRef, className: classNames.stickyAbove, style: this._getStickyContainerStyle(stickyTopHeight, true) }),\n React.createElement(\"div\", { ref: this._contentContainer, className: classNames.contentContainer, \"data-is-scrollable\": true },\n React.createElement(ScrollablePaneContext.Provider, { value: this._getScrollablePaneContext() }, this.props.children)),\n React.createElement(\"div\", { className: classNames.stickyBelow, style: this._getStickyContainerStyle(stickyBottomHeight, false) },\n React.createElement(\"div\", { ref: this._stickyBelowRef, className: classNames.stickyBelowItems }))));\n };\n ScrollablePaneBase.prototype.setStickiesDistanceFromTop = function () {\n var _this = this;\n if (this.contentContainer) {\n this._stickies.forEach(function (sticky) {\n sticky.setDistanceFromTop(_this.contentContainer);\n });\n }\n };\n ScrollablePaneBase.prototype.forceLayoutUpdate = function () {\n this._onWindowResize();\n };\n ScrollablePaneBase.prototype._checkStickyStatus = function (sticky) {\n if (this.stickyAbove && this.stickyBelow && this.contentContainer && sticky.nonStickyContent) {\n // If sticky is sticky, then append content to appropriate container\n if (sticky.state.isStickyTop || sticky.state.isStickyBottom) {\n if (sticky.state.isStickyTop &&\n !this.stickyAbove.contains(sticky.nonStickyContent) &&\n sticky.stickyContentTop) {\n sticky.addSticky(sticky.stickyContentTop);\n }\n if (sticky.state.isStickyBottom &&\n !this.stickyBelow.contains(sticky.nonStickyContent) &&\n sticky.stickyContentBottom) {\n sticky.addSticky(sticky.stickyContentBottom);\n }\n }\n else if (!this.contentContainer.contains(sticky.nonStickyContent)) {\n // Reset sticky if it's not sticky and not in the contentContainer element\n sticky.resetSticky();\n }\n }\n };\n ScrollablePaneBase.prototype._getScrollbarWidth = function () {\n var contentContainer = this.contentContainer;\n return contentContainer ? contentContainer.offsetWidth - contentContainer.clientWidth : 0;\n };\n ScrollablePaneBase.prototype._getScrollbarHeight = function () {\n var contentContainer = this.contentContainer;\n return contentContainer ? contentContainer.offsetHeight - contentContainer.clientHeight : 0;\n };\n return ScrollablePaneBase;\n}(React.Component));\nexport { ScrollablePaneBase };\n//# sourceMappingURL=ScrollablePane.base.js.map" - }, - { - "id": "RBan", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/last.js", - "name": "./node_modules/lodash/last.js", - "index": 562, - "index2": 555, - "size": 401, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "issuerId": "S7Xf", - "issuerName": "./node_modules/lodash/_baseUnset.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S7Xf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "module": "./node_modules/lodash/_baseUnset.js", - "moduleName": "./node_modules/lodash/_baseUnset.js", - "type": "cjs require", - "userRequest": "./last", - "loc": "2:11-28" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "/**\n * Gets the last element of `array`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to query.\n * @returns {*} Returns the last element of `array`.\n * @example\n *\n * _.last([1, 2, 3]);\n * // => 3\n */\nfunction last(array) {\n var length = array == null ? 0 : array.length;\n return length ? array[length - 1] : undefined;\n}\n\nmodule.exports = last;\n" - }, - { - "id": "RNC2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js 0b6fa42584f058ac8a17f59ff68dae45", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js + 2 modules", - "index": 114, - "index2": 102, - "size": 12573, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "43:40-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Image", - "loc": "713:53-58" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "4:0-39" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "52:60-65" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "44:44-49" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "46:44-49" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "28:36-41" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "71:41-46" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "74:39-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "3:0-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "21:28-33" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image", - "loc": "1:0-24" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Image", - "loc": "1:0-24" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "25:45-50" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "63:36-41" - } - ], - "usedExports": [ - "Image" - ], - "providedExports": [ - "Image" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Image/Image.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.base.js", - "index": 115, - "index2": 100, - "size": 7213, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sLem", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/Image.js" - }, - { - "id": "weyb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.base", - "loc": "2:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "userRequest": "./Image.base", - "loc": "4:26-35" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.base", - "loc": "2:0-29" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Image.base", - "loc": "2:0-29" - } - ], - "usedExports": [ - "ImageBase" - ], - "providedExports": [ - "ImageBase" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getNativeProps, imgProperties } from '../../Utilities';\nimport { ImageCoverStyle, ImageFit, ImageLoadState } from './Image.types';\nvar getClassNames = classNamesFunction();\nvar KEY_PREFIX = 'fabricImage';\nvar ImageBase = /** @class */ (function (_super) {\n __extends(ImageBase, _super);\n function ImageBase(props) {\n var _this = _super.call(this, props) || this;\n // Make an initial assumption about the image layout until we can\n // check the rendered element. The value here only takes effect when\n // shouldStartVisible is true.\n _this._coverStyle = ImageCoverStyle.portrait;\n _this._imageElement = React.createRef();\n _this._frameElement = React.createRef();\n _this._onImageLoaded = function (ev) {\n var _a = _this.props, src = _a.src, onLoad = _a.onLoad;\n if (onLoad) {\n onLoad(ev);\n }\n _this._computeCoverStyle(_this.props);\n if (src) {\n _this.setState({\n loadState: ImageLoadState.loaded,\n });\n }\n };\n _this._onImageError = function (ev) {\n if (_this.props.onError) {\n _this.props.onError(ev);\n }\n _this.setState({\n loadState: ImageLoadState.error,\n });\n };\n _this.state = {\n loadState: ImageLoadState.notLoaded,\n };\n return _this;\n }\n ImageBase.prototype.UNSAFE_componentWillReceiveProps = function (nextProps) {\n if (nextProps.src !== this.props.src) {\n this.setState({\n loadState: ImageLoadState.notLoaded,\n });\n }\n else if (this.state.loadState === ImageLoadState.loaded) {\n this._computeCoverStyle(nextProps);\n }\n };\n ImageBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n this._checkImageLoaded();\n if (this.props.onLoadingStateChange && prevState.loadState !== this.state.loadState) {\n this.props.onLoadingStateChange(this.state.loadState);\n }\n };\n ImageBase.prototype.render = function () {\n var imageProps = getNativeProps(this.props, imgProperties, [\n 'width',\n 'height',\n ]);\n var _a = this.props, src = _a.src, alt = _a.alt, width = _a.width, height = _a.height, shouldFadeIn = _a.shouldFadeIn, shouldStartVisible = _a.shouldStartVisible, className = _a.className, imageFit = _a.imageFit, role = _a.role, maximizeFrame = _a.maximizeFrame, styles = _a.styles, theme = _a.theme;\n var loadState = this.state.loadState;\n var coverStyle = this.props.coverStyle !== undefined ? this.props.coverStyle : this._coverStyle;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n width: width,\n height: height,\n maximizeFrame: maximizeFrame,\n shouldFadeIn: shouldFadeIn,\n shouldStartVisible: shouldStartVisible,\n isLoaded: loadState === ImageLoadState.loaded ||\n (loadState === ImageLoadState.notLoaded && this.props.shouldStartVisible),\n isLandscape: coverStyle === ImageCoverStyle.landscape,\n isCenter: imageFit === ImageFit.center,\n isCenterContain: imageFit === ImageFit.centerContain,\n isCenterCover: imageFit === ImageFit.centerCover,\n isContain: imageFit === ImageFit.contain,\n isCover: imageFit === ImageFit.cover,\n isNone: imageFit === ImageFit.none,\n isError: loadState === ImageLoadState.error,\n isNotImageFit: imageFit === undefined,\n });\n // If image dimensions aren't specified, the natural size of the image is used.\n return (React.createElement(\"div\", { className: classNames.root, style: { width: width, height: height }, ref: this._frameElement },\n React.createElement(\"img\", __assign({}, imageProps, { onLoad: this._onImageLoaded, onError: this._onImageError, key: KEY_PREFIX + this.props.src || '', className: classNames.image, ref: this._imageElement, src: src, alt: alt, role: role }))));\n };\n ImageBase.prototype._checkImageLoaded = function () {\n var src = this.props.src;\n var loadState = this.state.loadState;\n if (loadState === ImageLoadState.notLoaded) {\n // testing if naturalWidth and naturalHeight are greater than zero is better than checking\n // .complete, because .complete will also be set to true if the image breaks. However,\n // for some browsers, SVG images do not have a naturalWidth or naturalHeight, so fall back\n // to checking .complete for these images.\n var isLoaded = this._imageElement.current\n ? (src && this._imageElement.current.naturalWidth > 0 && this._imageElement.current.naturalHeight > 0) ||\n (this._imageElement.current.complete && ImageBase._svgRegex.test(src))\n : false;\n if (isLoaded) {\n this._computeCoverStyle(this.props);\n this.setState({\n loadState: ImageLoadState.loaded,\n });\n }\n }\n };\n ImageBase.prototype._computeCoverStyle = function (props) {\n var imageFit = props.imageFit, width = props.width, height = props.height;\n // Do not compute cover style if it was already specified in props\n if ((imageFit === ImageFit.cover ||\n imageFit === ImageFit.contain ||\n imageFit === ImageFit.centerContain ||\n imageFit === ImageFit.centerCover) &&\n this.props.coverStyle === undefined &&\n this._imageElement.current &&\n this._frameElement.current) {\n // Determine the desired ratio using the width and height props.\n // If those props aren't available, measure measure the frame.\n var desiredRatio = void 0;\n if (typeof width === 'number' &&\n typeof height === 'number' &&\n imageFit !== ImageFit.centerContain &&\n imageFit !== ImageFit.centerCover) {\n desiredRatio = width / height;\n }\n else {\n desiredRatio = this._frameElement.current.clientWidth / this._frameElement.current.clientHeight;\n }\n // Examine the source image to determine its original ratio.\n var naturalRatio = this._imageElement.current.naturalWidth / this._imageElement.current.naturalHeight;\n // Should we crop from the top or the sides?\n if (naturalRatio > desiredRatio) {\n this._coverStyle = ImageCoverStyle.landscape;\n }\n else {\n this._coverStyle = ImageCoverStyle.portrait;\n }\n }\n };\n ImageBase.defaultProps = {\n shouldFadeIn: true,\n };\n ImageBase._svgRegex = /\\.svg$/i;\n return ImageBase;\n}(React.Component));\nexport { ImageBase };\n//# sourceMappingURL=Image.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "index": 114, - "index2": 102, - "size": 252, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "issuerId": "weyb", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sLem", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/Image.js" - }, - { - "id": "weyb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaCoin/PersonaCoin.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "43:40-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "module": "./lib/webparts/listSearch/components/ListSearch.js", - "moduleName": "./lib/webparts/listSearch/components/ListSearch.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Image", - "loc": "713:53-58" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "4:0-39" - }, - { - "moduleId": "DeEv", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js a977c114f9f20b6aa4426e5d90176eb0", - "module": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Icon/Icon.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "52:60-65" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "44:44-49" - }, - { - "moduleId": "GaQG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Image", - "loc": "46:44-49" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "28:36-41" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "71:41-46" - }, - { - "moduleId": "bFxf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "74:39-44" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../Image/Image", - "loc": "3:0-39" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony import specifier", - "userRequest": "../Image/Image", - "loc": "21:28-33" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image", - "loc": "1:0-24" - }, - { - "moduleId": "weyb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Image", - "loc": "1:0-24" - }, - { - "moduleId": "zXG8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardImage.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "25:45-50" - }, - { - "moduleId": "zjyg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubbleContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Image", - "loc": "63:36-41" - } - ], - "usedExports": [ - "Image" - ], - "providedExports": [ - "Image" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { styled } from '../../Utilities';\nimport { ImageBase } from './Image.base';\nimport { getStyles } from './Image.styles';\nexport var Image = styled(ImageBase, getStyles, undefined, {\n scope: 'Image',\n}, true);\n//# sourceMappingURL=Image.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.styles.js", - "index": 116, - "index2": 101, - "size": 5068, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "sLem", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/Image.js" - }, - { - "id": "weyb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony side effect evaluation", - "userRequest": "./Image.styles", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Image/Image.js", - "type": "harmony import specifier", - "userRequest": "./Image.styles", - "loc": "4:37-46" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { AnimationClassNames, getGlobalClassNames } from '../../Styling';\nimport { getWindow } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Image',\n rootMaximizeFrame: 'ms-Image--maximizeFrame',\n image: 'ms-Image-image',\n imageCenter: 'ms-Image-image--center',\n imageContain: 'ms-Image-image--contain',\n imageCover: 'ms-Image-image--cover',\n imageCenterContain: 'ms-Image-image--centerContain',\n imageCenterCover: 'ms-Image-image--centerCover',\n imageNone: 'ms-Image-image--none',\n imageLandscape: 'ms-Image-image--landscape',\n imagePortrait: 'ms-Image-image--portrait',\n};\nexport var getStyles = function (props) {\n var className = props.className, width = props.width, height = props.height, maximizeFrame = props.maximizeFrame, isLoaded = props.isLoaded, shouldFadeIn = props.shouldFadeIn, shouldStartVisible = props.shouldStartVisible, isLandscape = props.isLandscape, isCenter = props.isCenter, isContain = props.isContain, isCover = props.isCover, isCenterContain = props.isCenterContain, isCenterCover = props.isCenterCover, isNone = props.isNone, isError = props.isError, isNotImageFit = props.isNotImageFit, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var ImageFitStyles = {\n position: 'absolute',\n left: '50% /* @noflip */',\n top: '50%',\n transform: 'translate(-50%,-50%)',\n };\n // Cut the mustard using msMaxTouchPoints to detect IE11 which does not support CSS object-fit\n var window = getWindow();\n var supportsObjectFit = window !== undefined && window.navigator.msMaxTouchPoints === undefined;\n var fallbackObjectFitStyles = (isContain && isLandscape) || (isCover && !isLandscape)\n ? { width: '100%', height: 'auto' }\n : { width: 'auto', height: '100%' };\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n overflow: 'hidden',\n },\n maximizeFrame && [\n classNames.rootMaximizeFrame,\n {\n height: '100%',\n width: '100%',\n },\n ],\n isLoaded && shouldFadeIn && !shouldStartVisible && AnimationClassNames.fadeIn400,\n (isCenter || isContain || isCover || isCenterContain || isCenterCover) && {\n position: 'relative',\n },\n className,\n ],\n image: [\n classNames.image,\n {\n display: 'block',\n opacity: 0,\n },\n isLoaded && [\n 'is-loaded',\n {\n opacity: 1,\n },\n ],\n isCenter && [classNames.imageCenter, ImageFitStyles],\n isContain && [\n classNames.imageContain,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'contain',\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n ImageFitStyles,\n ],\n isCover && [\n classNames.imageCover,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'cover',\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n ImageFitStyles,\n ],\n isCenterContain && [\n classNames.imageCenterContain,\n isLandscape && {\n maxWidth: '100%',\n },\n !isLandscape && {\n maxHeight: '100%',\n },\n ImageFitStyles,\n ],\n isCenterCover && [\n classNames.imageCenterCover,\n isLandscape && {\n maxHeight: '100%',\n },\n !isLandscape && {\n maxWidth: '100%',\n },\n ImageFitStyles,\n ],\n isNone && [\n classNames.imageNone,\n {\n width: 'auto',\n height: 'auto',\n },\n ],\n isNotImageFit && [\n !!width &&\n !height && {\n height: 'auto',\n width: '100%',\n },\n !width &&\n !!height && {\n height: '100%',\n width: 'auto',\n },\n !!width &&\n !!height && {\n height: '100%',\n width: '100%',\n },\n ],\n isLandscape && classNames.imageLandscape,\n !isLandscape && classNames.imagePortrait,\n !isLoaded && 'is-notLoaded',\n shouldFadeIn && 'is-fadeIn',\n isError && 'is-error',\n ],\n };\n};\n//# sourceMappingURL=Image.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "RWhW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/customizations/Customizer.js", - "index": null, - "index2": null, - "size": 2085, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./customizations/Customizer", - "loc": "21:0-44" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./customizations/Customizer", - "loc": "21:0-44" - } - ], - "usedExports": false, - "providedExports": [ - "Customizer" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "import * as tslib_1 from \"tslib\";\nimport * as React from 'react';\nimport { Customizations } from './Customizations';\nimport { CustomizerContext } from './CustomizerContext';\nimport { mergeCustomizations } from './mergeCustomizations';\n/**\n * The Customizer component allows for default props to be mixed into components which\n * are decorated with the customizable() decorator, or use the styled HOC. This enables\n * injection scenarios like:\n *\n * 1. render svg icons instead of the icon font within all buttons\n * 2. inject a custom theme object into a component\n *\n * Props are provided via the settings prop which should be one of the following:\n * - A json map which contains 1 or more name/value pairs representing injectable props.\n * - A function that receives the current settings and returns the new ones that apply to the scope\n *\n * @public\n */\nvar Customizer = /** @class */ (function (_super) {\n tslib_1.__extends(Customizer, _super);\n function Customizer() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._onCustomizationChange = function () { return _this.forceUpdate(); };\n return _this;\n }\n Customizer.prototype.componentDidMount = function () {\n Customizations.observe(this._onCustomizationChange);\n };\n Customizer.prototype.componentWillUnmount = function () {\n Customizations.unobserve(this._onCustomizationChange);\n };\n Customizer.prototype.render = function () {\n var _this = this;\n var contextTransform = this.props.contextTransform;\n return (React.createElement(CustomizerContext.Consumer, null, function (parentContext) {\n var newContext = mergeCustomizations(_this.props, parentContext);\n if (contextTransform) {\n newContext = contextTransform(newContext);\n }\n return React.createElement(CustomizerContext.Provider, { value: newContext }, _this.props.children);\n }));\n };\n return Customizer;\n}(React.Component));\nexport { Customizer };\n//# sourceMappingURL=Customizer.js.map" - }, - { - "id": "RY1Y", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js eeece6ad724cd1f8721d3f4f927fb547", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js + 28 modules", - "index": 129, - "index2": 184, - "size": 61012, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionColorField", - "loc": "2:0-39" - }, - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionColorField", - "loc": "2:0-39" - } - ], - "usedExports": [ - "CollectionColorField" - ], - "providedExports": [ - "CollectionColorField" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.module.scss.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/KeyCodes.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/on.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/getId.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/setFocusVisibility.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warn.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/warn/warnDeprecations.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/TextField/TextField.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 9, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/consts.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/consts.js", - "index": 169, - "index2": 155, - "size": 907, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-41" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-58" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "3:0-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/consts", - "loc": "4:0-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/consts", - "loc": "5:0-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "6:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/consts", - "loc": "7:0-168" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "7:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "7:41-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:26-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:29-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:34-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:56-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:17-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:21-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:52-67" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:56-71" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "9:119-134" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "11:12-27" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "11:22-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "12:32-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "14:28-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "28:30-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "32:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "33:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "34:22-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "48:36-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "48:53-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "50:60-80" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "50:92-107" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "57:67-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "80:47-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "97:49-64" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "106:366-381" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "110:105-120" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "112:15-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "126:15-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "136:42-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "136:58-73" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:62-82" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:85-105" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:125-140" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:157-172" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/consts", - "loc": "143:175-190" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "199:54-68" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "199:71-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "201:38-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "201:50-60" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "215:42-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "218:42-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/consts", - "loc": "221:42-55" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-80" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "6:26-39" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "7:26-46" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "8:26-41" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "3:0-25" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./consts", - "loc": "3:0-25" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-43" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "14:36-51" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "18:12-27" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-41" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "47:23-36" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "47:52-65" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "47:81-94" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "166:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "167:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "168:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "171:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "172:34-47" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "173:34-47" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-25" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./consts", - "loc": "1:0-25" - }, - { - "moduleId": "wFJs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "type": "harmony side effect evaluation", - "userRequest": "./consts", - "loc": "1:0-65" - }, - { - "moduleId": "wFJs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "4:9-29" - }, - { - "moduleId": "wFJs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hsl.js", - "type": "harmony import specifier", - "userRequest": "./consts", - "loc": "5:9-24" - } - ], - "usedExports": [ - "MIN_HEX_LENGTH", - "MIN_RGBA_LENGTH", - "MAX_COLOR_ALPHA", - "MAX_HEX_LENGTH", - "MAX_RGBA_LENGTH", - "HEX_REGEX", - "RGBA_REGEX", - "MAX_COLOR_RGB", - "MAX_COLOR_SATURATION", - "MAX_COLOR_VALUE", - "MAX_COLOR_HUE" - ], - "providedExports": [ - "MAX_COLOR_SATURATION", - "MAX_COLOR_HUE", - "MAX_COLOR_VALUE", - "MAX_COLOR_RGB", - "MAX_COLOR_RGBA", - "MAX_COLOR_ALPHA", - "MIN_HEX_LENGTH", - "MAX_HEX_LENGTH", - "MIN_RGBA_LENGTH", - "MAX_RGBA_LENGTH", - "HEX_REGEX", - "RGBA_REGEX" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var MAX_COLOR_SATURATION = 100;\nexport var MAX_COLOR_HUE = 359;\nexport var MAX_COLOR_VALUE = 100;\nexport var MAX_COLOR_RGB = 255;\n/** @deprecated Use MAX_COLOR_RGB (255) or MAX_COLOR_ALPHA (100) */\nexport var MAX_COLOR_RGBA = MAX_COLOR_RGB;\nexport var MAX_COLOR_ALPHA = 100;\n/** Minimum length for a hexadecimal color string (not including the #) */\nexport var MIN_HEX_LENGTH = 3;\n/** Maximum length for a hexadecimal color string (not including the #) */\nexport var MAX_HEX_LENGTH = 6;\n/** Minimum length for a string of an RGBA color component */\nexport var MIN_RGBA_LENGTH = 1;\n/** Maximum length for a string of an RGBA color component */\nexport var MAX_RGBA_LENGTH = 3;\n/** Regular expression matching only valid hexadecimal chars */\nexport var HEX_REGEX = /^[\\da-f]{0,6}$/i;\n/** Regular expression matching only numbers */\nexport var RGBA_REGEX = /^\\d{0,3}$/;\n//# sourceMappingURL=consts.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2rgb.js", - "index": 168, - "index2": 156, - "size": 948, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "issuerId": "cXV2", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": "cXV2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "1:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "5:13-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "6:11-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "12:13-20" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "12:13-20" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "9:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hsv2rgb", - "loc": "9:0-26" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "2:0-36" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "15:13-20" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "6:0-36" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "125:35-42" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./hsv2rgb", - "loc": "148:35-42" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2rgb", - "loc": "7:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./hsv2rgb", - "loc": "7:0-26" - } - ], - "usedExports": [ - "hsv2rgb" - ], - "providedExports": [ - "hsv2rgb" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_RGB } from './consts';\n/** Converts HSV components to an RGB color. Does not set the alpha value. */\nexport function hsv2rgb(h, s, v) {\n s = s / 100;\n v = v / 100;\n var rgb = [];\n var c = v * s;\n var hh = h / 60;\n var x = c * (1 - Math.abs((hh % 2) - 1));\n var m = v - c;\n switch (Math.floor(hh)) {\n case 0:\n rgb = [c, x, 0];\n break;\n case 1:\n rgb = [x, c, 0];\n break;\n case 2:\n rgb = [0, c, x];\n break;\n case 3:\n rgb = [0, x, c];\n break;\n case 4:\n rgb = [x, 0, c];\n break;\n case 5:\n rgb = [c, 0, x];\n break;\n }\n return {\n r: Math.round(MAX_COLOR_RGB * (rgb[0] + m)),\n g: Math.round(MAX_COLOR_RGB * (rgb[1] + m)),\n b: Math.round(MAX_COLOR_RGB * (rgb[2] + m)),\n };\n}\n//# sourceMappingURL=hsv2rgb.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/clamp.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/clamp.js", - "index": 171, - "index2": 157, - "size": 233, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "issuerId": "cXV2", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": "cXV2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "2:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "2:0-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/clamp", - "loc": "4:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "6:11-16" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/clamp", - "loc": "7:0-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "7:11-16" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "8:11-16" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "9:10-15" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "9:41-46" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/clamp", - "loc": "10:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "43:35-40" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "50:51-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "50:83-88" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/clamp", - "loc": "57:46-51" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "59:27-32" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "143:31-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/clamp", - "loc": "143:108-113" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "2:0-32" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "6:11-16" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "7:11-16" - }, - { - "moduleId": "Hz+1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHSV.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "8:11-16" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "6:0-24" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./clamp", - "loc": "6:0-24" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "3:0-32" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "53:11-16" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "59:11-16" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./clamp", - "loc": "60:11-16" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./clamp", - "loc": "4:0-24" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./clamp", - "loc": "4:0-24" - } - ], - "usedExports": [ - "clamp" - ], - "providedExports": [ - "clamp" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/** Clamp a value to ensure it falls within a given range. */\nexport function clamp(value, max, min) {\n if (min === void 0) { min = 0; }\n return value < min ? min : value > max ? max : value;\n}\n//# sourceMappingURL=clamp.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hex.js", - "index": 170, - "index2": 158, - "size": 526, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "3:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "3:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "3:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hex", - "loc": "6:11-18" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hex", - "loc": "9:14-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hex", - "loc": "13:14-21" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hex", - "loc": "13:14-21" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "5:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rgb2hex", - "loc": "5:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hex", - "loc": "3:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./rgb2hex", - "loc": "3:0-26" - } - ], - "usedExports": [ - "rgb2hex" - ], - "providedExports": [ - "rgb2hex" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_RGB } from './consts';\nimport { clamp } from './clamp';\n/** Converts RGB components to a hex color string (without # prefix). */\nexport function rgb2hex(r, g, b) {\n return [_rgbToPaddedHex(r), _rgbToPaddedHex(g), _rgbToPaddedHex(b)].join('');\n}\n/** Converts an RGB component to a 0-padded hex component of length 2. */\nfunction _rgbToPaddedHex(num) {\n num = clamp(num, MAX_COLOR_RGB);\n var hex = num.toString(16);\n return hex.length === 1 ? '0' + hex : hex;\n}\n//# sourceMappingURL=rgb2hex.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsv2hex.js", - "index": 188, - "index2": 173, - "size": 309, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2hex", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "type": "harmony import specifier", - "userRequest": "./hsv2hex", - "loc": "8:17-24" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2hex", - "loc": "10:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hsv2hex", - "loc": "10:0-26" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2hex", - "loc": "3:0-36" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./hsv2hex", - "loc": "16:14-21" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsv2hex", - "loc": "8:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./hsv2hex", - "loc": "8:0-26" - } - ], - "usedExports": [ - "hsv2hex" - ], - "providedExports": [ - "hsv2hex" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { hsv2rgb } from './hsv2rgb';\nimport { rgb2hex } from './rgb2hex';\n/** Converts HSV components to a hex color string (without # prefix). */\nexport function hsv2hex(h, s, v) {\n var _a = hsv2rgb(h, s, v), r = _a.r, g = _a.g, b = _a.b;\n return rgb2hex(r, g, b);\n}\n//# sourceMappingURL=hsv2hex.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getFullColorString.js", - "index": 187, - "index2": 174, - "size": 411, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/getFullColorString", - "loc": "5:0-81" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/getFullColorString", - "loc": "106:129-147" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getFullColorString", - "loc": "16:0-37" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getFullColorString", - "loc": "16:0-37" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./getFullColorString", - "loc": "14:0-37" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./getFullColorString", - "loc": "14:0-37" - } - ], - "usedExports": [ - "getFullColorString" - ], - "providedExports": [ - "getFullColorString" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_SATURATION, MAX_COLOR_VALUE } from './consts';\nimport { hsv2hex } from './hsv2hex';\n/**\n * Converts a color hue to an HTML color string (with # prefix).\n * This implementation ignores all components of `color` except hue.\n */\nexport function getFullColorString(color) {\n return \"#\" + hsv2hex(color.h, MAX_COLOR_SATURATION, MAX_COLOR_VALUE);\n}\n//# sourceMappingURL=getFullColorString.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "index": 186, - "index2": 172, - "size": 724, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../../utilities/color/updateSV", - "loc": "6:0-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/updateSV", - "loc": "50:35-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "type": "harmony import specifier", - "userRequest": "../../../utilities/color/updateSV", - "loc": "143:11-19" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateSV", - "loc": "17:0-27" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./updateSV", - "loc": "17:0-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateSV", - "loc": "15:0-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./updateSV", - "loc": "15:0-27" - } - ], - "usedExports": [ - "updateSV" - ], - "providedExports": [ - "updateSV" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { hsv2rgb } from './hsv2rgb';\nimport { rgb2hex } from './rgb2hex';\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\n/**\n * Gets a color with the same hue as `color` and other components updated to match the given\n * saturation and value.\n *\n * Does not modify the original `color` and does not supply a default alpha value.\n */\nexport function updateSV(color, s, v) {\n var _a = hsv2rgb(color.h, s, v), r = _a.r, g = _a.g, b = _a.b;\n var hex = rgb2hex(r, g, b);\n return __assign(__assign({}, color), { s: s,\n v: v,\n r: r,\n g: g,\n b: b,\n hex: hex, str: _rgbaOrHexString(r, g, b, color.a, hex) });\n}\n//# sourceMappingURL=updateSV.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2hsv.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2hsv.js", - "index": 178, - "index2": 163, - "size": 272, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2hsv", - "loc": "1:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "type": "harmony import specifier", - "userRequest": "./hsl2hsv", - "loc": "5:14-21" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2hsv", - "loc": "8:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hsl2hsv", - "loc": "8:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2hsv", - "loc": "6:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./hsl2hsv", - "loc": "6:0-26" - } - ], - "usedExports": [ - "hsl2hsv" - ], - "providedExports": [ - "hsl2hsv" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/** Converts HSL components to an HSV color. */\nexport function hsl2hsv(h, s, l) {\n s *= (l < 50 ? l : 100 - l) / 100;\n var v = l + s;\n return {\n h: h,\n s: v === 0 ? 0 : ((2 * s) / v) * 100,\n v: v,\n };\n}\n//# sourceMappingURL=hsl2hsv.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/hsl2rgb.js", - "index": 177, - "index2": 164, - "size": 297, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2rgb", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "type": "harmony import specifier", - "userRequest": "./hsl2rgb", - "loc": "96:23-30" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2rgb", - "loc": "7:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hsl2rgb", - "loc": "7:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./hsl2rgb", - "loc": "5:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./hsl2rgb", - "loc": "5:0-26" - } - ], - "usedExports": [ - "hsl2rgb" - ], - "providedExports": [ - "hsl2rgb" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { hsl2hsv } from './hsl2hsv';\nimport { hsv2rgb } from './hsv2rgb';\n/** Converts HSL components to an RGB color. Does not set the alpha value. */\nexport function hsl2rgb(h, s, l) {\n var hsv = hsl2hsv(h, s, l);\n return hsv2rgb(hsv.h, hsv.s, hsv.v);\n}\n//# sourceMappingURL=hsl2rgb.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/cssColor.js", - "index": 176, - "index2": 165, - "size": 4836, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "type": "harmony side effect evaluation", - "userRequest": "./cssColor", - "loc": "2:0-38" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "type": "harmony import specifier", - "userRequest": "./cssColor", - "loc": "13:16-24" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./cssColor", - "loc": "4:0-27" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./cssColor", - "loc": "4:0-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./cssColor", - "loc": "2:0-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./cssColor", - "loc": "2:0-27" - } - ], - "usedExports": [ - "cssColor" - ], - "providedExports": [ - "cssColor" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_ALPHA } from './consts';\nimport { hsl2rgb } from './hsl2rgb';\n/**\n * Converts a valid CSS color string to an RGB color.\n * Note that hex colors *must* be prefixed with # to be considered valid.\n * Alpha in returned color defaults to 100.\n * Four and eight digit hex values (with alpha) are supported if the current browser supports them.\n */\nexport function cssColor(color) {\n if (!color) {\n return undefined;\n }\n // Need to check the following valid color formats: RGB(A), HSL(A), hex, named color\n // First check for well formatted RGB(A), HSL(A), and hex formats at the start.\n // This is for perf (no creating an element) and catches the intentional \"transparent\" color\n // case early on.\n var easyColor = _rgba(color) || _hex6(color) || _hex3(color) || _hsla(color);\n if (easyColor) {\n return easyColor;\n }\n // if the above fails, do the more expensive catch-all\n return _browserCompute(color);\n}\n/**\n * Uses the browser's getComputedStyle() to determine what the passed-in color is.\n * This assumes _rgba, _hex6, _hex3, and _hsla have already been tried and all failed.\n * This works by attaching an element to the DOM, which may fail in server-side rendering\n * or with headless browsers.\n */\nfunction _browserCompute(str) {\n if (typeof document === 'undefined') {\n // don't throw an error when used server-side\n return undefined;\n }\n var elem = document.createElement('div');\n elem.style.backgroundColor = str;\n // This element must be attached to the DOM for getComputedStyle() to have a value\n elem.style.position = 'absolute';\n elem.style.top = '-9999px';\n elem.style.left = '-9999px';\n elem.style.height = '1px';\n elem.style.width = '1px';\n document.body.appendChild(elem);\n var eComputedStyle = getComputedStyle(elem);\n var computedColor = eComputedStyle && eComputedStyle.backgroundColor;\n document.body.removeChild(elem);\n // computedColor is always an RGB(A) string, except for invalid colors in IE/Edge which return 'transparent'\n // browsers return one of these if the color string is invalid,\n // so need to differentiate between an actual error and intentionally passing in this color\n if (computedColor === 'rgba(0, 0, 0, 0)' || computedColor === 'transparent') {\n switch (str.trim()) {\n // RGB and HSL were already checked at the start of the function\n case 'transparent':\n case '#0000':\n case '#00000000':\n return { r: 0, g: 0, b: 0, a: 0 };\n }\n return undefined;\n }\n return _rgba(computedColor);\n}\n/**\n * If `str` is in valid `rgb()` or `rgba()` format, returns an RGB color (alpha defaults to 100).\n * Otherwise returns undefined.\n */\nfunction _rgba(str) {\n if (!str) {\n return undefined;\n }\n var match = str.match(/^rgb(a?)\\(([\\d., ]+)\\)$/);\n if (match) {\n var hasAlpha = !!match[1];\n var expectedPartCount = hasAlpha ? 4 : 3;\n var parts = match[2].split(/ *, */).map(Number);\n if (parts.length === expectedPartCount) {\n return {\n r: parts[0],\n g: parts[1],\n b: parts[2],\n a: hasAlpha ? parts[3] * 100 : MAX_COLOR_ALPHA,\n };\n }\n }\n}\n/**\n * If `str` is in `hsl()` or `hsla()` format, returns an RGB color (alpha defaults to 100).\n * Otherwise returns undefined.\n */\nfunction _hsla(str) {\n var match = str.match(/^hsl(a?)\\(([\\d., ]+)\\)$/);\n if (match) {\n var hasAlpha = !!match[1];\n var expectedPartCount = hasAlpha ? 4 : 3;\n var parts = match[2].split(/ *, */).map(Number);\n if (parts.length === expectedPartCount) {\n var rgba = hsl2rgb(parts[0], parts[1], parts[2]);\n rgba.a = hasAlpha ? parts[3] * 100 : MAX_COLOR_ALPHA;\n return rgba;\n }\n }\n}\n/**\n * If `str` is in valid 6-digit hex format *with* # prefix, returns an RGB color (with alpha 100).\n * Otherwise returns undefined.\n */\nfunction _hex6(str) {\n if (str[0] === '#' && str.length === 7 && /^#[\\da-fA-F]{6}$/.test(str)) {\n return {\n r: parseInt(str.slice(1, 3), 16),\n g: parseInt(str.slice(3, 5), 16),\n b: parseInt(str.slice(5, 7), 16),\n a: MAX_COLOR_ALPHA,\n };\n }\n}\n/**\n * If `str` is in valid 3-digit hex format *with* # prefix, returns an RGB color (with alpha 100).\n * Otherwise returns undefined.\n */\nfunction _hex3(str) {\n if (str[0] === '#' && str.length === 4 && /^#[\\da-fA-F]{3}$/.test(str)) {\n return {\n r: parseInt(str[1] + str[1], 16),\n g: parseInt(str[2] + str[2], 16),\n b: parseInt(str[3] + str[3], 16),\n a: MAX_COLOR_ALPHA,\n };\n }\n}\n//# sourceMappingURL=cssColor.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/rgb2hsv.js", - "index": 180, - "index2": 166, - "size": 771, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hsv", - "loc": "2:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./rgb2hsv", - "loc": "8:13-20" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hsv", - "loc": "11:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./rgb2hsv", - "loc": "11:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./rgb2hsv", - "loc": "9:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./rgb2hsv", - "loc": "9:0-26" - } - ], - "usedExports": [ - "rgb2hsv" - ], - "providedExports": [ - "rgb2hsv" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_RGB } from './consts';\n/** Converts RGB components to an HSV color. */\nexport function rgb2hsv(r, g, b) {\n var h = NaN;\n var max = Math.max(r, g, b);\n var min = Math.min(r, g, b);\n var delta = max - min;\n // hue\n if (delta === 0) {\n h = 0;\n }\n else if (r === max) {\n h = ((g - b) / delta) % 6;\n }\n else if (g === max) {\n h = (b - r) / delta + 2;\n }\n else if (b === max) {\n h = (r - g) / delta + 4;\n }\n h = Math.round(h * 60);\n if (h < 0) {\n h += 360;\n }\n // saturation\n var s = Math.round((max === 0 ? 0 : delta / max) * 100);\n // value\n var v = Math.round((max / MAX_COLOR_RGB) * 100);\n return { h: h, s: s, v: v };\n}\n//# sourceMappingURL=rgb2hsv.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "index": 179, - "index2": 167, - "size": 690, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "3:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromRGBA", - "loc": "9:0-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "type": "harmony import specifier", - "userRequest": "./getColorFromRGBA", - "loc": "17:33-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromRGBA", - "loc": "60:31-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromRGBA", - "loc": "242:22-38" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "14:0-35" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromRGBA", - "loc": "14:0-35" - }, - { - "moduleId": "ZK5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "1:0-54" - }, - { - "moduleId": "ZK5P", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateRGB.js", - "type": "harmony import specifier", - "userRequest": "./getColorFromRGBA", - "loc": "8:11-27" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "4:0-54" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./getColorFromRGBA", - "loc": "125:11-27" - }, - { - "moduleId": "cXV2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/shades.js", - "type": "harmony import specifier", - "userRequest": "./getColorFromRGBA", - "loc": "148:11-27" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromRGBA", - "loc": "12:0-35" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromRGBA", - "loc": "12:0-35" - } - ], - "usedExports": [ - "getColorFromRGBA" - ], - "providedExports": [ - "getColorFromRGBA" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_ALPHA } from './consts';\nimport { rgb2hsv } from './rgb2hsv';\nimport { rgb2hex } from './rgb2hex';\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\n/** Converts an RGBA color to a color object (alpha defaults to 100). */\nexport function getColorFromRGBA(rgba) {\n var _a = rgba.a, a = _a === void 0 ? MAX_COLOR_ALPHA : _a, b = rgba.b, g = rgba.g, r = rgba.r;\n var _b = rgb2hsv(r, g, b), h = _b.h, s = _b.s, v = _b.v;\n var hex = rgb2hex(r, g, b);\n var str = _rgbaOrHexString(r, g, b, a, hex);\n var t = MAX_COLOR_ALPHA - a;\n return { a: a, b: b, g: g, h: h, hex: hex, r: r, s: s, str: str, v: v, t: t };\n}\n//# sourceMappingURL=getColorFromRGBA.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "index": 175, - "index2": 168, - "size": 732, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "issuerId": "352s", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "8:0-78" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "53:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "87:48-66" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "239:18-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "291:39-57" - }, - { - "moduleId": "352s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "1:0-78" - }, - { - "moduleId": "352s", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "28:32-50" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromString", - "loc": "13:0-37" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromString", - "loc": "13:0-37" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromString", - "loc": "20:0-37" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromString", - "loc": "20:0-37" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "2:0-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "87:57-75" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "88:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "89:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "127:66-84" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "128:63-81" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "129:61-79" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "130:69-87" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "131:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "132:67-85" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "133:54-72" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "134:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "135:66-84" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "136:65-83" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "137:64-82" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "138:54-72" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "139:60-78" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "140:58-76" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "141:61-79" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "142:63-81" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "143:62-80" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "144:59-77" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "145:61-79" - }, - { - "moduleId": "YiMW", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeRulesStandard.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "146:64-82" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromString", - "loc": "11:0-37" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromString", - "loc": "11:0-37" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "5:0-78" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "56:111-129" - }, - { - "moduleId": "tAC6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/ColorPickerGridCell.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/getColorFromString", - "loc": "84:20-38" - } - ], - "usedExports": [ - "getColorFromString" - ], - "providedExports": [ - "getColorFromString" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { cssColor } from './cssColor';\nimport { getColorFromRGBA } from './getColorFromRGBA';\n/**\n * Converts a CSS color string to a color object.\n * Note that hex colors *must* be prefixed with # to be considered valid.\n *\n * `inputColor` will be used unmodified as the `str` property of the returned object.\n * Alpha defaults to 100 if not specified in `inputColor`.\n * Returns undefined if the color string is invalid/not recognized.\n */\nexport function getColorFromString(inputColor) {\n var color = cssColor(inputColor);\n if (!color) {\n return;\n }\n return __assign(__assign({}, getColorFromRGBA(color)), { str: inputColor });\n}\n//# sourceMappingURL=getColorFromString.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "index": 174, - "index2": 162, - "size": 478, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/updateA", - "loc": "11:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateA", - "loc": "34:79-86" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateA", - "loc": "56:44-51" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateA", - "loc": "21:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./updateA", - "loc": "21:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateA", - "loc": "18:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./updateA", - "loc": "18:0-26" - } - ], - "usedExports": [ - "updateA" - ], - "providedExports": [ - "updateA" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\nimport { MAX_COLOR_ALPHA } from './consts';\n/**\n * Gets a color with the given alpha value and the same other components as `color`.\n * Does not modify the original color.\n */\nexport function updateA(color, a) {\n return __assign(__assign({}, color), { a: a, t: MAX_COLOR_ALPHA - a, str: _rgbaOrHexString(color.r, color.g, color.b, a, color.hex) });\n}\n//# sourceMappingURL=updateA.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "index": 173, - "index2": 161, - "size": 508, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/updateT", - "loc": "12:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateT", - "loc": "34:69-76" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateT", - "loc": "56:54-61" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateT", - "loc": "241:22-29" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateT", - "loc": "22:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./updateT", - "loc": "22:0-26" - } - ], - "usedExports": [ - "updateT" - ], - "providedExports": [ - "updateT" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\nimport { MAX_COLOR_ALPHA } from './consts';\n/**\n * Gets a color with the given transparency value and the same other components as `color`.\n * Does not modify the original color.\n */\nexport function updateT(color, t) {\n var a = MAX_COLOR_ALPHA - t;\n return __assign(__assign({}, color), { t: t,\n a: a, str: _rgbaOrHexString(color.r, color.g, color.b, a, color.hex) });\n}\n//# sourceMappingURL=updateT.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "index": 167, - "index2": 160, - "size": 715, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/updateH", - "loc": "13:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/updateH", - "loc": "30:35-42" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateH", - "loc": "18:0-26" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./updateH", - "loc": "18:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./updateH", - "loc": "16:0-26" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./updateH", - "loc": "16:0-26" - } - ], - "usedExports": [ - "updateH" - ], - "providedExports": [ - "updateH" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign } from \"tslib\";\nimport { hsv2rgb } from './hsv2rgb';\nimport { rgb2hex } from './rgb2hex';\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\n/**\n * Gets a color with the same saturation and value as `color` and the other components updated\n * to match the given hue.\n *\n * Does not modify the original `color` and does not supply a default alpha value.\n */\nexport function updateH(color, h) {\n var _a = hsv2rgb(h, color.s, color.v), r = _a.r, g = _a.g, b = _a.b;\n var hex = rgb2hex(r, g, b);\n return __assign(__assign({}, color), { h: h,\n r: r,\n g: g,\n b: b,\n hex: hex, str: _rgbaOrHexString(r, g, b, color.a, hex) });\n}\n//# sourceMappingURL=updateH.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctRGB.js", - "index": 182, - "index2": 170, - "size": 460, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/correctRGB", - "loc": "14:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/correctRGB", - "loc": "60:48-58" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./correctRGB", - "loc": "23:0-29" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./correctRGB", - "loc": "23:0-29" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./correctRGB", - "loc": "19:0-29" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./correctRGB", - "loc": "19:0-29" - } - ], - "usedExports": [ - "correctRGB" - ], - "providedExports": [ - "correctRGB" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { MAX_COLOR_ALPHA, MAX_COLOR_RGB } from './consts';\nimport { clamp } from './clamp';\n/** Corrects an RGB color to fall within the valid range. */\nexport function correctRGB(color) {\n return {\n r: clamp(color.r, MAX_COLOR_RGB),\n g: clamp(color.g, MAX_COLOR_RGB),\n b: clamp(color.b, MAX_COLOR_RGB),\n a: typeof color.a === 'number' ? clamp(color.a, MAX_COLOR_ALPHA) : color.a,\n };\n}\n//# sourceMappingURL=correctRGB.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "index": 166, - "index2": 181, - "size": 15670, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPicker.base", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony import specifier", - "userRequest": "./ColorPicker.base", - "loc": "4:32-47" - }, - { - "moduleId": "mFm4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPicker.base", - "loc": "2:0-35" - }, - { - "moduleId": "mFm4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ColorPicker.base", - "loc": "2:0-35" - } - ], - "usedExports": [ - "ColorPickerBase" - ], - "providedExports": [ - "ColorPickerBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef, warnDeprecations, warn } from '../../Utilities';\nimport { TextField } from '../../TextField';\nimport { ColorRectangle } from './ColorRectangle/ColorRectangle';\nimport { ColorSlider } from './ColorSlider/ColorSlider';\nimport { MAX_COLOR_ALPHA, MAX_COLOR_RGB, MAX_HEX_LENGTH, MAX_RGBA_LENGTH, MIN_HEX_LENGTH, MIN_RGBA_LENGTH, HEX_REGEX, RGBA_REGEX, } from '../../utilities/color/consts';\nimport { getColorFromString } from '../../utilities/color/getColorFromString';\nimport { getColorFromRGBA } from '../../utilities/color/getColorFromRGBA';\nimport { clamp } from '../../utilities/color/clamp';\nimport { updateA } from '../../utilities/color/updateA';\nimport { updateT } from '../../utilities/color/updateT';\nimport { updateH } from '../../utilities/color/updateH';\nimport { correctRGB } from '../../utilities/color/correctRGB';\nimport { correctHex } from '../../utilities/color/correctHex';\nimport { ColorRectangleBase } from './ColorRectangle/ColorRectangle.base';\nvar getClassNames = classNamesFunction();\nvar allColorComponents = ['hex', 'r', 'g', 'b', 'a', 't'];\n/**\n * {@docCategory ColorPicker}\n */\nvar ColorPickerBase = /** @class */ (function (_super) {\n __extends(ColorPickerBase, _super);\n function ColorPickerBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onSVChanged = function (ev, color) {\n _this._updateColor(ev, color);\n };\n _this._onHChanged = function (ev, h) {\n _this._updateColor(ev, updateH(_this.state.color, h));\n };\n /** Callback for when the alpha/transparency slider changes */\n _this._onATChanged = function (ev, value) {\n var updater = _this.props.alphaType === 'transparency' ? updateT : updateA;\n _this._updateColor(ev, updater(_this.state.color, Math.round(value)));\n };\n _this._onBlur = function (event) {\n var _a;\n var _b = _this.state, color = _b.color, editingColor = _b.editingColor;\n if (!editingColor) {\n return;\n }\n // If there was an intermediate incorrect value (such as too large or empty), correct it.\n var value = editingColor.value, component = editingColor.component;\n var isHex = component === 'hex';\n var isAlpha = component === 'a';\n var isTransparency = component === 't';\n var minLength = isHex ? MIN_HEX_LENGTH : MIN_RGBA_LENGTH;\n if (value.length >= minLength && (isHex || !isNaN(Number(value)))) {\n // Real value. Clamp to appropriate length (hex) or range (rgba).\n var newColor = void 0;\n if (isHex) {\n newColor = getColorFromString('#' + correctHex(value));\n }\n else if (isAlpha || isTransparency) {\n var updater = isAlpha ? updateA : updateT;\n newColor = updater(color, clamp(Number(value), MAX_COLOR_ALPHA));\n }\n else {\n newColor = getColorFromRGBA(correctRGB(__assign(__assign({}, color), (_a = {}, _a[component] = Number(value), _a))));\n }\n // Update state and call onChange\n _this._updateColor(event, newColor);\n }\n else {\n // Intermediate value was an empty string or too short (hex only).\n // Just clear the intermediate state and revert to the previous value.\n _this.setState({ editingColor: undefined });\n }\n };\n initializeComponentRef(_this);\n var strings = props.strings; // always defined since it's in defaultProps\n warnDeprecations('ColorPicker', props, {\n hexLabel: 'strings.hex',\n redLabel: 'strings.red',\n greenLabel: 'strings.green',\n blueLabel: 'strings.blue',\n alphaLabel: 'strings.alpha',\n alphaSliderHidden: 'alphaType',\n });\n // eslint-disable-next-line deprecation/deprecation\n if (strings.hue) {\n // warnDeprecations can't handle nested deprecated props\n warn(\"ColorPicker property 'strings.hue' was used but has been deprecated. Use 'strings.hueAriaLabel' instead.\");\n }\n _this.state = {\n color: _getColorFromProps(props) || getColorFromString('#ffffff'),\n };\n _this._textChangeHandlers = {};\n for (var _i = 0, allColorComponents_1 = allColorComponents; _i < allColorComponents_1.length; _i++) {\n var component = allColorComponents_1[_i];\n _this._textChangeHandlers[component] = _this._onTextChange.bind(_this, component);\n }\n var defaultStrings = ColorPickerBase.defaultProps.strings;\n _this._textLabels = {\n /* eslint-disable deprecation/deprecation */\n r: props.redLabel || strings.red || defaultStrings.red,\n g: props.greenLabel || strings.green || defaultStrings.green,\n b: props.blueLabel || strings.blue || defaultStrings.blue,\n a: props.alphaLabel || strings.alpha || defaultStrings.alpha,\n hex: props.hexLabel || strings.hex || defaultStrings.hex,\n t: strings.transparency || defaultStrings.transparency,\n };\n _this._strings = __assign(__assign(__assign({}, defaultStrings), { \n // these aria labels default to the visible labels\n alphaAriaLabel: _this._textLabels.a, transparencyAriaLabel: _this._textLabels.t }), strings);\n return _this;\n }\n Object.defineProperty(ColorPickerBase.prototype, \"color\", {\n get: function () {\n return this.state.color;\n },\n enumerable: true,\n configurable: true\n });\n ColorPickerBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n // if props changed (as opposed to a state update), update the color\n if (prevProps !== this.props) {\n var color = _getColorFromProps(this.props);\n if (color) {\n this._updateColor(undefined, color);\n }\n }\n };\n ColorPickerBase.prototype.render = function () {\n var _this = this;\n var props = this.props;\n var strings = this._strings;\n var textLabels = this._textLabels;\n var theme = props.theme, className = props.className, styles = props.styles, alphaType = props.alphaType, \n // eslint-disable-next-line deprecation/deprecation\n _a = props.alphaSliderHidden, \n // eslint-disable-next-line deprecation/deprecation\n alphaSliderHidden = _a === void 0 ? alphaType === 'none' : _a;\n var color = this.state.color;\n var useTransparency = alphaType === 'transparency';\n var colorComponents = ['hex', 'r', 'g', 'b', useTransparency ? 't' : 'a'];\n var atValue = useTransparency ? color.t : color.a;\n var atLabel = useTransparency ? textLabels.t : textLabels.a;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n alphaType: alphaType,\n });\n var selectedColorAriaParts = [textLabels.r, color.r, textLabels.g, color.g, textLabels.b, color.b];\n if (!alphaSliderHidden && typeof atValue === 'number') {\n selectedColorAriaParts.push(atLabel, atValue + \"%\");\n }\n var ariaLabel = strings.rootAriaLabelFormat.replace('{0}', selectedColorAriaParts.join(' '));\n return (React.createElement(\"div\", { className: classNames.root, role: \"group\", \"aria-label\": ariaLabel },\n React.createElement(\"div\", { className: classNames.panel },\n React.createElement(ColorRectangle, { color: color, onChange: this._onSVChanged, ariaLabel: strings.svAriaLabel, ariaDescription: strings.svAriaDescription, ariaValueFormat: strings.svAriaValueFormat, className: classNames.colorRectangle }),\n React.createElement(\"div\", { className: classNames.flexContainer },\n React.createElement(\"div\", { className: classNames.flexSlider },\n React.createElement(ColorSlider, { className: \"is-hue\", type: \"hue\", \n // eslint-disable-next-line deprecation/deprecation\n ariaLabel: strings.hue || strings.hueAriaLabel, value: color.h, onChange: this._onHChanged }),\n !alphaSliderHidden && (React.createElement(ColorSlider, { className: \"is-alpha\", type: alphaType, ariaLabel: useTransparency ? strings.transparencyAriaLabel : strings.alphaAriaLabel, overlayColor: color.hex, value: atValue, onChange: this._onATChanged }))),\n props.showPreview && (React.createElement(\"div\", { className: classNames.flexPreviewBox },\n React.createElement(\"div\", { className: classNames.colorSquare + ' is-preview', style: {\n backgroundColor: color.str,\n } })))),\n React.createElement(\"table\", { className: classNames.table, role: \"group\", cellPadding: \"0\", cellSpacing: \"0\" },\n React.createElement(\"thead\", null,\n React.createElement(\"tr\", { className: classNames.tableHeader },\n React.createElement(\"td\", { className: classNames.tableHexCell }, textLabels.hex),\n React.createElement(\"td\", null, textLabels.r),\n React.createElement(\"td\", null, textLabels.g),\n React.createElement(\"td\", null, textLabels.b),\n !alphaSliderHidden && React.createElement(\"td\", { className: classNames.tableAlphaCell }, atLabel))),\n React.createElement(\"tbody\", null,\n React.createElement(\"tr\", null, colorComponents.map(function (comp) {\n if ((comp === 'a' || comp === 't') && alphaSliderHidden) {\n return null;\n }\n return (React.createElement(\"td\", { key: comp },\n React.createElement(TextField, { className: classNames.input, onChange: _this._textChangeHandlers[comp], onBlur: _this._onBlur, value: _this._getDisplayValue(comp), spellCheck: false, ariaLabel: textLabels[comp], \"aria-live\": comp !== 'hex' ? 'assertive' : undefined, autoComplete: \"off\" })));\n })))))));\n };\n ColorPickerBase.prototype._getDisplayValue = function (component) {\n var _a = this.state, color = _a.color, editingColor = _a.editingColor;\n if (editingColor && editingColor.component === component) {\n return editingColor.value;\n }\n if (component === 'hex') {\n return color[component] || '';\n }\n else if (typeof color[component] === 'number' && !isNaN(color[component])) {\n return String(color[component]);\n }\n return '';\n };\n ColorPickerBase.prototype._onTextChange = function (component, event, newValue) {\n var _a;\n var color = this.state.color;\n var isHex = component === 'hex';\n var isAlpha = component === 'a';\n var isTransparency = component === 't';\n newValue = (newValue || '').substr(0, isHex ? MAX_HEX_LENGTH : MAX_RGBA_LENGTH);\n // Ignore what the user typed if it contains invalid characters\n var validCharsRegex = isHex ? HEX_REGEX : RGBA_REGEX;\n if (!validCharsRegex.test(newValue)) {\n return;\n }\n // Determine if the entry is valid (different methods for hex, alpha, and RGB)\n var isValid;\n if (newValue === '') {\n // Empty string is obviously not valid\n isValid = false;\n }\n else if (isHex) {\n // Technically hex values of length 3 are also valid, but committing the value here would\n // cause it to be automatically converted to a value of length 6, which may not be what the\n // user wanted if they're not finished typing. (Values of length 3 will be committed on blur.)\n isValid = newValue.length === MAX_HEX_LENGTH;\n }\n else if (isAlpha || isTransparency) {\n isValid = Number(newValue) <= MAX_COLOR_ALPHA;\n }\n else {\n isValid = Number(newValue) <= MAX_COLOR_RGB;\n }\n if (!isValid) {\n // If the new value is an empty string or other invalid value, save that to display.\n // (if the user still hasn't entered anything on blur, the last value is restored)\n this.setState({ editingColor: { component: component, value: newValue } });\n }\n else if (String(color[component]) === newValue) {\n // If the new value is the same as the current value, mostly ignore it.\n // Exception is that if the user was previously editing the value (but hadn't yet entered\n // a new valid value), we should clear the intermediate value.\n if (this.state.editingColor) {\n this.setState({ editingColor: undefined });\n }\n }\n else {\n // Should be a valid color. Update the value.\n var newColor = isHex\n ? getColorFromString('#' + newValue)\n : isTransparency\n ? updateT(color, Number(newValue))\n : getColorFromRGBA(__assign(__assign({}, color), (_a = {}, _a[component] = Number(newValue), _a)));\n this._updateColor(event, newColor);\n }\n };\n /**\n * Update the displayed color and call change handlers if appropriate.\n * @param ev - Event if call was triggered by an event (undefined if triggered by props change)\n * @param newColor - Updated color\n */\n ColorPickerBase.prototype._updateColor = function (ev, newColor) {\n if (!newColor) {\n return;\n }\n var _a = this.state, color = _a.color, editingColor = _a.editingColor;\n // For black or white, the hue can change without changing the string.\n var isDifferentColor = newColor.h !== color.h || newColor.str !== color.str;\n if (isDifferentColor || editingColor) {\n // If ev is undefined, it's an update from props (which should be unconditionally respected\n // and not call onChange).\n if (ev && this.props.onChange) {\n this.props.onChange(ev, newColor);\n if (ev.defaultPrevented) {\n return;\n }\n }\n this.setState({ color: newColor, editingColor: undefined });\n }\n };\n ColorPickerBase.defaultProps = {\n alphaType: 'alpha',\n strings: {\n rootAriaLabelFormat: 'Color picker, {0} selected.',\n hex: 'Hex',\n red: 'Red',\n green: 'Green',\n blue: 'Blue',\n alpha: 'Alpha',\n transparency: 'Transparency',\n hueAriaLabel: 'Hue',\n svAriaLabel: ColorRectangleBase.defaultProps.ariaLabel,\n svAriaValueFormat: ColorRectangleBase.defaultProps.ariaValueFormat,\n svAriaDescription: ColorRectangleBase.defaultProps.ariaDescription,\n },\n };\n return ColorPickerBase;\n}(React.Component));\nexport { ColorPickerBase };\nfunction _getColorFromProps(props) {\n var color = props.color;\n return typeof color === 'string' ? getColorFromString(color) : color;\n}\n//# sourceMappingURL=ColorPicker.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "index": 165, - "index2": 183, - "size": 283, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "issuerId": "mFm4", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/ColorPicker", - "loc": "132:36-47" - }, - { - "moduleId": "mFm4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPicker", - "loc": "1:0-30" - }, - { - "moduleId": "mFm4", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./ColorPicker", - "loc": "1:0-30" - } - ], - "usedExports": [ - "ColorPicker" - ], - "providedExports": [ - "ColorPicker" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { ColorPickerBase } from './ColorPicker.base';\nimport { getStyles } from './ColorPicker.styles';\nexport var ColorPicker = styled(ColorPickerBase, getStyles, undefined, { scope: 'ColorPicker' });\n//# sourceMappingURL=ColorPicker.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/_rgbaOrHexString.js", - "index": 172, - "index2": 159, - "size": 467, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "sCxi", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js" - }, - { - "id": "GtBs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js" - }, - { - "id": "352s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/ThemeGenerator.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromString.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "2:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "2:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "4:0-54" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateA.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "9:78-94" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromRGBA.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "10:14-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateT.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "11:19-35" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateH.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "18:23-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/updateSV.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "19:23-39" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony side effect evaluation", - "userRequest": "./_rgbaOrHexString", - "loc": "4:0-54" - }, - { - "moduleId": "Vj6S", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "type": "harmony import specifier", - "userRequest": "./_rgbaOrHexString", - "loc": "17:14-30" - } - ], - "usedExports": [ - "_rgbaOrHexString" - ], - "providedExports": [ - "_rgbaOrHexString" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { MAX_COLOR_ALPHA } from './consts';\n/**\n * @internal\n * Get a CSS color string from some color components.\n * If `a` is specified and not 100, returns an `rgba()` string.\n * Otherwise returns `hex` prefixed with #.\n */\nexport function _rgbaOrHexString(r, g, b, a, hex) {\n return a === MAX_COLOR_ALPHA || typeof a !== 'number' ? \"#\" + hex : \"rgba(\" + r + \", \" + g + \", \" + b + \", \" + a / MAX_COLOR_ALPHA + \")\";\n}\n//# sourceMappingURL=_rgbaOrHexString.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.base.js", - "index": 185, - "index2": 175, - "size": 7022, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorRectangle.base", - "loc": "2:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle.base", - "loc": "4:35-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorRectangle/ColorRectangle.base", - "loc": "16:0-74" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle/ColorRectangle.base", - "loc": "281:25-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle/ColorRectangle.base", - "loc": "282:31-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle/ColorRectangle.base", - "loc": "283:31-49" - } - ], - "usedExports": [ - "ColorRectangleBase" - ], - "providedExports": [ - "ColorRectangleBase", - "_getNewColor" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, on, initializeComponentRef, KeyCodes, getId } from '../../../Utilities';\nimport { MAX_COLOR_SATURATION, MAX_COLOR_VALUE } from '../../../utilities/color/consts';\nimport { getFullColorString } from '../../../utilities/color/getFullColorString';\nimport { updateSV } from '../../../utilities/color/updateSV';\nimport { clamp } from '../../../utilities/color/clamp';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory ColorPicker}\n */\nvar ColorRectangleBase = /** @class */ (function (_super) {\n __extends(ColorRectangleBase, _super);\n function ColorRectangleBase(props) {\n var _this = _super.call(this, props) || this;\n _this._disposables = [];\n _this._root = React.createRef();\n _this._isAdjustingSaturation = true;\n _this._descriptionId = getId('ColorRectangle-description');\n _this._onKeyDown = function (ev) {\n var color = _this.state.color;\n var s = color.s, v = color.v;\n var increment = ev.shiftKey ? 10 : 1;\n // Intentionally DO NOT flip the color picker in RTL: its orientation is not very meaningful,\n // and getting all the math and styles flipped correctly is tricky\n switch (ev.which) {\n case KeyCodes.up: {\n _this._isAdjustingSaturation = false;\n v += increment; // V = 100 (lightest) is at the top\n break;\n }\n case KeyCodes.down: {\n _this._isAdjustingSaturation = false;\n v -= increment; // V = 0 (darkest) is at the bottom\n break;\n }\n case KeyCodes.left: {\n _this._isAdjustingSaturation = true;\n s -= increment;\n break;\n }\n case KeyCodes.right: {\n _this._isAdjustingSaturation = true;\n s += increment;\n break;\n }\n default:\n return;\n }\n _this._updateColor(ev, updateSV(color, clamp(s, MAX_COLOR_SATURATION), clamp(v, MAX_COLOR_VALUE)));\n };\n _this._onMouseDown = function (ev) {\n _this._disposables.push(on(window, 'mousemove', _this._onMouseMove, true), on(window, 'mouseup', _this._disposeListeners, true));\n _this._onMouseMove(ev);\n };\n _this._onMouseMove = function (ev) {\n if (!_this._root.current) {\n return;\n }\n // Leaving the following commented code which is sometimes necessary for debugging:\n // If the primary button (1) isn't pressed, the user is no longer dragging, so turn off\n // the event handlers and exit.\n // if (!(ev.buttons & 1)) {\n // this._disposeListeners();\n // return;\n // }\n var newColor = _getNewColor(ev, _this.state.color, _this._root.current);\n if (newColor) {\n _this._updateColor(ev, newColor);\n }\n };\n _this._disposeListeners = function () {\n _this._disposables.forEach(function (dispose) { return dispose(); });\n _this._disposables = [];\n };\n initializeComponentRef(_this);\n _this.state = { color: props.color };\n return _this;\n }\n Object.defineProperty(ColorRectangleBase.prototype, \"color\", {\n get: function () {\n return this.state.color;\n },\n enumerable: true,\n configurable: true\n });\n ColorRectangleBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n // if props changed (as opposed to a state update), set the value\n // TODO: switch to strict controlled pattern instead\n if (prevProps !== this.props && this.props.color) {\n this.setState({ color: this.props.color });\n }\n };\n ColorRectangleBase.prototype.componentWillUnmount = function () {\n this._disposeListeners();\n };\n ColorRectangleBase.prototype.render = function () {\n var _a = this.props, minSize = _a.minSize, theme = _a.theme, className = _a.className, styles = _a.styles, ariaValueFormat = _a.ariaValueFormat, ariaLabel = _a.ariaLabel, ariaDescription = _a.ariaDescription;\n var color = this.state.color;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n minSize: minSize,\n });\n var valueText = ariaValueFormat.replace('{0}', String(color.s)).replace('{1}', String(color.v));\n return (React.createElement(\"div\", { ref: this._root, tabIndex: 0, className: classNames.root, style: { backgroundColor: getFullColorString(color) }, onMouseDown: this._onMouseDown, onKeyDown: this._onKeyDown, role: \"slider\", \"aria-valuetext\": valueText, \"aria-valuenow\": this._isAdjustingSaturation ? color.s : color.v, \"aria-valuemin\": 0, \"aria-valuemax\": MAX_COLOR_VALUE, \"aria-label\": ariaLabel, \"aria-describedby\": this._descriptionId, \"data-is-focusable\": true },\n React.createElement(\"div\", { className: classNames.description, id: this._descriptionId }, ariaDescription),\n React.createElement(\"div\", { className: classNames.light }),\n React.createElement(\"div\", { className: classNames.dark }),\n React.createElement(\"div\", { className: classNames.thumb, style: { left: color.s + '%', top: MAX_COLOR_VALUE - color.v + '%', backgroundColor: color.str } })));\n };\n ColorRectangleBase.prototype._updateColor = function (ev, color) {\n var onChange = this.props.onChange;\n var oldColor = this.state.color;\n if (color.s === oldColor.s && color.v === oldColor.v) {\n return; // no change\n }\n if (onChange) {\n onChange(ev, color);\n }\n if (!ev.defaultPrevented) {\n this.setState({ color: color });\n ev.preventDefault();\n }\n };\n ColorRectangleBase.defaultProps = {\n minSize: 220,\n ariaLabel: 'Saturation and brightness',\n ariaValueFormat: 'Saturation {0} brightness {1}',\n ariaDescription: 'Use left and right arrow keys to set saturation. Use up and down arrow keys to set brightness.',\n };\n return ColorRectangleBase;\n}(React.Component));\nexport { ColorRectangleBase };\n/**\n * Exported for testing only.\n * @internal\n */\nexport function _getNewColor(ev, prevColor, root) {\n var rectSize = root.getBoundingClientRect();\n var sPercentage = (ev.clientX - rectSize.left) / rectSize.width;\n var vPercentage = (ev.clientY - rectSize.top) / rectSize.height;\n return updateSV(prevColor, clamp(Math.round(sPercentage * MAX_COLOR_SATURATION), MAX_COLOR_SATURATION), clamp(Math.round(MAX_COLOR_VALUE - vPercentage * MAX_COLOR_VALUE), MAX_COLOR_VALUE));\n}\n//# sourceMappingURL=ColorRectangle.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "index": 184, - "index2": 177, - "size": 307, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorRectangle/ColorRectangle", - "loc": "5:0-65" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle/ColorRectangle", - "loc": "152:36-50" - } - ], - "usedExports": [ - "ColorRectangle" - ], - "providedExports": [ - "ColorRectangle" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { styled } from '../../../Utilities';\nimport { ColorRectangleBase } from './ColorRectangle.base';\nimport { getStyles } from './ColorRectangle.styles';\nexport var ColorRectangle = styled(ColorRectangleBase, getStyles, undefined, { scope: 'ColorRectangle' });\n//# sourceMappingURL=ColorRectangle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "index": 190, - "index2": 180, - "size": 286, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorSlider/ColorSlider", - "loc": "6:0-56" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorSlider/ColorSlider", - "loc": "155:44-55" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "./ColorSlider/ColorSlider", - "loc": "158:67-78" - } - ], - "usedExports": [ - "ColorSlider" - ], - "providedExports": [ - "ColorSlider" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { styled } from '../../../Utilities';\nimport { ColorSliderBase } from './ColorSlider.base';\nimport { getStyles } from './ColorSlider.styles';\nexport var ColorSlider = styled(ColorSliderBase, getStyles, undefined, { scope: 'ColorSlider' });\n//# sourceMappingURL=ColorSlider.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/correctHex.js", - "index": 181, - "index2": 169, - "size": 606, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../utilities/color/correctHex", - "loc": "15:0-62" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "type": "harmony import specifier", - "userRequest": "../../utilities/color/correctHex", - "loc": "53:56-66" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./correctHex", - "loc": "21:0-29" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./correctHex", - "loc": "21:0-29" - } - ], - "usedExports": [ - "correctHex" - ], - "providedExports": [ - "correctHex" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { MIN_HEX_LENGTH, MAX_HEX_LENGTH } from './consts';\n/**\n * Corrects a hex color to have length 3 or 6. Defaults to white if too short.\n * Does NOT check anything besides the length (such as valid characters) and does NOT handle\n * hex values starting with # sign.\n */\nexport function correctHex(hex) {\n if (!hex || hex.length < MIN_HEX_LENGTH) {\n return 'ffffff'; // not a valid color--default to white\n }\n if (hex.length >= MAX_HEX_LENGTH) {\n return hex.substring(0, MAX_HEX_LENGTH);\n }\n return hex.substring(0, MIN_HEX_LENGTH);\n}\n//# sourceMappingURL=correctHex.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.styles.js", - "index": 193, - "index2": 182, - "size": 2326, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorPicker.styles", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "type": "harmony import specifier", - "userRequest": "./ColorPicker.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "export var getStyles = function (props) {\n var className = props.className, theme = props.theme, alphaType = props.alphaType;\n return {\n root: [\n 'ms-ColorPicker',\n theme.fonts.medium,\n {\n position: 'relative',\n maxWidth: 300,\n },\n className,\n ],\n panel: [\n 'ms-ColorPicker-panel',\n {\n padding: '16px',\n },\n ],\n table: [\n 'ms-ColorPicker-table',\n {\n tableLayout: 'fixed',\n width: '100%',\n selectors: {\n 'tbody td:last-of-type .ms-ColorPicker-input': {\n paddingRight: 0,\n },\n },\n },\n ],\n tableHeader: [\n theme.fonts.small,\n {\n selectors: {\n td: {\n paddingBottom: 4,\n },\n },\n },\n ],\n tableHexCell: {\n width: '25%',\n },\n // Account for \"Transparency\" being a longer word\n tableAlphaCell: alphaType === 'transparency' && {\n width: '22%',\n },\n colorSquare: [\n 'ms-ColorPicker-colorSquare',\n {\n width: 48,\n height: 48,\n margin: '0 0 0 8px',\n border: '1px solid #c8c6c4',\n },\n ],\n flexContainer: {\n display: 'flex',\n },\n flexSlider: {\n flexGrow: '1',\n },\n flexPreviewBox: {\n flexGrow: '0',\n },\n input: [\n 'ms-ColorPicker-input',\n {\n width: '100%',\n border: 'none',\n boxSizing: 'border-box',\n height: 30,\n selectors: {\n '&.ms-TextField': {\n paddingRight: 4,\n },\n '& .ms-TextField-field': {\n minWidth: 'auto',\n padding: 5,\n textOverflow: 'clip',\n },\n },\n },\n ],\n };\n};\n//# sourceMappingURL=ColorPicker.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.styles.js", - "index": 189, - "index2": 176, - "size": 3025, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorRectangle.styles", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorRectangle/ColorRectangle.js", - "type": "harmony import specifier", - "userRequest": "./ColorRectangle.styles", - "loc": "4:55-64" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __assign } from \"tslib\";\nimport { HighContrastSelector, getHighContrastNoAdjustStyle } from '../../../Styling';\nimport { IsFocusVisibleClassName } from '../../../Utilities';\nimport { hiddenContentStyle } from '@uifabric/styling';\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, theme = props.theme, minSize = props.minSize;\n var palette = theme.palette, effects = theme.effects;\n return {\n root: [\n 'ms-ColorPicker-colorRect',\n {\n position: 'relative',\n marginBottom: 8,\n border: \"1px solid \" + palette.neutralLighter,\n borderRadius: effects.roundedCorner2,\n minWidth: minSize,\n minHeight: minSize,\n outline: 'none',\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({}, getHighContrastNoAdjustStyle()),\n _a[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n outline: \"1px solid \" + palette.neutralSecondary,\n },\n _a),\n },\n className,\n ],\n light: [\n 'ms-ColorPicker-light',\n {\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n // Intentionally DO NOT flip the color picker in RTL: its orientation is not very meaningful,\n // and getting all the math and styles flipped correctly is tricky\n background: 'linear-gradient(to right, white 0%, transparent 100%) /*@noflip*/',\n },\n ],\n dark: [\n 'ms-ColorPicker-dark',\n {\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n background: 'linear-gradient(to bottom, transparent 0, #000 100%)',\n },\n ],\n thumb: [\n 'ms-ColorPicker-thumb',\n {\n position: 'absolute',\n width: 20,\n height: 20,\n background: 'white',\n border: \"1px solid \" + palette.neutralSecondaryAlt,\n borderRadius: '50%',\n boxShadow: effects.elevation8,\n transform: 'translate(-50%, -50%)',\n selectors: {\n ':before': {\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n border: \"2px solid \" + palette.white,\n borderRadius: '50%',\n boxSizing: 'border-box',\n content: '\"\"',\n },\n },\n },\n ],\n description: hiddenContentStyle,\n };\n};\n//# sourceMappingURL=ColorRectangle.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.base.js", - "index": 191, - "index2": 178, - "size": 6970, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorSlider.base", - "loc": "2:0-53" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony import specifier", - "userRequest": "./ColorSlider.base", - "loc": "4:32-47" - } - ], - "usedExports": [ - "ColorSliderBase" - ], - "providedExports": [ - "ColorSliderBase" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef, on, KeyCodes, getWindow, warnDeprecations, warn, } from '../../../Utilities';\nimport { clamp } from '../../../utilities/color/clamp';\nimport { MAX_COLOR_HUE, MAX_COLOR_ALPHA } from '../../../utilities/color/consts';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory ColorPicker}\n */\nvar ColorSliderBase = /** @class */ (function (_super) {\n __extends(ColorSliderBase, _super);\n function ColorSliderBase(props) {\n var _this = _super.call(this, props) || this;\n _this._disposables = [];\n _this._root = React.createRef();\n _this._onKeyDown = function (ev) {\n var currentValue = _this.value;\n var maxValue = _this._maxValue;\n var increment = ev.shiftKey ? 10 : 1;\n // Intentionally DO NOT flip the color picker in RTL: its orientation is not very meaningful,\n // and getting all the math and styles flipped correctly is tricky\n switch (ev.which) {\n case KeyCodes.left: {\n currentValue -= increment;\n break;\n }\n case KeyCodes.right: {\n currentValue += increment;\n break;\n }\n case KeyCodes.home: {\n currentValue = 0;\n break;\n }\n case KeyCodes.end: {\n currentValue = maxValue;\n break;\n }\n default: {\n return;\n }\n }\n _this._updateValue(ev, clamp(currentValue, maxValue));\n };\n _this._onMouseDown = function (ev) {\n var win = getWindow(_this);\n if (win) {\n _this._disposables.push(on(win, 'mousemove', _this._onMouseMove, true), on(win, 'mouseup', _this._disposeListeners, true));\n }\n _this._onMouseMove(ev);\n };\n _this._onMouseMove = function (ev) {\n if (!_this._root.current) {\n return;\n }\n var maxValue = _this._maxValue;\n var rectSize = _this._root.current.getBoundingClientRect();\n var currentPercentage = (ev.clientX - rectSize.left) / rectSize.width;\n var newValue = clamp(Math.round(currentPercentage * maxValue), maxValue);\n _this._updateValue(ev, newValue);\n };\n _this._disposeListeners = function () {\n _this._disposables.forEach(function (dispose) { return dispose(); });\n _this._disposables = [];\n };\n initializeComponentRef(_this);\n warnDeprecations('ColorSlider', props, {\n thumbColor: 'styles.sliderThumb',\n overlayStyle: 'overlayColor',\n isAlpha: 'type',\n maxValue: 'type',\n minValue: 'type',\n });\n // eslint-disable-next-line deprecation/deprecation\n if (_this._type !== 'hue' && !(props.overlayColor || props.overlayStyle)) {\n warn(\"ColorSlider: 'overlayColor' is required when 'type' is \\\"alpha\\\" or \\\"transparency\\\"\");\n }\n _this.state = {\n currentValue: props.value || 0,\n };\n return _this;\n }\n Object.defineProperty(ColorSliderBase.prototype, \"value\", {\n get: function () {\n return this.state.currentValue;\n },\n enumerable: true,\n configurable: true\n });\n ColorSliderBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n // if props changed (as opposed to a state update), set the value\n // TODO: switch to strict controlled pattern instead\n if (prevProps !== this.props && this.props.value !== undefined) {\n this.setState({ currentValue: this.props.value });\n }\n };\n ColorSliderBase.prototype.componentWillUnmount = function () {\n this._disposeListeners();\n };\n ColorSliderBase.prototype.render = function () {\n var type = this._type;\n var maxValue = this._maxValue;\n var _a = this.props, \n // eslint-disable-next-line deprecation/deprecation\n overlayStyle = _a.overlayStyle, overlayColor = _a.overlayColor, theme = _a.theme, className = _a.className, styles = _a.styles, _b = _a.ariaLabel, ariaLabel = _b === void 0 ? type : _b;\n var currentValue = this.value;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n type: type,\n });\n var currentPercentage = (100 * currentValue) / maxValue;\n return (React.createElement(\"div\", { ref: this._root, className: classNames.root, tabIndex: 0, onKeyDown: this._onKeyDown, onMouseDown: this._onMouseDown, role: \"slider\", \"aria-valuenow\": currentValue, \"aria-valuetext\": String(currentValue), \"aria-valuemin\": 0, \"aria-valuemax\": maxValue, \"aria-label\": ariaLabel, \"data-is-focusable\": true },\n !!(overlayColor || overlayStyle) && (React.createElement(\"div\", { className: classNames.sliderOverlay, \n // this isn't included in getStyles because it may change frequently\n style: overlayColor\n ? {\n background: type === 'transparency'\n ? \"linear-gradient(to right, #\" + overlayColor + \", transparent)\"\n : \"linear-gradient(to right, transparent, #\" + overlayColor + \")\",\n }\n : overlayStyle })),\n React.createElement(\"div\", { className: classNames.sliderThumb, style: { left: currentPercentage + '%' } })));\n };\n Object.defineProperty(ColorSliderBase.prototype, \"_type\", {\n get: function () {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, isAlpha = _a.isAlpha, _b = _a.type, type = _b === void 0 ? isAlpha ? 'alpha' : 'hue' : _b;\n return type;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(ColorSliderBase.prototype, \"_maxValue\", {\n get: function () {\n return this._type === 'hue' ? MAX_COLOR_HUE : MAX_COLOR_ALPHA;\n },\n enumerable: true,\n configurable: true\n });\n ColorSliderBase.prototype._updateValue = function (ev, newValue) {\n if (newValue === this.value) {\n return;\n }\n var onChange = this.props.onChange;\n if (onChange) {\n onChange(ev, newValue);\n }\n if (!ev.defaultPrevented) {\n this.setState({\n currentValue: newValue,\n });\n ev.preventDefault();\n }\n };\n ColorSliderBase.defaultProps = {\n value: 0,\n };\n return ColorSliderBase;\n}(React.Component));\nexport { ColorSliderBase };\n//# sourceMappingURL=ColorSlider.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.styles.js", - "index": 192, - "index2": 179, - "size": 2476, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "rE1q", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ColorPicker.js" - }, - { - "id": "mFm4", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorPicker.base.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony side effect evaluation", - "userRequest": "./ColorSlider.styles", - "loc": "3:0-49" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ColorPicker/ColorSlider/ColorSlider.js", - "type": "harmony import specifier", - "userRequest": "./ColorSlider.styles", - "loc": "4:49-58" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 7, - "source": "import { IsFocusVisibleClassName } from '../../../Utilities';\nvar hueStyle = {\n background: \"linear-gradient(\" + [\n 'to left',\n 'red 0',\n '#f09 10%',\n '#cd00ff 20%',\n '#3200ff 30%',\n '#06f 40%',\n '#00fffd 50%',\n '#0f6 60%',\n '#35ff00 70%',\n '#cdff00 80%',\n '#f90 90%',\n 'red 100%',\n ].join(',') + \")\",\n};\nvar alphaStyle = {\n backgroundImage: 'url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJUlEQVQYV2N89erVfwY0ICYmxoguxjgUFKI7GsTH5m4M3w1ChQC1/Ca8i2n1WgAAAABJRU5ErkJggg==)',\n};\nexport var getStyles = function (props) {\n var _a;\n // eslint-disable-next-line deprecation/deprecation\n var theme = props.theme, className = props.className, _b = props.type, type = _b === void 0 ? 'hue' : _b, _c = props.isAlpha, useAlphaBackground = _c === void 0 ? type !== 'hue' : _c;\n var palette = theme.palette, effects = theme.effects;\n return {\n root: [\n 'ms-ColorPicker-slider',\n {\n position: 'relative',\n height: 20,\n marginBottom: 8,\n border: \"1px solid \" + palette.neutralLight,\n borderRadius: effects.roundedCorner2,\n boxSizing: 'border-box',\n outline: 'none',\n selectors: (_a = {},\n _a[\".\" + IsFocusVisibleClassName + \" &:focus\"] = {\n outline: \"1px solid \" + palette.neutralSecondary,\n },\n _a),\n },\n useAlphaBackground ? alphaStyle : hueStyle,\n className,\n ],\n sliderOverlay: [\n 'ms-ColorPicker-sliderOverlay',\n {\n content: '',\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n },\n ],\n sliderThumb: [\n 'ms-ColorPicker-thumb',\n 'is-slider',\n {\n position: 'absolute',\n width: 20,\n height: 20,\n background: 'white',\n border: \"1px solid \" + palette.neutralSecondaryAlt,\n borderRadius: '50%',\n boxShadow: effects.elevation8,\n transform: 'translate(-50%, -50%)',\n top: '50%',\n },\n ],\n };\n};\n//# sourceMappingURL=ColorSlider.styles.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "index": 129, - "index2": 184, - "size": 7667, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "issuerId": "B2jj", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js" - }, - { - "id": "/x9U", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/index.js" - }, - { - "id": "QcW5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataViewer/CollectionDataViewer.js" - }, - { - "id": "kQRI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js" - }, - { - "id": "B2jj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CollectionColorField", - "loc": "2:0-39" - }, - { - "moduleId": "B2jj", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CollectionColorField", - "loc": "2:0-39" - } - ], - "usedExports": [ - "CollectionColorField" - ], - "providedExports": [ - "CollectionColorField" - ], - "optimizationBailout": [], - "depth": 9, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nimport * as React from 'react';\nimport styles from '../PropertyFieldCollectionDataHost.module.scss';\nimport { Async } from 'office-ui-fabric-react/lib/Utilities';\nimport { Callout, DirectionalHint } from 'office-ui-fabric-react/lib/Callout';\nimport { ColorPicker } from 'office-ui-fabric-react/lib/ColorPicker';\nvar CollectionColorField = /** @class */ (function (_super) {\n __extends(CollectionColorField, _super);\n function CollectionColorField(props, state) {\n var _this = _super.call(this, props, state) || this;\n _this._colorElement = React.createRef();\n _this._onCalloutDismiss = function () {\n _this.setState({\n isCalloutVisible: false\n });\n };\n _this._onCalloutToggle = function () {\n _this.setState({\n isCalloutVisible: !_this.state.isCalloutVisible\n });\n };\n /**\n * Value change event handler\n *\n * @param field\n * @param value\n */\n _this.valueChange = function (field, value) { return __awaiter(_this, void 0, void 0, function () {\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n this.setState({\n color: value\n });\n return [4 /*yield*/, this.props.fOnValueChange(field.id, value)];\n case 1:\n _a.sent();\n this.delayedValidate(field, value);\n return [2 /*return*/];\n }\n });\n }); };\n /**\n * Delayed field validation\n */\n _this.valueValidation = function (field, value) { return __awaiter(_this, void 0, void 0, function () {\n var validation;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.props.fValidation(field, value)];\n case 1:\n validation = _a.sent();\n // Update the error message\n this.setState({\n errorMessage: validation\n });\n return [2 /*return*/];\n }\n });\n }); };\n var _a = _this.props, field = _a.field, item = _a.item;\n _this.state = {\n isCalloutVisible: false,\n color: item[field.id] ? item[field.id] : \"#0000ff\",\n errorMessage: ''\n };\n _this.async = new Async(_this);\n _this.delayedValidate = _this.async.debounce(_this.valueValidation, (_this.props.field.deferredValidationTime || _this.props.field.deferredValidationTime >= 0) ? _this.props.field.deferredValidationTime : 200);\n return _this;\n }\n /**\n * componentWillMount lifecycle hook\n */\n CollectionColorField.prototype.componentWillMount = function () {\n this.valueChange(this.props.field, this.props.item[this.props.field.id]);\n };\n CollectionColorField.prototype.render = function () {\n var _this = this;\n var field = this.props.field;\n return (React.createElement(\"div\", { className: \"PropertyFieldCollectionData__panel__color-field \" + styles.colorField + \" \" + (this.state.errorMessage ? styles.invalidField : \"\") },\n React.createElement(\"div\", { className: styles.colorIndicator, style: { backgroundColor: this.state.color, cursor: this.props.disableEdit ? 'default' : 'hand' }, ref: this._colorElement, onClick: function () { if (!_this.props.disableEdit)\n _this._onCalloutToggle(); } }),\n React.createElement(Callout, { gapSpace: 0, target: this._colorElement.current, onDismiss: this._onCalloutDismiss, setInitialFocus: true, hidden: !this.state.isCalloutVisible, directionalHint: DirectionalHint.rightCenter },\n React.createElement(ColorPicker, { color: this.state.color, alphaSliderHidden: true, onChange: function (ev, color) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, this.valueChange(this.props.field, color.str)];\n case 1: return [2 /*return*/, _a.sent()];\n }\n }); }); } }))));\n };\n return CollectionColorField;\n}(React.Component));\nexport { CollectionColorField };\n//# sourceMappingURL=CollectionColorField.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "Rbzx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons-12.js", - "index": null, - "index2": null, - "size": 4868, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "issuerId": "gTkT", - "issuerName": "./node_modules/@uifabric/icons/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./fabric-icons-12", - "loc": "14:0-59" - }, - { - "moduleId": "gTkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "module": "./node_modules/@uifabric/icons/lib/index.js", - "moduleName": "./node_modules/@uifabric/icons/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./fabric-icons-12", - "loc": "38:8-11" - } - ], - "usedExports": false, - "providedExports": [ - "initializeIcons" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fluentui-assets-license\nimport { registerIcons } from '@uifabric/styling';\nexport function initializeIcons(baseUrl, options) {\n if (baseUrl === void 0) { baseUrl = ''; }\n var subset = {\n style: {\n MozOsxFontSmoothing: 'grayscale',\n WebkitFontSmoothing: 'antialiased',\n fontStyle: 'normal',\n fontWeight: 'normal',\n speak: 'none'\n },\n fontFace: {\n fontFamily: \"\\\"FabricMDL2Icons-12\\\"\",\n src: \"url('\" + baseUrl + \"fabric-icons-12-7e945a1e.woff') format('woff')\"\n },\n icons: {\n 'FinancialSolid': '\\uF346',\n 'FinancialMirroredSolid': '\\uF347',\n 'HeadsetSolid': '\\uF348',\n 'PermissionsSolid': '\\uF349',\n 'ParkingSolid': '\\uF34A',\n 'ParkingMirroredSolid': '\\uF34B',\n 'DiamondSolid': '\\uF34C',\n 'AsteriskSolid': '\\uF34D',\n 'OfflineStorageSolid': '\\uF34E',\n 'BankSolid': '\\uF34F',\n 'DecisionSolid': '\\uF350',\n 'Parachute': '\\uF351',\n 'ParachuteSolid': '\\uF352',\n 'FiltersSolid': '\\uF353',\n 'ColorSolid': '\\uF354',\n 'ReviewSolid': '\\uF355',\n 'ReviewRequestSolid': '\\uF356',\n 'ReviewRequestMirroredSolid': '\\uF357',\n 'ReviewResponseSolid': '\\uF358',\n 'FeedbackRequestSolid': '\\uF359',\n 'FeedbackRequestMirroredSolid': '\\uF35A',\n 'FeedbackResponseSolid': '\\uF35B',\n 'WorkItemBar': '\\uF35C',\n 'WorkItemBarSolid': '\\uF35D',\n 'Separator': '\\uF35E',\n 'NavigateExternalInline': '\\uF35F',\n 'PlanView': '\\uF360',\n 'TimelineMatrixView': '\\uF361',\n 'EngineeringGroup': '\\uF362',\n 'ProjectCollection': '\\uF363',\n 'CaretBottomRightCenter8': '\\uF364',\n 'CaretBottomLeftCenter8': '\\uF365',\n 'CaretTopRightCenter8': '\\uF366',\n 'CaretTopLeftCenter8': '\\uF367',\n 'DonutChart': '\\uF368',\n 'ChevronUnfold10': '\\uF369',\n 'ChevronFold10': '\\uF36A',\n 'DoubleChevronDown8': '\\uF36B',\n 'DoubleChevronUp8': '\\uF36C',\n 'DoubleChevronLeft8': '\\uF36D',\n 'DoubleChevronRight8': '\\uF36E',\n 'ChevronDownEnd6': '\\uF36F',\n 'ChevronUpEnd6': '\\uF370',\n 'ChevronLeftEnd6': '\\uF371',\n 'ChevronRightEnd6': '\\uF372',\n 'ContextMenu': '\\uF37C',\n 'AzureAPIManagement': '\\uF37F',\n 'AzureServiceEndpoint': '\\uF380',\n 'VSTSLogo': '\\uF381',\n 'VSTSAltLogo1': '\\uF382',\n 'VSTSAltLogo2': '\\uF383',\n 'FileTypeSolution': '\\uF387',\n 'WordLogoInverse16': '\\uF390',\n 'WordLogo16': '\\uF391',\n 'WordLogoFill16': '\\uF392',\n 'PowerPointLogoInverse16': '\\uF393',\n 'PowerPointLogo16': '\\uF394',\n 'PowerPointLogoFill16': '\\uF395',\n 'ExcelLogoInverse16': '\\uF396',\n 'ExcelLogo16': '\\uF397',\n 'ExcelLogoFill16': '\\uF398',\n 'OneNoteLogoInverse16': '\\uF399',\n 'OneNoteLogo16': '\\uF39A',\n 'OneNoteLogoFill16': '\\uF39B',\n 'OutlookLogoInverse16': '\\uF39C',\n 'OutlookLogo16': '\\uF39D',\n 'OutlookLogoFill16': '\\uF39E',\n 'PublisherLogoInverse16': '\\uF39F',\n 'PublisherLogo16': '\\uF3A0',\n 'PublisherLogoFill16': '\\uF3A1',\n 'VisioLogoInverse16': '\\uF3A2',\n 'VisioLogo16': '\\uF3A3',\n 'VisioLogoFill16': '\\uF3A4',\n 'TestBeaker': '\\uF3A5',\n 'TestBeakerSolid': '\\uF3A6',\n 'TestExploreSolid': '\\uF3A7',\n 'TestAutoSolid': '\\uF3A8',\n 'TestUserSolid': '\\uF3A9',\n 'TestImpactSolid': '\\uF3AA',\n 'TestPlan': '\\uF3AB',\n 'TestStep': '\\uF3AC',\n 'TestParameter': '\\uF3AD',\n 'TestSuite': '\\uF3AE',\n 'TestCase': '\\uF3AF',\n 'Sprint': '\\uF3B0',\n 'SignOut': '\\uF3B1',\n 'TriggerApproval': '\\uF3B2',\n 'Rocket': '\\uF3B3',\n 'AzureKeyVault': '\\uF3B4',\n 'Onboarding': '\\uF3BA',\n 'Transition': '\\uF3BC',\n 'LikeSolid': '\\uF3BF',\n 'DislikeSolid': '\\uF3C0',\n 'CRMCustomerInsightsApp': '\\uF3C8',\n 'EditCreate': '\\uF3C9',\n 'PlayReverseResume': '\\uF3E4',\n 'PlayReverse': '\\uF3E5',\n 'SearchData': '\\uF3F1',\n 'UnSetColor': '\\uF3F9',\n 'DeclineCall': '\\uF405'\n }\n };\n registerIcons(subset, options);\n}\n//# sourceMappingURL=fabric-icons-12.js.map" - }, - { - "id": "RgyG", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/hoistStatics.js", - "name": "./node_modules/@uifabric/utilities/lib/hoistStatics.js", - "index": 163, - "index2": 149, - "size": 661, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/decorators/withResponsiveMode.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "82:11-23" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony side effect evaluation", - "userRequest": "../hoistStatics", - "loc": "4:0-47" - }, - { - "moduleId": "Z4jB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/customizable.js", - "type": "harmony import specifier", - "userRequest": "../hoistStatics", - "loc": "57:15-27" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./hoistStatics", - "loc": "32:0-31" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./hoistStatics", - "loc": "32:0-31" - } - ], - "usedExports": [ - "hoistStatics" - ], - "providedExports": [ - "hoistStatics" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Allows you to hoist static functions in components.\n * Created for the purpose of fixing broken static functions in classes\n * that utilize decorators.\n *\n * @public\n * @param source - The object where the methods are hoisted from.\n * @param dest - The object to hoist the methods onto.\n * @returns The dest object with methods added\n */\nexport function hoistStatics(source, dest) {\n for (var name_1 in source) {\n if (source.hasOwnProperty(name_1)) {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n dest[name_1] = source[name_1];\n }\n }\n return dest;\n}\n//# sourceMappingURL=hoistStatics.js.map" - }, - { - "id": "RqX7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/Overlay.js", - "index": null, - "index2": null, - "size": 79, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay", - "loc": "52:0-26" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay", - "loc": "52:0-26" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Overlay", - "loc": "5:0-40" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Overlay", - "loc": "6:0-40" - } - ], - "usedExports": false, - "providedExports": [ - "Overlay", - "OverlayBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Overlay/index';\n//# sourceMappingURL=Overlay.js.map" - }, - { - "id": "RyIQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js 48376a9e1bef22644626d019290b0138", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js + 5 modules", - "index": 130, - "index2": 154, - "size": 62967, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "25:36-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "77:251-258" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Callout", - "loc": "131:32-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "558:40-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Callout", - "loc": "558:63-70" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "308:54-61" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "204:68-75" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "3:0-36" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "./Callout", - "loc": "10:32-39" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Callout", - "loc": "13:47-54" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "36:36-43" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "514:82-89" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "316:40-47" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "51:36-43" - } - ], - "usedExports": [ - "Callout" - ], - "providedExports": [ - "Callout" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@fluentui/dom-utilities/lib/elementContains.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/Async.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/css.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getDocument.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/getWindow.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/dom/on.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/focus.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/object.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/rtl.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/scroll.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Layer/Layer.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/components/Popup/Popup.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.types.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/Rectangle.js", - "name": "./node_modules/@uifabric/utilities/lib/Rectangle.js", - "index": 146, - "index2": 132, - "size": 1827, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "409:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "430:28-37" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "431:27-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "444:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "447:15-24" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "455:34-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "470:34-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "481:30-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "526:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "537:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "584:14-23" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "593:25-34" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Utilities", - "loc": "596:25-34" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Rectangle", - "loc": "9:0-28" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Rectangle", - "loc": "9:0-28" - } - ], - "usedExports": [ - "Rectangle" - ], - "providedExports": [ - "Rectangle" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * Rectangle helper class.\n *\n * @public\n * {@docCategory Rectangle}\n */\nvar Rectangle = /** @class */ (function () {\n function Rectangle(left, right, top, bottom) {\n if (left === void 0) { left = 0; }\n if (right === void 0) { right = 0; }\n if (top === void 0) { top = 0; }\n if (bottom === void 0) { bottom = 0; }\n this.top = top;\n this.bottom = bottom;\n this.left = left;\n this.right = right;\n }\n Object.defineProperty(Rectangle.prototype, \"width\", {\n /**\n * Calculated automatically by subtracting the right from left\n */\n get: function () {\n return this.right - this.left;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(Rectangle.prototype, \"height\", {\n /**\n * Calculated automatically by subtracting the bottom from top.\n */\n get: function () {\n return this.bottom - this.top;\n },\n enumerable: true,\n configurable: true\n });\n /**\n * Tests if another rect is approximately equal to this rect (within 4 decimal places.)\n */\n Rectangle.prototype.equals = function (rect) {\n // Fixing to 4 decimal places because it allows enough precision and will handle cases when something\n // should be rounded, like .999999 should round to 1.\n return (parseFloat(this.top.toFixed(4)) === parseFloat(rect.top.toFixed(4)) &&\n parseFloat(this.bottom.toFixed(4)) === parseFloat(rect.bottom.toFixed(4)) &&\n parseFloat(this.left.toFixed(4)) === parseFloat(rect.left.toFixed(4)) &&\n parseFloat(this.right.toFixed(4)) === parseFloat(rect.right.toFixed(4)));\n };\n return Rectangle;\n}());\nexport { Rectangle };\n//# sourceMappingURL=Rectangle.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/positioning.js", - "index": 144, - "index2": 134, - "size": 32197, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerId": "mI+f", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "yI02", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/Coachmark.js" - }, - { - "id": "bATe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js" - }, - { - "id": "y19T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js" - }, - { - "id": "Sbs+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js" - }, - { - "id": "wuZE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning.js" - }, - { - "id": "mI+f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "286:18-30" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "287:18-33" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "313:32-57" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "340:43-55" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "169:37-52" - }, - { - "moduleId": "SJpl", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../utilities/positioning", - "loc": "225:34-46" - }, - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../utilities/positioning", - "loc": "195:19-34" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - }, - { - "moduleId": "mI+f", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/positioning/index.js", - "type": "harmony export imported specifier", - "userRequest": "./positioning", - "loc": "1:0-138" - } - ], - "usedExports": [ - "positionCard", - "positionCallout", - "getBoundsFromTargetWindow", - "getMaxHeight" - ], - "providedExports": [ - "__positioningTestPackage", - "positionElement", - "positionCallout", - "positionCard", - "getMaxHeight", - "getOppositeEdge", - "getBoundsFromTargetWindow" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var _a;\nimport { __assign } from \"tslib\";\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { getScrollbarWidth, getRTL } from '../../Utilities';\nimport { RectangleEdge, } from './positioning.types';\nimport { Rectangle } from '../../Utilities';\nfunction _createPositionData(targetEdge, alignmentEdge, isAuto) {\n return {\n targetEdge: targetEdge,\n alignmentEdge: alignmentEdge,\n isAuto: isAuto,\n };\n}\n// Currently the beakPercent is set to 50 for all positions meaning that it should tend to the center of the target\nvar DirectionalDictionary = (_a = {},\n _a[DirectionalHint.topLeftEdge] = _createPositionData(RectangleEdge.top, RectangleEdge.left),\n _a[DirectionalHint.topCenter] = _createPositionData(RectangleEdge.top),\n _a[DirectionalHint.topRightEdge] = _createPositionData(RectangleEdge.top, RectangleEdge.right),\n _a[DirectionalHint.topAutoEdge] = _createPositionData(RectangleEdge.top, undefined, true),\n _a[DirectionalHint.bottomLeftEdge] = _createPositionData(RectangleEdge.bottom, RectangleEdge.left),\n _a[DirectionalHint.bottomCenter] = _createPositionData(RectangleEdge.bottom),\n _a[DirectionalHint.bottomRightEdge] = _createPositionData(RectangleEdge.bottom, RectangleEdge.right),\n _a[DirectionalHint.bottomAutoEdge] = _createPositionData(RectangleEdge.bottom, undefined, true),\n _a[DirectionalHint.leftTopEdge] = _createPositionData(RectangleEdge.left, RectangleEdge.top),\n _a[DirectionalHint.leftCenter] = _createPositionData(RectangleEdge.left),\n _a[DirectionalHint.leftBottomEdge] = _createPositionData(RectangleEdge.left, RectangleEdge.bottom),\n _a[DirectionalHint.rightTopEdge] = _createPositionData(RectangleEdge.right, RectangleEdge.top),\n _a[DirectionalHint.rightCenter] = _createPositionData(RectangleEdge.right),\n _a[DirectionalHint.rightBottomEdge] = _createPositionData(RectangleEdge.right, RectangleEdge.bottom),\n _a);\nfunction _isRectangleWithinBounds(rect, boundingRect) {\n if (rect.top < boundingRect.top) {\n return false;\n }\n if (rect.bottom > boundingRect.bottom) {\n return false;\n }\n if (rect.left < boundingRect.left) {\n return false;\n }\n if (rect.right > boundingRect.right) {\n return false;\n }\n return true;\n}\n/**\n * Gets all of the edges of a rectangle that are outside of the given bounds.\n * If there are no out of bounds edges it returns an empty array.\n */\nfunction _getOutOfBoundsEdges(rect, boundingRect) {\n var outOfBounds = [];\n if (rect.top < boundingRect.top) {\n outOfBounds.push(RectangleEdge.top);\n }\n if (rect.bottom > boundingRect.bottom) {\n outOfBounds.push(RectangleEdge.bottom);\n }\n if (rect.left < boundingRect.left) {\n outOfBounds.push(RectangleEdge.left);\n }\n if (rect.right > boundingRect.right) {\n outOfBounds.push(RectangleEdge.right);\n }\n return outOfBounds;\n}\nfunction _getEdgeValue(rect, edge) {\n return rect[RectangleEdge[edge]];\n}\nfunction _setEdgeValue(rect, edge, value) {\n rect[RectangleEdge[edge]] = value;\n return rect;\n}\n/**\n * Returns the middle value of an edge. Only returns 1 value rather than xy coordinates as\n * the itself already contains the other coordinate.\n * For instance, a bottom edge's current value is it's y coordinate, so the number returned is the x.\n */\nfunction _getCenterValue(rect, edge) {\n var edges = _getFlankingEdges(edge);\n return (_getEdgeValue(rect, edges.positiveEdge) + _getEdgeValue(rect, edges.negativeEdge)) / 2;\n}\n/**\n * Flips the value depending on the edge.\n * If the edge is a \"positive\" edge, Top or Left, then the value should stay as it is.\n * If the edge is a \"negative\" edge, Bottom or Right, then the value should be flipped.\n * This is to account for the fact that the coordinates are effectively reveserved in certain cases for the\n * \"negative\" edges.\n *\n * For example, when testing to see if a bottom edge 1 is within the bounds of another bottom edge 2:\n * If edge 1 is greater than edge 2 then it is out of bounds. This is reversed for top edge 1 and top edge 2.\n * If top edge 1 is less than edge 2 then it is out of bounds.\n */\nfunction _getRelativeEdgeValue(edge, value) {\n if (edge > 0) {\n return value;\n }\n else {\n return value * -1;\n }\n}\nfunction _getRelativeRectEdgeValue(edge, rect) {\n return _getRelativeEdgeValue(edge, _getEdgeValue(rect, edge));\n}\nfunction _getRelativeEdgeDifference(rect, hostRect, edge) {\n var edgeDifference = _getEdgeValue(rect, edge) - _getEdgeValue(hostRect, edge);\n return _getRelativeEdgeValue(edge, edgeDifference);\n}\n/**\n * Moves the edge of a rectangle to the value given. It only moves the edge in a linear direction based on that edge.\n * For example, if it's a bottom edge it will only change y coordinates.\n */\nfunction _moveEdge(rect, edge, newValue) {\n var difference = _getEdgeValue(rect, edge) - newValue;\n rect = _setEdgeValue(rect, edge, newValue);\n rect = _setEdgeValue(rect, edge * -1, _getEdgeValue(rect, edge * -1) - difference);\n return rect;\n}\n/**\n * Aligns the edge on the passed in rect to the target. If there is a gap then it will have that space between the two.\n */\nfunction _alignEdges(rect, target, edge, gap) {\n if (gap === void 0) { gap = 0; }\n return _moveEdge(rect, edge, _getEdgeValue(target, edge) + _getRelativeEdgeValue(edge, gap));\n}\n/**\n * Aligns the targetEdge on the passed in target to the rects corresponding opposite edge.\n * For instance if targetEdge is bottom, then the rects top will be moved to match it.\n */\nfunction _alignOppositeEdges(rect, target, targetEdge, gap) {\n if (gap === void 0) { gap = 0; }\n var oppositeEdge = targetEdge * -1;\n var adjustedGap = _getRelativeEdgeValue(oppositeEdge, gap);\n return _moveEdge(rect, targetEdge * -1, _getEdgeValue(target, targetEdge) + adjustedGap);\n}\n/**\n * Tests to see if the given edge is within the bounds of the given rectangle.\n */\nfunction _isEdgeInBounds(rect, bounds, edge) {\n var adjustedRectValue = _getRelativeRectEdgeValue(edge, rect);\n return adjustedRectValue > _getRelativeRectEdgeValue(edge, bounds);\n}\n/**\n * Attempts to move the rectangle through various sides of the target to find a place to fit.\n * If no fit is found, the original position should be returned.\n */\nfunction _flipToFit(rect, target, bounding, positionData, gap) {\n if (gap === void 0) { gap = 0; }\n var directions = [\n RectangleEdge.left,\n RectangleEdge.right,\n RectangleEdge.bottom,\n RectangleEdge.top,\n ];\n // In RTL page, RectangleEdge.right has a higher priority than RectangleEdge.left, so the order should be updated.\n if (getRTL()) {\n directions[0] *= -1;\n directions[1] *= -1;\n }\n var currentEstimate = rect;\n var currentEdge = positionData.targetEdge;\n var currentAlignment = positionData.alignmentEdge;\n // Keep switching sides until one is found with enough space.\n // If all sides don't fit then return the unmodified element.\n for (var i = 0; i < 4; i++) {\n if (!_isEdgeInBounds(currentEstimate, bounding, currentEdge)) {\n directions.splice(directions.indexOf(currentEdge), 1);\n if (directions.length > 0) {\n if (directions.indexOf(currentEdge * -1) > -1) {\n currentEdge = currentEdge * -1;\n }\n else {\n currentAlignment = currentEdge;\n currentEdge = directions.slice(-1)[0];\n }\n currentEstimate = _estimatePosition(rect, target, { targetEdge: currentEdge, alignmentEdge: currentAlignment }, gap);\n }\n }\n else {\n return {\n elementRectangle: currentEstimate,\n targetEdge: currentEdge,\n alignmentEdge: currentAlignment,\n };\n }\n }\n return {\n elementRectangle: rect,\n targetEdge: positionData.targetEdge,\n alignmentEdge: positionData.alignmentEdge,\n };\n}\n/**\n * Flips only the alignment edge of an element rectangle. This is used instead of nudging the alignment edges\n * into position, when alignTargetEdge is specified.\n */\nfunction _flipAlignmentEdge(elementEstimate, target, gap, coverTarget) {\n var alignmentEdge = elementEstimate.alignmentEdge, targetEdge = elementEstimate.targetEdge, elementRectangle = elementEstimate.elementRectangle;\n var oppositeEdge = alignmentEdge * -1;\n var newEstimate = _estimatePosition(elementRectangle, target, { targetEdge: targetEdge, alignmentEdge: oppositeEdge }, gap, coverTarget);\n return {\n elementRectangle: newEstimate,\n targetEdge: targetEdge,\n alignmentEdge: oppositeEdge,\n };\n}\n/**\n * Adjusts a element rectangle to fit within the bounds given. If directionalHintFixed or covertarget is passed in\n * then the element will not flip sides on the target. They will, however, be nudged to fit within the bounds given.\n */\nfunction _adjustFitWithinBounds(element, target, bounding, positionData, gap, directionalHintFixed, coverTarget) {\n if (gap === void 0) { gap = 0; }\n var alignmentEdge = positionData.alignmentEdge, alignTargetEdge = positionData.alignTargetEdge;\n var elementEstimate = {\n elementRectangle: element,\n targetEdge: positionData.targetEdge,\n alignmentEdge: alignmentEdge,\n };\n if (!directionalHintFixed && !coverTarget) {\n elementEstimate = _flipToFit(element, target, bounding, positionData, gap);\n }\n var outOfBounds = _getOutOfBoundsEdges(element, bounding);\n if (alignTargetEdge) {\n // The edge opposite to the alignment edge might be out of bounds.\n // Flip alignment to see if we can get it within bounds.\n if (elementEstimate.alignmentEdge && outOfBounds.indexOf(elementEstimate.alignmentEdge * -1) > -1) {\n var flippedElementEstimate = _flipAlignmentEdge(elementEstimate, target, gap, coverTarget);\n if (_isRectangleWithinBounds(flippedElementEstimate.elementRectangle, bounding)) {\n return flippedElementEstimate;\n }\n else {\n // If the flipped elements edges are still out of bounds, try nudging it.\n elementEstimate = _alignOutOfBoundsEdges(_getOutOfBoundsEdges(flippedElementEstimate.elementRectangle, bounding), elementEstimate, bounding);\n }\n }\n }\n else {\n elementEstimate = _alignOutOfBoundsEdges(outOfBounds, elementEstimate, bounding);\n }\n return elementEstimate;\n}\n/**\n * Iterates through a list of out of bounds edges and tries to nudge and align them.\n * @param outOfBoundsEdges - Array of edges that are out of bounds\n * @param elementEstimate - The current element positioning estimate\n * @param bounding - The current bounds\n */\nfunction _alignOutOfBoundsEdges(outOfBoundsEdges, elementEstimate, bounding) {\n for (var _i = 0, outOfBoundsEdges_1 = outOfBoundsEdges; _i < outOfBoundsEdges_1.length; _i++) {\n var direction = outOfBoundsEdges_1[_i];\n elementEstimate.elementRectangle = _alignEdges(elementEstimate.elementRectangle, bounding, direction);\n }\n return elementEstimate;\n}\n/**\n * Moves the middle point on an edge to the point given.\n * Only moves in one direction. For instance if a bottom edge is passed in, then\n * the bottom edge will be moved in the x axis to match the point.\n */\nfunction _centerEdgeToPoint(rect, edge, point) {\n var positiveEdge = _getFlankingEdges(edge).positiveEdge;\n var elementMiddle = _getCenterValue(rect, edge);\n var distanceToMiddle = elementMiddle - _getEdgeValue(rect, positiveEdge);\n return _moveEdge(rect, positiveEdge, point - distanceToMiddle);\n}\n/**\n * Moves the element rectangle to be appropriately positioned relative to a given target.\n * Does not flip or adjust the element.\n */\nfunction _estimatePosition(elementToPosition, target, positionData, gap, coverTarget) {\n if (gap === void 0) { gap = 0; }\n var estimatedElementPosition;\n var alignmentEdge = positionData.alignmentEdge, targetEdge = positionData.targetEdge;\n var elementEdge = coverTarget ? targetEdge : targetEdge * -1;\n estimatedElementPosition = coverTarget\n ? _alignEdges(elementToPosition, target, targetEdge, gap)\n : _alignOppositeEdges(elementToPosition, target, targetEdge, gap);\n // if no alignment edge is provided it's supposed to be centered.\n if (!alignmentEdge) {\n var targetMiddlePoint = _getCenterValue(target, targetEdge);\n estimatedElementPosition = _centerEdgeToPoint(estimatedElementPosition, elementEdge, targetMiddlePoint);\n }\n else {\n estimatedElementPosition = _alignEdges(estimatedElementPosition, target, alignmentEdge);\n }\n return estimatedElementPosition;\n}\n/**\n * Returns the non-opposite edges of the target edge.\n * For instance if bottom is passed in then left and right will be returned.\n */\nfunction _getFlankingEdges(edge) {\n if (edge === RectangleEdge.top || edge === RectangleEdge.bottom) {\n return {\n positiveEdge: RectangleEdge.left,\n negativeEdge: RectangleEdge.right,\n };\n }\n else {\n return {\n positiveEdge: RectangleEdge.top,\n negativeEdge: RectangleEdge.bottom,\n };\n }\n}\n/**\n * Retrieve the final value for the return edge of elementRectangle. If the elementRectangle is closer to one side\n * of the bounds versus the other, the return edge is flipped to grow inward.\n */\nfunction _finalizeReturnEdge(elementRectangle, returnEdge, bounds) {\n if (bounds &&\n Math.abs(_getRelativeEdgeDifference(elementRectangle, bounds, returnEdge)) >\n Math.abs(_getRelativeEdgeDifference(elementRectangle, bounds, returnEdge * -1))) {\n return returnEdge * -1;\n }\n return returnEdge;\n}\n/**\n * Finalizes the element positon based on the hostElement. Only returns the\n * rectangle values to position such that they are anchored to the target.\n * This helps prevent resizing from looking very strange.\n * For instance, if the target edge is top and aligned with the left side then\n * the bottom and left values are returned so as the callou shrinks it shrinks towards that corner.\n */\nfunction _finalizeElementPosition(elementRectangle, hostElement, targetEdge, bounds, alignmentEdge, coverTarget, doNotFinalizeReturnEdge) {\n var returnValue = {};\n var hostRect = _getRectangleFromElement(hostElement);\n var elementEdge = coverTarget ? targetEdge : targetEdge * -1;\n var elementEdgeString = RectangleEdge[elementEdge];\n var returnEdge = alignmentEdge ? alignmentEdge : _getFlankingEdges(targetEdge).positiveEdge;\n if (!doNotFinalizeReturnEdge) {\n returnEdge = _finalizeReturnEdge(elementRectangle, returnEdge, bounds);\n }\n returnValue[elementEdgeString] = _getRelativeEdgeDifference(elementRectangle, hostRect, elementEdge);\n returnValue[RectangleEdge[returnEdge]] = _getRelativeEdgeDifference(elementRectangle, hostRect, returnEdge);\n return returnValue;\n}\n// Since the beak is rotated 45 degrees the actual height/width is the length of the diagonal.\n// We still want to position the beak based on it's midpoint which does not change. It will\n// be at (beakwidth / 2, beakwidth / 2)\nfunction _calculateActualBeakWidthInPixels(beakWidth) {\n return Math.sqrt(beakWidth * beakWidth * 2);\n}\n/**\n * Returns the appropriate IPositionData based on the props altered for RTL.\n * If directionalHintForRTL is passed in that is used if the page is RTL.\n * If directionalHint is specified, no directionalHintForRTL is available, and the page is RTL, the hint will be\n * flipped (e.g. bottomLeftEdge would become bottomRightEdge).\n *\n * If there is no directionalHint passed in, bottomAutoEdge is chosen automatically.\n */\nfunction _getPositionData(directionalHint, directionalHintForRTL, previousPositions) {\n if (directionalHint === void 0) { directionalHint = DirectionalHint.bottomAutoEdge; }\n if (previousPositions) {\n return {\n alignmentEdge: previousPositions.alignmentEdge,\n isAuto: previousPositions.isAuto,\n targetEdge: previousPositions.targetEdge,\n };\n }\n var positionInformation = __assign({}, DirectionalDictionary[directionalHint]);\n if (getRTL()) {\n // If alignment edge exists and that alignment edge is -2 or 2, right or left, then flip it.\n if (positionInformation.alignmentEdge && positionInformation.alignmentEdge % 2 === 0) {\n positionInformation.alignmentEdge = positionInformation.alignmentEdge * -1;\n }\n return directionalHintForRTL !== undefined ? DirectionalDictionary[directionalHintForRTL] : positionInformation;\n }\n return positionInformation;\n}\n/**\n * Get's the alignment data for the given information. This only really matters if the positioning is Auto.\n * If it is auto then the alignmentEdge should be chosen based on the target edge's position relative to\n * the center of the page.\n */\nfunction _getAlignmentData(positionData, target, boundingRect, coverTarget, alignTargetEdge) {\n if (positionData.isAuto) {\n positionData.alignmentEdge = getClosestEdge(positionData.targetEdge, target, boundingRect);\n }\n positionData.alignTargetEdge = alignTargetEdge;\n return positionData;\n}\nfunction getClosestEdge(targetEdge, target, boundingRect) {\n var targetCenter = _getCenterValue(target, targetEdge);\n var boundingCenter = _getCenterValue(boundingRect, targetEdge);\n var _a = _getFlankingEdges(targetEdge), positiveEdge = _a.positiveEdge, negativeEdge = _a.negativeEdge;\n if (targetCenter <= boundingCenter) {\n return positiveEdge;\n }\n else {\n return negativeEdge;\n }\n}\nfunction _positionElementWithinBounds(elementToPosition, target, bounding, positionData, gap, directionalHintFixed, coverTarget) {\n var estimatedElementPosition = _estimatePosition(elementToPosition, target, positionData, gap, coverTarget);\n if (_isRectangleWithinBounds(estimatedElementPosition, bounding)) {\n return {\n elementRectangle: estimatedElementPosition,\n targetEdge: positionData.targetEdge,\n alignmentEdge: positionData.alignmentEdge,\n };\n }\n else {\n return _adjustFitWithinBounds(elementToPosition, target, bounding, positionData, gap, directionalHintFixed, coverTarget);\n }\n}\nfunction _finalizeBeakPosition(elementPosition, positionedBeak, bounds) {\n var targetEdge = elementPosition.targetEdge * -1;\n // The \"host\" element that we will use to help position the beak.\n var actualElement = new Rectangle(0, elementPosition.elementRectangle.width, 0, elementPosition.elementRectangle.height);\n var returnValue = {};\n var returnEdge = _finalizeReturnEdge(elementPosition.elementRectangle, elementPosition.alignmentEdge ? elementPosition.alignmentEdge : _getFlankingEdges(targetEdge).positiveEdge, bounds);\n returnValue[RectangleEdge[targetEdge]] = _getEdgeValue(positionedBeak, targetEdge);\n returnValue[RectangleEdge[returnEdge]] = _getRelativeEdgeDifference(positionedBeak, actualElement, returnEdge);\n return {\n elementPosition: __assign({}, returnValue),\n closestEdge: getClosestEdge(elementPosition.targetEdge, positionedBeak, actualElement),\n targetEdge: targetEdge,\n };\n}\nfunction _positionBeak(beakWidth, elementPosition) {\n var target = elementPosition.targetRectangle;\n /**\n * Note about beak positioning: The actual beak width only matters for getting the gap between the callout and\n * target, it does not impact the beak placement within the callout. For example example, if the beakWidth is 8,\n * then the actual beakWidth is sqrroot(8^2 + 8^2) = 11.31x11.31. So the callout will need to be an extra 3 pixels\n * away from its target. While the beak is being positioned in the callout it still acts as though it were 8x8.\n */\n var _a = _getFlankingEdges(elementPosition.targetEdge), positiveEdge = _a.positiveEdge, negativeEdge = _a.negativeEdge;\n var beakTargetPoint = _getCenterValue(target, elementPosition.targetEdge);\n var elementBounds = new Rectangle(beakWidth / 2, elementPosition.elementRectangle.width - beakWidth / 2, beakWidth / 2, elementPosition.elementRectangle.height - beakWidth / 2);\n var beakPosition = new Rectangle(0, beakWidth, 0, beakWidth);\n beakPosition = _moveEdge(beakPosition, elementPosition.targetEdge * -1, -beakWidth / 2);\n beakPosition = _centerEdgeToPoint(beakPosition, elementPosition.targetEdge * -1, beakTargetPoint - _getRelativeRectEdgeValue(positiveEdge, elementPosition.elementRectangle));\n if (!_isEdgeInBounds(beakPosition, elementBounds, positiveEdge)) {\n beakPosition = _alignEdges(beakPosition, elementBounds, positiveEdge);\n }\n else if (!_isEdgeInBounds(beakPosition, elementBounds, negativeEdge)) {\n beakPosition = _alignEdges(beakPosition, elementBounds, negativeEdge);\n }\n return beakPosition;\n}\nfunction _getRectangleFromElement(element) {\n var clientRect = element.getBoundingClientRect();\n return new Rectangle(clientRect.left, clientRect.right, clientRect.top, clientRect.bottom);\n}\nfunction _getRectangleFromIRect(rect) {\n return new Rectangle(rect.left, rect.right, rect.top, rect.bottom);\n}\nfunction _getTargetRect(bounds, target) {\n var targetRectangle;\n if (target) {\n // eslint-disable-next-line no-extra-boolean-cast\n if (!!target.preventDefault) {\n var ev = target;\n targetRectangle = new Rectangle(ev.clientX, ev.clientX, ev.clientY, ev.clientY);\n // eslint-disable-next-line no-extra-boolean-cast\n }\n else if (!!target.getBoundingClientRect) {\n targetRectangle = _getRectangleFromElement(target);\n // HTMLImgElements can have x and y values. The check for it being a point must go last.\n }\n else {\n var rectOrPoint = target;\n // eslint-disable-next-line deprecation/deprecation\n var left = rectOrPoint.left || rectOrPoint.x;\n // eslint-disable-next-line deprecation/deprecation\n var top_1 = rectOrPoint.top || rectOrPoint.y;\n var right = rectOrPoint.right || left;\n var bottom = rectOrPoint.bottom || top_1;\n targetRectangle = new Rectangle(left, right, top_1, bottom);\n }\n if (!_isRectangleWithinBounds(targetRectangle, bounds)) {\n var outOfBounds = _getOutOfBoundsEdges(targetRectangle, bounds);\n for (var _i = 0, outOfBounds_1 = outOfBounds; _i < outOfBounds_1.length; _i++) {\n var direction = outOfBounds_1[_i];\n targetRectangle[RectangleEdge[direction]] = bounds[RectangleEdge[direction]];\n }\n }\n }\n else {\n targetRectangle = new Rectangle(0, 0, 0, 0);\n }\n return targetRectangle;\n}\n/**\n * If max height is less than zero it returns the bounds height instead.\n */\nfunction _getMaxHeightFromTargetRectangle(targetRectangle, targetEdge, gapSpace, bounds, coverTarget) {\n var maxHeight = 0;\n var directionalHint = DirectionalDictionary[targetEdge];\n // If cover target is set, then the max height should be calculated using the opposite of the target edge since\n // that's the direction that the callout will expand in.\n // For instance, if the directionalhint is bottomLeftEdge then the callout will position so it's bottom edge\n // is aligned with the bottom of the target and expand up towards the top of the screen and the calculated max height\n // is (bottom of target) - (top of screen) - gapSpace.\n var target = coverTarget ? directionalHint.targetEdge * -1 : directionalHint.targetEdge;\n if (target === RectangleEdge.top) {\n maxHeight = _getEdgeValue(targetRectangle, directionalHint.targetEdge) - bounds.top - gapSpace;\n }\n else if (target === RectangleEdge.bottom) {\n maxHeight = bounds.bottom - _getEdgeValue(targetRectangle, directionalHint.targetEdge) - gapSpace;\n }\n else {\n maxHeight = bounds.bottom - targetRectangle.top - gapSpace;\n }\n return maxHeight > 0 ? maxHeight : bounds.height;\n}\nfunction _positionElementRelative(props, elementToPosition, boundingRect, previousPositions) {\n var gap = props.gapSpace ? props.gapSpace : 0;\n var targetRect = _getTargetRect(boundingRect, props.target);\n var positionData = _getAlignmentData(_getPositionData(props.directionalHint, props.directionalHintForRTL, previousPositions), targetRect, boundingRect, props.coverTarget, props.alignTargetEdge);\n var positionedElement = _positionElementWithinBounds(_getRectangleFromElement(elementToPosition), targetRect, boundingRect, positionData, gap, props.directionalHintFixed, props.coverTarget);\n return __assign(__assign({}, positionedElement), { targetRectangle: targetRect });\n}\nfunction _finalizePositionData(positionedElement, hostElement, bounds, coverTarget, doNotFinalizeReturnEdge) {\n var finalizedElement = _finalizeElementPosition(positionedElement.elementRectangle, hostElement, positionedElement.targetEdge, bounds, positionedElement.alignmentEdge, coverTarget, doNotFinalizeReturnEdge);\n return {\n elementPosition: finalizedElement,\n targetEdge: positionedElement.targetEdge,\n alignmentEdge: positionedElement.alignmentEdge,\n };\n}\nfunction _positionElement(props, hostElement, elementToPosition, previousPositions) {\n var boundingRect = props.bounds\n ? _getRectangleFromIRect(props.bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n var positionedElement = _positionElementRelative(props, elementToPosition, boundingRect, previousPositions);\n return _finalizePositionData(positionedElement, hostElement, boundingRect, props.coverTarget);\n}\nfunction _positionCallout(props, hostElement, callout, previousPositions, doNotFinalizeReturnEdge) {\n var beakWidth = props.isBeakVisible ? props.beakWidth || 0 : 0;\n var gap = _calculateActualBeakWidthInPixels(beakWidth) / 2 + (props.gapSpace ? props.gapSpace : 0);\n var positionProps = props;\n positionProps.gapSpace = gap;\n var boundingRect = props.bounds\n ? _getRectangleFromIRect(props.bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n var positionedElement = _positionElementRelative(positionProps, callout, boundingRect, previousPositions);\n var beakPositioned = _positionBeak(beakWidth, positionedElement);\n var finalizedBeakPosition = _finalizeBeakPosition(positionedElement, beakPositioned, boundingRect);\n return __assign(__assign({}, _finalizePositionData(positionedElement, hostElement, boundingRect, props.coverTarget, doNotFinalizeReturnEdge)), { beakPosition: finalizedBeakPosition });\n}\nfunction _positionCard(props, hostElement, callout, previousPositions) {\n return _positionCallout(props, hostElement, callout, previousPositions, true);\n}\n// END PRIVATE FUNCTIONS\nexport var __positioningTestPackage = {\n _finalizePositionData: _finalizePositionData,\n _finalizeBeakPosition: _finalizeBeakPosition,\n _calculateActualBeakWidthInPixels: _calculateActualBeakWidthInPixels,\n _positionElementWithinBounds: _positionElementWithinBounds,\n _positionBeak: _positionBeak,\n _getPositionData: _getPositionData,\n _getMaxHeightFromTargetRectangle: _getMaxHeightFromTargetRectangle,\n};\n/**\n * Used to position an element relative to the given positioning props.\n * If positioning has been completed before, previousPositions can be passed to ensure that the positioning element\n * repositions based on its previous targets rather than starting with directionalhint.\n */\nexport function positionElement(props, hostElement, elementToPosition, previousPositions) {\n return _positionElement(props, hostElement, elementToPosition, previousPositions);\n}\nexport function positionCallout(props, hostElement, elementToPosition, previousPositions) {\n return _positionCallout(props, hostElement, elementToPosition, previousPositions);\n}\nexport function positionCard(props, hostElement, elementToPosition, previousPositions) {\n return _positionCard(props, hostElement, elementToPosition, previousPositions);\n}\n/**\n * Gets the maximum height that a rectangle can have in order to fit below or above a target.\n * If the directional hint specifies a left or right edge (i.e. leftCenter) it will limit the height to the topBorder\n * of the target given.\n * If no bounds are provided then the window is treated as the bounds.\n */\nexport function getMaxHeight(target, targetEdge, gapSpace, bounds, coverTarget) {\n if (gapSpace === void 0) { gapSpace = 0; }\n var mouseTarget = target;\n var elementTarget = target;\n var rectOrPointTarget = target;\n var targetRect;\n var boundingRectangle = bounds\n ? _getRectangleFromIRect(bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n // eslint-disable-next-line deprecation/deprecation\n var left = rectOrPointTarget.left || rectOrPointTarget.x;\n // eslint-disable-next-line deprecation/deprecation\n var top = rectOrPointTarget.top || rectOrPointTarget.y;\n var right = rectOrPointTarget.right || left;\n var bottom = rectOrPointTarget.bottom || top;\n // eslint-disable-next-line no-extra-boolean-cast -- may not actually be a MouseEvent\n if (!!mouseTarget.stopPropagation) {\n targetRect = new Rectangle(mouseTarget.clientX, mouseTarget.clientX, mouseTarget.clientY, mouseTarget.clientY);\n }\n else if (left !== undefined && top !== undefined) {\n targetRect = new Rectangle(left, right, top, bottom);\n }\n else {\n targetRect = _getRectangleFromElement(elementTarget);\n }\n return _getMaxHeightFromTargetRectangle(targetRect, targetEdge, gapSpace, boundingRectangle, coverTarget);\n}\n/**\n * Returns the opposite edge of the given RectangleEdge.\n */\nexport function getOppositeEdge(edge) {\n return edge * -1;\n}\nfunction _getBoundsFromTargetWindow(target, targetWindow) {\n var segments = undefined;\n if (targetWindow.getWindowSegments) {\n segments = targetWindow.getWindowSegments();\n }\n // Identify if we're dealing with single screen scenarios.\n if (segments === undefined || segments.length <= 1) {\n return {\n top: 0,\n left: 0,\n right: targetWindow.innerWidth,\n bottom: targetWindow.innerHeight,\n width: targetWindow.innerWidth,\n height: targetWindow.innerHeight,\n };\n }\n // Logic for determining dual screen scenarios.\n var x = 0;\n var y = 0;\n // If the target is an Element get coordinates for its center.\n if (target !== null && !!target.getBoundingClientRect) {\n var clientRect = target.getBoundingClientRect();\n x = (clientRect.left + clientRect.right) / 2;\n y = (clientRect.top + clientRect.bottom) / 2;\n }\n // If the target is not null get x-axis and y-axis coordinates directly.\n else if (target !== null) {\n // eslint-disable-next-line deprecation/deprecation\n x = target.left || target.x;\n // eslint-disable-next-line deprecation/deprecation\n y = target.top || target.y;\n }\n var bounds = { top: 0, left: 0, right: 0, bottom: 0, width: 0, height: 0 };\n // Define which window segment are the coordinates in and calculate bounds based on that.\n for (var _i = 0, segments_1 = segments; _i < segments_1.length; _i++) {\n var segment = segments_1[_i];\n if (x && segment.left <= x && segment.right >= x && y && segment.top <= y && segment.bottom >= y) {\n bounds = {\n top: segment.top,\n left: segment.left,\n right: segment.right,\n bottom: segment.bottom,\n width: segment.width,\n height: segment.height,\n };\n }\n }\n return bounds;\n}\nexport function getBoundsFromTargetWindow(target, targetWindow) {\n return _getBoundsFromTargetWindow(target, targetWindow);\n}\n//# sourceMappingURL=positioning.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.base.js", - "index": 132, - "index2": 135, - "size": 24522, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent.base", - "loc": "2:0-59" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent.base", - "loc": "4:35-53" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent.base", - "loc": "3:0-38" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CalloutContent.base", - "loc": "3:0-38" - } - ], - "usedExports": [ - "CalloutContentBase" - ], - "providedExports": [ - "CalloutContentBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "var _a;\nimport { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { Async, css, divProperties, elementContains, focusFirstChild, getDocument, getNativeProps, getWindow, on, shallowCompare, } from '../../Utilities';\nimport { positionCallout, getMaxHeight, RectangleEdge, positionCard, getBoundsFromTargetWindow, } from '../../utilities/positioning';\nimport { Popup } from '../../Popup';\nimport { classNamesFunction } from '../../Utilities';\nimport { AnimationClassNames } from '../../Styling';\nvar ANIMATIONS = (_a = {},\n _a[RectangleEdge.top] = AnimationClassNames.slideUpIn10,\n _a[RectangleEdge.bottom] = AnimationClassNames.slideDownIn10,\n _a[RectangleEdge.left] = AnimationClassNames.slideLeftIn10,\n _a[RectangleEdge.right] = AnimationClassNames.slideRightIn10,\n _a);\nvar getClassNames = classNamesFunction({\n disableCaching: true,\n});\nvar BEAK_ORIGIN_POSITION = { top: 0, left: 0 };\n// Microsoft Edge will overwrite inline styles if there is an animation pertaining to that style.\n// To help ensure that edge will respect the offscreen style opacity\n// filter needs to be added as an additional way to set opacity.\n// Also set pointer-events: none so that the callout will not occlude the element it is\n// going to be positioned against\nvar OFF_SCREEN_STYLE = { opacity: 0, filter: 'opacity(0)', pointerEvents: 'none' };\n// role and role description go hand-in-hand. Both would be included by spreading getNativeProps for a basic element\n// This constant array can be used to filter these out of native props spread on callout root and apply them together on\n// calloutMain (the Popup component within the callout)\nvar ARIA_ROLE_ATTRIBUTES = ['role', 'aria-roledescription'];\nvar CalloutContentBase = /** @class */ (function (_super) {\n __extends(CalloutContentBase, _super);\n function CalloutContentBase(props) {\n var _this = _super.call(this, props) || this;\n _this._hostElement = React.createRef();\n _this._calloutElement = React.createRef();\n _this._hasListeners = false;\n _this._disposables = [];\n _this.dismiss = function (ev) {\n var onDismiss = _this.props.onDismiss;\n if (onDismiss) {\n onDismiss(ev);\n }\n };\n _this._dismissOnScroll = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, preventDismissOnEvent = _a.preventDismissOnEvent, preventDismissOnScroll = _a.preventDismissOnScroll;\n if (_this.state.positions &&\n ((preventDismissOnEvent && !preventDismissOnEvent(ev)) || (!preventDismissOnEvent && !preventDismissOnScroll))) {\n _this._dismissOnClickOrScroll(ev);\n }\n };\n _this._dismissOnResize = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, preventDismissOnEvent = _a.preventDismissOnEvent, preventDismissOnResize = _a.preventDismissOnResize;\n if ((preventDismissOnEvent && !preventDismissOnEvent(ev)) || (!preventDismissOnEvent && !preventDismissOnResize)) {\n _this.dismiss(ev);\n }\n };\n _this._dismissOnLostFocus = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, preventDismissOnEvent = _a.preventDismissOnEvent, preventDismissOnLostFocus = _a.preventDismissOnLostFocus;\n if ((preventDismissOnEvent && !preventDismissOnEvent(ev)) ||\n (!preventDismissOnEvent && !preventDismissOnLostFocus)) {\n _this._dismissOnClickOrScroll(ev);\n }\n };\n _this._setInitialFocus = function () {\n if (_this.props.setInitialFocus &&\n !_this._didSetInitialFocus &&\n _this.state.positions &&\n _this._calloutElement.current) {\n _this._didSetInitialFocus = true;\n _this._async.requestAnimationFrame(function () { return focusFirstChild(_this._calloutElement.current); }, _this._calloutElement.current);\n }\n };\n _this._onComponentDidMount = function () {\n _this._addListeners();\n if (_this.props.onLayerMounted) {\n _this.props.onLayerMounted();\n }\n _this._updateAsyncPosition();\n _this._setHeightOffsetEveryFrame();\n };\n _this._dismissOnTargetWindowBlur = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, preventDismissOnEvent = _a.preventDismissOnEvent, preventDismissOnLostFocus = _a.preventDismissOnLostFocus, shouldDismissOnWindowFocus = _a.shouldDismissOnWindowFocus;\n // Do nothing\n if (!shouldDismissOnWindowFocus) {\n return;\n }\n if (((preventDismissOnEvent && !preventDismissOnEvent(ev)) ||\n (!preventDismissOnEvent && !preventDismissOnLostFocus)) &&\n !_this._targetWindow.document.hasFocus() &&\n ev.relatedTarget === null) {\n _this.dismiss(ev);\n }\n };\n _this._mouseDownOnPopup = function () {\n _this._isMouseDownOnPopup = true;\n };\n _this._mouseUpOnPopup = function () {\n _this._isMouseDownOnPopup = false;\n };\n _this._async = new Async(_this);\n _this._didSetInitialFocus = false;\n _this.state = {\n positions: undefined,\n slideDirectionalClassName: undefined,\n // @TODO it looks like this is not even being used anymore.\n calloutElementRect: undefined,\n heightOffset: 0,\n };\n _this._positionAttempts = 0;\n return _this;\n }\n CalloutContentBase.prototype.componentDidUpdate = function () {\n if (!this.props.hidden) {\n this._setInitialFocus();\n if (!this._hasListeners) {\n this._addListeners();\n }\n this._updateAsyncPosition();\n }\n else {\n if (this._hasListeners) {\n this._removeListeners();\n }\n }\n };\n CalloutContentBase.prototype.shouldComponentUpdate = function (newProps, newState) {\n if (!newProps.shouldUpdateWhenHidden && this.props.hidden && newProps.hidden) {\n // Do not update when hidden.\n return false;\n }\n return !shallowCompare(this.props, newProps) || !shallowCompare(this.state, newState);\n };\n CalloutContentBase.prototype.UNSAFE_componentWillMount = function () {\n this._setTargetWindowAndElement(this._getTarget());\n };\n CalloutContentBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._disposables.forEach(function (dispose) { return dispose(); });\n };\n CalloutContentBase.prototype.UNSAFE_componentWillUpdate = function (newProps) {\n // If the target element changed, find the new one. If we are tracking target with class name, always find element\n // because we do not know if fabric has rendered a new element and disposed the old element.\n var newTarget = this._getTarget(newProps);\n var oldTarget = this._getTarget();\n if ((newTarget !== oldTarget || typeof newTarget === 'string' || newTarget instanceof String) &&\n !this._blockResetHeight) {\n this._maxHeight = undefined;\n this._setTargetWindowAndElement(newTarget);\n }\n if (newProps.gapSpace !== this.props.gapSpace || this.props.beakWidth !== newProps.beakWidth) {\n this._maxHeight = undefined;\n }\n if (newProps.finalHeight !== this.props.finalHeight) {\n this._setHeightOffsetEveryFrame();\n }\n // Ensure positioning is recalculated when we are about to show a persisted menu.\n if (this._didPositionPropsChange(newProps, this.props)) {\n this._maxHeight = undefined;\n // Target might have been updated while hidden.\n this._setTargetWindowAndElement(newTarget);\n this.setState({\n positions: undefined,\n });\n this._didSetInitialFocus = false;\n this._bounds = undefined;\n }\n this._blockResetHeight = false;\n };\n CalloutContentBase.prototype.componentDidMount = function () {\n if (!this.props.hidden) {\n this._onComponentDidMount();\n }\n };\n CalloutContentBase.prototype.render = function () {\n // If there is no target window then we are likely in server side rendering and we should not render anything.\n if (!this._targetWindow) {\n return null;\n }\n var target = this.props.target;\n var _a = this.props, styles = _a.styles, style = _a.style, ariaLabel = _a.ariaLabel, ariaDescribedBy = _a.ariaDescribedBy, ariaLabelledBy = _a.ariaLabelledBy, className = _a.className, isBeakVisible = _a.isBeakVisible, children = _a.children, beakWidth = _a.beakWidth, calloutWidth = _a.calloutWidth, calloutMaxWidth = _a.calloutMaxWidth, calloutMinWidth = _a.calloutMinWidth, finalHeight = _a.finalHeight, _b = _a.hideOverflow, hideOverflow = _b === void 0 ? !!finalHeight : _b, backgroundColor = _a.backgroundColor, calloutMaxHeight = _a.calloutMaxHeight, onScroll = _a.onScroll, \n // eslint-disable-next-line deprecation/deprecation\n _c = _a.shouldRestoreFocus, \n // eslint-disable-next-line deprecation/deprecation\n shouldRestoreFocus = _c === void 0 ? true : _c;\n target = this._getTarget();\n var positions = this.state.positions;\n var getContentMaxHeight = this._getMaxHeight()\n ? this._getMaxHeight() + this.state.heightOffset\n : undefined;\n var contentMaxHeight = calloutMaxHeight && getContentMaxHeight && calloutMaxHeight < getContentMaxHeight\n ? calloutMaxHeight\n : getContentMaxHeight;\n var overflowYHidden = hideOverflow;\n var beakVisible = isBeakVisible && !!target;\n this._classNames = getClassNames(styles, {\n theme: this.props.theme,\n className: className,\n overflowYHidden: overflowYHidden,\n calloutWidth: calloutWidth,\n positions: positions,\n beakWidth: beakWidth,\n backgroundColor: backgroundColor,\n calloutMinWidth: calloutMinWidth,\n calloutMaxWidth: calloutMaxWidth,\n });\n var overflowStyle = __assign(__assign(__assign({}, style), { maxHeight: contentMaxHeight }), (overflowYHidden && { overflowY: 'hidden' }));\n var visibilityStyle = this.props.hidden ? { visibility: 'hidden' } : undefined;\n // React.CSSProperties does not understand IRawStyle, so the inline animations will need to be cast as any for now.\n var content = (React.createElement(\"div\", { ref: this._hostElement, className: this._classNames.container, style: visibilityStyle },\n React.createElement(\"div\", __assign({}, getNativeProps(this.props, divProperties, ARIA_ROLE_ATTRIBUTES), { className: css(this._classNames.root, positions && positions.targetEdge && ANIMATIONS[positions.targetEdge]), style: positions ? positions.elementPosition : OFF_SCREEN_STYLE, \n // Safari and Firefox on Mac OS requires this to back-stop click events so focus remains in the Callout.\n // See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Clicking_and_focus\n tabIndex: -1, ref: this._calloutElement }),\n beakVisible && React.createElement(\"div\", { className: this._classNames.beak, style: this._getBeakPosition() }),\n beakVisible && React.createElement(\"div\", { className: this._classNames.beakCurtain }),\n React.createElement(Popup, __assign({}, getNativeProps(this.props, ARIA_ROLE_ATTRIBUTES), { ariaLabel: ariaLabel, onRestoreFocus: this.props.onRestoreFocus, ariaDescribedBy: ariaDescribedBy, ariaLabelledBy: ariaLabelledBy, className: this._classNames.calloutMain, onDismiss: this.dismiss, onScroll: onScroll, shouldRestoreFocus: shouldRestoreFocus, style: overflowStyle, onMouseDown: this._mouseDownOnPopup, onMouseUp: this._mouseUpOnPopup }), children))));\n return content;\n };\n CalloutContentBase.prototype._dismissOnClickOrScroll = function (ev) {\n var target = ev.target;\n var isEventTargetOutsideCallout = this._hostElement.current && !elementContains(this._hostElement.current, target);\n // If mouse is pressed down on callout but moved outside then released, don't dismiss the callout.\n if (isEventTargetOutsideCallout && this._isMouseDownOnPopup) {\n this._isMouseDownOnPopup = false;\n return;\n }\n if ((!this._target && isEventTargetOutsideCallout) ||\n (ev.target !== this._targetWindow &&\n isEventTargetOutsideCallout &&\n (this._target.stopPropagation ||\n !this._target ||\n this.props.dismissOnTargetClick ||\n (target !== this._target && !elementContains(this._target, target))))) {\n this.dismiss(ev);\n }\n };\n CalloutContentBase.prototype._addListeners = function () {\n var _this = this;\n // This is added so the callout will dismiss when the window is scrolled\n // but not when something inside the callout is scrolled. The delay seems\n // to be required to avoid React firing an async focus event in IE from\n // the target changing focus quickly prior to rendering the callout.\n this._async.setTimeout(function () {\n _this._disposables.push(on(_this._targetWindow, 'scroll', _this._dismissOnScroll, true), on(_this._targetWindow, 'resize', _this._dismissOnResize, true), on(_this._targetWindow.document.documentElement, 'focus', _this._dismissOnLostFocus, true), on(_this._targetWindow.document.documentElement, 'click', _this._dismissOnLostFocus, true), on(_this._targetWindow, 'blur', _this._dismissOnTargetWindowBlur, true));\n _this._hasListeners = true;\n }, 0);\n };\n CalloutContentBase.prototype._removeListeners = function () {\n this._disposables.forEach(function (dispose) { return dispose(); });\n this._disposables = [];\n this._hasListeners = false;\n };\n CalloutContentBase.prototype._updateAsyncPosition = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () { return _this._updatePosition(); }, this._calloutElement.current);\n };\n CalloutContentBase.prototype._getBeakPosition = function () {\n var positions = this.state.positions;\n var beakPostionStyle = __assign({}, (positions && positions.beakPosition ? positions.beakPosition.elementPosition : null));\n if (!beakPostionStyle.top && !beakPostionStyle.bottom && !beakPostionStyle.left && !beakPostionStyle.right) {\n beakPostionStyle.left = BEAK_ORIGIN_POSITION.left;\n beakPostionStyle.top = BEAK_ORIGIN_POSITION.top;\n }\n return beakPostionStyle;\n };\n CalloutContentBase.prototype._updatePosition = function () {\n // Try to update the target, page might have changed\n this._setTargetWindowAndElement(this._getTarget());\n var positions = this.state.positions;\n var hostElement = this._hostElement.current;\n var calloutElement = this._calloutElement.current;\n // If we expect a target element to position against, we need to wait until `this._target` is resolved. Otherwise\n // we can try to position.\n var expectsTarget = !!this.props.target;\n if (hostElement && calloutElement && (!expectsTarget || this._target)) {\n var currentProps = __assign({}, this.props);\n currentProps.bounds = this._getBounds();\n currentProps.target = this._target;\n // If there is a finalHeight given then we assume that the user knows and will handle\n // additional positioning adjustments so we should call positionCard\n var newPositions = this.props.finalHeight\n ? positionCard(currentProps, hostElement, calloutElement, positions)\n : positionCallout(currentProps, hostElement, calloutElement, positions);\n // Set the new position only when the positions are not exists or one of the new callout positions are different.\n // The position should not change if the position is within 2 decimal places.\n if ((!positions && newPositions) ||\n (positions && newPositions && !this._arePositionsEqual(positions, newPositions) && this._positionAttempts < 5)) {\n // We should not reposition the callout more than a few times, if it is then the content is likely resizing\n // and we should stop trying to reposition to prevent a stack overflow.\n this._positionAttempts++;\n this.setState({\n positions: newPositions,\n });\n }\n else if (this._positionAttempts > 0) {\n // Only call the onPositioned callback if the callout has been re-positioned at least once.\n this._positionAttempts = 0;\n if (this.props.onPositioned) {\n this.props.onPositioned(this.state.positions);\n }\n }\n }\n };\n CalloutContentBase.prototype._getBounds = function () {\n if (!this._bounds) {\n var bounds = this.props.bounds;\n var currentBounds = typeof bounds === 'function' ? bounds(this.props.target, this._targetWindow) : bounds;\n if (!currentBounds) {\n currentBounds = getBoundsFromTargetWindow(this._target, this._targetWindow);\n currentBounds = {\n top: currentBounds.top + this.props.minPagePadding,\n left: currentBounds.left + this.props.minPagePadding,\n right: currentBounds.right - this.props.minPagePadding,\n bottom: currentBounds.bottom - this.props.minPagePadding,\n width: currentBounds.width - this.props.minPagePadding * 2,\n height: currentBounds.height - this.props.minPagePadding * 2,\n };\n }\n this._bounds = currentBounds;\n }\n return this._bounds;\n };\n // Max height should remain as synchronous as possible, which is why it is not done using set state.\n // It needs to be synchronous since it will impact the ultimate position of the callout.\n CalloutContentBase.prototype._getMaxHeight = function () {\n var _this = this;\n if (!this._maxHeight) {\n if (this.props.directionalHintFixed && this._target) {\n var beakWidth = this.props.isBeakVisible ? this.props.beakWidth : 0;\n var gapSpace = this.props.gapSpace ? this.props.gapSpace : 0;\n // Since the callout cannot measure it's border size it must be taken into account here. Otherwise it will\n // overlap with the target.\n var totalGap_1 = gapSpace + beakWidth;\n this._async.requestAnimationFrame(function () {\n if (_this._target) {\n _this._maxHeight = getMaxHeight(_this._target, _this.props.directionalHint, totalGap_1, _this._getBounds(), _this.props.coverTarget);\n _this._blockResetHeight = true;\n _this.forceUpdate();\n }\n }, this._target);\n }\n else {\n this._maxHeight = this._getBounds().height;\n }\n }\n return this._maxHeight;\n };\n CalloutContentBase.prototype._arePositionsEqual = function (positions, newPosition) {\n return (this._comparePositions(positions.elementPosition, newPosition.elementPosition) &&\n this._comparePositions(positions.beakPosition.elementPosition, newPosition.beakPosition.elementPosition));\n };\n CalloutContentBase.prototype._comparePositions = function (oldPositions, newPositions) {\n for (var key in newPositions) {\n if (newPositions.hasOwnProperty(key)) {\n var oldPositionEdge = oldPositions[key];\n var newPositionEdge = newPositions[key];\n if (oldPositionEdge !== undefined && newPositionEdge !== undefined) {\n if (oldPositionEdge.toFixed(2) !== newPositionEdge.toFixed(2)) {\n return false;\n }\n }\n else {\n return false;\n }\n }\n }\n return true;\n };\n CalloutContentBase.prototype._setTargetWindowAndElement = function (target) {\n var currentElement = this._calloutElement.current;\n if (target) {\n if (typeof target === 'string') {\n var currentDoc = getDocument(currentElement);\n this._target = currentDoc ? currentDoc.querySelector(target) : null;\n this._targetWindow = getWindow(currentElement);\n // Cast to any prevents error about stopPropagation always existing\n }\n else if (target.stopPropagation) {\n this._targetWindow = getWindow(target.target);\n this._target = target;\n // Same reason here\n }\n else if (target.getBoundingClientRect) {\n var targetElement = target;\n this._targetWindow = getWindow(targetElement);\n this._target = targetElement;\n }\n else if (target.current !== undefined) {\n this._target = target.current;\n this._targetWindow = getWindow(this._target);\n // HTMLImgElements can have x and y values. The check for it being a point must go last.\n }\n else {\n this._targetWindow = getWindow(currentElement);\n this._target = target;\n }\n }\n else {\n this._targetWindow = getWindow(currentElement);\n }\n };\n CalloutContentBase.prototype._setHeightOffsetEveryFrame = function () {\n var _this = this;\n if (this._calloutElement.current && this.props.finalHeight) {\n this._setHeightOffsetTimer = this._async.requestAnimationFrame(function () {\n var calloutMainElem = _this._calloutElement.current && _this._calloutElement.current.lastChild;\n if (!calloutMainElem) {\n return;\n }\n var cardScrollHeight = calloutMainElem.scrollHeight;\n var cardCurrHeight = calloutMainElem.offsetHeight;\n var scrollDiff = cardScrollHeight - cardCurrHeight;\n _this.setState({\n heightOffset: _this.state.heightOffset + scrollDiff,\n });\n if (calloutMainElem.offsetHeight < _this.props.finalHeight) {\n _this._setHeightOffsetEveryFrame();\n }\n else {\n _this._async.cancelAnimationFrame(_this._setHeightOffsetTimer, _this._calloutElement.current);\n }\n }, this._calloutElement.current);\n }\n };\n // Whether or not the current positions should be reset\n CalloutContentBase.prototype._didPositionPropsChange = function (newProps, oldProps) {\n return ((!newProps.hidden && newProps.hidden !== oldProps.hidden) ||\n newProps.directionalHint !== oldProps.directionalHint ||\n newProps.target !== oldProps.target);\n };\n CalloutContentBase.prototype._getTarget = function (props) {\n if (props === void 0) { props = this.props; }\n var target = props.target;\n return target;\n };\n CalloutContentBase.defaultProps = {\n preventDismissOnLostFocus: false,\n preventDismissOnScroll: false,\n preventDismissOnResize: false,\n isBeakVisible: true,\n beakWidth: 16,\n gapSpace: 0,\n minPagePadding: 8,\n directionalHint: DirectionalHint.bottomAutoEdge,\n };\n return CalloutContentBase;\n}(React.Component));\nexport { CalloutContentBase };\n//# sourceMappingURL=CalloutContent.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "index": 131, - "index2": 137, - "size": 304, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent", - "loc": "3:0-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent", - "loc": "12:42-56" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent", - "loc": "2:0-33" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./CalloutContent", - "loc": "2:0-33" - } - ], - "usedExports": [ - "CalloutContent" - ], - "providedExports": [ - "CalloutContent" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { CalloutContentBase } from './CalloutContent.base';\nimport { getStyles } from './CalloutContent.styles';\nexport var CalloutContent = styled(CalloutContentBase, getStyles, undefined, { scope: 'CalloutContent' });\n//# sourceMappingURL=CalloutContent.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "index": 130, - "index2": 154, - "size": 789, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "issuerId": "3Wi1", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Tooltip/Tooltip.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "25:36-43" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "77:251-258" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionColorField/CollectionColorField.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/Callout", - "loc": "131:32-39" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "558:40-47" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Callout", - "loc": "558:63-70" - }, - { - "moduleId": "/j92", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DatePicker/DatePicker.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "308:54-61" - }, - { - "moduleId": "3L5l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/BaseFloatingPicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "204:68-75" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "3Wi1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Callout", - "loc": "1:0-26" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "./Callout", - "loc": "3:0-36" - }, - { - "moduleId": "Dha1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony import specifier", - "userRequest": "./Callout", - "loc": "10:32-39" - }, - { - "moduleId": "E5ZJ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/HoverCard/CardCallout/CardCallout.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../../Callout", - "loc": "13:47-54" - }, - { - "moduleId": "Iqpp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Keytip/Keytip.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "36:36-43" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "514:82-89" - }, - { - "moduleId": "ihU0", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ComboBox/ComboBox.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "316:40-47" - }, - { - "moduleId": "xbjQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/TeachingBubble.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Callout", - "loc": "51:36-43" - } - ], - "usedExports": [ - "Callout" - ], - "providedExports": [ - "Callout" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { CalloutContent } from './CalloutContent';\nimport { Layer } from '../../Layer';\nvar Callout = /** @class */ (function (_super) {\n __extends(Callout, _super);\n function Callout() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n Callout.prototype.render = function () {\n var _a = this.props, layerProps = _a.layerProps, rest = __rest(_a, [\"layerProps\"]);\n var content = React.createElement(CalloutContent, __assign({}, rest));\n return this.props.doNotLayer ? content : React.createElement(Layer, __assign({}, layerProps), content);\n };\n return Callout;\n}(React.Component));\nexport { Callout };\n//# sourceMappingURL=Callout.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.styles.js", - "index": 148, - "index2": 136, - "size": 3228, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "zwhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "3Wi1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/Callout.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony side effect evaluation", - "userRequest": "./CalloutContent.styles", - "loc": "3:0-52" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Callout/CalloutContent.js", - "type": "harmony import specifier", - "userRequest": "./CalloutContent.styles", - "loc": "4:55-64" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { HighContrastSelector, focusClear, getGlobalClassNames } from '../../Styling';\nfunction getBeakStyle(beakWidth) {\n return {\n height: beakWidth,\n width: beakWidth,\n };\n}\nvar GlobalClassNames = {\n container: 'ms-Callout-container',\n root: 'ms-Callout',\n beak: 'ms-Callout-beak',\n beakCurtain: 'ms-Callout-beakCurtain',\n calloutMain: 'ms-Callout-main',\n};\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, className = props.className, overflowYHidden = props.overflowYHidden, calloutWidth = props.calloutWidth, beakWidth = props.beakWidth, backgroundColor = props.backgroundColor, calloutMaxWidth = props.calloutMaxWidth, calloutMinWidth = props.calloutMinWidth;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var semanticColors = theme.semanticColors, effects = theme.effects;\n return {\n container: [\n classNames.container,\n {\n position: 'relative',\n },\n ],\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n position: 'absolute',\n boxSizing: 'border-box',\n borderRadius: effects.roundedCorner2,\n boxShadow: effects.elevation16,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderWidth: 1,\n borderStyle: 'solid',\n borderColor: 'WindowText',\n },\n _a),\n },\n focusClear(),\n className,\n !!calloutWidth && { width: calloutWidth },\n !!calloutMaxWidth && { maxWidth: calloutMaxWidth },\n !!calloutMinWidth && { minWidth: calloutMinWidth },\n ],\n beak: [\n classNames.beak,\n {\n position: 'absolute',\n backgroundColor: semanticColors.menuBackground,\n boxShadow: 'inherit',\n border: 'inherit',\n boxSizing: 'border-box',\n transform: 'rotate(45deg)',\n },\n getBeakStyle(beakWidth),\n backgroundColor && {\n backgroundColor: backgroundColor,\n },\n ],\n beakCurtain: [\n classNames.beakCurtain,\n {\n position: 'absolute',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n backgroundColor: semanticColors.menuBackground,\n borderRadius: effects.roundedCorner2,\n },\n ],\n calloutMain: [\n classNames.calloutMain,\n {\n backgroundColor: semanticColors.menuBackground,\n overflowX: 'hidden',\n overflowY: 'auto',\n position: 'relative',\n borderRadius: effects.roundedCorner2,\n },\n overflowYHidden && {\n overflowY: 'hidden',\n },\n backgroundColor && {\n backgroundColor: backgroundColor,\n },\n ],\n };\n};\n//# sourceMappingURL=CalloutContent.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "S+gH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/FocusTrapZone.js", - "index": null, - "index2": null, - "size": 91, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "issuerId": "wAdI", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js" - }, - { - "id": "C/8z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/ContextualMenu.js" - }, - { - "id": "mFTx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/ContextualMenu/ContextualMenu.base.js" - }, - { - "id": "j3z5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Callout.js" - }, - { - "id": "93C/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/index.js" - }, - { - "id": "wAdI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "wAdI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Callout/FocusTrapCallout.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusTrapZone", - "loc": "4:0-52" - } - ], - "usedExports": false, - "providedExports": [ - "FocusTrapZone" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 13, - "source": "export * from './components/FocusTrapZone/index';\n//# sourceMappingURL=FocusTrapZone.js.map" - }, - { - "id": "S+xZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/MessageBarButton/MessageBarButton.js", - "index": null, - "index2": null, - "size": 1049, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./MessageBarButton/MessageBarButton", - "loc": "9:0-52" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./MessageBarButton/MessageBarButton", - "loc": "9:0-52" - } - ], - "usedExports": false, - "providedExports": [ - "MessageBarButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { DefaultButton } from '../DefaultButton/DefaultButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './MessageBarButton.styles';\n/**\n * {@docCategory MessageBar}\n */\nvar MessageBarButton = /** @class */ (function (_super) {\n __extends(MessageBarButton, _super);\n function MessageBarButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n MessageBarButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return React.createElement(DefaultButton, __assign({}, this.props, { styles: getStyles(theme, styles), onRenderDescription: nullRender }));\n };\n MessageBarButton = __decorate([\n customizable('MessageBarButton', ['theme', 'styles'], true)\n ], MessageBarButton);\n return MessageBarButton;\n}(React.Component));\nexport { MessageBarButton };\n//# sourceMappingURL=MessageBarButton.js.map" - }, - { - "id": "S/Ex", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js efdad6ef20930d716e79e45a0ef73142", - "name": "./node_modules/@uifabric/set-version/lib/index.js + 1 modules", - "index": 100, - "index2": 85, - "size": 1167, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HSFb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "HSFb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Mg3H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "module": "./node_modules/@uifabric/icons/lib/version.js", - "moduleName": "./node_modules/@uifabric/icons/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "Mg3H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "module": "./node_modules/@uifabric/icons/lib/version.js", - "moduleName": "./node_modules/@uifabric/icons/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Qh3U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "module": "./node_modules/@uifabric/foundation/lib/version.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "Qh3U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "module": "./node_modules/@uifabric/foundation/lib/version.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "TL5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "TL5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "eRMf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "eRMf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "gx47", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/version.js", - "module": "./node_modules/@uifabric/react-hooks/lib/version.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "gx47", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/version.js", - "module": "./node_modules/@uifabric/react-hooks/lib/version.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "oRrG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/version.js", - "module": "./node_modules/@fluentui/react-focus/lib/version.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "oRrG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/version.js", - "module": "./node_modules/@fluentui/react-focus/lib/version.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - } - ], - "usedExports": [ - "setVersion" - ], - "providedExports": [ - "setVersion" - ], - "optimizationBailout": [], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "name": "./node_modules/@uifabric/set-version/lib/index.js", - "index": 100, - "index2": 85, - "size": 145, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "issuerId": "HSFb", - "issuerName": "./node_modules/office-ui-fabric-react/lib/version.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "HSFb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "name": "./node_modules/office-ui-fabric-react/lib/version.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HSFb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "HSFb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Mg3H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "module": "./node_modules/@uifabric/icons/lib/version.js", - "moduleName": "./node_modules/@uifabric/icons/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "Mg3H", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/version.js", - "module": "./node_modules/@uifabric/icons/lib/version.js", - "moduleName": "./node_modules/@uifabric/icons/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Qh3U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "module": "./node_modules/@uifabric/foundation/lib/version.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "Qh3U", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/foundation/lib/version.js", - "module": "./node_modules/@uifabric/foundation/lib/version.js", - "moduleName": "./node_modules/@uifabric/foundation/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "TL5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "TL5K", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "eRMf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "eRMf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "gx47", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/version.js", - "module": "./node_modules/@uifabric/react-hooks/lib/version.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "gx47", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/version.js", - "module": "./node_modules/@uifabric/react-hooks/lib/version.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "oRrG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/version.js", - "module": "./node_modules/@fluentui/react-focus/lib/version.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/version.js", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "oRrG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/version.js", - "module": "./node_modules/@fluentui/react-focus/lib/version.js", - "moduleName": "./node_modules/@fluentui/react-focus/lib/version.js", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "@uifabric/set-version", - "loc": "3:0-51" - }, - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony import specifier", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - } - ], - "usedExports": [ - "setVersion" - ], - "providedExports": [ - "setVersion" - ], - "optimizationBailout": [], - "depth": 4, - "source": "import { setVersion } from './setVersion';\nexport { setVersion };\nsetVersion('@uifabric/set-version', '6.0.0');\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/setVersion.js", - "name": "./node_modules/@uifabric/set-version/lib/setVersion.js", - "index": 101, - "index2": 84, - "size": 1022, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "issuerId": null, - "issuerName": "./node_modules/@uifabric/set-version/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "HSFb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/version.js", - "name": "./node_modules/office-ui-fabric-react/lib/version.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "name": "./node_modules/@uifabric/set-version/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setVersion", - "loc": "1:0-42" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setVersion", - "loc": "2:0-22" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./setVersion", - "loc": "3:0-10" - } - ], - "usedExports": [ - "setVersion" - ], - "providedExports": [ - "setVersion" - ], - "optimizationBailout": [], - "depth": 5, - "source": "// A packages cache that makes sure that we don't inject the same packageName twice in the same bundle -\n// this cache is local to the module closure inside this bundle\nvar packagesCache = {};\n// Cache access to window to avoid IE11 memory leak.\nvar _win = undefined;\ntry {\n _win = window;\n}\ncatch (e) {\n /* no-op */\n}\nexport function setVersion(packageName, packageVersion) {\n if (typeof _win !== 'undefined') {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var packages = (_win.__packages__ = _win.__packages__ || {});\n // We allow either the global packages or local packages caches to invalidate so testing can\n // just clear the global to set this state\n if (!packages[packageName] || !packagesCache[packageName]) {\n packagesCache[packageName] = packageVersion;\n var versions = (packages[packageName] = packages[packageName] || []);\n versions.push(packageVersion);\n }\n }\n}\n//# sourceMappingURL=setVersion.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "index": null, - "index2": null, - "size": 736, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "issuerId": "cLrF", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Color.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "cLrF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "module": "./node_modules/office-ui-fabric-react/lib/Color.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Color.js", - "type": "harmony side effect evaluation", - "userRequest": "./utilities/color/index", - "loc": "1:0-40" - }, - { - "moduleId": "cLrF", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "module": "./node_modules/office-ui-fabric-react/lib/Color.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Color.js", - "type": "harmony export imported specifier", - "userRequest": "./utilities/color/index", - "loc": "1:0-40" - } - ], - "usedExports": false, - "providedExports": [ - "MAX_COLOR_SATURATION", - "MAX_COLOR_HUE", - "MAX_COLOR_VALUE", - "MAX_COLOR_RGB", - "MAX_COLOR_RGBA", - "MAX_COLOR_ALPHA", - "MIN_HEX_LENGTH", - "MAX_HEX_LENGTH", - "MIN_RGBA_LENGTH", - "MAX_RGBA_LENGTH", - "HEX_REGEX", - "RGBA_REGEX", - "cssColor", - "rgb2hex", - "clamp", - "hsl2rgb", - "hsl2hsv", - "hsv2rgb", - "hsv2hex", - "rgb2hsv", - "hsv2hsl", - "getColorFromString", - "getColorFromRGBA", - "getColorFromHSV", - "getFullColorString", - "updateSV", - "updateH", - "updateRGB", - "updateA", - "correctRGB", - "correctHSV", - "correctHex", - "Shade", - "isValidShade", - "isDark", - "getShade", - "getBackgroundShade", - "getContrastRatio", - "updateT" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './colors';\nexport * from './shades';\nexport * from './consts';\nexport * from './cssColor';\nexport * from './rgb2hex';\nexport * from './clamp';\nexport * from './hsl2rgb';\nexport * from './hsl2hsv';\nexport * from './hsv2rgb';\nexport * from './hsv2hex';\nexport * from './rgb2hsv';\nexport * from './hsv2hsl';\nexport * from './getColorFromString';\nexport * from './getColorFromRGBA';\nexport * from './getColorFromHSV';\nexport * from './getFullColorString';\nexport * from './updateSV';\nexport * from './updateH';\nexport * from './updateRGB';\nexport * from './getColorFromString';\nexport * from './updateA';\nexport * from './updateT';\nexport * from './correctRGB';\nexport * from './correctHSV';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "S7Xf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseUnset.js", - "name": "./node_modules/lodash/_baseUnset.js", - "index": 553, - "index2": 560, - "size": 580, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "issuerId": "Puqe", - "issuerName": "./node_modules/lodash/omit.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Puqe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "module": "./node_modules/lodash/omit.js", - "moduleName": "./node_modules/lodash/omit.js", - "type": "cjs require", - "userRequest": "./_baseUnset", - "loc": "3:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var castPath = require('./_castPath'),\n last = require('./last'),\n parent = require('./_parent'),\n toKey = require('./_toKey');\n\n/**\n * The base implementation of `_.unset`.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {Array|string} path The property path to unset.\n * @returns {boolean} Returns `true` if the property is deleted, else `false`.\n */\nfunction baseUnset(object, path) {\n path = castPath(path, object);\n object = parent(object, path);\n return object == null || delete object[toKey(last(path))];\n}\n\nmodule.exports = baseUnset;\n" - }, - { - "id": "SADo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "name": "./node_modules/@uifabric/utilities/lib/dom/getChildren.js", - "index": null, - "index2": null, - "size": 94, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "issuerId": "4aJh", - "issuerName": "./node_modules/@uifabric/utilities/lib/dom.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - }, - { - "id": "4aJh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "name": "./node_modules/@uifabric/utilities/lib/dom.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony side effect evaluation", - "userRequest": "./dom/getChildren", - "loc": "4:0-34" - }, - { - "moduleId": "4aJh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/dom.js", - "module": "./node_modules/@uifabric/utilities/lib/dom.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/dom.js", - "type": "harmony export imported specifier", - "userRequest": "./dom/getChildren", - "loc": "4:0-34" - } - ], - "usedExports": false, - "providedExports": [ - "getChildren" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "export { getChildren } from '@fluentui/dom-utilities';\n//# sourceMappingURL=getChildren.js.map" - }, - { - "id": "SC5K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.css", - "index": 440, - "index2": 436, - "size": 574, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/IFrameDialog.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/iFrameDialog/IFrameDialogContent.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "cjs require", - "userRequest": "./IFrameDialogContent.module.css", - "loc": "2:0-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./IFrameDialogContent.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "SJpl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/PositioningContainer.js", - "index": null, - "index2": null, - "size": 15677, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "issuerId": "qug9", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "yI02", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/Coachmark.js" - }, - { - "id": "bATe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js" - }, - { - "id": "y19T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js" - }, - { - "id": "Sbs+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js" - }, - { - "id": "qug9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Sbs+", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "./PositioningContainer/index", - "loc": "226:36-56" - }, - { - "moduleId": "qug9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PositioningContainer", - "loc": "1:0-39" - }, - { - "moduleId": "qug9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PositioningContainer", - "loc": "1:0-39" - } - ], - "usedExports": false, - "providedExports": [ - "PositioningContainer" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "var _a;\nimport { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { getClassNames } from './PositioningContainer.styles';\nimport { Layer } from '../../../Layer';\n// Utilites/Helpers\nimport { DirectionalHint } from '../../../common/DirectionalHint';\nimport { css, elementContains, focusFirstChild, getWindow, getDocument, initializeComponentRef, Async, EventGroup, } from '../../../Utilities';\nimport { getMaxHeight, positionElement, RectangleEdge, } from '../../../utilities/positioning';\nimport { AnimationClassNames, mergeStyles } from '../../../Styling';\nvar OFF_SCREEN_STYLE = { opacity: 0 };\n// In order for some of the max height logic to work\n// properly we need to set the border.\n// The value is abitrary.\nvar BORDER_WIDTH = 1;\nvar SLIDE_ANIMATIONS = (_a = {},\n _a[RectangleEdge.top] = 'slideUpIn20',\n _a[RectangleEdge.bottom] = 'slideDownIn20',\n _a[RectangleEdge.left] = 'slideLeftIn20',\n _a[RectangleEdge.right] = 'slideRightIn20',\n _a);\nvar PositioningContainer = /** @class */ (function (_super) {\n __extends(PositioningContainer, _super);\n function PositioningContainer(props) {\n var _this = _super.call(this, props) || this;\n /**\n * The primary positioned div.\n */\n _this._positionedHost = React.createRef();\n // @TODO rename to reflect the name of this class\n _this._contentHost = React.createRef();\n /**\n * Deprecated, use `onResize` instead.\n * @deprecated Use `onResize` instead.\n */\n _this.dismiss = function (ev) {\n _this.onResize(ev);\n };\n _this.onResize = function (ev) {\n var onDismiss = _this.props.onDismiss;\n if (onDismiss) {\n onDismiss(ev);\n }\n else {\n _this._updateAsyncPosition();\n }\n };\n _this._setInitialFocus = function () {\n if (_this._contentHost.current && _this.props.setInitialFocus && !_this._didSetInitialFocus && _this.state.positions) {\n _this._didSetInitialFocus = true;\n focusFirstChild(_this._contentHost.current);\n }\n };\n _this._onComponentDidMount = function () {\n // This is added so the positioningContainer will dismiss when the window is scrolled\n // but not when something inside the positioningContainer is scrolled. The delay seems\n // to be required to avoid React firing an async focus event in IE from\n // the target changing focus quickly prior to rendering the positioningContainer.\n _this._async.setTimeout(function () {\n _this._events.on(_this._targetWindow, 'scroll', _this._async.throttle(_this._dismissOnScroll, 10), true);\n _this._events.on(_this._targetWindow, 'resize', _this._async.throttle(_this.onResize, 10), true);\n _this._events.on(_this._targetWindow.document.body, 'focus', _this._dismissOnLostFocus, true);\n _this._events.on(_this._targetWindow.document.body, 'click', _this._dismissOnLostFocus, true);\n }, 0);\n if (_this.props.onLayerMounted) {\n _this.props.onLayerMounted();\n }\n _this._updateAsyncPosition();\n _this._setHeightOffsetEveryFrame();\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n _this._didSetInitialFocus = false;\n _this.state = {\n positions: undefined,\n heightOffset: 0,\n };\n _this._positionAttempts = 0;\n return _this;\n }\n PositioningContainer.prototype.UNSAFE_componentWillMount = function () {\n this._setTargetWindowAndElement(this._getTarget());\n };\n PositioningContainer.prototype.componentDidMount = function () {\n this._onComponentDidMount();\n };\n PositioningContainer.prototype.componentDidUpdate = function () {\n this._setInitialFocus();\n this._updateAsyncPosition();\n };\n PositioningContainer.prototype.UNSAFE_componentWillUpdate = function (newProps) {\n // If the target element changed, find the new one. If we are tracking\n // target with class name, always find element because we do not know if\n // fabric has rendered a new element and disposed the old element.\n var newTarget = this._getTarget(newProps);\n var oldTarget = this._getTarget();\n if (newTarget !== oldTarget || typeof newTarget === 'string' || newTarget instanceof String) {\n this._maxHeight = undefined;\n this._setTargetWindowAndElement(newTarget);\n }\n if (newProps.offsetFromTarget !== this.props.offsetFromTarget) {\n this._maxHeight = undefined;\n }\n if (newProps.finalHeight !== this.props.finalHeight) {\n this._setHeightOffsetEveryFrame();\n }\n };\n PositioningContainer.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n PositioningContainer.prototype.render = function () {\n // If there is no target window then we are likely in server side rendering and we should not render anything.\n if (!this._targetWindow) {\n return null;\n }\n var _a = this.props, className = _a.className, positioningContainerWidth = _a.positioningContainerWidth, positioningContainerMaxHeight = _a.positioningContainerMaxHeight, children = _a.children;\n var positions = this.state.positions;\n var styles = getClassNames();\n var directionalClassName = positions && positions.targetEdge ? AnimationClassNames[SLIDE_ANIMATIONS[positions.targetEdge]] : '';\n var getContentMaxHeight = this._getMaxHeight() + this.state.heightOffset;\n var contentMaxHeight = positioningContainerMaxHeight && positioningContainerMaxHeight > getContentMaxHeight\n ? getContentMaxHeight\n : positioningContainerMaxHeight;\n var content = (React.createElement(\"div\", { ref: this._positionedHost, className: css('ms-PositioningContainer', styles.container) },\n React.createElement(\"div\", { className: mergeStyles('ms-PositioningContainer-layerHost', styles.root, className, directionalClassName, !!positioningContainerWidth && { width: positioningContainerWidth }), style: positions ? positions.elementPosition : OFF_SCREEN_STYLE, \n // Safari and Firefox on Mac OS requires this to back-stop click events so focus remains in the Callout.\n // See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Clicking_and_focus\n tabIndex: -1, ref: this._contentHost },\n children,\n // @TODO apply to the content container\n contentMaxHeight)));\n return this.props.doNotLayer ? content : React.createElement(Layer, null, content);\n };\n PositioningContainer.prototype._dismissOnScroll = function (ev) {\n var preventDismissOnScroll = this.props.preventDismissOnScroll;\n if (this.state.positions && !preventDismissOnScroll) {\n this._dismissOnLostFocus(ev);\n }\n };\n PositioningContainer.prototype._dismissOnLostFocus = function (ev) {\n var target = ev.target;\n var clickedOutsideCallout = this._positionedHost.current && !elementContains(this._positionedHost.current, target);\n if ((!this._target && clickedOutsideCallout) ||\n (ev.target !== this._targetWindow &&\n clickedOutsideCallout &&\n (this._target.stopPropagation ||\n !this._target ||\n (target !== this._target && !elementContains(this._target, target))))) {\n this.onResize(ev);\n }\n };\n PositioningContainer.prototype._updateAsyncPosition = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () { return _this._updatePosition(); });\n };\n PositioningContainer.prototype._updatePosition = function () {\n var positions = this.state.positions;\n var _a = this.props, offsetFromTarget = _a.offsetFromTarget, onPositioned = _a.onPositioned;\n var hostElement = this._positionedHost.current;\n var positioningContainerElement = this._contentHost.current;\n if (hostElement && positioningContainerElement) {\n var currentProps = __assign({}, this.props);\n currentProps.bounds = this._getBounds();\n currentProps.target = this._target;\n if (document.body.contains(currentProps.target)) {\n currentProps.gapSpace = offsetFromTarget;\n var newPositions_1 = positionElement(currentProps, hostElement, positioningContainerElement);\n // Set the new position only when the positions are not exists or one of the new positioningContainer positions\n // are different. The position should not change if the position is within 2 decimal places.\n if ((!positions && newPositions_1) ||\n (positions && newPositions_1 && !this._arePositionsEqual(positions, newPositions_1) && this._positionAttempts < 5)) {\n // We should not reposition the positioningContainer more than a few times, if it is then the content is\n // likely resizing and we should stop trying to reposition to prevent a stack overflow.\n this._positionAttempts++;\n this.setState({\n positions: newPositions_1,\n }, function () {\n if (onPositioned) {\n onPositioned(newPositions_1);\n }\n });\n }\n else {\n this._positionAttempts = 0;\n if (onPositioned) {\n onPositioned(newPositions_1);\n }\n }\n }\n else if (positions !== undefined) {\n this.setState({\n positions: undefined,\n });\n }\n }\n };\n PositioningContainer.prototype._getBounds = function () {\n if (!this._positioningBounds) {\n var currentBounds = this.props.bounds;\n if (!currentBounds) {\n currentBounds = {\n top: 0 + this.props.minPagePadding,\n left: 0 + this.props.minPagePadding,\n right: this._targetWindow.innerWidth - this.props.minPagePadding,\n bottom: this._targetWindow.innerHeight - this.props.minPagePadding,\n width: this._targetWindow.innerWidth - this.props.minPagePadding * 2,\n height: this._targetWindow.innerHeight - this.props.minPagePadding * 2,\n };\n }\n this._positioningBounds = currentBounds;\n }\n return this._positioningBounds;\n };\n /**\n * Return the maximum height the container can grow to\n * without going out of the specified bounds\n */\n PositioningContainer.prototype._getMaxHeight = function () {\n var _a = this.props, directionalHintFixed = _a.directionalHintFixed, offsetFromTarget = _a.offsetFromTarget, directionalHint = _a.directionalHint;\n if (!this._maxHeight) {\n if (directionalHintFixed && this._target) {\n var gapSpace = offsetFromTarget ? offsetFromTarget : 0;\n this._maxHeight = getMaxHeight(this._target, directionalHint, gapSpace, this._getBounds());\n }\n else {\n this._maxHeight = this._getBounds().height - BORDER_WIDTH * 2;\n }\n }\n return this._maxHeight;\n };\n PositioningContainer.prototype._arePositionsEqual = function (positions, newPosition) {\n return this._comparePositions(positions.elementPosition, newPosition.elementPosition);\n };\n PositioningContainer.prototype._comparePositions = function (oldPositions, newPositions) {\n for (var key in newPositions) {\n if (newPositions.hasOwnProperty(key)) {\n var oldPositionEdge = oldPositions[key];\n var newPositionEdge = newPositions[key];\n if (oldPositionEdge && newPositionEdge) {\n if (oldPositionEdge.toFixed(2) !== newPositionEdge.toFixed(2)) {\n return false;\n }\n }\n }\n }\n return true;\n };\n PositioningContainer.prototype._setTargetWindowAndElement = function (target) {\n var currentElement = this._positionedHost.current;\n if (target) {\n if (typeof target === 'string') {\n var currentDoc = getDocument();\n this._target = currentDoc ? currentDoc.querySelector(target) : null;\n this._targetWindow = getWindow(currentElement);\n // Cast to any prevents error about stopPropagation always existing\n }\n else if (target.stopPropagation) {\n this._targetWindow = getWindow(target.target);\n this._target = target;\n }\n else if (\n // eslint-disable-next-line deprecation/deprecation\n (target.left !== undefined || target.x !== undefined) &&\n // eslint-disable-next-line deprecation/deprecation\n (target.top !== undefined || target.y !== undefined)) {\n this._targetWindow = getWindow(currentElement);\n this._target = target;\n }\n else {\n var targetElement = target;\n this._targetWindow = getWindow(targetElement);\n this._target = target;\n }\n }\n else {\n this._targetWindow = getWindow(currentElement);\n }\n };\n /**\n * Animates the height if finalHeight was given.\n */\n PositioningContainer.prototype._setHeightOffsetEveryFrame = function () {\n var _this = this;\n if (this._contentHost && this.props.finalHeight) {\n this._setHeightOffsetTimer = this._async.requestAnimationFrame(function () {\n if (!_this._contentHost.current) {\n return;\n }\n var positioningContainerMainElem = _this._contentHost.current.lastChild;\n var cardScrollHeight = positioningContainerMainElem.scrollHeight;\n var cardCurrHeight = positioningContainerMainElem.offsetHeight;\n var scrollDiff = cardScrollHeight - cardCurrHeight;\n _this.setState({\n heightOffset: _this.state.heightOffset + scrollDiff,\n });\n if (positioningContainerMainElem.offsetHeight < _this.props.finalHeight) {\n _this._setHeightOffsetEveryFrame();\n }\n else {\n _this._async.cancelAnimationFrame(_this._setHeightOffsetTimer);\n }\n });\n }\n };\n PositioningContainer.prototype._getTarget = function (props) {\n if (props === void 0) { props = this.props; }\n var target = props.target;\n return target;\n };\n PositioningContainer.defaultProps = {\n preventDismissOnScroll: false,\n offsetFromTarget: 0,\n minPagePadding: 8,\n directionalHint: DirectionalHint.bottomAutoEdge,\n };\n return PositioningContainer;\n}(React.Component));\nexport { PositioningContainer };\n//# sourceMappingURL=PositioningContainer.js.map" - }, - { - "id": "SNcU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js", - "index": null, - "index2": null, - "size": 1403, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "issuerId": "0a3e", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "GiGj", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ActivityItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/ActivityItem.js" - }, - { - "id": "/oVv", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js" - }, - { - "id": "0a3e", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony side effect evaluation", - "userRequest": "./ActivityItem.classNames", - "loc": "3:0-58" - }, - { - "moduleId": "0a3e", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js", - "type": "harmony import specifier", - "userRequest": "./ActivityItem.classNames", - "loc": "90:15-28" - } - ], - "usedExports": false, - "providedExports": [ - "getClassNames" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { mergeStyles } from '../../Styling';\nimport { memoizeFunction } from '../../Utilities';\nexport var getClassNames = memoizeFunction(function (styles, className, activityPersonas, isCompact) {\n return {\n root: mergeStyles('ms-ActivityItem', className, styles.root, isCompact && styles.isCompactRoot),\n pulsingBeacon: mergeStyles('ms-ActivityItem-pulsingBeacon', styles.pulsingBeacon),\n personaContainer: mergeStyles('ms-ActivityItem-personaContainer', styles.personaContainer, isCompact && styles.isCompactPersonaContainer),\n activityPersona: mergeStyles('ms-ActivityItem-activityPersona', styles.activityPersona, isCompact && styles.isCompactPersona, !isCompact && activityPersonas && activityPersonas.length === 2 && styles.doublePersona),\n activityTypeIcon: mergeStyles('ms-ActivityItem-activityTypeIcon', styles.activityTypeIcon, isCompact && styles.isCompactIcon),\n activityContent: mergeStyles('ms-ActivityItem-activityContent', styles.activityContent, isCompact && styles.isCompactContent),\n activityText: mergeStyles('ms-ActivityItem-activityText', styles.activityText),\n commentText: mergeStyles('ms-ActivityItem-commentText', styles.commentText),\n timeStamp: mergeStyles('ms-ActivityItem-timeStamp', styles.timeStamp, isCompact && styles.isCompactTimeStamp),\n };\n});\n//# sourceMappingURL=ActivityItem.classNames.js.map" - }, - { - "id": "Sbs+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.base.js", - "index": null, - "index2": null, - "size": 21427, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "issuerId": "y19T", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "yI02", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/Coachmark.js" - }, - { - "id": "bATe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js" - }, - { - "id": "y19T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "bATe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Coachmark.base", - "loc": "2:0-33" - }, - { - "moduleId": "bATe", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Coachmark.base", - "loc": "2:0-33" - }, - { - "moduleId": "y19T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "type": "harmony side effect evaluation", - "userRequest": "./Coachmark.base", - "loc": "3:0-49" - }, - { - "moduleId": "y19T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Coachmark/Coachmark.js", - "type": "harmony import specifier", - "userRequest": "./Coachmark.base", - "loc": "4:30-43" - } - ], - "usedExports": false, - "providedExports": [ - "COACHMARK_ATTRIBUTE_NAME", - "CoachmarkBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\n// Utilities\nimport * as React from 'react';\nimport { classNamesFunction, elementContains, focusFirstChild, getDocument, KeyCodes, shallowCompare, getRTL, warnDeprecations, EventGroup, Async, initializeComponentRef, } from '../../Utilities';\nimport { RectangleEdge, getOppositeEdge } from '../../utilities/positioning';\n// Component Dependencies\nimport { PositioningContainer } from './PositioningContainer/index';\nimport { Beak, BEAK_HEIGHT, BEAK_WIDTH } from './Beak/Beak';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { COACHMARK_HEIGHT, COACHMARK_WIDTH } from './Coachmark.styles';\nimport { FocusTrapZone } from '../../FocusTrapZone';\nvar getClassNames = classNamesFunction();\nexport var COACHMARK_ATTRIBUTE_NAME = 'data-coachmarkid';\nvar COMPONENT_NAME = 'Coachmark';\nvar CoachmarkBase = /** @class */ (function (_super) {\n __extends(CoachmarkBase, _super);\n function CoachmarkBase(props) {\n var _this = _super.call(this, props) || this;\n /**\n * The cached HTMLElement reference to the Entity Inner Host\n * element.\n */\n _this._entityHost = React.createRef();\n _this._entityInnerHostElement = React.createRef();\n _this._translateAnimationContainer = React.createRef();\n _this._ariaAlertContainer = React.createRef();\n _this._childrenContainer = React.createRef();\n _this._positioningContainer = React.createRef();\n _this.dismiss = function (ev) {\n var onDismiss = _this.props.onDismiss;\n if (onDismiss) {\n onDismiss(ev);\n }\n };\n _this._onKeyDown = function (e) {\n // Open coachmark if user presses ALT + C (arbitrary keypress for now)\n if ((e.altKey && e.which === KeyCodes.c) ||\n (e.which === KeyCodes.enter &&\n _this._translateAnimationContainer.current &&\n _this._translateAnimationContainer.current.contains(e.target))) {\n _this._onFocusHandler();\n }\n };\n _this._onFocusHandler = function () {\n if (_this.state.isCollapsed) {\n _this._openCoachmark();\n }\n };\n _this._onPositioned = function (positionData) {\n _this._async.requestAnimationFrame(function () {\n _this.setState({\n targetAlignment: positionData.alignmentEdge,\n targetPosition: positionData.targetEdge,\n });\n });\n };\n _this._setBeakPosition = function () {\n var beakLeft;\n var beakTop;\n var beakRight;\n var beakBottom;\n var transformOriginX;\n var transformOriginY;\n var targetAlignment = _this.state.targetAlignment;\n var distanceAdjustment = '3px'; // Adjustment distance for Beak to shift towards Coachmark bubble.\n switch (_this._beakDirection) {\n // If Beak is pointing Up or Down\n case RectangleEdge.top:\n case RectangleEdge.bottom:\n // If there is no target alignment, then beak is X-axis centered in callout\n if (!targetAlignment) {\n beakLeft = \"calc(50% - \" + BEAK_WIDTH / 2 + \"px)\";\n transformOriginX = 'center';\n }\n else {\n // Beak is aligned to the left of target\n if (targetAlignment === RectangleEdge.left) {\n beakLeft = COACHMARK_WIDTH / 2 - BEAK_WIDTH / 2 + \"px\";\n transformOriginX = 'left';\n }\n else {\n // Beak is aligned to the right of target\n beakRight = COACHMARK_WIDTH / 2 - BEAK_WIDTH / 2 + \"px\";\n transformOriginX = 'right';\n }\n }\n if (_this._beakDirection === RectangleEdge.top) {\n beakTop = distanceAdjustment;\n transformOriginY = 'top';\n }\n else {\n beakBottom = distanceAdjustment;\n transformOriginY = 'bottom';\n }\n break;\n // If Beak is pointing Left or Right\n case RectangleEdge.left:\n case RectangleEdge.right:\n // If there is no target alignment, then beak is Y-axis centered in callout\n if (!targetAlignment) {\n beakTop = \"calc(50% - \" + BEAK_WIDTH / 2 + \"px)\";\n transformOriginY = \"center\";\n }\n else {\n // Beak is aligned to the top of target\n if (targetAlignment === RectangleEdge.top) {\n beakTop = COACHMARK_WIDTH / 2 - BEAK_WIDTH / 2 + \"px\";\n transformOriginY = \"top\";\n }\n else {\n // Beak is aligned to the bottom of target\n beakBottom = COACHMARK_WIDTH / 2 - BEAK_WIDTH / 2 + \"px\";\n transformOriginY = \"bottom\";\n }\n }\n if (_this._beakDirection === RectangleEdge.left) {\n if (getRTL(_this.props.theme)) {\n beakRight = distanceAdjustment;\n }\n else {\n beakLeft = distanceAdjustment;\n }\n transformOriginX = 'left';\n }\n else {\n if (getRTL(_this.props.theme)) {\n beakLeft = distanceAdjustment;\n }\n else {\n beakRight = distanceAdjustment;\n }\n transformOriginX = 'right';\n }\n break;\n }\n _this.setState({\n beakLeft: beakLeft,\n beakRight: beakRight,\n beakBottom: beakBottom,\n beakTop: beakTop,\n transformOrigin: transformOriginX + \" \" + transformOriginY,\n });\n };\n _this._openCoachmark = function () {\n _this.setState({\n isCollapsed: false,\n });\n if (_this.props.onAnimationOpenStart) {\n _this.props.onAnimationOpenStart();\n }\n _this._entityInnerHostElement.current &&\n _this._entityInnerHostElement.current.addEventListener('transitionend', function () {\n // Need setTimeout to trigger narrator\n _this._async.setTimeout(function () {\n if (_this._entityInnerHostElement.current) {\n focusFirstChild(_this._entityInnerHostElement.current);\n }\n }, 1000);\n if (_this.props.onAnimationOpenEnd) {\n _this.props.onAnimationOpenEnd();\n }\n });\n };\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n initializeComponentRef(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n teachingBubbleRef: undefined,\n collapsed: 'isCollapsed',\n beakWidth: undefined,\n beakHeight: undefined,\n width: undefined,\n height: undefined,\n });\n // Set defaults for state\n _this.state = {\n isCollapsed: props.isCollapsed,\n isBeaconAnimating: true,\n isMeasuring: true,\n entityInnerHostRect: {\n width: 0,\n height: 0,\n },\n isMouseInProximity: false,\n isMeasured: false,\n };\n return _this;\n }\n Object.defineProperty(CoachmarkBase.prototype, \"_beakDirection\", {\n get: function () {\n var targetPosition = this.state.targetPosition;\n if (targetPosition === undefined) {\n return RectangleEdge.bottom;\n }\n return getOppositeEdge(targetPosition);\n },\n enumerable: true,\n configurable: true\n });\n CoachmarkBase.prototype.render = function () {\n var _a = this.props, beaconColorOne = _a.beaconColorOne, beaconColorTwo = _a.beaconColorTwo, children = _a.children, target = _a.target, color = _a.color, positioningContainerProps = _a.positioningContainerProps, ariaDescribedBy = _a.ariaDescribedBy, ariaDescribedByText = _a.ariaDescribedByText, ariaLabelledBy = _a.ariaLabelledBy, ariaLabelledByText = _a.ariaLabelledByText, ariaAlertText = _a.ariaAlertText, delayBeforeCoachmarkAnimation = _a.delayBeforeCoachmarkAnimation, styles = _a.styles, theme = _a.theme, className = _a.className, persistentBeak = _a.persistentBeak;\n var _b = this.state, beakLeft = _b.beakLeft, beakTop = _b.beakTop, beakRight = _b.beakRight, beakBottom = _b.beakBottom, isCollapsed = _b.isCollapsed, isBeaconAnimating = _b.isBeaconAnimating, isMeasuring = _b.isMeasuring, entityInnerHostRect = _b.entityInnerHostRect, transformOrigin = _b.transformOrigin, alertText = _b.alertText, isMeasured = _b.isMeasured;\n // Defaulting the main background before passing it to the styles because it is used for `Beak` too.\n var defaultColor = color;\n if (!defaultColor && theme) {\n defaultColor = theme.semanticColors.primaryButtonBackground;\n }\n var classNames = getClassNames(styles, {\n theme: theme,\n beaconColorOne: beaconColorOne,\n beaconColorTwo: beaconColorTwo,\n className: className,\n isCollapsed: isCollapsed,\n isBeaconAnimating: isBeaconAnimating,\n isMeasuring: isMeasuring,\n color: defaultColor,\n transformOrigin: transformOrigin,\n isMeasured: isMeasured,\n entityHostHeight: entityInnerHostRect.height + \"px\",\n entityHostWidth: entityInnerHostRect.width + \"px\",\n width: COACHMARK_WIDTH + \"px\",\n height: COACHMARK_HEIGHT + \"px\",\n delayBeforeCoachmarkAnimation: delayBeforeCoachmarkAnimation + \"ms\",\n });\n var finalHeight = isCollapsed ? COACHMARK_HEIGHT : entityInnerHostRect.height;\n return (React.createElement(PositioningContainer, __assign({ target: target, offsetFromTarget: BEAK_HEIGHT, componentRef: this._positioningContainer, finalHeight: finalHeight, onPositioned: this._onPositioned, bounds: this._getBounds() }, positioningContainerProps),\n React.createElement(\"div\", { className: classNames.root },\n ariaAlertText && (React.createElement(\"div\", { className: classNames.ariaContainer, role: \"alert\", ref: this._ariaAlertContainer, \"aria-hidden\": !isCollapsed }, alertText)),\n React.createElement(\"div\", { className: classNames.pulsingBeacon }),\n React.createElement(\"div\", { className: classNames.translateAnimationContainer, ref: this._translateAnimationContainer },\n React.createElement(\"div\", { className: classNames.scaleAnimationLayer },\n React.createElement(\"div\", { className: classNames.rotateAnimationLayer },\n this._positioningContainer.current && (isCollapsed || persistentBeak) && (React.createElement(Beak, { left: beakLeft, top: beakTop, right: beakRight, bottom: beakBottom, direction: this._beakDirection, color: defaultColor })),\n React.createElement(\"div\", { className: classNames.entityHost, ref: this._entityHost, tabIndex: -1, \"data-is-focusable\": true, role: \"dialog\", \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy },\n isCollapsed && [\n ariaLabelledBy && (React.createElement(\"p\", { id: ariaLabelledBy, key: 0, className: classNames.ariaContainer }, ariaLabelledByText)),\n ariaDescribedBy && (React.createElement(\"p\", { id: ariaDescribedBy, key: 1, className: classNames.ariaContainer }, ariaDescribedByText)),\n ],\n React.createElement(FocusTrapZone, { isClickableOutsideFocusTrap: true, forceFocusInsideTrap: false },\n React.createElement(\"div\", { className: classNames.entityInnerHost, ref: this._entityInnerHostElement },\n React.createElement(\"div\", { className: classNames.childrenContainer, ref: this._childrenContainer, \"aria-hidden\": isCollapsed }, children))))))))));\n };\n CoachmarkBase.prototype.UNSAFE_componentWillReceiveProps = function (newProps) {\n if (this.props.isCollapsed && !newProps.isCollapsed) {\n // The coachmark is about to open\n this._openCoachmark();\n }\n };\n CoachmarkBase.prototype.shouldComponentUpdate = function (newProps, newState) {\n return !shallowCompare(newProps, this.props) || !shallowCompare(newState, this.state);\n };\n CoachmarkBase.prototype.componentDidUpdate = function (prevProps, prevState) {\n if (prevState.targetAlignment !== this.state.targetAlignment ||\n prevState.targetPosition !== this.state.targetPosition) {\n this._setBeakPosition();\n }\n if (prevProps.preventDismissOnLostFocus !== this.props.preventDismissOnLostFocus) {\n this._addListeners();\n }\n };\n CoachmarkBase.prototype.componentDidMount = function () {\n var _this = this;\n this._async.requestAnimationFrame(function () {\n if (_this._entityInnerHostElement.current &&\n _this.state.entityInnerHostRect.width + _this.state.entityInnerHostRect.width === 0) {\n _this.setState({\n isMeasuring: false,\n entityInnerHostRect: {\n width: _this._entityInnerHostElement.current.offsetWidth,\n height: _this._entityInnerHostElement.current.offsetHeight,\n },\n isMeasured: true,\n });\n _this._setBeakPosition();\n _this.forceUpdate();\n }\n _this._addListeners();\n // We don't want to the user to immediately trigger the Coachmark when it's opened\n _this._async.setTimeout(function () {\n _this._addProximityHandler(_this.props.mouseProximityOffset);\n }, _this.props.delayBeforeMouseOpen);\n // Need to add setTimeout to have narrator read change in alert container\n if (_this.props.ariaAlertText) {\n _this._async.setTimeout(function () {\n if (_this.props.ariaAlertText && _this._ariaAlertContainer.current) {\n _this.setState({\n alertText: _this.props.ariaAlertText,\n });\n }\n }, 0);\n }\n if (!_this.props.preventFocusOnMount) {\n _this._async.setTimeout(function () {\n if (_this._entityHost.current) {\n _this._entityHost.current.focus();\n }\n }, 1000);\n }\n });\n };\n CoachmarkBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n CoachmarkBase.prototype._addListeners = function () {\n var preventDismissOnLostFocus = this.props.preventDismissOnLostFocus;\n var currentDoc = getDocument();\n this._events.off();\n if (currentDoc) {\n this._events.on(currentDoc, 'keydown', this._onKeyDown, true);\n if (!preventDismissOnLostFocus) {\n this._events.on(currentDoc, 'click', this._dismissOnLostFocus, true);\n this._events.on(currentDoc, 'focus', this._dismissOnLostFocus, true);\n }\n }\n };\n CoachmarkBase.prototype._dismissOnLostFocus = function (ev) {\n var clickTarget = ev.target;\n var clickedOutsideCallout = this._translateAnimationContainer.current &&\n !elementContains(this._translateAnimationContainer.current, clickTarget);\n var target = this.props.target;\n if (clickedOutsideCallout && clickTarget !== target && !elementContains(target, clickTarget)) {\n this.dismiss(ev);\n }\n };\n CoachmarkBase.prototype._getBounds = function () {\n var _a = this.props, isPositionForced = _a.isPositionForced, positioningContainerProps = _a.positioningContainerProps;\n if (isPositionForced) {\n // If directionalHint direction is the top or bottom auto edge, then we want to set the left/right bounds\n // to the window x-axis to have auto positioning work correctly.\n if (positioningContainerProps &&\n (positioningContainerProps.directionalHint === DirectionalHint.topAutoEdge ||\n positioningContainerProps.directionalHint === DirectionalHint.bottomAutoEdge)) {\n return {\n left: 0,\n top: -Infinity,\n bottom: Infinity,\n right: window.innerWidth,\n width: window.innerWidth,\n height: Infinity,\n };\n }\n else {\n return {\n left: -Infinity,\n top: -Infinity,\n bottom: Infinity,\n right: Infinity,\n width: Infinity,\n height: Infinity,\n };\n }\n }\n else {\n return undefined;\n }\n };\n CoachmarkBase.prototype._addProximityHandler = function (mouseProximityOffset) {\n var _this = this;\n if (mouseProximityOffset === void 0) { mouseProximityOffset = 0; }\n /**\n * An array of cached ids returned when setTimeout runs during\n * the window resize event trigger.\n */\n var timeoutIds = [];\n // Take the initial measure out of the initial render to prevent\n // an unnecessary render.\n this._async.setTimeout(function () {\n _this._setTargetElementRect();\n // When the window resizes we want to async\n // get the bounding client rectangle.\n // Every time the event is triggered we want to\n // setTimeout and then clear any previous instances\n // of setTimeout.\n _this._events.on(window, 'resize', function () {\n timeoutIds.forEach(function (value) {\n clearInterval(value);\n });\n timeoutIds.push(_this._async.setTimeout(function () {\n _this._setTargetElementRect();\n }, 100));\n });\n }, 10);\n // Every time the document's mouse move is triggered\n // we want to check if inside of an element and\n // set the state with the result.\n this._events.on(document, 'mousemove', function (e) {\n if (_this.state.isCollapsed) {\n var mouseY = e.clientY;\n var mouseX = e.clientX;\n _this._setTargetElementRect();\n var isMouseInProximity = _this._isInsideElement(mouseX, mouseY, mouseProximityOffset);\n if (isMouseInProximity !== _this.state.isMouseInProximity) {\n _this._openCoachmark();\n }\n }\n if (_this.props.onMouseMove) {\n _this.props.onMouseMove(e);\n }\n });\n };\n CoachmarkBase.prototype._setTargetElementRect = function () {\n if (this._translateAnimationContainer && this._translateAnimationContainer.current) {\n this._targetElementRect = this._translateAnimationContainer.current.getBoundingClientRect();\n }\n };\n CoachmarkBase.prototype._isInsideElement = function (mouseX, mouseY, mouseProximityOffset) {\n if (mouseProximityOffset === void 0) { mouseProximityOffset = 0; }\n return (mouseX > this._targetElementRect.left - mouseProximityOffset &&\n mouseX < this._targetElementRect.left + this._targetElementRect.width + mouseProximityOffset &&\n mouseY > this._targetElementRect.top - mouseProximityOffset &&\n mouseY < this._targetElementRect.top + this._targetElementRect.height + mouseProximityOffset);\n };\n CoachmarkBase.defaultProps = {\n isCollapsed: true,\n mouseProximityOffset: 10,\n delayBeforeMouseOpen: 3600,\n delayBeforeCoachmarkAnimation: 0,\n isPositionForced: true,\n positioningContainerProps: {\n directionalHint: DirectionalHint.bottomAutoEdge,\n },\n };\n return CoachmarkBase;\n}(React.Component));\nexport { CoachmarkBase };\n//# sourceMappingURL=Coachmark.base.js.map" - }, - { - "id": "SfRM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_hashClear.js", - "name": "./node_modules/lodash/_hashClear.js", - "index": 478, - "index2": 467, - "size": 281, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "issuerId": "4kuk", - "issuerName": "./node_modules/lodash/_Hash.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - }, - { - "id": "0Cz8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackSet.js", - "name": "./node_modules/lodash/_stackSet.js" - }, - { - "id": "e4Nc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_MapCache.js", - "name": "./node_modules/lodash/_MapCache.js" - }, - { - "id": "fGT3", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_mapCacheClear.js", - "name": "./node_modules/lodash/_mapCacheClear.js" - }, - { - "id": "4kuk", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "name": "./node_modules/lodash/_Hash.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4kuk", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Hash.js", - "module": "./node_modules/lodash/_Hash.js", - "moduleName": "./node_modules/lodash/_Hash.js", - "type": "cjs require", - "userRequest": "./_hashClear", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 11, - "source": "var nativeCreate = require('./_nativeCreate');\n\n/**\n * Removes all key-value entries from the hash.\n *\n * @private\n * @name clear\n * @memberOf Hash\n */\nfunction hashClear() {\n this.__data__ = nativeCreate ? nativeCreate(null) : {};\n this.size = 0;\n}\n\nmodule.exports = hashClear;\n" - }, - { - "id": "Sgrz", - "identifier": "external \"ControlStrings\"", - "name": "external \"ControlStrings\"", - "index": 689, - "index2": 684, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/WebPartTitle.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/webPartTitle/WebPartTitle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "ControlStrings", - "loc": "15:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ControlStrings", - "loc": "51:165-196" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "ControlStrings", - "loc": "51:212-237" - } - ], - "usedExports": [ - "WebPartTitleLabel", - "WebPartTitlePlaceholder" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5 - }, - { - "id": "SjmI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/effects/index.js", - "name": "./node_modules/@fluentui/theme/lib/effects/index.js", - "index": null, - "index2": null, - "size": 125, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "issuerId": null, - "issuerName": "./node_modules/@fluentui/theme/lib/createTheme.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "qeAe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Icons.js", - "name": "./node_modules/office-ui-fabric-react/lib/Icons.js" - }, - { - "id": "gTkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/index.js", - "name": "./node_modules/@uifabric/icons/lib/index.js" - }, - { - "id": "GOZa", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/icons/lib/fabric-icons.js", - "name": "./node_modules/@uifabric/icons/lib/fabric-icons.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js", - "name": "./node_modules/@uifabric/styling/lib/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/styles/theme.js", - "name": "./node_modules/@uifabric/styling/lib/styles/theme.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/theme/lib/createTheme.js", - "name": "./node_modules/@fluentui/theme/lib/createTheme.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "tqYG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/index.js d90d868582f85e263ac1b4218609a54b", - "module": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "moduleName": "./node_modules/@uifabric/styling/lib/index.js + 32 modules", - "type": "harmony side effect evaluation", - "userRequest": "./effects/index", - "loc": "2:0-49" - } - ], - "usedExports": false, - "providedExports": [ - "DefaultEffects", - "Depths" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "export { DefaultEffects } from './DefaultEffects';\nexport { Depths } from './FluentDepths';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "Snj6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "index": 922, - "index2": 920, - "size": 600, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "oKet", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js 66ba57f5dda8c5e8840b82de2c3f4523", - "module": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js + 2 modules", - "type": "cjs require", - "userRequest": "./ListSearchConsumerWebPart.module.css", - "loc": "2:0-49" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "var content = require(\"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/postcss-loader/src/index.js??postcss!./ListSearchConsumerWebPart.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "Svtm", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardPreview.js", - "index": null, - "index2": null, - "size": 339, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerId": "7hkT", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardPreview", - "loc": "7:0-38" - }, - { - "moduleId": "7hkT", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DocumentCardPreview", - "loc": "7:0-38" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardPreview" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { DocumentCardPreviewBase } from './DocumentCardPreview.base';\nimport { getStyles } from './DocumentCardPreview.styles';\nexport var DocumentCardPreview = styled(DocumentCardPreviewBase, getStyles, undefined, { scope: 'DocumentCardPreview' });\n//# sourceMappingURL=DocumentCardPreview.js.map" - }, - { - "id": "Sza5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "index": null, - "index2": null, - "size": 99, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./SelectedItemsList", - "loc": "68:0-36" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./SelectedItemsList", - "loc": "68:0-36" - } - ], - "usedExports": false, - "providedExports": [ - "BaseSelectedItemsList", - "BasePeopleSelectedItemsList", - "SelectedPeopleList", - "ExtendedSelectedItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/SelectedItemsList/index';\n//# sourceMappingURL=SelectedItemsList.js.map" - }, - { - "id": "T0RK", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "name": "./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/src??postcss!./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "index": 923, - "index2": 919, - "size": 1669, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 0 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "issuerId": "Snj6", - "issuerName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/ListSearchConsumerWebPartWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.scss.js" - }, - { - "id": "Snj6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "name": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "Snj6", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "module": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "moduleName": "./lib/webparts/listSearchConsumerWebPart/components/ListSearchConsumerWebPart.module.css", - "type": "cjs require", - "userRequest": "!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/postcss-loader/src/index.js??postcss!./ListSearchConsumerWebPart.module.css", - "loc": "1:14-175" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 4, - "source": "exports = module.exports = require(\"../../../../node_modules/css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.id, \".listSearchConsumerWebPart_5b75b837{margin:5px;background-color:\\\"[theme:themePrimary, default: #0078d4]\\\";color:\\\"[theme:white, default: #ffffff]\\\";box-sizing:border-box;padding:0 8px;box-shadow:0 2px 4px 0 rgba(0,0,0,.2),0 25px 50px 0 rgba(0,0,0,.1)}.listSearchConsumerWebPart_5b75b837:after,.listSearchConsumerWebPart_5b75b837:before{display:table;content:\\\"\\\";line-height:0}.listSearchConsumerWebPart_5b75b837:after{clear:both}.listSearchConsumerWebPart_5b75b837 .row_5b75b837{margin:0 -8px;box-sizing:border-box}.listSearchConsumerWebPart_5b75b837 .row_5b75b837:after,.listSearchConsumerWebPart_5b75b837 .row_5b75b837:before{display:table;content:\\\"\\\";line-height:0}.listSearchConsumerWebPart_5b75b837 .row_5b75b837:after{clear:both}.listSearchConsumerWebPart_5b75b837 .column_5b75b837{position:relative;min-height:1px;padding-left:8px;padding-right:8px;box-sizing:border-box;width:100%}[dir=ltr] .listSearchConsumerWebPart_5b75b837 .column_5b75b837{float:left}[dir=rtl] .listSearchConsumerWebPart_5b75b837 .column_5b75b837{float:right}.listSearchConsumerWebPart_5b75b837 .column_5b75b837 .ms-Grid_5b75b837{padding:0}@media (min-width:640px){.listSearchConsumerWebPart_5b75b837 .column_5b75b837{width:100%}}.listSearchConsumerWebPart_5b75b837 .title_5b75b837{font-size:21px;font-weight:100}.listSearchConsumerWebPart_5b75b837 .description_5b75b837,.listSearchConsumerWebPart_5b75b837 .subTitle_5b75b837{font-size:17px;font-weight:300}.listSearchConsumerWebPart_5b75b837 .value_5b75b837{font-size:14px;font-weight:400}\", \"\"]);\n" - }, - { - "id": "T7Xx", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Tooltip.js", - "name": "./node_modules/office-ui-fabric-react/lib/Tooltip.js", - "index": null, - "index2": null, - "size": 79, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Tooltip", - "loc": "85:0-26" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Tooltip", - "loc": "85:0-26" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Tooltip", - "loc": "10:0-65" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Tooltip", - "loc": "4:0-82" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../Tooltip", - "loc": "8:0-44" - } - ], - "usedExports": false, - "providedExports": [ - "Tooltip", - "TooltipBase", - "TooltipDelay", - "TooltipHost", - "TooltipHostBase", - "TooltipOverflowMode", - "DirectionalHint" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/Tooltip/index';\n//# sourceMappingURL=Tooltip.js.map" - }, - { - "id": "TCe0", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.scss.js", - "index": null, - "index2": null, - "size": 927, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "issuerId": "ay5G", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i/Mu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/ExtendedPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/ExtendedPicker.js" - }, - { - "id": "olx6", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/index.js" - }, - { - "id": "ay5G", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "./BaseExtendedPicker.scss", - "loc": "5:0-58" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony import specifier", - "userRequest": "./BaseExtendedPicker.scss", - "loc": "8:13-25" - } - ], - "usedExports": false, - "providedExports": [ - "pickerText", - "pickerInput" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "/* eslint-disable */\nimport { loadStyles } from '@microsoft/load-themed-styles';\nloadStyles([{ \"rawString\": \".pickerText_7e3a9a8e{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid \" }, { \"theme\": \"neutralTertiary\", \"defaultValue\": \"#a19f9d\" }, { \"rawString\": \";min-width:180px;padding:1px;min-height:32px}.pickerText_7e3a9a8e:hover{border-color:\" }, { \"theme\": \"themeLight\", \"defaultValue\": \"#c7e0f4\" }, { \"rawString\": \"}.pickerInput_7e3a9a8e{height:34px;border:none;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;outline:0;padding:0 6px 0;margin:1px}.pickerInput_7e3a9a8e::-ms-clear{display:none}\" }]);\nexport var pickerText = \"pickerText_7e3a9a8e\";\nexport var pickerInput = \"pickerInput_7e3a9a8e\";\n//# sourceMappingURL=BaseExtendedPicker.scss.js.map" - }, - { - "id": "TL5K", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/version.js", - "name": "./node_modules/@uifabric/merge-styles/lib/version.js", - "index": null, - "index2": null, - "size": 272, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "issuerId": "65oB", - "issuerName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js" - }, - { - "id": "5RY+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js" - }, - { - "id": "F/nV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/index.js" - }, - { - "id": "ZdmW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js", - "name": "./node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js" - }, - { - "id": "65oB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "name": "./node_modules/@uifabric/merge-styles/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "65oB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/merge-styles/lib/index.js", - "module": "./node_modules/@uifabric/merge-styles/lib/index.js", - "moduleName": "./node_modules/@uifabric/merge-styles/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "9:0-19" - } - ], - "usedExports": false, - "providedExports": [], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 7, - "source": "// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nimport { setVersion } from '@uifabric/set-version';\nsetVersion('@uifabric/merge-styles', '7.19.1');\n//# sourceMappingURL=version.js.map" - }, - { - "id": "TSYQ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/classnames/index.js", - "name": "./node_modules/classnames/index.js", - "index": 356, - "index2": 352, - "size": 1328, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "issuerId": "0fKb", - "issuerName": "./node_modules/react-js-pagination/dist/Pagination.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "0fKb", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "name": "./node_modules/react-js-pagination/dist/Pagination.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "0fKb", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Pagination.js", - "module": "./node_modules/react-js-pagination/dist/Pagination.js", - "moduleName": "./node_modules/react-js-pagination/dist/Pagination.js", - "type": "cjs require", - "userRequest": "classnames", - "loc": "16:41-62" - }, - { - "moduleId": "HBL8", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/react-js-pagination/dist/Page.js", - "module": "./node_modules/react-js-pagination/dist/Page.js", - "moduleName": "./node_modules/react-js-pagination/dist/Page.js", - "type": "cjs require", - "userRequest": "classnames", - "loc": "12:41-62" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 3, - "source": "/*!\n Copyright (c) 2018 Jed Watson.\n Licensed under the MIT License (MIT), see\n http://jedwatson.github.io/classnames\n*/\n/* global define */\n\n(function () {\n\t'use strict';\n\n\tvar hasOwn = {}.hasOwnProperty;\n\n\tfunction classNames() {\n\t\tvar classes = [];\n\n\t\tfor (var i = 0; i < arguments.length; i++) {\n\t\t\tvar arg = arguments[i];\n\t\t\tif (!arg) continue;\n\n\t\t\tvar argType = typeof arg;\n\n\t\t\tif (argType === 'string' || argType === 'number') {\n\t\t\t\tclasses.push(arg);\n\t\t\t} else if (Array.isArray(arg)) {\n\t\t\t\tif (arg.length) {\n\t\t\t\t\tvar inner = classNames.apply(null, arg);\n\t\t\t\t\tif (inner) {\n\t\t\t\t\t\tclasses.push(inner);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else if (argType === 'object') {\n\t\t\t\tif (arg.toString === Object.prototype.toString) {\n\t\t\t\t\tfor (var key in arg) {\n\t\t\t\t\t\tif (hasOwn.call(arg, key) && arg[key]) {\n\t\t\t\t\t\t\tclasses.push(key);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tclasses.push(arg.toString());\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn classes.join(' ');\n\t}\n\n\tif (typeof module !== 'undefined' && module.exports) {\n\t\tclassNames.default = classNames;\n\t\tmodule.exports = classNames;\n\t} else if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {\n\t\t// register as 'classnames', consistent with npm package name\n\t\tdefine('classnames', [], function () {\n\t\t\treturn classNames;\n\t\t});\n\t} else {\n\t\twindow.classNames = classNames;\n\t}\n}());\n" - }, - { - "id": "TUT9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "index": 12, - "index2": 279, - "size": 3693, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerId": "HR+7", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "tGMu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldCollectionData.js" - }, - { - "id": "HR+7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PropertyFieldCollectionDataHost", - "loc": "5:0-50" - }, - { - "moduleId": "HR+7", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PropertyFieldCollectionDataHost", - "loc": "5:0-50" - } - ], - "usedExports": [ - "PropertyFieldCollectionDataHost" - ], - "providedExports": [ - "PropertyFieldCollectionDataHost" - ], - "optimizationBailout": [], - "depth": 3, - "source": "var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nvar __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport * as React from 'react';\nimport * as telemetry from '../../common/telemetry';\nimport { DefaultButton } from 'office-ui-fabric-react/lib/components/Button';\nimport { Panel, PanelType } from 'office-ui-fabric-react/lib/components/Panel';\nimport { Label } from 'office-ui-fabric-react/lib/components/Label';\nimport { CollectionDataViewer } from './collectionDataViewer';\nimport FieldErrorMessage from '../errorMessage/FieldErrorMessage';\nimport * as strings from 'PropertyControlStrings';\nvar PropertyFieldCollectionDataHost = /** @class */ (function (_super) {\n __extends(PropertyFieldCollectionDataHost, _super);\n function PropertyFieldCollectionDataHost(props) {\n var _this = _super.call(this, props) || this;\n /**\n * Open the panel\n */\n _this.openPanel = function () {\n _this.setState({\n panelOpen: true\n });\n };\n /**\n * Closes the panel\n */\n _this.closePanel = function () {\n _this.setState({\n panelOpen: false\n });\n };\n /**\n * On save action\n */\n _this.onSave = function (items) {\n _this.props.onChanged(items);\n _this.setState({\n panelOpen: false\n });\n };\n _this.state = {\n panelOpen: false\n };\n telemetry.track('PropertyFieldCollectionData', {});\n return _this;\n }\n PropertyFieldCollectionDataHost.prototype.render = function () {\n return (React.createElement(\"div\", null,\n React.createElement(Label, null, this.props.label),\n React.createElement(DefaultButton, { text: this.props.manageBtnLabel, onClick: this.openPanel, disabled: this.props.fields.length === 0 || this.props.disabled }),\n this.props.fields.length === 0 && React.createElement(FieldErrorMessage, { errorMessage: strings.CollectionDataEmptyFields }),\n React.createElement(Panel, { isOpen: this.state.panelOpen, onDismiss: this.closePanel, type: PanelType.large, headerText: this.props.panelHeader, onOuterClick: function () { }, className: \"PropertyFieldCollectionData__panel \" + (this.props.panelClassName || \"\") },\n this.props.panelDescription && (React.createElement(\"p\", { className: \"PropertyFieldCollectionData__panel__description\" }, this.props.panelDescription)),\n React.createElement(CollectionDataViewer, __assign({}, this.props, { fOnSave: this.onSave, fOnClose: this.closePanel })))));\n };\n return PropertyFieldCollectionDataHost;\n}(React.Component));\nexport { PropertyFieldCollectionDataHost };\n//# sourceMappingURL=PropertyFieldCollectionDataHost.js.map" - }, - { - "id": "TVYz", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "index": 13, - "index2": 12, - "size": 1026, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "16:0-52" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "81:8-23" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "27:0-52" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "32:8-23" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "26:0-52" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "65:8-23" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "60:0-52" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "130:8-23" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "28:0-52" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "33:8-23" - } - ], - "usedExports": [ - "track" - ], - "providedExports": [ - "track" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@pnp/telemetry-js/dist/index.js (<- Module is not an ECMAScript module)", - "ModuleConcatenation bailout: Cannot concat with external \"@microsoft/sp-core-library\" (<- Module is not an ECMAScript module)" - ], - "depth": 4, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "index": 13, - "index2": 12, - "size": 951, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "issuerId": "LuZL", - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "16:0-52" - }, - { - "moduleId": "IAIq", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/number/PropertyFieldNumberHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "81:8-23" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "27:0-52" - }, - { - "moduleId": "LuZL", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "32:8-23" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "26:0-52" - }, - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "65:8-23" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "60:0-52" - }, - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "130:8-23" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony side effect evaluation", - "userRequest": "../../common/telemetry", - "loc": "28:0-52" - }, - { - "moduleId": "wN8o", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelectHost.js", - "type": "harmony import specifier", - "userRequest": "../../common/telemetry", - "loc": "33:8-23" - } - ], - "usedExports": [ - "track" - ], - "providedExports": [ - "track" - ], - "optimizationBailout": [], - "depth": 4, - "source": "var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nimport PnPTelemetry from \"@pnp/telemetry-js\";\nimport { version } from './version';\nimport { Environment, EnvironmentType } from \"@microsoft/sp-core-library\";\nvar CONTROL_TYPE = \"property\";\nexport function track(componentName, properties) {\n if (properties === void 0) { properties = {}; }\n var telemetry = PnPTelemetry.getInstance();\n telemetry.trackEvent(componentName, __assign({ version: version, controlType: CONTROL_TYPE, debug: DEBUG ? \"true\" : \"false\", environment: EnvironmentType[Environment.type] }, properties));\n}\n//# sourceMappingURL=index.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/version.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/version.js", - "index": 16, - "index2": 11, - "size": 65, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "bLNN", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation.js" - }, - { - "id": "QxFg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/index.js" - }, - { - "id": "LuZL", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/webPartInformation/PropertyPaneWebPartInformationHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./version", - "loc": "13:0-36" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js", - "type": "harmony import specifier", - "userRequest": "./version", - "loc": "19:60-67" - } - ], - "usedExports": [ - "version" - ], - "providedExports": [ - "version" - ], - "optimizationBailout": [], - "depth": 5, - "source": "export var version = \"3.3.0\";\n//# sourceMappingURL=version.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "TXqR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.js", - "index": null, - "index2": null, - "size": 1704, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "issuerId": "j0QU", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Sza5", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/SelectedItemsList.js", - "name": "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js" - }, - { - "id": "H84b", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/index.js" - }, - { - "id": "j0QU", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony side effect evaluation", - "userRequest": "./Items/SelectedItemWithContextMenu", - "loc": "5:0-82" - }, - { - "moduleId": "j0QU", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.js", - "type": "harmony import specifier", - "userRequest": "./Items/SelectedItemWithContextMenu", - "loc": "66:57-84" - } - ], - "usedExports": false, - "providedExports": [ - "SelectedItemWithContextMenu" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef } from '../../../../Utilities';\nimport { ContextualMenu, DirectionalHint } from '../../../../ContextualMenu';\nvar SelectedItemWithContextMenu = /** @class */ (function (_super) {\n __extends(SelectedItemWithContextMenu, _super);\n function SelectedItemWithContextMenu(props) {\n var _this = _super.call(this, props) || this;\n _this.itemElement = React.createRef();\n _this._onClick = function (ev) {\n ev.preventDefault();\n if (_this.props.beginEditing && !_this.props.item.isValid) {\n _this.props.beginEditing(_this.props.item);\n }\n else {\n _this.setState({ contextualMenuVisible: true });\n }\n };\n _this._onCloseContextualMenu = function (ev) {\n _this.setState({ contextualMenuVisible: false });\n };\n initializeComponentRef(_this);\n _this.state = { contextualMenuVisible: false };\n return _this;\n }\n SelectedItemWithContextMenu.prototype.render = function () {\n return (React.createElement(\"div\", { ref: this.itemElement, onContextMenu: this._onClick },\n this.props.renderedItem,\n this.state.contextualMenuVisible ? (React.createElement(ContextualMenu, { items: this.props.menuItems, shouldFocusOnMount: true, target: this.itemElement.current, onDismiss: this._onCloseContextualMenu, directionalHint: DirectionalHint.bottomLeftEdge })) : null));\n };\n return SelectedItemWithContextMenu;\n}(React.Component));\nexport { SelectedItemWithContextMenu };\n//# sourceMappingURL=SelectedItemWithContextMenu.js.map" - }, - { - "id": "TY1D", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.js", - "index": null, - "index2": null, - "size": 1580, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "issuerId": "HhSh", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "+WGp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FloatingPicker.js", - "name": "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js" - }, - { - "id": "HhSh", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "HhSh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./PeoplePicker/FloatingPeoplePicker", - "loc": "2:0-52" - }, - { - "moduleId": "HhSh", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js", - "type": "harmony export imported specifier", - "userRequest": "./PeoplePicker/FloatingPeoplePicker", - "loc": "2:0-52" - } - ], - "usedExports": false, - "providedExports": [ - "BaseFloatingPeoplePicker", - "FloatingPeoplePicker", - "createItem" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport { getRTL, getInitials } from '../../../Utilities';\nimport { BaseFloatingPicker } from '../BaseFloatingPicker';\nimport { SuggestionItemNormal } from './PeoplePickerItems/SuggestionItemDefault';\nimport './PeoplePicker.scss';\n/**\n * {@docCategory FloatingPeoplePicker}\n */\nvar BaseFloatingPeoplePicker = /** @class */ (function (_super) {\n __extends(BaseFloatingPeoplePicker, _super);\n function BaseFloatingPeoplePicker() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return BaseFloatingPeoplePicker;\n}(BaseFloatingPicker));\nexport { BaseFloatingPeoplePicker };\nvar FloatingPeoplePicker = /** @class */ (function (_super) {\n __extends(FloatingPeoplePicker, _super);\n function FloatingPeoplePicker() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n FloatingPeoplePicker.defaultProps = {\n onRenderSuggestionsItem: function (props, itemProps) {\n return SuggestionItemNormal(__assign({}, props), __assign({}, itemProps));\n },\n createGenericItem: createItem,\n };\n return FloatingPeoplePicker;\n}(BaseFloatingPeoplePicker));\nexport { FloatingPeoplePicker };\nexport function createItem(name, isValid) {\n var personaToConvert = {\n key: name,\n primaryText: name,\n imageInitials: '!',\n isValid: isValid,\n };\n if (!isValid) {\n personaToConvert.imageInitials = getInitials(name, getRTL());\n }\n return personaToConvert;\n}\n//# sourceMappingURL=FloatingPeoplePicker.js.map" - }, - { - "id": "TYy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/flatten.js", - "name": "./node_modules/lodash/flatten.js", - "index": 570, - "index2": 565, - "size": 489, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "issuerId": "xs/l", - "issuerName": "./node_modules/lodash/_flatRest.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "xs/l", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "name": "./node_modules/lodash/_flatRest.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "xs/l", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_flatRest.js", - "module": "./node_modules/lodash/_flatRest.js", - "moduleName": "./node_modules/lodash/_flatRest.js", - "type": "cjs require", - "userRequest": "./flatten", - "loc": "1:14-34" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var baseFlatten = require('./_baseFlatten');\n\n/**\n * Flattens `array` a single level deep.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Array\n * @param {Array} array The array to flatten.\n * @returns {Array} Returns the new flattened array.\n * @example\n *\n * _.flatten([1, [2, [3, [4]], 5]]);\n * // => [1, 2, [3, [4]], 5]\n */\nfunction flatten(array) {\n var length = array == null ? 0 : array.length;\n return length ? baseFlatten(array, 1) : [];\n}\n\nmodule.exports = flatten;\n" - }, - { - "id": "TkDl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js 3478f6228c73fbbf6570a2eef5f55ebc", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js + 2 modules", - "index": 252, - "index2": 241, - "size": 3132, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": null, - "issuerId": null, - "issuerName": null, - "issuerPath": null, - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "216:43-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "296:60-67" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay", - "loc": "1:0-26" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Overlay" - ], - "providedExports": [ - "Overlay" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/styling/lib/index.js because of ./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/classNamesFunction.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/initializeComponentRef.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/properties.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/scroll.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/@uifabric/utilities/lib/styled.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with ./node_modules/tslib/tslib.es6.js because of ./lib/webparts/listSearch/ListSearchWebPart.js", - "ModuleConcatenation bailout: Cannot concat with external \"react\" (<- Module is not an ECMAScript module)" - ], - "depth": 5, - "modules": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.base.js", - "index": 253, - "index2": 239, - "size": 1526, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "RqX7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "hKbd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.base", - "loc": "2:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "userRequest": "./Overlay.base", - "loc": "4:28-39" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.base", - "loc": "2:0-31" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay.base", - "loc": "2:0-31" - } - ], - "usedExports": [ - "OverlayBase" - ], - "providedExports": [ - "OverlayBase" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getNativeProps, divProperties, enableBodyScroll, disableBodyScroll, initializeComponentRef, } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar OverlayBase = /** @class */ (function (_super) {\n __extends(OverlayBase, _super);\n function OverlayBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n var _a = _this.props.allowTouchBodyScroll, allowTouchBodyScroll = _a === void 0 ? false : _a;\n _this._allowTouchBodyScroll = allowTouchBodyScroll;\n return _this;\n }\n OverlayBase.prototype.componentDidMount = function () {\n !this._allowTouchBodyScroll && disableBodyScroll();\n };\n OverlayBase.prototype.componentWillUnmount = function () {\n !this._allowTouchBodyScroll && enableBodyScroll();\n };\n OverlayBase.prototype.render = function () {\n var _a = this.props, isDark = _a.isDarkThemed, className = _a.className, theme = _a.theme, styles = _a.styles;\n var divProps = getNativeProps(this.props, divProperties);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n isDark: isDark,\n });\n return React.createElement(\"div\", __assign({}, divProps, { className: classNames.root }));\n };\n return OverlayBase;\n}(React.Component));\nexport { OverlayBase };\n//# sourceMappingURL=Overlay.base.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "index": 252, - "index2": 241, - "size": 260, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "issuerId": "hKbd", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "RqX7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "hKbd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "216:43-50" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Modal/Modal.base.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "../../Overlay", - "loc": "296:60-67" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay", - "loc": "1:0-26" - }, - { - "moduleId": "hKbd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Overlay", - "loc": "1:0-26" - } - ], - "usedExports": [ - "Overlay" - ], - "providedExports": [ - "Overlay" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { styled } from '../../Utilities';\nimport { OverlayBase } from './Overlay.base';\nimport { getStyles } from './Overlay.styles';\nexport var Overlay = styled(OverlayBase, getStyles, undefined, {\n scope: 'Overlay',\n});\n//# sourceMappingURL=Overlay.js.map" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.styles.js", - "index": 254, - "index2": 240, - "size": 1306, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "RqX7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/Overlay.js" - }, - { - "id": "hKbd", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony side effect evaluation", - "userRequest": "./Overlay.styles", - "loc": "3:0-45" - }, - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Overlay/Overlay.js", - "type": "harmony import specifier", - "userRequest": "./Overlay.styles", - "loc": "4:41-50" - } - ], - "usedExports": [ - "getStyles" - ], - "providedExports": [ - "getStyles" - ], - "optimizationBailout": [], - "depth": 6, - "source": "import { HighContrastSelector, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Overlay',\n rootDark: 'ms-Overlay--dark',\n};\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, theme = props.theme, isNone = props.isNone, isDark = props.isDark;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n backgroundColor: palette.whiteTranslucent40,\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n position: 'absolute',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n border: '1px solid WindowText',\n opacity: 0,\n },\n _a),\n },\n isNone && {\n visibility: 'hidden',\n },\n isDark && [\n classNames.rootDark,\n {\n backgroundColor: palette.blackTranslucent40,\n },\n ],\n className,\n ],\n };\n};\n//# sourceMappingURL=Overlay.styles.js.map" - } - ], - "filteredModules": 0 - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "index": null, - "index2": null, - "size": 89, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCard", - "loc": "24:0-31" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./DocumentCard", - "loc": "24:0-31" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCard", - "DocumentCardType", - "DocumentCardActions", - "DocumentCardActivity", - "DocumentCardDetails", - "DocumentCardLocation", - "DocumentCardPreview", - "DocumentCardImage", - "DocumentCardTitle", - "DocumentCardLogo", - "DocumentCardStatus" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/DocumentCard/index';\n//# sourceMappingURL=DocumentCard.js.map" - }, - { - "id": "U3py", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js", - "index": null, - "index2": null, - "size": 90, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Toggle.js", - "issuerId": "ZmcE", - "issuerName": "./node_modules/office-ui-fabric-react/lib/Toggle.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "ZmcE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Toggle.js", - "name": "./node_modules/office-ui-fabric-react/lib/Toggle.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "ZmcE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Toggle.js", - "module": "./node_modules/office-ui-fabric-react/lib/Toggle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Toggle.js", - "type": "harmony side effect evaluation", - "userRequest": "./components/Toggle/index", - "loc": "1:0-42" - }, - { - "moduleId": "ZmcE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Toggle.js", - "module": "./node_modules/office-ui-fabric-react/lib/Toggle.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/Toggle.js", - "type": "harmony export imported specifier", - "userRequest": "./components/Toggle/index", - "loc": "1:0-42" - } - ], - "usedExports": false, - "providedExports": [ - "Toggle", - "ToggleBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './Toggle';\nexport * from './Toggle.base';\n//# sourceMappingURL=index.js.map" - }, - { - "id": "U8fg", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/FocusZone.js", - "name": "./node_modules/office-ui-fabric-react/lib/FocusZone.js", - "index": null, - "index2": null, - "size": 83, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./FocusZone", - "loc": "32:0-28" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./FocusZone", - "loc": "32:0-28" - }, - { - "moduleId": "5AYc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Nav/Nav.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "6:0-64" - }, - { - "moduleId": "64bn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarDay.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "5:0-44" - }, - { - "moduleId": "AL8m", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarYear.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "4:0-44" - }, - { - "moduleId": "Fuo3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "4:0-64" - }, - { - "moduleId": "JPnG", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Calendar/CalendarMonth.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "4:0-44" - }, - { - "moduleId": "QoT3", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/pickers/BasePicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "4:0-64" - }, - { - "moduleId": "ay5G", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/BaseExtendedPicker.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "6:0-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "5:0-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "8:0-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "8:0-64" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "8:0-64" - }, - { - "moduleId": "odSE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js f32cdb84ef8e2df0323929833813fbcc", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js + 20 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "5:0-91" - }, - { - "moduleId": "sLz2", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Pivot/Pivot.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "5:0-64" - }, - { - "moduleId": "tj7c", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/ButtonGrid/ButtonGrid.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "4:0-44" - }, - { - "moduleId": "uNUV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js 8afc3d26e5224172fddc172e9bf7d000", - "module": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Dropdown/Dropdown.js + 9 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "10:0-64" - }, - { - "moduleId": "vu/h", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/CommandBar/CommandBar.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "6:0-64" - }, - { - "moduleId": "xuuw", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Rating/Rating.base.js", - "type": "harmony side effect evaluation", - "userRequest": "../../FocusZone", - "loc": "5:0-64" - } - ], - "usedExports": false, - "providedExports": [ - "FocusZone", - "FocusZoneTabbableElements", - "FocusZoneDirection" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/FocusZone/index';\n//# sourceMappingURL=FocusZone.js.map" - }, - { - "id": "UA/s", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "name": "./node_modules/@uifabric/react-hooks/lib/useRefEffect.js", - "index": null, - "index2": null, - "size": 1755, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "issuerId": "/m0d", - "issuerName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "i0Ub", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/KeytipData.js" - }, - { - "id": "YCwI", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/KeytipData.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/KeytipData/useKeytipData.js" - }, - { - "id": "/m0d", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "name": "./node_modules/@uifabric/react-hooks/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./useRefEffect", - "loc": "12:0-31" - }, - { - "moduleId": "/m0d", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/react-hooks/lib/index.js", - "module": "./node_modules/@uifabric/react-hooks/lib/index.js", - "moduleName": "./node_modules/@uifabric/react-hooks/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./useRefEffect", - "loc": "12:0-31" - } - ], - "usedExports": false, - "providedExports": [ - "useRefEffect" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import * as React from 'react';\n/**\n * Creates a ref, and calls a callback whenever the ref changes to a non-null value. The callback can optionally return\n * a cleanup function that'll be called before the value changes, and when the ref is unmounted.\n *\n * This can be used to work around a limitation that useEffect cannot depend on `ref.current` (see\n * https://github.com/facebook/react/issues/14387#issuecomment-503616820).\n *\n * Usage example:\n * ```ts\n * const myRef = useRefEffect(element => {\n * ...\n * return () => { ... cleanup ... };\n * });\n * ```\n * ```jsx\n *
\n * ```\n *\n * @param callback - Called whenever the ref's value changes to non-null. Can optionally return a cleanup function.\n * @param initial - (Optional) The initial value for the ref.\n *\n * @returns A function that should be called to set the ref's value. The object also has a `.current` member that can be\n * used to access the ref's value (like a normal RefObject). It can be hooked up to an element's `ref` property.\n */\nexport function useRefEffect(callback, initial) {\n if (initial === void 0) { initial = null; }\n var data = React.useRef({\n ref: Object.assign(function (value) {\n if (data.ref.current !== value) {\n if (data.cleanup) {\n data.cleanup();\n data.cleanup = undefined;\n }\n data.ref.current = value;\n if (value !== null) {\n data.cleanup = data.callback(value);\n }\n }\n }, {\n current: initial,\n }),\n callback: callback,\n }).current;\n data.callback = callback;\n return data.ref;\n}\n//# sourceMappingURL=useRefEffect.js.map" - }, - { - "id": "UC1j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/setVersion.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/setVersion.js", - "index": 429, - "index2": 419, - "size": 872, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "issuerId": "wqNB", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "Zjij", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js" - }, - { - "id": "wqNB", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/version.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/version.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/styling/lib/version.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "I4XQ", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/version.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/version.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/merge-styles/lib/version.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "JZZf", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/version.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/version.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/version.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "Zjij", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/version.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/set-version", - "loc": "4:0-10" - }, - { - "moduleId": "wqNB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./setVersion", - "loc": "1:0-42" - }, - { - "moduleId": "wqNB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./setVersion", - "loc": "2:0-22" - }, - { - "moduleId": "wqNB", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/set-version/lib/index.js", - "type": "harmony import specifier", - "userRequest": "./setVersion", - "loc": "3:0-10" - } - ], - "usedExports": [ - "setVersion" - ], - "providedExports": [ - "setVersion" - ], - "optimizationBailout": [], - "depth": 9, - "source": "// A packages cache that makes sure that we don't inject the same packageName twice in the same bundle -\r\n// this cache is local to the module closure inside this bundle\r\nvar packagesCache = {};\r\nexport function setVersion(packageName, packageVersion) {\r\n if (typeof window !== 'undefined') {\r\n // tslint:disable-next-line:no-any\r\n var packages = (window.__packages__ = window.__packages__ || {});\r\n // We allow either the global packages or local packages caches to invalidate so testing can just clear the global to set this state\r\n if (!packages[packageName] || !packagesCache[packageName]) {\r\n packagesCache[packageName] = packageVersion;\r\n var versions = (packages[packageName] = packages[packageName] || []);\r\n versions.push(packageVersion);\r\n }\r\n }\r\n}\r\n//# sourceMappingURL=setVersion.js.map" - }, - { - "id": "UGsW", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/HoverCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/HoverCard.js", - "index": null, - "index2": null, - "size": 83, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "issuerId": "4JEs", - "issuerName": "./node_modules/office-ui-fabric-react/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./HoverCard", - "loc": "35:0-28" - }, - { - "moduleId": "4JEs", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./HoverCard", - "loc": "35:0-28" - } - ], - "usedExports": false, - "providedExports": [ - "HoverCard", - "HoverCardBase", - "OpenCardMode", - "HoverCardType", - "ExpandingCard", - "ExpandingCardBase", - "ExpandingCardMode", - "PlainCard", - "PlainCardBase", - "DirectionalHint" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 3, - "source": "export * from './components/HoverCard/index';\n//# sourceMappingURL=HoverCard.js.map" - }, - { - "id": "UNi/", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseTimes.js", - "name": "./node_modules/lodash/_baseTimes.js", - "index": 498, - "index2": 488, - "size": 504, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "issuerId": "b80T", - "issuerName": "./node_modules/lodash/_arrayLikeKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "G6z8", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_getAllKeysIn.js", - "name": "./node_modules/lodash/_getAllKeysIn.js" - }, - { - "id": "mTTR", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keysIn.js", - "name": "./node_modules/lodash/keysIn.js" - }, - { - "id": "b80T", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "name": "./node_modules/lodash/_arrayLikeKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "b80T", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_arrayLikeKeys.js", - "module": "./node_modules/lodash/_arrayLikeKeys.js", - "moduleName": "./node_modules/lodash/_arrayLikeKeys.js", - "type": "cjs require", - "userRequest": "./_baseTimes", - "loc": "1:16-39" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "/**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\nfunction baseTimes(n, iteratee) {\n var index = -1,\n result = Array(n);\n\n while (++index < n) {\n result[index] = iteratee(index);\n }\n return result;\n}\n\nmodule.exports = baseTimes;\n" - }, - { - "id": "UQTf", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.base.js", - "index": null, - "index2": null, - "size": 1680, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "issuerId": "mUnp", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Tl7j", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/DocumentCard.js", - "name": "./node_modules/office-ui-fabric-react/lib/DocumentCard.js" - }, - { - "id": "7hkT", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js" - }, - { - "id": "mUnp", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "mUnp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "type": "harmony side effect evaluation", - "userRequest": "./DocumentCardActions.base", - "loc": "2:0-69" - }, - { - "moduleId": "mUnp", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/DocumentCard/DocumentCardActions.js", - "type": "harmony import specifier", - "userRequest": "./DocumentCardActions.base", - "loc": "4:40-63" - } - ], - "usedExports": false, - "providedExports": [ - "DocumentCardActionsBase" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 6, - "source": "import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, initializeComponentRef } from '../../Utilities';\nimport { Icon } from '../../Icon';\nimport { IconButton } from '../../Button';\nvar getClassNames = classNamesFunction();\n/**\n * {@docCategory DocumentCard}\n */\nvar DocumentCardActionsBase = /** @class */ (function (_super) {\n __extends(DocumentCardActionsBase, _super);\n function DocumentCardActionsBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n return _this;\n }\n DocumentCardActionsBase.prototype.render = function () {\n var _this = this;\n var _a = this.props, actions = _a.actions, views = _a.views, styles = _a.styles, theme = _a.theme, className = _a.className;\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n });\n return (React.createElement(\"div\", { className: this._classNames.root },\n actions &&\n actions.map(function (action, index) {\n return (React.createElement(\"div\", { className: _this._classNames.action, key: index },\n React.createElement(IconButton, __assign({}, action))));\n }),\n views > 0 && (React.createElement(\"div\", { className: this._classNames.views },\n React.createElement(Icon, { iconName: \"View\", className: this._classNames.viewsIcon }),\n views))));\n };\n return DocumentCardActionsBase;\n}(React.Component));\nexport { DocumentCardActionsBase };\n//# sourceMappingURL=DocumentCardActions.base.js.map" - }, - { - "id": "UWqr", - "identifier": "external \"@microsoft/sp-core-library\"", - "name": "external \"@microsoft/sp-core-library\"", - "index": 3, - "index2": 2, - "size": 42, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "issuerId": null, - "issuerName": "./lib/webparts/listSearch/ListSearchWebPart.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "74:0-50" - }, - { - "moduleId": "8sxt", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js 74a9d657ee23f97100ebadf675d8e521", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/collectionDataItem/CollectionDataItem.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "534:29-33" - }, - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "14:0-74" - }, - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "19:142-157" - }, - { - "moduleId": "TVYz", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js 2374516a8683b98b1c35d2c8072cb519", - "module": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/common/telemetry/index.js + 1 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "19:158-169" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "12:0-53" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "14:0-74" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "16:0-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "22:0-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "22:0-49" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "26:142-157" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "26:158-169" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "@microsoft/sp-core-library", - "loc": "29:0-50" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "48:82-93" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "49:34-38" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "51:47-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "52:47-58" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "103:8-11" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "107:8-11" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "108:8-11" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "159:46-57" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony import specifier", - "userRequest": "@microsoft/sp-core-library", - "loc": "245:15-22" - } - ], - "usedExports": [ - "DisplayMode", - "Environment", - "EnvironmentType", - "Guid", - "Log", - "Version" - ], - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 1 - }, - { - "id": "UZzA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/safeSetTimeout.js", - "index": null, - "index2": null, - "size": 1014, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "dStM", - "issuerName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "2eko", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js" - }, - { - "id": "Hlgl", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "dStM", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./safeSetTimeout", - "loc": "47:0-33" - }, - { - "moduleId": "dStM", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./safeSetTimeout", - "loc": "47:0-33" - } - ], - "usedExports": false, - "providedExports": [ - "safeSetTimeout" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 8, - "source": "import { extendComponent } from './extendComponent';\n/**\n * Generates a function to be attached to a React component, which can be called\n * as a replacement to setTimeout. In-flight async calls will be auto canceled if the component\n * is unmounting before the async code is executed, preventing bugs where code\n * accesses things within the component after being unmounted.\n */\nexport var safeSetTimeout = function (component) {\n var activeTimeouts;\n return function (cb, duration) {\n if (!activeTimeouts) {\n activeTimeouts = new Set();\n extendComponent(component, {\n componentWillUnmount: function () {\n activeTimeouts.forEach(function (id) { return clearTimeout(id); });\n }\n });\n }\n var timeoutId = setTimeout(function () {\n activeTimeouts.delete(timeoutId);\n cb();\n }, duration);\n activeTimeouts.add(timeoutId);\n };\n};\n//# sourceMappingURL=safeSetTimeout.js.map" - }, - { - "id": "UlOo", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.types.js", - "index": 251, - "index2": 238, - "size": 4835, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "issuerId": null, - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "mUw2", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/Panel.js" - }, - { - "id": "wF/w", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.styles.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "TUT9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/collectionData/PropertyFieldCollectionDataHost.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "office-ui-fabric-react/lib/components/Panel", - "loc": "73:105-114" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.types", - "loc": "3:0-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.types", - "loc": "9:0-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "89:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "92:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "95:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "98:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "101:13-22" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "116:502-511" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "119:33-42" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "119:62-71" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "176:21-30" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "179:21-30" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "184:21-30" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "187:30-39" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "187:67-76" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "190:41-50" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "190:70-79" - }, - { - "moduleId": "cEMg", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js fa0e7ffc3b66a107d076eb6e60ab22c4", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/Panel.js + 2 modules", - "type": "harmony import specifier", - "userRequest": "./Panel.types", - "loc": "288:14-23" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Panel.types", - "loc": "3:0-30" - }, - { - "moduleId": "wF/w", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Panel/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Panel.types", - "loc": "3:0-30" - } - ], - "usedExports": [ - "PanelType" - ], - "providedExports": [ - "PanelType" - ], - "optimizationBailout": [], - "depth": 5, - "source": "/**\n * {@docCategory Panel}\n */\nexport var PanelType;\n(function (PanelType) {\n /**\n * Renders the Panel with a `fluid` (full screen) width.\n * Recommended for use on small screen breakpoints.\n * - Small (320-479): full screen width, 16px left/right padding\n * - Medium (480-639): full screen width, 16px left/right padding\n * - Large (640-1023): full screen width, 32px left/right padding\n * - XLarge (1024-1365): full screen width, 32px left/right padding\n * - XXLarge (1366-up): full screen width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFluid\"] = 0] = \"smallFluid\";\n /**\n * Renders the Panel in fixed-width `small` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): 340px width, 16px left/right padding\n * - Large (640-1023): 340px width, 32px left/right padding\n * - XLarge (1024-1365): 340px width, 32px left/right padding\n * - XXLarge (1366-up): 340px width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFixedFar\"] = 1] = \"smallFixedFar\";\n /**\n * Renders the Panel in fixed-width `small` size, anchored to the near side (left in LTR mode).\n * - Small (320-479): 272px width, 16px left/right padding\n * - Medium (480-639): 272px width, 16px left/right padding\n * - Large (640-1023): 272px width, 32px left/right padding\n * - XLarge (1024-1365): 272px width, 32px left/right padding\n * - XXLarge (1366-up): 272px width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFixedNear\"] = 2] = \"smallFixedNear\";\n /**\n * Renders the Panel in `medium` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): 592px width, 32px left/right padding\n * - XLarge (1024-1365): 644px width, 32px left/right padding\n * - XXLarge (1366-up): 644px width, 40px left/right padding\n */\n PanelType[PanelType[\"medium\"] = 3] = \"medium\";\n /**\n * Renders the Panel in `large` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): 48px fixed left margin, fluid width, 32px left/right padding\n * - XXLarge (1366-up): 428px fixed left margin, fluid width, 40px left/right padding\n */\n PanelType[PanelType[\"large\"] = 4] = \"large\";\n /**\n * Renders the Panel in `large` size, anchored to the far side (right in LTR mode), with a fixed width at\n * XX-Large breakpoint.\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): 48px fixed left margin, fluid width, 32px left/right padding\n * - XXLarge (1366-up): 940px width, 40px left/right padding\n */\n PanelType[PanelType[\"largeFixed\"] = 5] = \"largeFixed\";\n /**\n * Renders the Panel in `extra large` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): adapts to `PanelType.large` at this breakpoint\n * - XXLarge (1366-1919): 176px fixed left margin, fluid width, 40px left/right padding\n * - XXXLarge (1920-up): 176px fixed left margin, fluid width, 40px left/right padding\n */\n PanelType[PanelType[\"extraLarge\"] = 6] = \"extraLarge\";\n /**\n * Renders the Panel in `custom` size using `customWidth`, anchored to the far side (right in LTR mode).\n * - Has a fixed width provided by the `customWidth` prop\n * - When screen width reaches the `customWidth` value it will behave like a fluid width Panel\n * taking up 100% of the viewport width\n */\n PanelType[PanelType[\"custom\"] = 7] = \"custom\";\n /**\n * Renders the Panel in `custom` size using `customWidth`, anchored to the near side (left in LTR mode).\n * - Has a fixed width provided by the `customWidth` prop\n * - When screen width reaches the `customWidth` value it will behave like a fluid width Panel\n * taking up 100% of the viewport width\n */\n PanelType[PanelType[\"customNear\"] = 8] = \"customNear\";\n})(PanelType || (PanelType = {}));\n//# sourceMappingURL=Panel.types.js.map" - }, - { - "id": "V6Ve", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_nativeKeys.js", - "name": "./node_modules/lodash/_nativeKeys.js", - "index": 514, - "index2": 505, - "size": 204, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "issuerId": "A90E", - "issuerName": "./node_modules/lodash/_baseKeys.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "7GkX", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/keys.js", - "name": "./node_modules/lodash/keys.js" - }, - { - "id": "A90E", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "name": "./node_modules/lodash/_baseKeys.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "A90E", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseKeys.js", - "module": "./node_modules/lodash/_baseKeys.js", - "moduleName": "./node_modules/lodash/_baseKeys.js", - "type": "cjs require", - "userRequest": "./_nativeKeys", - "loc": "2:17-41" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 8, - "source": "var overArg = require('./_overArg');\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeKeys = overArg(Object.keys, Object);\n\nmodule.exports = nativeKeys;\n" - }, - { - "id": "VCDA", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "name": "./node_modules/@uifabric/utilities/lib/GlobalSettings.js", - "index": 37, - "index2": 25, - "size": 3139, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "issuerId": "ZQy9", - "issuerName": "./node_modules/@uifabric/utilities/lib/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "LXO1", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Utilities.js", - "name": "./node_modules/office-ui-fabric-react/lib/Utilities.js" - }, - { - "id": "ZQy9", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "name": "./node_modules/@uifabric/utilities/lib/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": null, - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/styling/lib/utilities/icons.js", - "module": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "moduleName": "./node_modules/@uifabric/styling/lib/utilities/icons.js", - "type": "harmony import specifier", - "explanation": "(skipped side-effect-free modules)", - "userRequest": "@uifabric/utilities", - "loc": "5:20-34" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony side effect evaluation", - "userRequest": "../GlobalSettings", - "loc": "2:0-51" - }, - { - "moduleId": "KHN1", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "module": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/customizations/Customizations.js", - "type": "harmony import specifier", - "userRequest": "../GlobalSettings", - "loc": "5:19-33" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./GlobalSettings", - "loc": "7:0-33" - }, - { - "moduleId": "ZQy9", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@uifabric/utilities/lib/index.js", - "module": "./node_modules/@uifabric/utilities/lib/index.js", - "moduleName": "./node_modules/@uifabric/utilities/lib/index.js", - "type": "harmony export imported specifier", - "userRequest": "./GlobalSettings", - "loc": "7:0-33" - } - ], - "usedExports": [ - "GlobalSettings" - ], - "providedExports": [ - "GlobalSettings" - ], - "optimizationBailout": [], - "depth": 5, - "source": "import { getWindow } from './dom/getWindow';\n/**\n * Storing global state in local module variables has issues when more than one copy\n * if the module gets loaded on the page (due to a bundling error or simply by consuming\n * a prebundled script.)\n *\n * This file contains helpers to deal with the getting and setting local state, and allows\n * callers to get called back when it mutates.\n */\nvar GLOBAL_SETTINGS_PROP_NAME = '__globalSettings__';\nvar CALLBACK_STATE_PROP_NAME = '__callbacks__';\nvar _counter = 0;\n/**\n * Global settings helper, which stores settings in the global (window) namespace.\n * If window is not provided, it will store settings in module scope. Provides a\n * way to observe changes as well when their values change.\n *\n * @public\n * {@docCategory GlobalSettings}\n */\nvar GlobalSettings = /** @class */ (function () {\n function GlobalSettings() {\n }\n GlobalSettings.getValue = function (key, defaultValue) {\n var globalSettings = _getGlobalSettings();\n if (globalSettings[key] === undefined) {\n globalSettings[key] = typeof defaultValue === 'function' ? defaultValue() : defaultValue;\n }\n return globalSettings[key];\n };\n GlobalSettings.setValue = function (key, value) {\n var globalSettings = _getGlobalSettings();\n var callbacks = globalSettings[CALLBACK_STATE_PROP_NAME];\n var oldValue = globalSettings[key];\n if (value !== oldValue) {\n globalSettings[key] = value;\n var changeDescription = {\n oldValue: oldValue,\n value: value,\n key: key,\n };\n for (var id in callbacks) {\n if (callbacks.hasOwnProperty(id)) {\n callbacks[id](changeDescription);\n }\n }\n }\n return value;\n };\n GlobalSettings.addChangeListener = function (cb) {\n // Note: we use generated ids on the callbacks to create a map of the callbacks, which optimizes removal.\n // (It's faster to delete a key than it is to look up the index of an object and splice an array.)\n var id = cb.__id__;\n var callbacks = _getCallbacks();\n if (!id) {\n id = cb.__id__ = String(_counter++);\n }\n callbacks[id] = cb;\n };\n GlobalSettings.removeChangeListener = function (cb) {\n var callbacks = _getCallbacks();\n delete callbacks[cb.__id__];\n };\n return GlobalSettings;\n}());\nexport { GlobalSettings };\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nfunction _getGlobalSettings() {\n var _a;\n var win = getWindow();\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n var globalObj = win || {};\n if (!globalObj[GLOBAL_SETTINGS_PROP_NAME]) {\n globalObj[GLOBAL_SETTINGS_PROP_NAME] = (_a = {},\n _a[CALLBACK_STATE_PROP_NAME] = {},\n _a);\n }\n return globalObj[GLOBAL_SETTINGS_PROP_NAME];\n}\nfunction _getCallbacks() {\n var globalSettings = _getGlobalSettings();\n return globalSettings[CALLBACK_STATE_PROP_NAME];\n}\n//# sourceMappingURL=GlobalSettings.js.map" - }, - { - "id": "VOtZ", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_copySymbols.js", - "name": "./node_modules/lodash/_copySymbols.js", - "index": 523, - "index2": 519, - "size": 446, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "issuerId": "OBhP", - "issuerName": "./node_modules/lodash/_baseClone.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "OBhP", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "module": "./node_modules/lodash/_baseClone.js", - "moduleName": "./node_modules/lodash/_baseClone.js", - "type": "cjs require", - "userRequest": "./_copySymbols", - "loc": "8:18-43" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 6, - "source": "var copyObject = require('./_copyObject'),\n getSymbols = require('./_getSymbols');\n\n/**\n * Copies own symbols of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy symbols from.\n * @param {Object} [object={}] The object to copy symbols to.\n * @returns {Object} Returns `object`.\n */\nfunction copySymbols(source, object) {\n return copyObject(source, getSymbols(source), object);\n}\n\nmodule.exports = copySymbols;\n" - }, - { - "id": "VPIu", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/@pnp/spfx-controls-react/node_modules/office-ui-fabric-react/lib/Button.js", - "index": null, - "index2": null, - "size": 77, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/Placeholder.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/Placeholder.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js", - "name": "./node_modules/@pnp/spfx-controls-react/lib/controls/placeholder/PlaceholderComponent.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "../../Button", - "loc": "5:0-42" - }, - { - "moduleId": "kSaI", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js 4c6d27391b1949d9d1e00adc0995e715", - "module": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "moduleName": "./lib/webparts/listSearch/ListSearchWebPart.js + 400 modules", - "type": "harmony side effect evaluation", - "userRequest": "office-ui-fabric-react/lib/Button", - "loc": "15:0-66" - } - ], - "usedExports": false, - "providedExports": [ - "BaseButton", - "ElementType", - "ButtonType", - "Button", - "ActionButton", - "CommandBarButton", - "CommandButton", - "CompoundButton", - "DefaultButton", - "MessageBarButton", - "PrimaryButton", - "IconButton" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 4, - "source": "export * from './components/Button/index';\n//# sourceMappingURL=Button.js.map" - }, - { - "id": "VSd+", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/lib/index.js??ref--4-0!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/css-loader/dist/cjs.js!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/postcss-loader/src/index.js??postcss!/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.css", - "index": 861, - "index2": 856, - "size": 582, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "issuerId": null, - "issuerName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "4f4p", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldSitePicker.js" - }, - { - "id": "Bd+z", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/index.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.module.scss.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "qlgd", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js 9754d8642b2a6f3966f2559da47bf68a", - "module": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "moduleName": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/sitePicker/PropertyFieldSitePickerHost.js + 27 modules", - "type": "cjs require", - "userRequest": "./PropertyFieldSitePickerHost.module.css", - "loc": "2:0-51" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 5, - "source": "var content = require(\"!!../../../../../css-loader/dist/cjs.js!../../../../../postcss-loader/src/index.js??postcss!./PropertyFieldSitePickerHost.module.css\");\nvar loader = require(\"/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@microsoft/loader-load-themed-styles/node_modules/@microsoft/load-themed-styles/lib/index.js\");\n\nif(typeof content === \"string\") content = [[module.id, content]];\n\n// add the styles to the DOM\nfor (var i = 0; i < content.length; i++) loader.loadStyles(content[i][1], true);\n\nif(content.locals) module.exports = content.locals;" - }, - { - "id": "VaNO", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_stackHas.js", - "name": "./node_modules/lodash/_stackHas.js", - "index": 458, - "index2": 450, - "size": 323, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [ - 1 - ], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "issuerId": "fmRc", - "issuerName": "./node_modules/lodash/_Stack.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": "jkLH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect.js" - }, - { - "id": "p38f", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/index.js" - }, - { - "id": "xDKH", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js", - "name": "./node_modules/@pnp/spfx-property-controls/lib/propertyFields/multiSelect/PropertyFieldMultiSelect.js" - }, - { - "id": "Puqe", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/omit.js", - "name": "./node_modules/lodash/omit.js" - }, - { - "id": "OBhP", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_baseClone.js", - "name": "./node_modules/lodash/_baseClone.js" - }, - { - "id": "fmRc", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "name": "./node_modules/lodash/_Stack.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "fmRc", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/lodash/_Stack.js", - "module": "./node_modules/lodash/_Stack.js", - "moduleName": "./node_modules/lodash/_Stack.js", - "type": "cjs require", - "userRequest": "./_stackHas", - "loc": "5:15-37" - } - ], - "usedExports": true, - "providedExports": null, - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not an ECMAScript module" - ], - "depth": 7, - "source": "/**\n * Checks if a stack value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Stack\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction stackHas(key) {\n return this.__data__.has(key);\n}\n\nmodule.exports = stackHas;\n" - }, - { - "id": "Vj6S", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/getColorFromHSV.js", - "index": null, - "index2": null, - "size": 914, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerId": "p+xn", - "issuerName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "cLrF", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Color.js", - "name": "./node_modules/office-ui-fabric-react/lib/Color.js" - }, - { - "id": "S6XE", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js" - }, - { - "id": "p+xn", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "name": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromHSV", - "loc": "15:0-34" - }, - { - "moduleId": "S6XE", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/index.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromHSV", - "loc": "15:0-34" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony side effect evaluation", - "userRequest": "./getColorFromHSV", - "loc": "13:0-34" - }, - { - "moduleId": "p+xn", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "module": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/utilities/color/colors.js", - "type": "harmony export imported specifier", - "userRequest": "./getColorFromHSV", - "loc": "13:0-34" - } - ], - "usedExports": false, - "providedExports": [ - "getColorFromHSV" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "import { MAX_COLOR_ALPHA } from './consts';\nimport { hsv2rgb } from './hsv2rgb';\nimport { hsv2hex } from './hsv2hex';\nimport { _rgbaOrHexString } from './_rgbaOrHexString';\n/**\n * Converts an HSV color (and optional alpha value) to a color object.\n * If `a` is not given, a default of 100 is used.\n * Hex in the returned value will *not* be prefixed with #.\n * If `a` is unspecified or 100, the result's `str` property will contain a hex value\n * (*not* prefixed with #)\n */\nexport function getColorFromHSV(hsv, a) {\n var h = hsv.h, s = hsv.s, v = hsv.v;\n a = typeof a === 'number' ? a : MAX_COLOR_ALPHA;\n var _a = hsv2rgb(h, s, v), r = _a.r, g = _a.g, b = _a.b;\n var hex = hsv2hex(h, s, v);\n var str = _rgbaOrHexString(r, g, b, a, hex);\n var t = MAX_COLOR_ALPHA - a;\n return { a: a, b: b, g: g, h: h, hex: hex, r: r, s: s, str: str, v: v, t: t };\n}\n//# sourceMappingURL=getColorFromHSV.js.map" - }, - { - "id": "VsX7", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.types.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.types.js", - "index": null, - "index2": null, - "size": 816, - "cacheable": true, - "built": true, - "optional": false, - "prefetched": false, - "chunks": [], - "issuer": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerId": "D/qV", - "issuerName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "issuerPath": [ - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/ListSearchWebPart.js", - "name": "./lib/webparts/listSearch/ListSearchWebPart.js" - }, - { - "id": null, - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/lib/webparts/listSearch/components/ListSearch.js", - "name": "./lib/webparts/listSearch/components/ListSearch.js" - }, - { - "id": "4JEs", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/index.js" - }, - { - "id": "Fx5H", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/Button.js", - "name": "./node_modules/office-ui-fabric-react/lib/Button.js" - }, - { - "id": "D/qV", - "identifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "name": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js" - } - ], - "failed": false, - "errors": 0, - "warnings": 0, - "assets": [], - "reasons": [ - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony side effect evaluation", - "userRequest": "./Button.types", - "loc": "2:0-31" - }, - { - "moduleId": "D/qV", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/index.js", - "type": "harmony export imported specifier", - "userRequest": "./Button.types", - "loc": "2:0-31" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony side effect evaluation", - "userRequest": "./Button.types", - "loc": "4:0-44" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./Button.types", - "loc": "27:17-27" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./Button.types", - "loc": "29:17-27" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./Button.types", - "loc": "31:17-27" - }, - { - "moduleId": "Pz2p", - "moduleIdentifier": "/home/mars/reepo/sp-dev-fx-webparts/samples/react-list-search/node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "module": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "moduleName": "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js", - "type": "harmony import specifier", - "userRequest": "./Button.types", - "loc": "33:17-27" - } - ], - "usedExports": false, - "providedExports": [ - "ElementType", - "ButtonType" - ], - "optimizationBailout": [ - "ModuleConcatenation bailout: Module is not in any chunk" - ], - "depth": 5, - "source": "/**\n * {@docCategory Button}\n */\nexport var ElementType;\n(function (ElementType) {\n /**